Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down Expand Up @@ -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 " \
Expand Down
2 changes: 1 addition & 1 deletion src/makefile.osx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down