test: fix typo in mempool_ephemeral_dust

This commit is contained in:
epysqyli 2025-01-04 22:50:29 +01:00 committed by GitHub
parent 4036ee3f2b
commit 29bca9713d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -126,7 +126,7 @@ class EphemeralDustTest(BitcoinTestFramework):
assert_equal(len(self.nodes[0].getrawmempool()), 2) assert_equal(len(self.nodes[0].getrawmempool()), 2)
assert_mempool_contents(self, self.nodes[0], expected=[dusty_tx["tx"], sweep_tx["tx"]]) assert_mempool_contents(self, self.nodes[0], expected=[dusty_tx["tx"], sweep_tx["tx"]])
# Node restart; doesn't allow allow ephemeral transaction back in due to individual submission # Node restart; doesn't allow ephemeral transaction back in due to individual submission
# resulting in 0-fee. Supporting re-submission of CPFP packages on restart is desired but not # resulting in 0-fee. Supporting re-submission of CPFP packages on restart is desired but not
# yet implemented. # yet implemented.
self.restart_node(0) self.restart_node(0)