We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@whitslack reported a 15 minute(!) startup time. Fortunately, he gave me a perf report, too:
-_start __libc_start_main 0x7ff0cb565f59 main | |--91.30%--resend_closing_transactions | | | --91.30%--drop_to_chain | | | --91.30%--sign_and_send_last | | | --91.29%--wallet_extract_owned_outputs | wallet_can_spend | | | |--47.81%--scriptpubkey_p2tr_derkey
Sure enough, we loop through every key checking. This is silly, and we need to do better.
The text was updated successfully, but these errors were encountered:
rustyrussell
Successfully merging a pull request may close this issue.
@whitslack reported a 15 minute(!) startup time. Fortunately, he gave me a perf report, too:
Sure enough, we loop through every key checking. This is silly, and we need to do better.
The text was updated successfully, but these errors were encountered: