You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "usr/bin/pywallet", line 2260, in parse_wallet
d['lockTime'] = vds.read_uint64()
File "usr/bin/pywallet", line 2150, in read_uint64
def read_uint64(self): return self._read_num('<Q')
File "usr/bin/pywallet", line 2187, in _read_num
(i,) = struct.unpack_from(format, self.input, self.read_cursor)
OverflowError: Python int too large to convert to C long
ERROR parsing wallet.dat, type tx
key data: tx
key data in hex: [redacted]
value data in hex: [redacted]
This is being run in a docker containter created with the following docker file:
FROM ubuntu:18.04
RUN apt-get update && apt-get install -y build-essential python-dev python-twisted python-bsddb3 python-ecdsa
ADD https://raw.githubusercontent.com/jackjack-jj/pywallet/master/pywallet.py /usr/bin/pywallet
RUN chmod +x /usr/bin/pywallet
ENTRYPOINT ["/usr/bin/pywallet"]
Output:
This is being run in a docker containter created with the following docker file:
run with:
The text was updated successfully, but these errors were encountered: