Skip to content

Commit

Permalink
chore: Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
janjakubnanista committed Nov 12, 2024
1 parent 6e5b13b commit 01bafca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/ua-devtools-evm-hardhat/src/tasks/oapp/wire/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,18 +90,18 @@ const action: ActionType<TaskArgs> = async (
)
const createSigner = safe ? createGnosisSignerFactory(signer) : createSignerFactory(signer)

// Then create the wire flow
const wireFlow = createWireFlow({
logger,
// We use hardhat subtasks to provide the option to override certain behaviors on a more granular level
executeConfig: ({ graph }) => hre.run(configureSubtask, { graph } satisfies SubtaskConfigureTaskArgs),
signAndSend: ({ transactions }) => (
console.warn('HERERE', transactions),
signAndSend: ({ transactions }) =>
hre.run(signAndSendSubtask, {
ci,
logger,
createSigner,
transactions,
} satisfies SignAndSendTaskArgs)
),
} satisfies SignAndSendTaskArgs),
})

// And run the wire flow
Expand Down

0 comments on commit 01bafca

Please sign in to comment.