-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into multiple-extensions
- Loading branch information
Showing
17 changed files
with
130 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
DIR="$(cd "$(dirname "$0")" && pwd)" | ||
cd "${DIR}" || exit | ||
|
||
CACHE_DIR=".cache" | ||
JAR_FILE="waves.jar" | ||
URL="https://github.com/wavesplatform/Waves/releases/download/v1.5.6/waves-all-1.5.6.jar" | ||
|
||
mkdir -p "$CACHE_DIR" | ||
|
||
if [ ! -f "$CACHE_DIR/$JAR_FILE" ]; then | ||
echo "Downloading $JAR_FILE..." | ||
curl -L -o "$CACHE_DIR/$JAR_FILE" "$URL" | ||
echo "Download completed." | ||
else | ||
echo "$JAR_FILE already exists in $CACHE_DIR." | ||
fi | ||
|
||
java -cp "${DIR}/.cache/waves.jar" com.wavesplatform.GenesisBlockGenerator \ | ||
"${DIR}/configs/wavesnode/genesis-template.conf" \ | ||
"${DIR}/configs/wavesnode/genesis.conf" > /dev/null | ||
|
||
echo "Genesis config updated" | ||
docker compose up --no-deps update-genesis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.