We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21492c1 commit 5e4aa31Copy full SHA for 5e4aa31
3 files changed
test/mocks/Store.go test/mocks/store.gotest/mocks/Store.go renamed to test/mocks/store.go
types/hashing.go
@@ -22,7 +22,7 @@ func SetHeaderHasher(hasher HeaderHasher) {
22
func (h *Header) Hash() Hash {
23
hash, err := DefaultHeaderHasher(h)
24
if err != nil {
25
- // For backward compatibility, return nil on error
+ // For backward compatibility with go-header
26
// In the future, this method signature could be changed to return (Hash, error)
27
return nil
28
}
types/state.go
@@ -12,7 +12,7 @@ import (
12
// The Consensus.App version will be set during the Handshake, once
13
// we hear from the app what protocol version it is running.
14
var InitStateVersion = Version{
15
- Block: 11,
+ Block: 11, // this is needed for IBC compatibility
16
App: 0,
17
18
0 commit comments