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
When trying to merge two electrum wallets together, the "assert len(transactions) == 1" in merge asserts.
For example let's just say you created a segwit wallet after happily using the old style wallet. Then you moved your bitcoin from the old wallet to the new segwit wallet. When entering both wallet csvs on the command line, the above assertion will assert on the transaction that transfers the funds from the old wallet to the new wallet.
Adding the below to the ElectrumParser seems to fix the problem:
When trying to merge two electrum wallets together, the "assert len(transactions) == 1" in merge asserts.
For example let's just say you created a segwit wallet after happily using the old style wallet. Then you moved your bitcoin from the old wallet to the new segwit wallet. When entering both wallet csvs on the command line, the above assertion will assert on the transaction that transfers the funds from the old wallet to the new wallet.
Adding the below to the ElectrumParser seems to fix the problem:
The text was updated successfully, but these errors were encountered: