From 7f255bcdd0549f414410e5fa37b806e7ffeaac95 Mon Sep 17 00:00:00 2001 From: bofhus Date: Sun, 6 May 2018 18:55:27 +0200 Subject: [PATCH 1/4] change orb to sgl --- src/version.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.cpp b/src/version.cpp index c015e7a..c10410b 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -41,7 +41,7 @@ const std::string CLIENT_NAME("Sigil"); #endif #define BUILD_DESC_FROM_COMMIT(maj,min,rev,build,commit) \ - "v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) "-orb" commit + "v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) "-sgl" commit #define BUILD_DESC_FROM_UNKNOWN(maj,min,rev,build) \ "v" DO_STRINGIZE(maj) "." DO_STRINGIZE(min) "." DO_STRINGIZE(rev) "." DO_STRINGIZE(build) From 5b786cfc5f097fb5c903805b01879c943386750e Mon Sep 17 00:00:00 2001 From: bofhus Date: Sun, 6 May 2018 19:01:27 +0200 Subject: [PATCH 2/4] Orbitcoin to Sigil --- src/makefile.osx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/makefile.osx b/src/makefile.osx index 5fc48a2..eca6e5e 100644 --- a/src/makefile.osx +++ b/src/makefile.osx @@ -3,7 +3,7 @@ # Distributed under the MIT/X11 software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. -# Mac OS X makefile for Orbitcoin +# Mac OS X makefile for Sigil # Originally by Laszlo Hanyecz (solar@heliacal.net) CC = gcc From b006456de2ef95d2f15b95ecfff454cf9c03fa69 Mon Sep 17 00:00:00 2001 From: bofhus Date: Sun, 6 May 2018 19:04:41 +0200 Subject: [PATCH 3/4] Orbitcoin to Sigil --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index cdf292b..0aafe8d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1441,7 +1441,7 @@ bool CTransaction::CheckInputs(CCoinsViewCache &inputs, enum CheckSig_mode csmod return DoS(25, error("CheckInputs() : too many inputs (%u) of a coin stake %s", (uint) vin.size(), GetHash().ToString().substr(0,10).c_str())); - /* Orbitcoin: not using coin age for reward calculation, + /* Sigil: not using coin age for reward calculation, * using for input verification to prevent stake amount manipulations; * reward control is in ConnectBlock() when all transactions are processed * with all fees present and accounted for */ @@ -1696,7 +1696,7 @@ bool CBlock::ConnectBlock(CBlockIndex* pindex, CCoinsViewCache &view) { nValueOut += nTxValueOut; if(tx.IsCoinStake()) { - /* Orbitcoin: combined value of stake inputs must satisfy the limit */ + /* Sigil: combined value of stake inputs must satisfy the limit */ if(nTxValueIn < MIN_STAKE_AMOUNT) return(DoS(100, error("ConnectBlock() : block %d proof-of-stake input amount too low " \ From a353387f10d561499b9727a1152863dcd75d266f Mon Sep 17 00:00:00 2001 From: bofhus <37267161+bofhus@users.noreply.github.com> Date: Sun, 6 May 2018 21:39:14 +0200 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4f5ad0f..8abb546 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Install dependencies: - sudo apt-get install build-essential - sudo apt-get install libssl-dev - sudo apt-get install libdb-dev -- sudo apt-get install libd++-dev +- sudo apt-get install libdb++-dev - sudo apt-get install libboost-all-dev - sudo apt-get install libqrencode-dev