minor fix

This commit is contained in:
Sina Mahmoodi 2024-02-14 16:54:51 +01:00 committed by Matthieu Vachon
parent 318dc84314
commit d17940d2e7

View file

@ -1,6 +1,7 @@
package live
import (
"encoding/json"
"math/big"
"github.com/ethereum/go-ethereum/common"
@ -22,7 +23,7 @@ func init() {
// as soon as we have a real live tracer.
type noop struct{}
func newNoopTracer() (core.BlockchainLogger, error) {
func newNoopTracer(_ json.RawMessage) (core.BlockchainLogger, error) {
return &noop{}, nil
}