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 66741dd commit 94c1cf5Copy full SHA for 94c1cf5
tests/test_coinmoves.py
@@ -37,11 +37,13 @@ def check_moves(moves, expected):
37
38
39
def check_channel_moves(node, expected):
40
+ wait_for(lambda: len(node.rpc.listchannelmoves()['channelmoves']) == len(expected))
41
check_moves(node.rpc.listchannelmoves()['channelmoves'], expected)
42
check_sql(node, "channelmoves", expected)
43
44
45
def check_chain_moves(node, expected):
46
+ wait_for(lambda: len(node.rpc.listchainmoves()['chainmoves']) == len(expected))
47
check_moves(node.rpc.listchainmoves()['chainmoves'], expected)
48
check_sql(node, "chainmoves", expected)
49
# Check extra_tags.
0 commit comments