Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion script/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ import {MyDelegateProjectDeployer} from "./../src/MyDelegateProjectDeployer.sol"

abstract contract Deploy is Script {
function _run(IJBOperatorStore _operatorStore, IJBDelegatesRegistry _registry) internal {
vm.broadcast();
vm.startBroadcast();
MyDelegate _delegateImplementation = new MyDelegate();
MyDelegateDeployer _delegateDeployer = new MyDelegateDeployer(_delegateImplementation, _registry);
new MyDelegateProjectDeployer(
_delegateDeployer,
_operatorStore
);
vm.stopBroadcast();
}
}

Expand Down