Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/services/llo/cre/report_codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func (r *ReportCodecCapabilityTriggerOpts) Decode(opts []byte) error {
return nil
}
decoder := json.NewDecoder(bytes.NewReader(opts))
decoder.DisallowUnknownFields() // Error on unrecognized fields
// decoder.DisallowUnknownFields() // Error on unrecognized fields
return decoder.Decode(r)
}

Expand Down
2 changes: 1 addition & 1 deletion core/services/streams/delegate.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func ValidatedStreamSpec(tomlString string) (job.Job, error) {

r := strings.NewReader(tomlString)
d := toml.NewDecoder(r)
d.DisallowUnknownFields()
// d.DisallowUnknownFields()
err := d.Decode(&jb)
if err != nil {
return jb, errors.Wrap(err, "toml unmarshal error on job")
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ require (
github.com/smartcontractkit/chainlink-common v0.11.1
github.com/smartcontractkit/chainlink-common/keystore v1.0.2
github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10
github.com/smartcontractkit/chainlink-data-streams v0.1.13
github.com/smartcontractkit/chainlink-data-streams v0.1.14-0.20260326134153-d6bf0945a0cd
github.com/smartcontractkit/chainlink-evm v0.3.4-0.20260320152158-2191d797b5ce
github.com/smartcontractkit/chainlink-evm/contracts/cre/gobindings v0.0.0-20260107191744-4b93f62cffe3
github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20251222115927-36a18321243c
Expand Down
4 changes: 2 additions & 2 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading