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 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 " \ 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 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)