paritytech/hardhat-polkadot

process in port 8000 continues running after kill when using forking

Open

#278 opened on Aug 14, 2025

View on GitHub
 (0 comments) (0 reactions) (0 assignees)TypeScript (10 forks)auto 404
P2 - Mediumgood first issue

Repository metrics

Stars
 (16 stars)
PR merge metrics
 (PR metrics pending)

Description

🔄 Reproduction Steps

  1. Following hardhat.config
networks: {
        hardhat: {
            polkavm: true,
            docker: true,
            forking: {
                url: "https://testnet-passet-hub.polkadot.io",
            },
        },
        localNode: {
            polkavm: true,
            url: `http://127.0.0.1:8545`,
        },
    },
  1. npx hardhat node
  2. Ctr+C
  3. npx hardhat node

🤔 Expected Behavior

Server listens on 8000 Server listens on 8000

😯 Current Behavior

Server listens on 8000 Server listens on 8001

Contributor guide