laconicd/state/dump.go

13 lines
264 B
Go
Raw Normal View History

2018-10-04 01:24:32 +00:00
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{}
}