Noah Citron

Results 64 comments of Noah Citron

Looks like you have a formatting error. You can run `cargo fmt` on your code to resolve.

Sounds good! I'd just make sure to test this one out a bit when your working on it, since it is easy to make a mistake on deserializing some of...

Oh yeah I accidentally implemented this a while back while I was refactoring the config handling. Sorry for the confusion!

Yeah I agree this is a good idea. I've been thinking about working on a no_std compatible feature which would basically be this as well. I was thinking the interface...

Thanks for reporting. I'll try running on goerli for a while to see if we can reproduce. There might be some edge case that its running into and serializing something...

Can you please provide the full code example so I can help you debug?

Oh I see what is happening here. Helios only stores block data for blocks that start either after helios starts or within 64 blocks of the current block number (whichever...

Can you confirm that you can fetch a block for the block number of the transaction?

Hmm it seems I am able to fetch a receipt using this simple example: ```rust client.start().await?; client.wait_synced().await; let head_block_num = client.get_block_number().await?; let head_block = client.get_block_by_number(BlockTag::Number(head_block_num.as_u64()), false).await; let tx_hash = head_block.unwrap().unwrap().transactions.hashes()[0];...