forked from LBRYCommunity/lbry-sdk
fix for get_transaction
This commit is contained in:
parent
b0bc06ae00
commit
29c0e3f15f
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ class BaseLedger(metaclass=LedgerRegistry):
|
|||
|
||||
@defer.inlineCallbacks
|
||||
def get_transaction(self, txhash):
|
||||
raw, _, _ = yield self.db.get_transaction(txhash)
|
||||
raw, _, _, _ = yield self.db.get_transaction(txhash)
|
||||
if raw is not None:
|
||||
return self.transaction_class(raw)
|
||||
|
||||
|
|
Loading…
Reference in a new issue