Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
1kresh committed Aug 9, 2024
1 parent fb34716 commit c19b01b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions script/deploy/OptInService.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import "forge-std/Script.sol";

import {OptInService} from "src/contracts/service/OptInService.sol";

contract OperatorOptInServiceScript is Script {
function run(address operatorRegistry, address whereRegistry) public {
contract OptInServiceScript is Script {
function run(address whoRegistry, address whereRegistry) public {
vm.startBroadcast();

new OptInService(operatorRegistry, whereRegistry);
new OptInService(whoRegistry, whereRegistry);

vm.stopBroadcast();
}
Expand Down
2 changes: 1 addition & 1 deletion specs/Operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ forge script script/deploy/MetadataService.s.sol:MetadataServiceScript 0x0000000
Deployment script: [click](../script/deploy/OptInService.s.sol)

```shell
forge script script/deploy/OptInService.s.sol:OperatorOptInServiceScript 0x0000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000 --sig "run(address,address)" --broadcast --rpc-url=$ETH_RPC_URL
forge script script/deploy/OptInService.s.sol:OptInServiceScript 0x0000000000000000000000000000000000000000 0x0000000000000000000000000000000000000000 --sig "run(address,address)" --broadcast --rpc-url=$ETH_RPC_URL
```

0 comments on commit c19b01b

Please sign in to comment.