diff options
author | John Newbery <john@johnnewbery.com> | 2017-04-03 09:34:04 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2017-05-02 13:31:54 -0400 |
commit | c9cc76dcaad85aa9441f18d38298f27a0ffd852a (patch) | |
tree | 7f3a0bbb5ed9d64f4fe62a7e47abd2a8595a17eb /test/functional/listsinceblock.py | |
parent | 8f3e38477e30abd9dd0e24a4d612126117f7793c (diff) |
[tests] Remove is_network_split from funtional test cases
Diffstat (limited to 'test/functional/listsinceblock.py')
-rwxr-xr-x | test/functional/listsinceblock.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/functional/listsinceblock.py b/test/functional/listsinceblock.py index a75e66c8c4..f3d41e573e 100755 --- a/test/functional/listsinceblock.py +++ b/test/functional/listsinceblock.py @@ -43,7 +43,6 @@ class ListSinceBlockTest (BitcoinTestFramework): This test only checks that [tx0] is present. ''' - assert_equal(self.is_network_split, False) self.nodes[2].generate(101) self.sync_all() @@ -54,7 +53,6 @@ class ListSinceBlockTest (BitcoinTestFramework): # Split network into two self.split_network() - assert_equal(self.is_network_split, True) # send to nodes[0] from nodes[2] senttx = self.nodes[2].sendtoaddress(self.nodes[0].getnewaddress(), 1) @@ -64,7 +62,7 @@ class ListSinceBlockTest (BitcoinTestFramework): self.nodes[2].generate(7) self.log.info('lastblockhash=%s' % (lastblockhash)) - self.sync_all() + self.sync_all([self.nodes[:2], self.nodes[2:]]) self.join_network() |