Commit f30a5d39 authored by Matthew Slipper's avatar Matthew Slipper Committed by GitHub

ci: Fix indexer tests, make them depend on op-bindings (#2955)

parent 8986f165
---
'@eth-optimism/indexer': patch
---
Fix contract bindings
......@@ -567,6 +567,7 @@ workflows:
name: indexer-tests
binary_name: indexer
working_directory: indexer
dependencies: op-bindings
- go-lint-test-build:
name: bss-core-tests
binary_name: bss-core
......
......@@ -29,7 +29,7 @@ func NewAddresses(client bind.ContractBackend, addrMgrAddr common.Address) (*Add
}
ret.addrs["AddressManager"] = addrMgrAddr
mgr, err := bindings.NewLibAddressManager(addrMgrAddr, client)
mgr, err := bindings.NewAddressManager(addrMgrAddr, client)
if err != nil {
return nil, err
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment