You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//go:generate gencodec -dir . -type Log -field-override logMarshaling -out gen_log_json.go// Log represents a contract log event. These events are generated by the LOG opcode and// stored/indexed by the node.typeLogstruct {
...
Current Behavior
// Code generated by github.com/fjl/gencodec. DO NOT EDIT.package store
import (
"encoding/json""errors""github.com/smartcontractkit/chainlink/vendor/github.com/ethereum/go-ethereum/common""github.com/smartcontractkit/chainlink/vendor/github.com/ethereum/go-ethereum/common/hexutil"
)
...
Expected behavior
// Code generated by github.com/fjl/gencodec. DO NOT EDIT.package store
import (
"encoding/json""errors""github.com/ethereum/go-ethereum/common""github.com/ethereum/go-ethereum/common/hexutil"
)
...
The text was updated successfully, but these errors were encountered:
When running
go generate ./...
,gencodec
writes the vendored import paths rather than the correct ones:As seen here where we are using golang/dep to vendor our dependencies: smartcontractkit/chainlink#680 (comment)
Source
Current Behavior
Expected behavior
The text was updated successfully, but these errors were encountered: