Author

Topic: Recovered wasabi wallet in electrum missing transaction (Read 177 times)

newbie
Activity: 6
Merit: 7

Problem solved

for i in range(0, 100): wallet.create_new_address(True)

this did the trick!! thanks alot guys!!
HCP
legendary
Activity: 2086
Merit: 4318
It would appear that you may need to add a lot more than 10 to find your "missing" address... from the Wasabi docs: https://docs.wasabiwallet.io/FAQ/FAQ-UseWasabi.html#what-derivation-paths-does-wasabi-use
WHAT DERIVATION PATHS DOES WASABI USE?
Wasabi follows BIP 84: Derivation scheme for P2WPKH Based Accounts, so the main path is m/84'/0'/0'. On TestNet and RegTest Wasabi uses m/84'/0'/0', and not the standard m/84'/1'/0'. Due to the CoinJoin implementation, the key depth can be rather large, thus when recovering the gap limit should be elevated to at least 100.


If o_e_l_e_o's suggestion didn't work... try:
Code:
for i in range(0, 100): wallet.create_new_address(True)

If that still doesn't work, then you might also want to try (in case they're using receive addresses as change addresses):
Code:
for i in range(0, 100): wallet.create_new_address(False)
legendary
Activity: 2268
Merit: 18697
Check the colored circle at the bottom right of your Electrum window - is it green? Have you made a lot of transactions from this particular wallet?

The first two possibilities which occur are either that Electrum is not connecting and syncing properly, or that the missing change is on an address above your gap limit. Electrum by default generates 10 change addresses. It should automatically scan ahead from the last used change address, but perhaps in your case it isn't for some reason. Try generating some more change addresses and seeing if your change shows up.

Enter the following code in the console tab to generate 10 more change addresses:

Code:
for i in range(0, 10): wallet.create_new_address(True)
newbie
Activity: 6
Merit: 7

Bitcoin Client Software and Version Number:      wasabi wallet v 1.1.11.1 / electrum (4.0.2)

Operating System:                                               ubuntu 18.04 64bit
System Hardware Specs:                                    AMD® A4-5100 apu with radeon(tm) hd graphics × 4, 3,3 GiB, Gnome 3.28.2



Description of Problem:                                       All the past transactions are listed apart from one .... so the balance in electrum is not the same as in wasabi!
                                                                            The utxo that is missing in electrum is change from a transaction i made in wasabi before





Any Related Addresses:                                 
Any Related Transaction IDs:                         be32abe9a803e8f42956a9631d32fb909e0f7c8b42f575526258568896f8b933 (id of missing utxo) 
                       
Log Files from the Bitcoin Client:                   


Has anybody got an idea on whats going on?
Jump to: