diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-09-18 17:31:35 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-09-18 17:31:35 +0200 |
commit | b174527f1d7c9f352da3c849d62cc12ec1e0b92d (patch) | |
tree | 289160042cf83563bf572cfbfc3ac55bbf507dbc /tests/unit_tests/multisig.cpp | |
parent | Merge pull request #4299 (diff) | |
parent | api/wallet: properly disable key encryption (diff) | |
download | monero-b174527f1d7c9f352da3c849d62cc12ec1e0b92d.tar.xz |
Merge pull request #4302
ba8dd347 api/wallet: properly disable key encryption (stoffu)
Diffstat (limited to 'tests/unit_tests/multisig.cpp')
-rw-r--r-- | tests/unit_tests/multisig.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/multisig.cpp b/tests/unit_tests/multisig.cpp index eb453b960..83924c7af 100644 --- a/tests/unit_tests/multisig.cpp +++ b/tests/unit_tests/multisig.cpp @@ -61,7 +61,7 @@ static void make_wallet(unsigned int idx, tools::wallet2 &wallet) try { - wallet.init(false, ""); + wallet.init(""); wallet.set_subaddress_lookahead(1, 1); wallet.generate("", "", spendkey, true, false); ASSERT_TRUE(test_addresses[idx].address == wallet.get_account().get_public_address_str(cryptonote::TESTNET)); |