diff options
author | edef <edef@unfathomable.blue> | 2022-05-03 16:04:38 +0000 |
---|---|---|
committer | edef <edef@unfathomable.blue> | 2022-05-03 16:06:36 +0000 |
commit | a052f814289d5f1f4751cc50e1d2aef879da43a8 (patch) | |
tree | 83e60669bed33a232e7b1fb5e41a59fe25e10bb5 /ripple/fossil | |
parent | 2625ed645c93b708342f9fcc25f2a30e635613c1 (diff) | |
download | unf-legacy-a052f814289d5f1f4751cc50e1d2aef879da43a8.tar.zst |
ripple/fossil: fix clippy nit
Change-Id: I2c9b2a15ac066ec2295d54665afd301f396efdc1
Diffstat (limited to 'ripple/fossil')
-rw-r--r-- | ripple/fossil/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripple/fossil/src/lib.rs b/ripple/fossil/src/lib.rs index ca474e3..004cf45 100644 --- a/ripple/fossil/src/lib.rs +++ b/ripple/fossil/src/lib.rs @@ -138,7 +138,7 @@ impl Store { let mut outboard = Vec::new(); let ident: blake3::Hash = { let mut encoder = bao::encode::Encoder::new_outboard(io::Cursor::new(&mut outboard)); - encoder.write_all(&data).unwrap(); + encoder.write_all(data).unwrap(); encoder.finalize().unwrap() }; |