mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-18 14:10:44 +02:00
tests: Explicitly ignore the return value of DecodeBase58(...)
This commit is contained in:
parent
145fe95ec7
commit
579497e77a
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user