From 478dabad298399b86d2955bfabbca75fe90b2925 Mon Sep 17 00:00:00 2001 From: Adrian Gallagher Date: Mon, 21 Dec 2020 20:46:51 -0800 Subject: [PATCH] Litecoin: Make linter happy --- test/functional/p2p_segwit.py | 2 +- test/functional/rpc_dumptxoutset.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/p2p_segwit.py b/test/functional/p2p_segwit.py index 540bc9b1e..91d259a0a 100755 --- a/test/functional/p2p_segwit.py +++ b/test/functional/p2p_segwit.py @@ -557,7 +557,7 @@ class SegWitTest(BitcoinTestFramework): # empty witness)' (otherwise). # TODO: support multiple acceptable reject reasons. test_witness_block(self.nodes[0], self.test_node, block, accepted=False, with_witness=False) - + self.connect_nodes(0, 2) self.utxo.pop(0) diff --git a/test/functional/rpc_dumptxoutset.py b/test/functional/rpc_dumptxoutset.py index cb21a4119..74bc1a3c4 100755 --- a/test/functional/rpc_dumptxoutset.py +++ b/test/functional/rpc_dumptxoutset.py @@ -26,7 +26,7 @@ class DumptxoutsetTest(BitcoinTestFramework): FILENAME = 'txoutset.dat' out = node.dumptxoutset(FILENAME) expected_path = Path(node.datadir) / self.chain / FILENAME - + assert expected_path.is_file() assert_equal(out['coins_written'], 100)