| 41 | |
| 42 | |
| 43 | static void Base58Decode(benchmark::Bench& bench) |
| 44 | { |
| 45 | const char* addr = "17VZNX1SN5NtKa8UQFxwQbFeFc3iqRYhem"; |
| 46 | std::vector<unsigned char> vch; |
| 47 | bench.batch(strlen(addr)).unit("byte").run([&] { |
| 48 | (void) DecodeBase58(addr, vch, 64); |
| 49 | }); |
| 50 | } |
| 51 | |
| 52 | |
| 53 | BENCHMARK(Base58Encode); |
nothing calls this directly
no test coverage detected