minor fix
This commit is contained in:
parent
674a38ed60
commit
0db7a19f33
|
@ -1,6 +1,7 @@
|
||||||
package live
|
package live
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"encoding/json"
|
||||||
"math/big"
|
"math/big"
|
||||||
|
|
||||||
"github.com/ethereum/go-ethereum/common"
|
"github.com/ethereum/go-ethereum/common"
|
||||||
|
@ -22,7 +23,7 @@ func init() {
|
||||||
// as soon as we have a real live tracer.
|
// as soon as we have a real live tracer.
|
||||||
type noop struct{}
|
type noop struct{}
|
||||||
|
|
||||||
func newNoopTracer() (core.BlockchainLogger, error) {
|
func newNoopTracer(_ json.RawMessage) (core.BlockchainLogger, error) {
|
||||||
return &noop{}, nil
|
return &noop{}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue