Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixFan1992 committed Feb 4, 2025
1 parent a6019f3 commit 4e57153
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:
with:
deno-version: '1.36.2'

- name: start-anvil
run: anvil --chain-id 1337 &
# - name: start-anvil
# run: anvil --chain-id 1337 &

# 'integration' are the Jest tests that cover code in unit-testing way, so both are included
- name: Run unit tests
Expand Down
5 changes: 2 additions & 3 deletions src/localFunctionsTestnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ export const startLocalFunctionsTestnet = async (

const anvil = createAnvil({
port,
chainId: 90000001,
startTimeout: 60000,
chainId: 1337,
// ...options,
// logging: {
// debug: false,
Expand All @@ -55,7 +54,7 @@ export const startLocalFunctionsTestnet = async (
})

await anvil.start()
console.log(`Anvil started on port ${port} with chain ID 90000001`)
console.log(`Anvil started on port ${port} with chain ID 1337`)

// server.listen(port, 'localhost', (err: Error | null) => {
// if (err) {
Expand Down

0 comments on commit 4e57153

Please sign in to comment.