Initial commit of changes made to interface in service of pretracer type.

This commit is contained in:
philip-morlier 2022-02-15 16:54:39 -08:00
parent eea0ccd0ae
commit 04923f1972

View File

@ -80,6 +80,10 @@ type TracerResult interface {
Result() (interface{}, error)
}
type PreTracer interface {
CapturePreStart(from Address, to *Address, input []byte, gas uint64, value *big.Int)
}
type StateDB interface {
GetBalance(Address) *big.Int