From e6c52ecd5766ff6d538bb1d8c8142ceec48dbdd9 Mon Sep 17 00:00:00 2001 From: Kartik Chopra Date: Fri, 17 Nov 2023 11:55:49 -0800 Subject: [PATCH] Fix ordering of registries in deployment. --- scripts/DeployScripts.s.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/DeployScripts.s.sol b/scripts/DeployScripts.s.sol index 45c3da7..144053a 100644 --- a/scripts/DeployScripts.s.sol +++ b/scripts/DeployScripts.s.sol @@ -21,7 +21,7 @@ contract DeployScript is Script { ProviderRegistry providerRegistry = new ProviderRegistry(minStake, feeRecipient, feePercent); console.log("ProviderRegistry deployed to:", address(providerRegistry)); - PreConfCommitmentStore preConfCommitmentStore = new PreConfCommitmentStore(address(userRegistry), address(providerRegistry), feeRecipient); + PreConfCommitmentStore preConfCommitmentStore = new PreConfCommitmentStore(address(providerRegistry), address(userRegistry), feeRecipient); console.log("PreConfCommitmentStore deployed to:", address(preConfCommitmentStore)); Oracle oracle = new Oracle(address(preConfCommitmentStore));