Skip to content

Commit

Permalink
fix: missing ABI
Browse files Browse the repository at this point in the history
  • Loading branch information
Alok committed Apr 18, 2024
1 parent fb947bb commit 472f39d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkg/node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,12 @@ func getContractABIs(opts *Options) (map[common.Address]*abi.ABI, error) {
}
abis[opts.ProviderRegistryContractAddr] = &providerRegistry

orABI, err := abi.JSON(strings.NewReader(rollupclient.OracleABI))
if err != nil {
return nil, err
}
abis[opts.OracleContractAddr] = &orABI

return abis, nil
}

Expand Down

0 comments on commit 472f39d

Please sign in to comment.