Skip to content

Commit 7137194

Browse files
committed
Merge branch 'develop' of http://github.com/ai16z/eliza into develop
2 parents 6a7da24 + 56495f7 commit 7137194

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import eslintGlobalConfig from "../../eslint.global.mjs";
1+
import eslintGlobalConfig from "../../eslint.config.mjs";
22

33
export default [...eslintGlobalConfig];

packages/plugin-solana/src/actions/swap.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,7 @@ export const executeSwap: Action = {
205205
});
206206

207207
console.log("Response:", response);
208-
const type =
209-
response.inputTokenSymbol?.toUpperCase() === "SOL" ? "buy" : "sell";
208+
// const type = response.inputTokenSymbol?.toUpperCase() === "SOL" ? "buy" : "sell";
210209

211210
// Add SOL handling logic
212211
if (response.inputTokenSymbol?.toUpperCase() === "SOL") {
@@ -287,7 +286,7 @@ export const executeSwap: Action = {
287286
false
288287
);
289288

290-
const provider = new WalletProvider(connection, walletPublicKey);
289+
// const provider = new WalletProvider(connection, walletPublicKey);
291290

292291
console.log("Wallet Public Key:", walletPublicKey);
293292
console.log("inputTokenSymbol:", response.inputTokenCA);

0 commit comments

Comments
 (0)