ZENODE

Results 20 comments of ZENODE

> Just be careful with the ante handlers, because `MsgEthereumTx` relies on many logics executed in ante handler, so it can't be executed with authz, which don't run the ante...

> > > Just be careful with the ante handlers, because `MsgEthereumTx` relies on many logics executed in ante handler, so it can't be executed with authz, which don't run...

> > > > > Just be careful with the ante handlers, because `MsgEthereumTx` relies on many logics executed in ante handler, so it can't be executed with authz, which...

> > > > > > > Just be careful with the ante handlers, because `MsgEthereumTx` relies on many logics executed in ante handler, so it can't be executed with...

@yihuang Does it look okay now? https://github.com/zenodeapp/ethermint/tree/reenable-authz-messages For quick overview, these are the 3 commits (The last commit was for rectifying a mistake of mine for removing the Blacklist option....

I am currently trying to see where exactly the problem could lie. I'm no Golang developer. Though trying to debug this with some understanding of programming. See the `verifyUpdates` function...

> may have something to do with decimal places. Doing `genesisd query tendermint-validator-set` gives: ``` block_height: "6751391" total: "44" validators: - address: genesisvalcons1e92m950nsa9qnnp3qckj700xsqeg2hqsgylwzr proposer_priority: "-10232024" pub_key: type: tendermint/PubKeyEd25519 value: aK2K0A4Hr/UqZpeS4GNrQJjsWprL/0ekp8HYMWOc9GU=...

Only places where I see values that have decimals or large values and are related to validators are in keys "delegator_shares" "shares" and "tokens" in our genesis.json state. example: "shares":"10950000000000000000.000000000000000000"...

@yihuang Okay, so we haven't tested this out yet, but it's highly likely that this was causing the issue. We never changed the `DefaultPowerReduction` inside the `app.go` file. As our...

For those who need some more info concerning this issue (this file in the cosmos-sdk gave some more insight to this): https://github.com/cosmos/cosmos-sdk/blob/v0.46.15/x/staking/keeper/val_state_change.go `totalPower = totalPower.Add(sdk.NewInt(newPower))` --calculates the totalPower. `newPower :=...