fixing get_value_for_name bug
This commit is contained in:
parent
552ed77882
commit
da366495b0
1 changed files with 2 additions and 1 deletions
|
@ -1024,7 +1024,8 @@ class LBRYumWallet(Wallet):
|
||||||
return d
|
return d
|
||||||
|
|
||||||
def _get_value_for_name(self, name):
|
def _get_value_for_name(self, name):
|
||||||
block_header = self.network.blockchain.read_header(self.network.get_local_height() - RECOMMENDED_CLAIMTRIE_HASH_CONFIRMS)
|
block_header = self.network.blockchain.read_header(
|
||||||
|
self.network.get_local_height() - RECOMMENDED_CLAIMTRIE_HASH_CONFIRMS + 1)
|
||||||
block_hash = self.network.blockchain.hash_header(block_header)
|
block_hash = self.network.blockchain.hash_header(block_header)
|
||||||
d = self._run_cmd_as_defer_to_thread('requestvalueforname', name, block_hash)
|
d = self._run_cmd_as_defer_to_thread('requestvalueforname', name, block_hash)
|
||||||
d.addCallback(lambda response: Commands._verify_proof(name, block_header['claim_trie_root'], response))
|
d.addCallback(lambda response: Commands._verify_proof(name, block_header['claim_trie_root'], response))
|
||||||
|
|
Loading…
Reference in a new issue