tests: Explicitly ignore the return value of DecodeBase58(...)

This commit is contained in:
practicalswift 2018-08-02 16:53:10 +02:00
parent 145fe95ec7
commit 579497e77a

View file

@ -49,7 +49,7 @@ static void Base58Decode(benchmark::State& state)
const char* addr = "17VZNX1SN5NtKa8UQFxwQbFeFc3iqRYhem";
std::vector<unsigned char> vch;
while (state.KeepRunning()) {
DecodeBase58(addr, vch);
(void) DecodeBase58(addr, vch);
}
}