Merge #9124: Use better name for local variable to prevent -Wshadow compiler warning

bf49f10 Use better name for local variable to prevent -Wshadow compiler warning (Pavel Janík)
This commit is contained in:
Wladimir J. van der Laan 2016-11-11 11:46:22 +01:00
commit 87ab49e4fe
No known key found for this signature in database
GPG key ID: 74810B012346C9A6

View file

@ -46,8 +46,8 @@ static void DeserializeAndCheckBlockTest(benchmark::State& state)
stream >> block;
assert(stream.Rewind(sizeof(block_bench::block413567)));
CValidationState state;
assert(CheckBlock(block, state, params));
CValidationState validationState;
assert(CheckBlock(block, validationState, params));
}
}