Skip to content

Commit

Permalink
Merge pull request #46 from primevprotocol/ckartik/nit-fix-deploy
Browse files Browse the repository at this point in the history
Fix ordering of registries in deployment.
  • Loading branch information
kant777 authored Nov 17, 2023
2 parents f8d3d08 + e6c52ec commit 2b0ce72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/DeployScripts.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 2b0ce72

Please sign in to comment.