Skip to content

Commit

Permalink
Remove unused fantom script execution and add logging for chain in ev…
Browse files Browse the repository at this point in the history
…m_okx script
  • Loading branch information
G-Gamja committed Feb 3, 2025
1 parent dea553b commit 8ea8cac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/evm_okx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ jobs:
- name: Run code modification script
run: |
node _script/evm_okx/evm_okx.mjs cronos 25
node _script/evm_okx/evm_okx.mjs fantom 250
node _script/evm_okx/evm_okx.mjs arbitrum 42161
env:
API_KEY: ${{ secrets.OKX_API_KEY }}
Expand Down
2 changes: 2 additions & 0 deletions _script/evm_okx/evm_okx.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ async function main() {

const chain = process.argv[2];

console.log("🚀 ~ main ~ chain:", chain);

const chainId = process.argv[3];

if (!chain || !chainId) {
Expand Down

0 comments on commit 8ea8cac

Please sign in to comment.