diff options
author | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2024-04-16 01:56:47 +0200 |
---|---|---|
committer | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2024-05-05 12:33:30 +0200 |
commit | 4f347140b1a31237597dd1821adcde8bd5761edc (patch) | |
tree | 0452c7befe088e99ac24c7218381a9f19ae8ad54 /test/functional/p2p_1p1c_network.py | |
parent | eb0bdbdd753bca97120247b921fd29d606fea6e9 (diff) |
test: refactor: move fill_mempool to new module mempool_util
This is needed to avoid circular dependencies in later commits.
Can be reviewed via `--color-moved=dimmed-zebra`.
Diffstat (limited to 'test/functional/p2p_1p1c_network.py')
-rwxr-xr-x | test/functional/p2p_1p1c_network.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/functional/p2p_1p1c_network.py b/test/functional/p2p_1p1c_network.py index e88c826962..57de90a91e 100755 --- a/test/functional/p2p_1p1c_network.py +++ b/test/functional/p2p_1p1c_network.py @@ -12,6 +12,9 @@ too-low-feerate transactions). The packages should be received and accepted by a from decimal import Decimal from math import ceil +from test_framework.mempool_util import ( + fill_mempool, +) from test_framework.messages import ( msg_tx, ) @@ -22,7 +25,6 @@ from test_framework.test_framework import BitcoinTestFramework from test_framework.util import ( assert_equal, assert_greater_than, - fill_mempool, ) from test_framework.wallet import ( MiniWallet, |