Browse Source

Fix missing qualifier

master
Neil Booth 8 years ago
parent
commit
fa30c5529b
  1. 2
      README.rst
  2. 2
      server/protocol.py

2
README.rst

@ -84,7 +84,7 @@ I believe all of the following play a part::
- aggressive caching and batching of DB writes
- more compact and efficient representation of UTXOs, address index,
and history. Electrum-Server stores full transaction hash and
and history. Electrum Server stores full transaction hash and
height for each UTXO, and does the same in its pruned history. In
contrast ElectrumX just stores the transaction number in the linear
history of transactions. For at least another 5 years this

2
server/protocol.py

@ -492,7 +492,7 @@ class Session(JSONRPC):
try:
return await getattr(self.daemon, method)(*args)
except DaemonError as e:
raise RPCError('daemon error: {}'.format(e))
raise self.RPCError('daemon error: {}'.format(e))
def tx_hash_from_param(self, param):
'''Raise an RPCError if the parameter is not a valid transaction

Loading…
Cancel
Save