fix mdLogger

Backport of cf6a31514b
This commit is contained in:
Sina Mahmoodi 2024-02-09 11:19:56 +01:00 committed by Matthieu Vachon
parent ee96dd2c03
commit 2264a9c3fe

View file

@ -334,6 +334,10 @@ func NewMarkdownLogger(cfg *Config, writer io.Writer) *mdLogger {
return l
}
func (t *mdLogger) CaptureTxStart(env *vm.EVM, tx *types.Transaction, from common.Address) {
t.env = env
}
func (t *mdLogger) CaptureStart(from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int) {
if !create {
fmt.Fprintf(t.out, "From: `%v`\nTo: `%v`\nData: `%#x`\nGas: `%d`\nValue `%v` wei\n",