drop ledger.get_transaction() in favor of just using ledger.db.get_transaction() directly
This commit is contained in:
parent
9c4dfa7f84
commit
3a264c1eec
1 changed files with 0 additions and 3 deletions
|
@ -133,9 +133,6 @@ class BaseLedger(metaclass=LedgerRegistry):
|
|||
def add_account(self, account: baseaccount.BaseAccount):
|
||||
self.accounts.append(account)
|
||||
|
||||
def get_transaction(self, txhash):
|
||||
return self.db.get_transaction(txhash)
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def get_private_key_for_address(self, address):
|
||||
match = yield self.db.get_address(address)
|
||||
|
|
Loading…
Reference in a new issue