mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-23 01:41:31 +00:00
converting Binary struct model to native w/ global methods model
This commit is contained in:
19
state/store.go
Normal file
19
state/store.go
Normal file
@ -0,0 +1,19 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user