gui: send using external signer

This commit is contained in:
Sjors Provoost
2020-02-21 22:28:40 +01:00
parent 24815c6309
commit 1c4b456e1a
3 changed files with 77 additions and 10 deletions

View File

@@ -26,6 +26,11 @@ CTransactionRef& WalletModelTransaction::getWtx()
return wtx;
}
void WalletModelTransaction::setWtx(const CTransactionRef& newTx)
{
wtx = newTx;
}
unsigned int WalletModelTransaction::getTransactionSize()
{
return wtx ? GetVirtualTransactionSize(*wtx) : 0;