Skip to content

Commit

Permalink
feat(protocol): update signal service ownership transfer check in Dep…
Browse files Browse the repository at this point in the history
…loyOnL1 (#16080)
  • Loading branch information
davidtaikocha authored Feb 27, 2024
1 parent 014e47c commit 06a774e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/protocol/script/DeployOnL1.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ contract DeployOnL1 is DeployCapability {
console2.log("signalService.owner(): ", signalService.owner());
console2.log("------------------------------------------");

if (signalService.owner() == address(this)) {
if (signalService.owner() == msg.sender) {
signalService.transferOwnership(timelock);
} else {
console2.log("------------------------------------------");
Expand Down

1 comment on commit 06a774e

@malutki880
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.

Please sign in to comment.