rostrum 14.0.1

An efficient implementation of Electrum Server with token support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# Exceptions
#


class ElectrumErrorResponse(RuntimeError):
    response = None
    request = None

    def __init__(self, response, request):
        self.response = response
        self.request = request
        super().__init__(response, request)