From fffc2157ad14f4eba666d19fee0000ba595c20ad Mon Sep 17 00:00:00 2001 From: Asher Dawes Date: Mon, 13 Aug 2018 21:46:19 -0700 Subject: [PATCH 1/3] Updating versions to v0.3.12a-beta --- README.md | 2 +- kmd/linux/verus-cli/README.txt | 2 +- kmd/mac/verus-cli/README.txt | 2 +- kmd/windows/verus-cli/README.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1a25809bc..5fbf02c08 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -## VerusCoin version 0.3.12-beta +## VerusCoin version 0.3.12a-beta VerusCoin is a new, mineable and stakeable cryptocurrency. It is a live fork of Komodo that retains its Zcash lineage and improves it. VerusCoin will leverage the Komodo platform and dPoW notarization for enhanced security and cross-chain interoperability. We have added a variation of a zawy12, lwma difficulty algorithm, a new CPU-optimized hash algorithm and a new algorithm for fair proof of stake. We describe these changes and vision going forward in a [our Phase I white paper](http://185.25.51.16/papers/VerusPhaseI.pdf) and [our Vision](http://185.25.51.16/papers/VerusVision.pdf). - [VerusCoin web site https://veruscoin.io/ Wallets and CLI tools](https://veruscoin.io/) - [VerusCoin Explorer](https://explorer.veruscoin.io/) diff --git a/kmd/linux/verus-cli/README.txt b/kmd/linux/verus-cli/README.txt index 233670c5f..4148bd5e5 100644 --- a/kmd/linux/verus-cli/README.txt +++ b/kmd/linux/verus-cli/README.txt @@ -1,4 +1,4 @@ -VerusCoin Command Line Tools v0.3.12-beta +VerusCoin Command Line Tools v0.3.12a-beta Contents: komodod - VerusCoin's enhanced Komodo daemon komodo-cli - VerusCoin's Komodo command line utility diff --git a/kmd/mac/verus-cli/README.txt b/kmd/mac/verus-cli/README.txt index 18007f72a..b33973010 100644 --- a/kmd/mac/verus-cli/README.txt +++ b/kmd/mac/verus-cli/README.txt @@ -1,4 +1,4 @@ -VerusCoin Command Line Tools v0.3.12-beta +VerusCoin Command Line Tools v0.3.12a-beta Contents: komodod - VerusCoin's enhanced Komodo daemon. komodo-cli - VerusCoin's enhanced Komodo command line utility. diff --git a/kmd/windows/verus-cli/README.txt b/kmd/windows/verus-cli/README.txt index 59cf3c4f6..059bd0834 100644 --- a/kmd/windows/verus-cli/README.txt +++ b/kmd/windows/verus-cli/README.txt @@ -1,4 +1,4 @@ -VerusCoin Command Line Tools v0.3.12-beta +VerusCoin Command Line Tools v0.3.12a-beta Contents: komodod.exe - VerusCoin's enhanced Komodo daemon komodo-cli.exe - VerusCoin's Komodo command line utility From a671a00fd93d447d1bec7cb9850382c55a36635c Mon Sep 17 00:00:00 2001 From: miketout Date: Mon, 13 Aug 2018 22:29:45 -0700 Subject: [PATCH 2/3] Use seed nodes even if DNS seeds had data --- src/net.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/net.cpp b/src/net.cpp index 26846d230..00fffa365 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1366,10 +1366,12 @@ void ThreadOpenConnections() boost::this_thread::interruption_point(); // Add seed nodes if DNS seeds are all down (an infrastructure attack?). - if (addrman.size() == 0 && (GetTime() - nStart > 60)) { + // if (addrman.size() == 0 && (GetTime() - nStart > 60)) { + if (GetTime() - nStart > 60) { static bool done = false; if (!done) { - LogPrintf("Adding fixed seed nodes as DNS doesn't seem to be available.\n"); + //LogPrintf("Adding fixed seed nodes as DNS doesn't seem to be available.\n"); + LogPrintf("Adding fixed seed nodes.\n"); addrman.Add(convertSeed6(Params().FixedSeeds()), CNetAddr("127.0.0.1")); done = true; } From 2b72b2d16aa25672b316f2dff2c2c04f02949f7f Mon Sep 17 00:00:00 2001 From: Asher Dawes Date: Mon, 13 Aug 2018 23:38:11 -0700 Subject: [PATCH 3/3] Removing unnecessary parameters --- src/verusd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/verusd b/src/verusd index 2012ab860..179585519 100755 --- a/src/verusd +++ b/src/verusd @@ -2,4 +2,4 @@ #set working directory to the location of this script DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd $DIR -./komodod -ac_name=VRSC -ac_algo=verushash -ac_cc=1 -ac_supply=0 -ac_eras=3 -ac_reward=0,38400000000,2400000000 -ac_halving=1,43200,1051920 -ac_decay=100000000,0,0 -ac_end=10080,226080,0 -ac_timelockgte=19200000000 -ac_timeunlockfrom=129600 -ac_timeunlockto=1180800 -ac_veruspos=50 -gen -genproclimit=0 "$@" +./komodod -ac_name=VRSC -ac_algo=verushash -ac_cc=1 -ac_supply=0 -ac_eras=3 -ac_reward=0,38400000000,2400000000 -ac_halving=1,43200,1051920 -ac_decay=100000000,0,0 -ac_end=10080,226080,0 -ac_timelockgte=19200000000 -ac_timeunlockfrom=129600 -ac_timeunlockto=1180800 -ac_veruspos=50 "$@"