| 28 | static constexpr size_t OUTPUT_GROUP_MAX_ENTRIES{100}; |
| 29 | |
| 30 | int GetTxSpendSize(const CWallet& wallet, const CWalletTx& wtx, unsigned int out, bool use_max_sig) |
| 31 | { |
| 32 | return CalculateMaximumSignedInputSize(wtx.tx->vout[out], &wallet, use_max_sig); |
| 33 | } |
| 34 | |
| 35 | std::string COutput::ToString(const CWallet& wallet) const |
| 36 | { |
no test coverage detected