Merge #13682: bench: Remove unused variable

fa39f674ae bench: Remove unused variable (practicalswift)

Pull request description:

  Remove unused variable `vch`.

Tree-SHA512: 624d206d27453ec071d20ca52d7f9e142710ebe7529fc793beb98a61c6a74ad481f4433d14401b7761070746d99e0aa35dd67568a017b18617d6be88de6f3105
This commit is contained in:
MarcoFalke 2018-07-17 08:55:45 -04:00
commit f8a32a316b
No known key found for this signature in database
GPG key ID: D2EA4850E7528B25

View file

@ -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);
}