From 9114a9794d5dceeccaf43ca2590c3e35a9a85fbd Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 27 Jul 2020 12:19:12 -0400 Subject: [PATCH] fix channel integration test --- lbry/testcase.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lbry/testcase.py b/lbry/testcase.py index 9a88d5374..11c1ecf24 100644 --- a/lbry/testcase.py +++ b/lbry/testcase.py @@ -516,6 +516,9 @@ class CommandTestCase(IntegrationTestCase): ledger = RegTestLedger(Config.with_same_dir(path).set( api=f'localhost:{self.daemon_port}', lbrycrd_dir=self.chain.ledger.conf.lbrycrd_dir, + lbrycrd_rpc_port=self.chain.ledger.conf.lbrycrd_rpc_port, + lbrycrd_peer_port=self.chain.ledger.conf.lbrycrd_peer_port, + lbrycrd_zmq_blocks=self.chain.ledger.conf.lbrycrd_zmq_blocks, spv_address_filters=False )) service = FullNode(ledger)