aboutsummaryrefslogtreecommitdiff
path: root/src/bench/bech32.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bench/bech32.cpp')
-rw-r--r--src/bench/bech32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bench/bech32.cpp b/src/bench/bech32.cpp
index f2fc3999fe..88a5fd9055 100644
--- a/src/bench/bech32.cpp
+++ b/src/bench/bech32.cpp
@@ -18,7 +18,7 @@ static void Bech32Encode(benchmark::State& state)
tmp.reserve(1 + 32 * 8 / 5);
ConvertBits<8, 5, true>([&](unsigned char c) { tmp.push_back(c); }, v.begin(), v.end());
while (state.KeepRunning()) {
- bech32::Encode("bc", tmp);
+ bech32::Encode(bech32::Encoding::BECH32, "bc", tmp);
}
}