Any other ideas?
I tried it with the current master build from GitHub (
source) and it also result with the same error, seems like a bug.
Here's the log:
Traceback (most recent call last):
-snip-
return lambda *args, **kwargs: f(method,
Python310\electrum-4.4.4\electrum\commands.py", line 192, in _run
result = fut.result()
Python310\lib\concurrent\futures\_base.py", line 446, in result
return self.__get_result()
Python310\lib\concurrent\futures\_base.py", line 391, in __get_result
raise self._exception
Python310\electrum-4.4.4\electrum\commands.py", line 155, in func_wrapper
return await func(*args, **kwargs)
Python310\electrum-4.4.4\electrum\commands.py", line 787, in bumpfee
tx.add_info_from_wallet(wallet)
Python310\electrum-4.4.4\electrum\transaction.py", line 989, in add_info_from_wallet
for txin in self.inputs():
Python310\electrum-4.4.4\electrum\transaction.py", line 781, in inputs
self.deserialize()
Python310\electrum-4.4.4\electrum\transaction.py", line 808, in deserialize
txins = [parse_input(vds) for i in range(n_vin)]
Python310\electrum-4.4.4\electrum\transaction.py", line 808, in
txins = [parse_input(vds) for i in range(n_vin)]
Python310\electrum-4.4.4\electrum\transaction.py", line 692, in parse_input
prevout_hash = vds.read_bytes(32)[::-1]
Python310\electrum-4.4.4\electrum\transaction.py", line 454, in read_bytes
raise SerializationError('attempt to read past end of buffer')
electrum.transaction.SerializationError: attempt to read past end of buffer
I saw that you just made a new issue in GitHub (
seconds ago) regarding this issue:
link