Skip to content

Commit

Permalink
Added missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
Fletch153 committed Jan 16, 2024
1 parent 5407ec1 commit a37ef80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/scripts/native_solc_compile_all_llo-feeds
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ compileContract llo-feeds/test/mocks/ExposedVerifier.sol

# Streams
compileContract llo-feeds/dev/ChannelConfigStore.sol
compileContract llo-feeds/dev/ChannelVerifierProxy.sol
compileContract llo-feeds/dev/ChannelVerifier.sol
4 changes: 2 additions & 2 deletions core/services/ocr2/plugins/llo/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ var (
multiplier int64 = 100000000
)

func setupBlockchain(t *testing.T) (*bind.TransactOpts, *backends.SimulatedBackend, *channel_config_verifier_proxy.ChannelVerifierProxy, common.Address, *channel_config_store.ChannelConfigStore, common.Address) {
func setupBlockchain(t *testing.T) (*bind.TransactOpts, *backends.SimulatedBackend, *channel_verifier.ChannelVerifier, common.Address, *channel_config_store.ChannelConfigStore, common.Address) {
steve := testutils.MustNewSimTransactor(t) // config contract deployer and owner
genesisData := core.GenesisAlloc{steve.From: {Balance: assets.Ether(1000).ToInt()}}
backend := cltest.NewSimulatedBackend(t, genesisData, uint32(ethconfig.Defaults.Miner.GasCeil))
Expand All @@ -58,7 +58,7 @@ func setupBlockchain(t *testing.T) (*bind.TransactOpts, *backends.SimulatedBacke
t.Cleanup(stopMining)

// Deploy contracts
verifierAddress, _, verifierContract, err := channel_config_verifier_proxy.DeployChannelVerifierProxy(steve, backend)
verifierAddress, _, verifierContract, err := channel_verifier.DeployChannelVerifier(steve, backend)
require.NoError(t, err)
configStoreAddress, _, configStoreContract, err := channel_config_store.DeployChannelConfigStore(steve, backend)
require.NoError(t, err)
Expand Down

0 comments on commit a37ef80

Please sign in to comment.