mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 14:52:17 +00:00
20 lines
316 B
Go
20 lines
316 B
Go
package state
|
|
|
|
import (
|
|
. "github.com/tendermint/tendermint/blocks"
|
|
)
|
|
|
|
// XXX ugh, bad name.
|
|
type StateStore struct {
|
|
}
|
|
|
|
func (ss *StateStore) StageBlock(block *Block) error {
|
|
// XXX implement staging.
|
|
return nil
|
|
}
|
|
|
|
func (ss *StateStore) CommitBlock(block *Block) error {
|
|
// XXX implement staging.
|
|
return nil
|
|
}
|