Skip to content

Commit 217e921

Browse files
committed
Fix functional/mempool_accept.py
file
1 parent 6153481 commit 217e921

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/mempool_accept.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def run_test(self):
286286
_, pubkey = generate_keypair()
287287
tx.vout[0].scriptPubKey = keys_to_multisig_script([pubkey] * 3, k=2) # Some bare multisig script (2-of-3)
288288
self.check_mempool_result(
289-
result_expected=[{'txid': tx.rehash(), 'allowed': False, 'reject-reason': 'max-fee-exceeded'}],
289+
result_expected=[{'txid': tx.rehash(), 'allowed': False, 'reject-reason': 'bare-multisig'}],
290290
rawtxs=[tx.serialize().hex()],
291291
) # bare-multisig to max-fee-exceeded. However, should try to find how to get the fee down
292292
tx = tx_from_hex(raw_tx_reference)

0 commit comments

Comments
 (0)