From fa39f674aed8f2dc5a9bde6a84b0ec52fc49e695 Mon Sep 17 00:00:00 2001 From: practicalswift Date: Tue, 17 Jul 2018 10:11:57 +0200 Subject: [PATCH] bench: Remove unused variable --- src/bench/bech32.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bench/bech32.cpp b/src/bench/bech32.cpp index ff655bded..8b80e1739 100644 --- a/src/bench/bech32.cpp +++ b/src/bench/bech32.cpp @@ -27,7 +27,6 @@ static void Bech32Encode(benchmark::State& state) static void Bech32Decode(benchmark::State& state) { std::string addr = "bc1qkallence7tjawwvy0dwt4twc62qjgaw8f4vlhyd006d99f09"; - std::vector vch; while (state.KeepRunning()) { bech32::Decode(addr); }