Skip to content

Commit

Permalink
change do-while condition to true (to be squashed)
Browse files Browse the repository at this point in the history
Co-authored-by: div72 <[email protected]>
  • Loading branch information
jamescowens and div72 authored Sep 27, 2021
1 parent 544c05b commit e6397af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rpc/client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ UniValue CallRPC(const string& strMethod, const UniValue& params)
} else {
throw runtime_error("couldn't connect to server");
}
} while (fWait);
} while (true);

// HTTP basic authentication
string strUserPass64 = EncodeBase64(gArgs.GetArg("-rpcuser", "dummy") + ":" + gArgs.GetArg("-rpcpassword", "dummy"));
Expand Down

0 comments on commit e6397af

Please sign in to comment.