neoneo-go/pkg/core/storage/memory_store_test.go
Roman Khimov fc0031e5aa core: move write caching layer into MemCacheStore
Simplify Blockchain and associated functions, deduplicate code, fix Get() and
Seek() implementations.
2019-10-16 17:33:45 +03:00

9 lines
119 B
Go

package storage
import (
"testing"
)
func newMemoryStoreForTesting(t *testing.T) Store {
return NewMemoryStore()
}