Julian Arce

Results 68 issues of Julian Arce

I added logs improvements from #add-more-logs-batcher branch for the new version of the batcher

in-review

I added this timeout logic to the wait for tx receipt ```rust match timeout(Duration::from_secs(60), pending_tx).await { Ok(Ok(Some(receipt))) => Ok(receipt), Ok(Ok(None)) => Err(anyhow::anyhow!("Transaction was mined but no receipt was returned")), Ok(Err(e))...