laconicd-deprecated/state/dump.go
Aleksandr Bezobchuk 6a741fc501 Implement journal
2018-10-03 21:24:32 -04:00

13 lines
264 B
Go

package state
import (
ethstate "github.com/ethereum/go-ethereum/core/state"
)
// RawDump returns a raw state drump.
//
// TODO: Implement if we need it, especially for the RPC API.
func (csdb *CommitStateDB) RawDump() ethstate.Dump {
return ethstate.Dump{}
}