mirror of
https://github.com/monero-project/monero.git
synced 2026-01-27 23:35:21 -08:00
api/wallet: properly disable key encryption
This commit is contained in:
@@ -91,8 +91,8 @@ static bool generate_multisig(uint32_t threshold, uint32_t total, const std::str
|
||||
for (size_t n = 0; n < total; ++n)
|
||||
{
|
||||
std::string name = basename + "-" + std::to_string(n + 1);
|
||||
wallets[n].reset(new tools::wallet2(nettype));
|
||||
wallets[n]->init(false, "");
|
||||
wallets[n].reset(new tools::wallet2(nettype, 1, false));
|
||||
wallets[n]->init("");
|
||||
wallets[n]->generate(name, pwd_container->password(), rct::rct2sk(rct::skGen()), false, false, create_address_file);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user