-
Notifications
You must be signed in to change notification settings - Fork 37.7k
Remove references to CreateWalletFromFile #20285
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
Conversation
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.
Approach ACK 54ac7c8
bitcoin/test/sanitizer_suppressions/tsan
Line 35 in c5ec036
deadlock:wallet_tests::CreateWalletFromFile |
Concept ACK: thanks for removing old cruft, but please remove the entry from |
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers. ConflictsReviewers, this pull request conflicts with the following ones:
If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first. |
54ac7c8
to
64ffbba
Compare
Done. |
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.
ACK 64ffbba - All the references to CreateWalletFromFile
were removed, except the ones in the release notes.
Before:
[niklas:~/workspace/bitcoin] c5ec0367d* ± ag "CreateWalletFromFile" .
test/sanitizer_suppressions/tsan
35:deadlock:wallet_tests::CreateWalletFromFile
doc/release-notes/release-notes-0.19.0.1.md
491:- #16745 Translate all initErrors in CreateWalletFromFile (MarcoFalke)
495:- #16796 Fix segfault in CreateWalletFromFile (MarcoFalke)
src/wallet/test/wallet_tests.cpp
691://! Test CreateWalletFromFile function and its behavior handling potential race
709:BOOST_FIXTURE_TEST_CASE(CreateWalletFromFile, TestChain100Setup)
src/init.cpp
1148: // High fee check is done afterward in CWallet::CreateWalletFromFile()
After:
[niklas:~/workspace/bitcoin] createwalletfromfilenomore* ± ag "CreateWalletFromFile" .
doc/release-notes/release-notes-0.19.0.1.md
491:- #16745 Translate all initErrors in CreateWalletFromFile (MarcoFalke)
495:- #16796 Fix segfault in CreateWalletFromFile (MarcoFalke)
CWallet::CreateWalletFromFile() was removed in 8b5e729 but these references remain.
dc2c22e
to
c82336c
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.
ACK c82336c
c82336c Remove references to CreateWalletFromFile (fanquake) Pull request description: `CWallet::CreateWalletFromFile()` was removed in 8b5e729 but these references remain. ACKs for top commit: hebasto: ACK c82336c Tree-SHA512: 3dd50fe0cd5a60bbc96d265107d4739f3e08f943435f3772038963ac4be9e4a87a863412ac0d571226ea66d71550b17b52f01b9d46a6282d49feae1508fd682e
Summary: `CWallet::CreateWalletFromFile()` was removed in D10228 but these references remain. This is a backport of [[bitcoin/bitcoin#20285 | core#20285]] Test Plan: `grep -r CreateWalletFromFile` With TSAN: `ninja check check-functional` Reviewers: #bitcoin_abc, Fabien Reviewed By: #bitcoin_abc, Fabien Differential Revision: https://reviews.bitcoinabc.org/D10724
CWallet::CreateWalletFromFile()
was removed in 8b5e729 but these references remain.