tendermint/accounts/store.go

19 lines
303 B
Go
Raw Normal View History

2014-08-10 16:35:08 -07:00
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
}