From 749f72a8c58c683ad704ce50e1bc51ddbadb4776 Mon Sep 17 00:00:00 2001 From: Roy Lee Date: Thu, 11 Nov 2021 19:36:41 -0800 Subject: [PATCH] HACK: temporary hack to move things along --- lbry/wallet/orchstr8/node.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lbry/wallet/orchstr8/node.py b/lbry/wallet/orchstr8/node.py index 39a5add8d..191aa730d 100644 --- a/lbry/wallet/orchstr8/node.py +++ b/lbry/wallet/orchstr8/node.py @@ -481,7 +481,9 @@ class LBCWalletNode: @property def rpc_url(self): - return f'http://{self.rpcuser}:{self.rpcpassword}@{self.hostname}:{self.lbcwallet_rpcport}/' + # FIXME: somehow the hub/sdk doesn't learn the blocks through the Walet RPC port, why? + # return f'http://{self.rpcuser}:{self.rpcpassword}@{self.hostname}:{self.lbcwallet_rpcport}/' + return f'http://{self.rpcuser}:{self.rpcpassword}@{self.hostname}:{self.lbcd_rpcport}/' def is_expected_block(self, e: BlockHeightEvent): return self.block_expected == e.height