Skip to content

Commit

Permalink
test: added test to assert TX decode rpc error on submitpackage rpc
Browse files Browse the repository at this point in the history
  • Loading branch information
kevkevinpal committed Oct 27, 2024
1 parent ffe4261 commit d7fd766
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/functional/rpc_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,14 @@ def test_submit_child_with_parents(self, num_parents, partial_submit):
def test_submitpackage(self):
node = self.nodes[0]

self.log.info("Submitpackage only allows valid hex inputs")
valid_tx_list = self.wallet.create_self_transfer_chain(chain_length=2)
hex_list = [valid_tx_list[0]["hex"][:-1] + 'X', valid_tx_list[1]["hex"]]
txid_list = [valid_tx_list[0]["txid"], valid_tx_list[1]["txid"]]
assert_raises_rpc_error(-22, "TX decode failed:", node.submitpackage, hex_list)
assert txid_list[0] not in node.getrawmempool()
assert txid_list[1] not in node.getrawmempool()

self.log.info("Submitpackage valid packages with 1 child and some number of parents")
for num_parents in [1, 2, 24]:
self.test_submit_child_with_parents(num_parents, False)
Expand Down

0 comments on commit d7fd766

Please sign in to comment.