multiple readers for transaction_list

This commit is contained in:
Jack Robison 2020-02-20 22:12:04 -05:00
parent d1b330028c
commit 90602931d8
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -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):