diff --git a/core/version.go b/core/version.go index 15a0e147..0da35750 100644 --- a/core/version.go +++ b/core/version.go @@ -5,7 +5,7 @@ import "fmt" const ( VersionMajor = 2 // Major version component of the current release VersionMinor = 0 // Minor version component of the current release - VersionPatch = 0 // Patch version component of the current release + VersionPatch = 1 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string ) diff --git a/update-chainId.sh b/update-chainId.sh index 2b4817e7..60855aa0 100644 --- a/update-chainId.sh +++ b/update-chainId.sh @@ -7,7 +7,7 @@ CHAINID="" if [[ "$NETWORK" == "mainnet" ]]; then CHAINID="0x79f99296" elif [[ "$NETWORK" == "testnet" ]]; then - CHAINID="0x561bf78b" + CHAINID="0x79f99296" else echo "Invalid network specified. Please choose 'mainnet' or 'testnet'." exit 1