File: types.go

package info (click to toggle)
merkleeyes 0.0~git20170130.0.549dd01-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 128 kB
  • ctags: 48
  • sloc: sh: 23; makefile: 16
file content (10 lines) | stat: -rw-r--r-- 233 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
package types

import abci "github.com/tendermint/abci/types"

type MerkleEyser interface {
	GetSync(key []byte) abci.Result
	SetSync(key []byte, value []byte) abci.Result
	RemSync(key []byte) abci.Result
	CommitSync() abci.Result
}