multiple readers for transaction_list
This commit is contained in:
parent
d1b330028c
commit
90602931d8
1 changed files with 1 additions and 1 deletions
|
@ -4089,7 +4089,7 @@ class Daemon(metaclass=JSONRPCServerType):
|
|||
self.ledger.get_transaction_history, wallet=wallet, accounts=wallet.accounts)
|
||||
transaction_count = partial(
|
||||
self.ledger.get_transaction_history_count, wallet=wallet, accounts=wallet.accounts)
|
||||
return paginate_rows(transactions, transaction_count, page, page_size)
|
||||
return paginate_rows(transactions, transaction_count, page, page_size, read_only=True)
|
||||
|
||||
@requires(WALLET_COMPONENT)
|
||||
def jsonrpc_transaction_show(self, txid):
|
||||
|
|
Loading…
Reference in a new issue