laconicd/x/evm/types/dump.go

13 lines
263 B
Go
Raw Normal View History

2018-10-24 13:46:14 +00:00
package types
2018-10-04 01:24:32 +00:00
import (
ethstate "github.com/ethereum/go-ethereum/core/state"
)
2018-10-24 13:46:14 +00:00
// RawDump returns a raw state dump.
2018-10-04 01:24:32 +00:00
//
// TODO: Implement if we need it, especially for the RPC API.
func (csdb *CommitStateDB) RawDump() ethstate.Dump {
return ethstate.Dump{}
}