From d9f88c875ced604267df1d7abc2e3af62f0edb6f Mon Sep 17 00:00:00 2001 From: Minh Huy Tran Date: Tue, 23 Apr 2024 12:59:52 +0200 Subject: [PATCH] feat: update polkadot node container version Signed-off-by: Minh Huy Tran --- .github/workflows/go.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index c9f73ed..1592cd0 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -40,7 +40,7 @@ jobs: ${{ runner.os }}-go- - name: Start Substrate node - run: docker run --rm -d --name substrate -p 9944:9944 ghcr.io/perun-network/polkadot-test-node:0.2.0 + run: docker run --rm -d --name substrate -p 9944:9944 ghcr.io/perun-network/polkadot-test-node:0.4.0 - name: Wait for Substrate node # Wait for port 9944 to listen. diff --git a/README.md b/README.md index 22e0195..0e01e9b 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ cd perun-polkadot-backend 2. Start a local Substrate node with the Perun Pallet installed. See the [polkadot node] repository for more details. ```sh -docker run --rm -p 9944:9944 ghcr.io/perun-network/polkadot-test-node +docker run --rm -p 9944:9944 ghcr.io/perun-network/polkadot-test-node:0.4.0 ``` 3. Run the tests. This step needs a working [Go distribution](https://golang.org), see [go.mod](go.mod) for the required version.