From 14b90d013fce3fecc1852c69a904b150a312728d Mon Sep 17 00:00:00 2001 From: Rootul P Date: Tue, 13 Aug 2024 16:10:48 -0400 Subject: [PATCH] fix(scripts): single-node.sh chain ID (#3777) celestia-node no longer accepts a chain ID of `private` but it does accept `test` instead. ``` 2024-08-12T13:59:08.549-0400 ERROR core core/listener.go:183 listener: received block with unexpected chain ID: expected test, received private ``` This modifies the `single-node.sh` scripts so that it can be used in conjunction with a local celestia node. --- scripts/single-node.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/single-node.sh b/scripts/single-node.sh index 5cfc2bf030..982f3430f1 100755 --- a/scripts/single-node.sh +++ b/scripts/single-node.sh @@ -11,7 +11,7 @@ then exit 1 fi -CHAIN_ID="private" +CHAIN_ID="test" KEY_NAME="validator" KEYRING_BACKEND="test" COINS="1000000000000000utia"