Skip to content

Commit

Permalink
fix(scripts): single-node.sh chain ID (celestiaorg#3777)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rootulp authored Aug 13, 2024
1 parent 234dc14 commit 14b90d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/single-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ then
exit 1
fi

CHAIN_ID="private"
CHAIN_ID="test"
KEY_NAME="validator"
KEYRING_BACKEND="test"
COINS="1000000000000000utia"
Expand Down

0 comments on commit 14b90d0

Please sign in to comment.