Closed pause125 closed 2 months ago
This bug is caused at here.
Only main and test network has genesis binary file, the dev and local genesis will be built from default RoochNetwork
which has empty sequencer address.
The sequencer is configured in the GenesisConfig, the local is an empty address, and the dev is a fixed address. When the local node starts, we update the genesis config and set the active address as the sequencer. Which part did not work?
The sequencer is configured in the GenesisConfig, the local is an empty address, and the dev is a fixed address. When the local node starts, we update the genesis config and set the active address as the sequencer. Which part did not work?
at line,a new default network config is used. The config which has set sequencer account is ignored.
Rooch version
rooch 0.6.8 (git commit c3f0893c86586ba431460e5b3e1d34685a0dc78d)
What did you do?
start server:
rooch server start -n local
. We can see info in the CLI output like this:The sequencer account is also my local actived account.
query onchain config object:
You can see the sequencer address is
0x0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8
, which is not matched with my actived account.What did you see happen?
The sequencer address onchain is not matched with my local active account.
What did you expect to see?
The sequencer address should be my active account.