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 c74d8d51b3..8e10862a37 100644
--- a/src/bench/bech32.cpp
+++ b/src/bench/bech32.cpp
@@ -19,7 +19,7 @@ static void Bech32Encode(benchmark::Bench& bench)
tmp.reserve(1 + 32 * 8 / 5);
ConvertBits<8, 5, true>([&](unsigned char c) { tmp.push_back(c); }, v.begin(), v.end());
bench.batch(v.size()).unit("byte").run([&] {
- bech32::Encode("bc", tmp);
+ bech32::Encode(bech32::Encoding::BECH32, "bc", tmp);
});
}