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
bwt currently constructs the electrum spv proofs for transactions using the list of txids in the confirming block (retrieved via getblock with verbose=1), which is a rather large list that needs to be fetched separately for every transaction.
This could be improved by converting the bitcoind merkleblock spv proof into the format expected by electrum, which is implemented by EPS here.
Ideally though, users should probably just configure electrum with --skipmerklecheck and bwt with --electrum-skip-merkle, as the spv proofs don't really add much in the context of a trusted self-hosted full node setup.
The text was updated successfully, but these errors were encountered:
bwt currently constructs the electrum spv proofs for transactions using the list of txids in the confirming block (retrieved via
getblock
withverbose=1
), which is a rather large list that needs to be fetched separately for every transaction.This could be improved by converting the bitcoind merkleblock spv proof into the format expected by electrum, which is implemented by EPS here.
Ideally though, users should probably just configure electrum with
--skipmerklecheck
and bwt with--electrum-skip-merkle
, as the spv proofs don't really add much in the context of a trusted self-hosted full node setup.The text was updated successfully, but these errors were encountered: