We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b96583b commit c41fda5Copy full SHA for c41fda5
src/wallet/wallet.cpp
@@ -1758,7 +1758,7 @@ int64_t CalculateMaximumSignedTxSize(const CTransaction &tx,
1758
int64_t bls_size = 91 * tx.vin.size() + 83 * tx.vout.size() + 110;
1759
// This is formula for EC Txes
1760
// will overestimate size for BLS Tx when more inputs
1761
- int64_t ec_size = 146 * tx.vin.size() + 33 * tx.vout.size() + 10;
+ int64_t ec_size = 148 * tx.vin.size() + 34 * tx.vout.size() + 10;
1762
// For now return the larger of the two, this will mean potentially
1763
// more fees than needed but sizes should be comparable and this
1764
// will prevent issues with fees being too low
0 commit comments