We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The Tendermint config was modified to use the time type instead of millisecond ints.
time
That means that:
cosmos-sdk/server/util.go
Line 95 in a4af659
Now sets the commit timeout to 5 microseconds instead of 5 seconds.
it should be
conf.Consensus.TimeoutCommit = 5 * time.Second
The text was updated successfully, but these errors were encountered:
So TimeoutCommit was changed to time.Duration (which is based on nanoseconds)? Good catch!
TimeoutCommit
time.Duration
Sorry, something went wrong.
No branches or pull requests
The Tendermint config was modified to use the
time
type instead of millisecond ints.That means that:
cosmos-sdk/server/util.go
Line 95 in a4af659
Now sets the commit timeout to 5 microseconds instead of 5 seconds.
it should be
For Admin Use
The text was updated successfully, but these errors were encountered: