diff --git a/Version_testNet b/Version_testNet index 6e1b259..234c3a2 100644 --- a/Version_testNet +++ b/Version_testNet @@ -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" \ No newline at end of file diff --git a/config/spark/spec.json b/config/spark/spec.json index 177b2c2..97a6ac1 100644 --- a/config/spark/spec.json +++ b/config/spark/spec.json @@ -57,7 +57,7 @@ } }, "difficulty": "0x20000", - "gasLimit": "0x5F5E100" + "gasLimit": "0x1312D00" }, "accounts": { "0x0000000000000000000000000000000000000001": { diff --git a/scripts/quickstart.sh b/scripts/quickstart.sh index ce2e3cb..c0bb106 100755 --- a/scripts/quickstart.sh +++ b/scripts/quickstart.sh @@ -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