You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently for genesis message, we use a const GENESIS_SENDER as the sender.
This limits what we can do during genesis. For example we can't create vesting positions in the vesting contract, which only allows chain owner to do this, while GENESIS_SENDER isn't chain owner.
Currently for genesis message, we use a const
GENESIS_SENDER
as the sender.This limits what we can do during genesis. For example we can't create vesting positions in the vesting contract, which only allows chain owner to do this, while
GENESIS_SENDER
isn't chain owner.We should create the following struct:
Then,
GenesisState
will contain a list ofGenesisMessage
's instead ofMessage
's.We don't need to perform auth on the sender during genesis.
The text was updated successfully, but these errors were encountered: