mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
wallet_rpc_server: do not use RPC data if the call failed
Found by codacy.com
This commit is contained in:
parent
1a0733e534
commit
aee7a4e364
1 changed files with 2 additions and 1 deletions
|
@ -2891,7 +2891,8 @@ namespace tools
|
|||
cryptonote::COMMAND_RPC_GET_HEIGHT::response hres;
|
||||
hres.height = 0;
|
||||
bool r = wal->invoke_http_json("/getheight", hreq, hres);
|
||||
wal->set_refresh_from_block_height(hres.height);
|
||||
if (r)
|
||||
wal->set_refresh_from_block_height(hres.height);
|
||||
crypto::secret_key dummy_key;
|
||||
try {
|
||||
wal->generate(wallet_file, req.password, dummy_key, false, false);
|
||||
|
|
Loading…
Reference in a new issue