@@ -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 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 web site https://veruscoin.io/ Wallets and CLI tools](https://veruscoin.io/)
|
||||||
- [VerusCoin Explorer](https://explorer.veruscoin.io/)
|
- [VerusCoin Explorer](https://explorer.veruscoin.io/)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
VerusCoin Command Line Tools v0.3.12-beta
|
VerusCoin Command Line Tools v0.3.12a-beta
|
||||||
Contents:
|
Contents:
|
||||||
komodod - VerusCoin's enhanced Komodo daemon
|
komodod - VerusCoin's enhanced Komodo daemon
|
||||||
komodo-cli - VerusCoin's Komodo command line utility
|
komodo-cli - VerusCoin's Komodo command line utility
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
VerusCoin Command Line Tools v0.3.12-beta
|
VerusCoin Command Line Tools v0.3.12a-beta
|
||||||
Contents:
|
Contents:
|
||||||
komodod - VerusCoin's enhanced Komodo daemon.
|
komodod - VerusCoin's enhanced Komodo daemon.
|
||||||
komodo-cli - VerusCoin's enhanced Komodo command line utility.
|
komodo-cli - VerusCoin's enhanced Komodo command line utility.
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
VerusCoin Command Line Tools v0.3.12-beta
|
VerusCoin Command Line Tools v0.3.12a-beta
|
||||||
Contents:
|
Contents:
|
||||||
komodod.exe - VerusCoin's enhanced Komodo daemon
|
komodod.exe - VerusCoin's enhanced Komodo daemon
|
||||||
komodo-cli.exe - VerusCoin's Komodo command line utility
|
komodo-cli.exe - VerusCoin's Komodo command line utility
|
||||||
|
|||||||
@@ -1366,10 +1366,12 @@ void ThreadOpenConnections()
|
|||||||
boost::this_thread::interruption_point();
|
boost::this_thread::interruption_point();
|
||||||
|
|
||||||
// Add seed nodes if DNS seeds are all down (an infrastructure attack?).
|
// 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;
|
static bool done = false;
|
||||||
if (!done) {
|
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"));
|
addrman.Add(convertSeed6(Params().FixedSeeds()), CNetAddr("127.0.0.1"));
|
||||||
done = true;
|
done = true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,4 +2,4 @@
|
|||||||
#set working directory to the location of this script
|
#set working directory to the location of this script
|
||||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
cd $DIR
|
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 "$@"
|
||||||
|
|||||||
Reference in New Issue
Block a user