-
Notifications
You must be signed in to change notification settings - Fork 219
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
fix: improve key scanning #6374
fix: improve key scanning #6374
Conversation
Test Results (CI) 3 files 120 suites 38m 22s ⏱️ Results for commit 3315ac6. ♻️ This comment has been updated with latest results. |
Test Results (Integration tests) 2 files 1 errors 9 suites 25m 54s ⏱️ For more details on these parsing errors and failures, see this check. Results for commit 3315ac6. ♻️ This comment has been updated with latest results. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice. Could you see any improvement with this PR? Some comments below.
base_layer/wallet/src/output_manager_service/recovery/standard_outputs_recoverer.rs
Show resolved
Hide resolved
base_layer/wallet/src/output_manager_service/recovery/standard_outputs_recoverer.rs
Outdated
Show resolved
Hide resolved
@@ -265,37 +274,26 @@ where | |||
/// seen so far. | |||
async fn update_outputs_script_private_key_and_update_key_manager_index( | |||
&mut self, | |||
output: &mut WalletOutput, | |||
output: &WalletOutput, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch; the wallet output already has the correct info.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this function is anyway adding in the wrong info
e7579d9
to
1e935d7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK
Description
Improves utxo scanning with various fixes
Motivation and Context
Scanning for new outputs on the blockchain can be very slow.
How Has This Been Tested?
Manual