Revert "don't change for now"

This reverts commit 8ad2d20f43.
This commit is contained in:
Bryan Stitt 2023-11-01 10:33:00 -07:00
parent 4a88eb4e46
commit 75de83b49b

View File

@ -187,13 +187,12 @@ pub async fn clean_block_number<'a>(
} }
}; };
// TODO: this scares me. we need it, so bring it back soon. but for now i think its breaking things // if we changed "latest" to an actual block, update the params to match
// // if we changed "latest" to an actual block, update the params to match // TODO: should we do hash or number? some functions work with either, but others need a number :cry:
// // TODO: should we do hash or number? some functions work with either, but others need a number :cry: if change {
// if change { trace!(old=%x, new=%block.num(), "changing block number");
// trace!(old=%x, new=%block.num(), "changing block number"); *x = json!(block.num());
// *x = json!(block.num()); }
// }
Ok(block) Ok(block)
} }