From a37ef80a8c95cc825e424a86aef145f454818b9e Mon Sep 17 00:00:00 2001 From: Michael Fletcher Date: Tue, 16 Jan 2024 17:34:22 +0000 Subject: [PATCH] Added missing files --- contracts/scripts/native_solc_compile_all_llo-feeds | 2 +- core/services/ocr2/plugins/llo/integration_test.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/scripts/native_solc_compile_all_llo-feeds b/contracts/scripts/native_solc_compile_all_llo-feeds index 0c9782c2780..9bab7fe0bde 100755 --- a/contracts/scripts/native_solc_compile_all_llo-feeds +++ b/contracts/scripts/native_solc_compile_all_llo-feeds @@ -40,4 +40,4 @@ compileContract llo-feeds/test/mocks/ExposedVerifier.sol # Streams compileContract llo-feeds/dev/ChannelConfigStore.sol -compileContract llo-feeds/dev/ChannelVerifierProxy.sol \ No newline at end of file +compileContract llo-feeds/dev/ChannelVerifier.sol \ No newline at end of file diff --git a/core/services/ocr2/plugins/llo/integration_test.go b/core/services/ocr2/plugins/llo/integration_test.go index aea99dbe64b..6c35db25876 100644 --- a/core/services/ocr2/plugins/llo/integration_test.go +++ b/core/services/ocr2/plugins/llo/integration_test.go @@ -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)) @@ -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)