Skip to content

Commit

Permalink
Add a missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
teor2345 committed Jul 29, 2022
1 parent 9c33179 commit d407b90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zcash_proofs/src/downloadreader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ impl From<minreq::ResponseLazy> for ResponseLazyReader {

impl io::Read for ResponseLazyReader {
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
use ResponseLazyReader::{Request, Response};
use ResponseLazyReader::{Complete, Request, Response};

// Zero-sized buffer. This should never happen.
if buf.is_empty() {
Expand Down

0 comments on commit d407b90

Please sign in to comment.