-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wallet2 fails to save to disk if first created in-memory #8932
Comments
Which interface are you invoking to attempt to get it to save to the disk? Are you calling |
Yeah I'm calling |
lmao just found another issue with |
Because I was trying to move a wallet file from |
AND it doesn't save cache on when the file is different anyways?? |
Resolves monero-project#8932 and: 2. Not storing cache when new path is different from old in `store_to()` and 3. Detecting same path when new path contains entire string of old path in `store_to()` and 4. Changing your password / decrypting your keys (in this method or others) and providing a bad original password and getting no error and 5. Changing your password and storing to a new file
Resolves monero-project#8932 and: 2. Not storing cache when new path is different from old in `store_to()` and 3. Detecting same path when new path contains entire string of old path in `store_to()` and 4. Changing your password / decrypting your keys (in this method or others) and providing a bad original password and getting no error and 5. Changing your password and storing to a new file
If wallet2 is first created in-memory (i.e. with empty path
""
), then it will fail to save to disk, due to incorrect assumptions that the other files have already been created, based on this comment and the following logic: https://github.com/monero-project/monero/blob/master/src/wallet/wallet2.cpp#L6238This issue requests fixing wallet2 to correctly save to disk after being created in-memory with empty path.
The text was updated successfully, but these errors were encountered: