Remove BeginBlock

This commit is contained in:
Jae Kwon
2016-03-06 18:02:29 -08:00
parent 3adb579cf1
commit 18d0da4ea3
3 changed files with 4 additions and 21 deletions

View File

@ -20,6 +20,5 @@ type AppConn interface {
FlushSync() error
CommitSync() (hash []byte, log string, err error)
InitChainSync(validators []*tmsp.Validator) (err error)
BeginBlockSync(height uint64) (err error)
EndBlockSync() (changedValidators []*tmsp.Validator, err error)
EndBlockSync(height uint64) (changedValidators []*tmsp.Validator, err error)
}