version bump and disconnect old network when enforcement fork

This commit is contained in:
Evan Duffield 2014-09-16 14:19:27 -07:00
parent e247b4127d
commit 325b6715b5
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 9
#define CLIENT_VERSION_REVISION 13
#define CLIENT_VERSION_BUILD 11
#define CLIENT_VERSION_BUILD 12
// Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true

View File

@ -2557,7 +2557,7 @@ bool CBlock::CheckBlock(CValidationState &state, bool fCheckPOW, bool fCheckMerk
if(!foundPaymentAmount ) {
LogPrintf("CheckBlock() : Couldn't find masternode payment. \n");
if(EnforceMasternodePayments) return state.DoS(0, error("CheckBlock() : Couldn't find masternode payment"));
if(EnforceMasternodePayments) return state.DoS(100, error("CheckBlock() : Couldn't find masternode payment"));
}
}
}