mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 06:42:16 +00:00
19 lines
303 B
Go
19 lines
303 B
Go
package accounts
|
|
|
|
import (
|
|
. "github.com/tendermint/tendermint/blocks"
|
|
)
|
|
|
|
type AccountStore struct {
|
|
}
|
|
|
|
func (as *AccountStore) StageBlock(block *Block) error {
|
|
// XXX implement staging.
|
|
return nil
|
|
}
|
|
|
|
func (as *AccountStore) CommitBlock(block *Block) error {
|
|
// XXX implement staging.
|
|
return nil
|
|
}
|