-
Notifications
You must be signed in to change notification settings - Fork 992
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mismatch in initial block heights at genesis #648
Comments
Related: #377 We should look to remove |
Good catch! Looks like we should be setting our block height from the There's one place where |
Additionally, we should initialize |
thanks @james-chf for clearing this up in another discussion. There is no genesis block, The issue with |
@tzemanovic What still needs to be done here - just the block height type fix? |
the default value for |
The initial block height of the chain according to
request::InitChain
from tower ABCI is 1 (see code here), which does not match the initial block height of the chain in the namada protocol, which is 0.The initial block height of 1 from tower ABCI is used to determine when the next epoch begins right here, so possibly epoch 1 (the second epoch) starts a block later than intended.
The text was updated successfully, but these errors were encountered: