mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 04:12:36 -03:00
tests: Explicitly ignore the return value of DecodeBase58(...)
This commit is contained in:
parent
145fe95ec7
commit
579497e77a
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue