mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-23 17:51:39 +00:00
uint64 height (Refs #911)
This commit is contained in:
committed by
Ethan Buchman
parent
b2489b4318
commit
b3492356e6
@ -9,22 +9,22 @@ type (
|
||||
ErrProxyAppConn error
|
||||
|
||||
ErrUnknownBlock struct {
|
||||
Height int
|
||||
Height uint64
|
||||
}
|
||||
|
||||
ErrBlockHashMismatch struct {
|
||||
CoreHash []byte
|
||||
AppHash []byte
|
||||
Height int
|
||||
Height uint64
|
||||
}
|
||||
|
||||
ErrAppBlockHeightTooHigh struct {
|
||||
CoreHeight int
|
||||
AppHeight int
|
||||
CoreHeight uint64
|
||||
AppHeight uint64
|
||||
}
|
||||
|
||||
ErrLastStateMismatch struct {
|
||||
Height int
|
||||
Height uint64
|
||||
Core []byte
|
||||
App []byte
|
||||
}
|
||||
@ -35,7 +35,7 @@ type (
|
||||
}
|
||||
|
||||
ErrNoValSetForHeight struct {
|
||||
Height int
|
||||
Height uint64
|
||||
}
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user