types: evidence cleanup

This commit is contained in:
Ethan Buchman
2017-11-19 22:18:43 +00:00
parent 4854c231e1
commit 3271634e7a
5 changed files with 24 additions and 88 deletions

View File

@@ -4,7 +4,7 @@ import (
abci "github.com/tendermint/abci/types"
)
// NOTE: all types in this file are considered UNSTABLE
// NOTE/XXX: all type definitions in this file are considered UNSTABLE
//------------------------------------------------------
// blockchain services types
@@ -73,6 +73,8 @@ type BlockStore interface {
//------------------------------------------------------
// state
// State defines the stateful interface used to verify evidence.
// UNSTABLE
type State interface {
VerifyEvidence(Evidence) (priority int, err error)
}