Do not shadow local variable

This commit is contained in:
Pavel Janík 2016-10-20 12:31:05 +02:00
parent f2d705629b
commit ff6639b0f5
1 changed files with 2 additions and 2 deletions

View File

@ -798,8 +798,8 @@ UniValue processImport(const UniValue& data) {
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Pubkey must be a hex string"); throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Pubkey must be a hex string");
} }
std::vector<unsigned char> data(ParseHex(strPubKey)); std::vector<unsigned char> vData(ParseHex(strPubKey));
CPubKey pubKey(data.begin(), data.end()); CPubKey pubKey(vData.begin(), vData.end());
if (!pubKey.IsFullyValid()) { if (!pubKey.IsFullyValid()) {
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Pubkey is not a valid public key"); throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Pubkey is not a valid public key");