uint64 height (Refs #911)

This commit is contained in:
Anton Kaliaev
2017-11-30 13:08:38 -06:00
committed by Ethan Buchman
parent b2489b4318
commit b3492356e6
64 changed files with 296 additions and 270 deletions

View File

@ -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
}
)