strUsage+=HelpMessageOpt("-mempoolreplacement",strprintf(_("Enable transaction replacement in the memory pool (default: %u)"),DEFAULT_ENABLE_REPLACEMENT));
strUsage+=HelpMessageOpt("-mempoolreplacement",strprintf(_("Enable transaction replacement in the memory pool (default: %u)"),DEFAULT_ENABLE_REPLACEMENT));
strUsage+=HelpMessageOpt("-blockmaxcost=<n>",strprintf(_("Set maximum block cost (default: %d)"),DEFAULT_BLOCK_MAX_COST));
strUsage+=HelpMessageOpt("-blockminsize=<n>",strprintf(_("Set minimum block size in bytes (default: %u)"),DEFAULT_BLOCK_MIN_SIZE));
strUsage+=HelpMessageOpt("-blockminsize=<n>",strprintf(_("Set minimum block size in bytes (default: %u)"),DEFAULT_BLOCK_MIN_SIZE));
strUsage+=HelpMessageOpt("-blockmaxsize=<n>",strprintf(_("Set maximum block size in bytes (default: %d)"),DEFAULT_BLOCK_MAX_SIZE));
strUsage+=HelpMessageOpt("-blockmaxsize=<n>",strprintf(_("Set maximum block size in bytes (default: %d)"),DEFAULT_BLOCK_MAX_SIZE));
strUsage+=HelpMessageOpt("-blockprioritysize=<n>",strprintf(_("Set maximum size of high-priority/low-fee transactions in bytes (default: %d)"),DEFAULT_BLOCK_PRIORITY_SIZE));
strUsage+=HelpMessageOpt("-blockprioritysize=<n>",strprintf(_("Set maximum size of high-priority/low-fee transactions in bytes (default: %d)"),DEFAULT_BLOCK_PRIORITY_SIZE));
" n (numeric) transactions before this one (by 1-based index in 'transactions' list) that must be present in the final block if this one is\n"
" n (numeric) transactions before this one (by 1-based index in 'transactions' list) that must be present in the final block if this one is\n"
" ,...\n"
" ,...\n"
" ],\n"
" ],\n"
"\"fee\": n, (numeric) difference in value between transaction inputs and outputs (in Satoshis); for coinbase transactions, this is a negative Number of the total collected block fees (ie, not including the block subsidy); if key is not present, fee is unknown and clients MUST NOT assume there isn't one\n"
"\"fee\": n, (numeric) difference in value between transaction inputs and outputs (in Satoshis); for coinbase transactions, this is a negative Number of the total collected block fees (ie, not including the block subsidy); if key is not present, fee is unknown and clients MUST NOT assume there isn't one\n"
"\"sigops\" : n, (numeric) total number of SigOps, as counted for purposes of block limits; if key is not present, sigop count is unknown and clients MUST NOT assume there aren't any\n"
"\"sigops\" : n, (numeric) total SigOps cost, as counted for purposes of block limits; if key is not present, sigop cost is unknown and clients MUST NOT assume it is zero\n"
"\"cost\" : n, (numeric) total transaction size cost, as counted for purposes of block limits\n"
"\"required\" : true|false (boolean) if provided and true, this transaction must be in the final block\n"
"\"required\" : true|false (boolean) if provided and true, this transaction must be in the final block\n"
pool.TrimToSize(::GetSerializeSize(CTransaction(tx1),SER_NETWORK,PROTOCOL_VERSION));// mempool is limited to tx1's size in memory usage, so nothing fits
pool.TrimToSize(GetVirtualTransactionSize(tx1));// mempool is limited to tx1's size in memory usage, so nothing fits