JayT106

Results 92 comments of JayT106

> Do you have a more detailed breakdown of evm? working on it, The evmstore stores: 1: code, the key will be the prefix `01` + codehash (this part should...

> > 2: storage, the key will be the prefix 02 + eth account address + hash of something (trying to figure out) > > it's the storage slot number,...

> Another thing related is, in `v0.6.x` we had a minor issue that contract suicide don't really delete the code and storage, not sure how much impact does that have...

> https://github.com/cosmos/ibc-go/blob/release/v2.2.x/modules/light-clients/07-tendermint/types/update.go#L137 for the `consensusStates`, there's a pruning logic, but it only deletes at most one item at a time. we might need to check how many expired ones are...

> How can I check the recent running log when I start the service?? Can you see the log show up at the terminal? you can redirect it to a...

Hi @huahuayu, I think the `block on unbuffered channel` was designed for the indexer services in Tendermint, it guaranteed that every event will be processed to the indexer. If the...

> could be an error on tendermint @JayT106 is it possible that either `e.clientCtx.Client.Block(e.ctx, &height)` or `e.clientCtx.Client.TxSearch` return different value per nodes? First, the block data should be the same...

I tested it has been fixed in this PR. Not sure will it be backported to v0.34 https://github.com/tendermint/tendermint/issues/7312#issuecomment-978056789

The current dependency - Cosmos SDK v0.44.x is using Tendermint v0.34.14 doesn't support the priority mempool yet, the current mempool is FIFO. Therefore, require the upstream project to release v0.46.x...

If we update the gas price in the transaction, It will affect the txhash, right? So I guess what happens is the updated transaction will be executed first (if the...