We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d792e47 commit fa865efCopy full SHA for fa865ef
test/functional/wallet_listreceivedby.py
@@ -6,10 +6,13 @@
6
from decimal import Decimal
7
8
from test_framework.test_framework import BitcoinTestFramework
9
-from test_framework.util import (assert_array_result,
10
- assert_equal,
11
- assert_raises_rpc_error,
12
- )
+from test_framework.util import (
+ assert_array_result,
+ assert_equal,
+ assert_raises_rpc_error,
13
+ sync_blocks,
14
+)
15
+
16
17
class ReceivedByTest(BitcoinTestFramework):
18
def set_test_params(self):
@@ -18,6 +21,7 @@ def set_test_params(self):
21
def run_test(self):
19
22
# Generate block to get out of IBD
20
23
self.nodes[0].generate(1)
24
+ sync_blocks(self.nodes)
25
26
self.log.info("listreceivedbyaddress Test")
27
0 commit comments