Skip to content

Commit 34dd1a6

Browse files
committed
Merge #13032: Output values for "min relay fee not met" error
1accfbc Output values for "min relay fee not met" error (Kristaps Kaupe) Pull request description: It is already done this way for "mempool min fee not met" error. Tree-SHA512: 829db78ecc066cf93b8e93ff1aeb4e7b98883cf45f341d5be6e6b4dff4135f3f54fa49b3a6f12eb43f676a9ba54f981143c9887f786881e584370434a9566cfd
2 parents 896a9d0 + 1accfbc commit 34dd1a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/validation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ static bool AcceptToMemoryPoolWorker(const CChainParams& chainparams, CTxMemPool
729729

730730
// No transactions are allowed below minRelayTxFee except from disconnected blocks
731731
if (!bypass_limits && nModifiedFees < ::minRelayTxFee.GetFee(nSize)) {
732-
return state.DoS(0, false, REJECT_INSUFFICIENTFEE, "min relay fee not met");
732+
return state.DoS(0, false, REJECT_INSUFFICIENTFEE, "min relay fee not met", false, strprintf("%d < %d", nModifiedFees, ::minRelayTxFee.GetFee(nSize)));
733733
}
734734

735735
if (nAbsurdFee && nFees > nAbsurdFee)

test/functional/mining_prioritisetransaction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def run_test(self):
120120
tx_id = self.nodes[0].decoderawtransaction(tx_hex)["txid"]
121121

122122
# This will raise an exception due to min relay fee not being met
123-
assert_raises_rpc_error(-26, "min relay fee not met (code 66)", self.nodes[0].sendrawtransaction, tx_hex)
123+
assert_raises_rpc_error(-26, "min relay fee not met, 0 < 134 (code 66)", self.nodes[0].sendrawtransaction, tx_hex)
124124
assert(tx_id not in self.nodes[0].getrawmempool())
125125

126126
# This is a less than 1000-byte transaction, so just set the fee

0 commit comments

Comments
 (0)