forked from LBRYCommunity/lbry-sdk
fix _get_transaction
This commit is contained in:
parent
c1a5806bc0
commit
f515583ec4
2 changed files with 4 additions and 1 deletions
|
@ -23,7 +23,7 @@ at anytime.
|
|||
* Fixed jsonrpc_reflect()
|
||||
* Fixed api help return
|
||||
* Fixed API command descriptor_get
|
||||
*
|
||||
* Fixed API command transaction_show
|
||||
*
|
||||
*
|
||||
|
||||
|
|
|
@ -1004,6 +1004,9 @@ class LBRYumWallet(Wallet):
|
|||
header = self.network.blockchain.read_header(height)
|
||||
return defer.succeed(self.network.blockchain.hash_header(header))
|
||||
|
||||
def _get_transaction(self, txid):
|
||||
return self._run_cmd_as_defer_to_thread("gettransaction", txid)
|
||||
|
||||
def get_name_claims(self):
|
||||
return self._run_cmd_as_defer_succeed('getnameclaims')
|
||||
|
||||
|
|
Loading…
Reference in a new issue