| 45 | |
| 46 | |
| 47 | static void Base58Decode(benchmark::State& state) |
| 48 | { |
| 49 | const char* addr = "17VZNX1SN5NtKa8UQFxwQbFeFc3iqRYhem"; |
| 50 | std::vector<unsigned char> vch; |
| 51 | while (state.KeepRunning()) { |
| 52 | DecodeBase58(addr, vch); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | |
| 57 | BENCHMARK(Base58Encode, 470 * 1000); |
nothing calls this directly
no test coverage detected