[#wallet-CalculateMaximumSignedTxSize-08] = xref:wallet.adoc[wallet]::CalculateMaximumSignedTxSize :relfileprefix: ../ :mrdocs: `CalculateMaximumSignedTxSize` overloads == Synopses Declared in `<wallet/spend.h>` Calculate the size of the transaction, looking up previous outputs from the wallet. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[requires_capability(0x7f2e1e5eb5d0)]] xref:wallet/TxSize.adoc[TxSize] xref:wallet/CalculateMaximumSignedTxSize-0d.adoc[CalculateMaximumSignedTxSize]( xref:CTransaction.adoc[CTransaction] const& tx, xref:wallet/CWallet.adoc[CWallet] const* wallet, xref:wallet/CCoinControl.adoc[CCoinControl] const* coin_control = nullptr); ---- [.small]#xref:wallet/CalculateMaximumSignedTxSize-0d.adoc[_» more..._]# Calculate the size of the transaction using CoinControl to determine whether to expect signature grinding when calculating the size of the input spend. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:wallet/TxSize.adoc[TxSize] xref:wallet/CalculateMaximumSignedTxSize-00.adoc[CalculateMaximumSignedTxSize]( xref:CTransaction.adoc[CTransaction] const& tx, xref:wallet/CWallet.adoc[CWallet] const* wallet, std::vector<CTxOut> const& txouts, xref:wallet/CCoinControl.adoc[CCoinControl] const* coin_control = nullptr); ---- [.small]#xref:wallet/CalculateMaximumSignedTxSize-00.adoc[_» more..._]# == Return Value The estimated virtual size and weight of the signed transaction. == Parameters [cols="1,4"] |=== | Name| Description | *tx* | The transaction whose signed size is estimated. | *wallet* | The wallet that owns the inputs and provides signing information. | *coin_control* | Coin control settings used to decide whether to expect signature grinding. | *txouts* | The previous outputs spent by the transaction's inputs. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#