aboutsummaryrefslogtreecommitdiff
path: root/src/bench/bech32.cpp
diff options
context:
space:
mode:
authorpracticalswift <[email protected]>2018-07-17 10:11:57 +0200
committerpracticalswift <[email protected]>2018-07-17 10:11:57 +0200
commitfa39f674aed8f2dc5a9bde6a84b0ec52fc49e695 (patch)
treeca161ecf04308d7e7d6300ed3ff9409dedd7d13f /src/bench/bech32.cpp
parentMerge #13679: Initialize m_next_send_inv_to_incoming (diff)
downloaddiscoin-fa39f674aed8f2dc5a9bde6a84b0ec52fc49e695.tar.xz
discoin-fa39f674aed8f2dc5a9bde6a84b0ec52fc49e695.zip
bench: Remove unused variable
Diffstat (limited to 'src/bench/bech32.cpp')
-rw-r--r--src/bench/bech32.cpp1
1 files changed, 0 insertions, 1 deletions
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<unsigned char> vch;
while (state.KeepRunning()) {
bech32::Decode(addr);
}