Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
samuveth committed Dec 30, 2024
1 parent 34ac4e5 commit 5821769
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/plugin-evm/src/actions/bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const bridgeAction = {
callback?: any
) => {
console.log("Bridge action handler called");
const walletProvider = initWalletProvider(runtime);
const walletProvider = await initWalletProvider(runtime);
const action = new BridgeAction(walletProvider);

// Compose bridge context
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-evm/src/actions/swap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export const swapAction = {
callback?: any
) => {
console.log("Swap action handler called");
const walletProvider = initWalletProvider(runtime);
const walletProvider = await initWalletProvider(runtime);
const action = new SwapAction(walletProvider);

// Compose swap context
Expand Down

0 comments on commit 5821769

Please sign in to comment.