Skip to content

Commit

Permalink
1.8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
infinitecoin committed May 1, 2014
1 parent 4b32ade commit cb9ab5c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ bool AppInit2()
const char* pszP2SH = "/P2SH/";
COINBASE_FLAGS << std::vector<unsigned char>(pszP2SH, pszP2SH+strlen(pszP2SH));

nTransactionFee = 10.0 * COIN;


if (mapArgs.count("-paytxfee"))
{
Expand Down
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2557,8 +2557,8 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)

int cVersion = MIN_PEER_PROTO_VERSION;

if(GetTime() >= IFC_SWITCH_VER )
cVersion = PROTOCOL_VERSION;
//if(GetTime() >= IFC_SWITCH_VER )
// cVersion = PROTOCOL_VERSION;

if (pfrom->nVersion < cVersion)
{
Expand Down
8 changes: 4 additions & 4 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// These need to be macro's, as version.cpp's voodoo requires it
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 8
#define CLIENT_VERSION_REVISION 7
#define CLIENT_VERSION_REVISION 8
#define CLIENT_VERSION_BUILD 0

static const int CLIENT_VERSION =
Expand All @@ -31,13 +31,13 @@ extern const std::string CLIENT_DATE;
// network protocol versioning
//

static const int PROTOCOL_VERSION = 69002;
static const int PROTOCOL_VERSION = 69003;

// earlier versions not supported as of Feb 2012, and are disconnected
static const int INIT_PROTO_VERSION = 209;

// disconnect from peers older than this proto version
static const int MIN_PEER_PROTO_VERSION = 69001;
static const int MIN_PEER_PROTO_VERSION = 69002;

// nTime field added to CAddress, starting with this version;
// if possible, avoid requesting addresses nodes older than this
Expand All @@ -50,4 +50,4 @@ static const int NOBLKS_VERSION_END = 32400;
// BIP 0031, pong message, is enabled for all versions AFTER this one
static const int BIP0031_VERSION = 60000;

#endif
#endif

0 comments on commit cb9ab5c

Please sign in to comment.