Skip to content

Commit 74d55d5

Browse files
committed
force upgradebls
1 parent 3389bd8 commit 74d55d5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/wallet/init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void WalletInit::AddWalletOptions() const {
5454
false, OptionsCategory::WALLET);
5555
gArgs.AddArg("-upgradebls",
5656
"Upgrade wallet to use BLS Keys/Signatures for key generation in future)",
57-
false, OptionsCategory::WALLET);
57+
true, OptionsCategory::WALLET);
5858
gArgs.AddArg("-keypool=<n>",
5959
strprintf("Set key pool size to <n> (default: %u)",
6060
DEFAULT_KEYPOOL_SIZE),

src/wallet/wallet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5176,7 +5176,7 @@ CWallet::CreateWalletFromFile(const CChainParams &chainParams,
51765176
}
51775177

51785178
// Can happen on any run - do after loading WalletFlag from DB file & after potentially setting as Legacy
5179-
if (gArgs.GetBoolArg("-upgradebls",false)) {
5179+
if (gArgs.GetBoolArg("-upgradebls",true)) {
51805180
walletInstance->SetWalletBLS();
51815181
}
51825182

0 commit comments

Comments
 (0)