Enable clang-tidy bugprone-argument-comment and fix violations

This commit is contained in:
MarcoFalke
2021-09-06 17:47:12 +02:00
parent 92aad5303b
commit fa57fa1a2e
9 changed files with 14 additions and 12 deletions

View File

@@ -165,7 +165,7 @@ void UnloadWallets(WalletContext& context)
auto wallet = wallets.back();
wallets.pop_back();
std::vector<bilingual_str> warnings;
RemoveWallet(context, wallet, /* load_on_startup= */ std::nullopt, warnings);
RemoveWallet(context, wallet, /* load_on_start= */ std::nullopt, warnings);
UnloadWallet(std::move(wallet));
}
}