bench: Remove unused variable

This commit is contained in:
practicalswift 2018-07-17 10:11:57 +02:00
parent 0568dcd67d
commit fa39f674ae
1 changed files with 0 additions and 1 deletions

View File

@ -27,7 +27,6 @@ static void Bech32Encode(benchmark::State& state)
static void Bech32Decode(benchmark::State& state) static void Bech32Decode(benchmark::State& state)
{ {
std::string addr = "bc1qkallence7tjawwvy0dwt4twc62qjgaw8f4vlhyd006d99f09"; std::string addr = "bc1qkallence7tjawwvy0dwt4twc62qjgaw8f4vlhyd006d99f09";
std::vector<unsigned char> vch;
while (state.KeepRunning()) { while (state.KeepRunning()) {
bech32::Decode(addr); bech32::Decode(addr);
} }