Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Version_testNet
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
DOCKER_IMAGE_FUSE_APP_VERSION="1.0.0"
DOCKER_IMAGE_FUSE_PARITY_VERSION="2.0.1_OE"
DOCKER_IMAGE_FUSE_PARITY_VERSION="2.0.2"
DOCKER_IMAGE_NET_STATS_VERSION="1.0.0"
2 changes: 1 addition & 1 deletion config/spark/spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
}
},
"difficulty": "0x20000",
"gasLimit": "0x5F5E100"
"gasLimit": "0x1312D00"
},
"accounts": {
"0x0000000000000000000000000000000000000001": {
Expand Down
8 changes: 5 additions & 3 deletions scripts/quickstart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -394,9 +394,11 @@ function setup {

if [ "$OVERRIDE_VERSION_FILE" == false ] ; then
echo -e "\nGrab docker Versions"
if [ $CLIENT == "PARITY" ]; then
VERSION_FILE="$VERSION_FILE_LEGACY"
fi
if [ ! -z "$CLIENT" ] ; then
if [ $CLIENT == "PARITY" ]; then
VERSION_FILE="$VERSION_FILE_LEGACY"
fi
fi
wget -O versionFile $VERSION_FILE
export $(grep -v '^#' versionFile | xargs)
else
Expand Down