bip158: Fix typo

This commit is contained in:
Tobin C. Harding 2024-08-05 07:38:33 +10:00
parent 8c0de95749
commit d9331794f1
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -400,7 +400,7 @@ impl<'a, W: Write> GcsFilterWriter<'a, W> {
// write number of elements as varint
let mut wrote = VarInt::from(mapped.len()).consensus_encode(self.writer)?;
// write out deltas of sorted values into a Golonb-Rice coded bit stream
// write out deltas of sorted values into a Golomb-Rice coded bit stream
let mut writer = BitStreamWriter::new(self.writer);
let mut last = 0;
for data in mapped {