Bitcoin Forum
April 25, 2024, 01:17:07 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Recovered wasabi wallet in electrum missing transaction  (Read 159 times)
benceslao20 (OP)
Newbie
*
Offline Offline

Activity: 6
Merit: 7


View Profile
July 11, 2020, 05:06:19 PM
Merited by o_e_l_e_o (2)
 #1


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?
1714051027
Hero Member
*
Offline Offline

Posts: 1714051027

View Profile Personal Message (Offline)

Ignore
1714051027
Reply with quote  #2

1714051027
Report to moderator
1714051027
Hero Member
*
Offline Offline

Posts: 1714051027

View Profile Personal Message (Offline)

Ignore
1714051027
Reply with quote  #2

1714051027
Report to moderator
Unlike traditional banking where clients have only a few account numbers, with Bitcoin people can create an unlimited number of accounts (addresses). This can be used to easily track payments, and it improves anonymity.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714051027
Hero Member
*
Offline Offline

Posts: 1714051027

View Profile Personal Message (Offline)

Ignore
1714051027
Reply with quote  #2

1714051027
Report to moderator
o_e_l_e_o
In memoriam
Legendary
*
Offline Offline

Activity: 2268
Merit: 18507


View Profile
July 11, 2020, 06:47:42 PM
 #2

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)
HCP
Legendary
*
Offline Offline

Activity: 2086
Merit: 4316

<insert witty quote here>


View Profile
July 11, 2020, 11:29:07 PM
Merited by ABCbits (2), o_e_l_e_o (2), nc50lc (1), igor72 (1)
 #3

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)

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
benceslao20 (OP)
Newbie
*
Offline Offline

Activity: 6
Merit: 7


View Profile
July 12, 2020, 08:41:51 AM
 #4


Problem solved

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

this did the trick!! thanks alot guys!!
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!