From d9b1cc7eb2fe1cf846ff1611653186af5e90b0ab Mon Sep 17 00:00:00 2001 From: Oink70 Date: Fri, 17 Dec 2021 14:09:00 +0000 Subject: [PATCH] update bootstrap URL --- vcutil/fetch-bootstrap.bat | 4 ++-- vcutil/fetch-bootstrap.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/vcutil/fetch-bootstrap.bat b/vcutil/fetch-bootstrap.bat index 4a9247a6c..192318f78 100755 --- a/vcutil/fetch-bootstrap.bat +++ b/vcutil/fetch-bootstrap.bat @@ -7,7 +7,7 @@ IF %ERRORLEVEL%==0 EXIT 1 TITLE %PROCESS_NAME% SETLOCAL EnableDelayedExpansion -SET BOOTSTRAP_URL=https://bootstrap.veruscoin.io +SET BOOTSTRAP_URL=https://bootstrap.verus.io SET TAR_FOUND=0 FOR %%x in (tar.exe) DO IF NOT [%%~$PATH:x]==[] SET TAR_FOUND=1 IF %TAR_FOUND% EQU 1 ( @@ -156,4 +156,4 @@ SET vbs="%temp%\_.vbs" cscript //nologo %vbs% IF EXIST %vbs% del /f /q %vbs% GOTO :EOF -ENDLOCAL \ No newline at end of file +ENDLOCAL diff --git a/vcutil/fetch-bootstrap.sh b/vcutil/fetch-bootstrap.sh index 13fbdb852..00245c115 100755 --- a/vcutil/fetch-bootstrap.sh +++ b/vcutil/fetch-bootstrap.sh @@ -25,7 +25,7 @@ function set_data_dir() { fi } -BOOTSTRAP_URL="https://bootstrap.veruscoin.io" +BOOTSTRAP_URL="https://bootstrap.verus.io" BOOTSTRAP_ARCHIVE="VRSC-bootstrap.tar.gz" BOOTSTRAP_ARCHIVE_SIG="$BOOTSTRAP_ARCHIVE.verusid" SHA256CMD="$(command -v sha256sum || echo shasum)"