tendermint/accounts/store.go
2014-08-30 04:17:10 -07:00

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
}