minor fix

This commit is contained in:
Sina Mahmoodi 2024-02-14 16:54:51 +01:00
parent 674a38ed60
commit 0db7a19f33
1 changed files with 2 additions and 1 deletions

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
}