| 25 | |
| 26 | |
| 27 | static void Bech32Decode(benchmark::State& state) |
| 28 | { |
| 29 | std::string addr = "bc1qkallence7tjawwvy0dwt4twc62qjgaw8f4vlhyd006d99f09"; |
| 30 | while (state.KeepRunning()) { |
| 31 | bech32::Decode(addr); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | |
| 36 | BENCHMARK(Bech32Encode, 800 * 1000); |
nothing calls this directly
no test coverage detected