mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-29 00:32:14 +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
|
||
|
}
|