Skip to content

Commit bd9d67b

Browse files
committed
Don't test against min relay fee information in mining_prioritisetransaction.py
Same reasoning as in 55f89da
1 parent 25ad2f7 commit bd9d67b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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, 0 < 134 (code 66)", self.nodes[0].sendrawtransaction, tx_hex)
123+
assert_raises_rpc_error(-26, "min relay fee not met", 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)