Skip to content

Commit

Permalink
chore: linter
Browse files Browse the repository at this point in the history
  • Loading branch information
kupermind committed Jan 24, 2024
1 parent ba87ce7 commit 4a8367a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ async function main() {
// Transaction signing and execution
// 7. EOA to change the manager of ServiceRegistry to ServiceManager calling `changeManager(ServiceManager)`;
console.log("7. You are signing the following transaction: serviceRegistry.connect(EOA).changeManager()");
let result = await serviceRegistry.connect(EOA).changeManager(serviceManagerAddress, { gasPrice });
let result = await serviceRegistry.connect(EOA).changeManager(serviceManagerTokenAddress, { gasPrice });
// Transaction details
console.log("Contract address:", serviceRegistryAddress);
console.log("Transaction:", result.hash);
Expand Down
2 changes: 1 addition & 1 deletion scripts/deployment/l2/deploy_11_12_change_drainers.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ async function main() {

// 11. EOA to change the drainer of ServiceRegistry to BridgeMediator
console.log("You are signing the following transaction: serviceRegistry.connect(EOA).changeDrainer(bridgeMediatorAddress)");
result = await serviceRegistry.connect(EOA).changeDrainer(bridgeMediatorAddress, { gasPrice });
let result = await serviceRegistry.connect(EOA).changeDrainer(bridgeMediatorAddress, { gasPrice });
// Transaction details
console.log("Contract address:", serviceRegistryAddress);
console.log("Transaction:", result.hash);
Expand Down

0 comments on commit 4a8367a

Please sign in to comment.