neoneo-go/pkg/core/memory_store.go

19 lines
374 B
Go
Raw Normal View History

package core
// MemoryStore is an in memory implementation of a BlockChainStorer.
type MemoryStore struct {
}
// NewMemoryStore returns a pointer to a MemoryStore object.
func NewMemoryStore() *MemoryStore {
return &MemoryStore{}
}
func (m *MemoryStore) write(key, value []byte) error {
return nil
}
func (m *MemoryStore) writeBatch(batch Batch) error {
return nil
}