base58: fix typo

This commit is contained in:
calciumbe 2024-12-23 20:34:36 +08:00
parent 35f1e8641f
commit bfac237287
No known key found for this signature in database
GPG Key ID: 92A6C8D87253B95C
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ mod benches {
#[bench]
pub fn bench_encode_check_xpub(bh: &mut Bencher) {
let data: alloc::vec::Vec<_> = (0u8..78).collect(); // lenght of xpub
let data: alloc::vec::Vec<_> = (0u8..78).collect(); // length of xpub
bh.iter(|| {
let r = super::encode_check(&data);