chore: fix fmt from master

This commit is contained in:
Georgios Konstantopoulos 2023-03-14 23:13:35 -07:00
parent 8c5c248491
commit 516dfcfd2a
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ where
// no more pages to load, and everything is consumed // no more pages to load, and everything is consumed
// can safely assume this will always be set in this state // can safely assume this will always be set in this state
if from_block > self.last_block.unwrap() { if from_block > self.last_block.unwrap() {
return Poll::Ready(None); return Poll::Ready(None)
} }
// load next page // load next page
self.from_block = Some(to_block + 1); self.from_block = Some(to_block + 1);