From 80e0fb76731d11f026ceba5263597c2be4c33e59 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 21 Apr 2022 12:45:42 +1000 Subject: [PATCH] Remove unnecessary 'as' statement We can just use `self`, no idea why the `self as io` is there. --- src/util/bip158.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/bip158.rs b/src/util/bip158.rs index 1dc67ca1..8886dfa9 100644 --- a/src/util/bip158.rs +++ b/src/util/bip158.rs @@ -47,7 +47,7 @@ use prelude::*; -use io::{self as io, Cursor}; +use io::{self, Cursor}; use core::fmt::{self, Display, Formatter}; use core::cmp::{self, Ordering};