Skip to content

Commit

Permalink
chore: code adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
kupermind committed Oct 30, 2024
1 parent 57e0aaf commit 09b1b03
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 @@ -50,7 +50,7 @@ async function main() {
// Transaction signing and execution
console.log("12. EOA to set contribute agent statuses in ContributorsProxy");
console.log("You are signing the following transaction: ContributorsProxy.connect(EOA).setContributeAgentStatuses()");
const result = await contributorsProxy.setContributeAgentStatuses([contributeAgentAddress], [true], { gasPrice });
const result = await contributorsProxy.connect(EOA).setContributeAgentStatuses([contributeAgentAddress], [true], { gasPrice });

// Transaction details
console.log("Contract deployment: ContributorsProxy");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ async function main() {
// Transaction signing and execution
console.log("13. EOA to change owner in ContributorsProxy");
console.log("You are signing the following transaction: ContributorsProxy.connect(EOA).changeOwner()");
const result = await contributorsProxy.changeOwner(bridgeMediatorAddress, { gasPrice });
const result = await contributorsProxy.connect(EOA).changeOwner(bridgeMediatorAddress, { gasPrice });

// Transaction details
console.log("Contract deployment: ContributorsProxy");
Expand Down

0 comments on commit 09b1b03

Please sign in to comment.