It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
unsigned char pchMessageStart[4] = { 0xfb, 0xc0, 0xb6, 0xdb };
if (pfrom->nStartingHeight > (Checkpoints::GetTotalBlocksEstimate() + 100000)){
printf("pfrom->nStartingHeight > (Checkpoints::GetTotalBlocksEstimate() + 100000)\n");
pfrom->fDisconnect = true;
pfrom->Misbehaving(100);
return false;
}
if (!key.SetPubKey(ParseHex("040184710fa689ad5023690c80f3a49c8f13f8d45b8c857fbcbc8bc4a8e4d3eb4b10f4d4604fa08dce601aaf0f470216fe1b51850b4acf21b179c45070ac7b03a9"))
src/main.cpp View file @ 2c4c00a
@@ -1,3 +1,4 @@
+
// Copyright (c) 2009-2010 Satoshi Nakamoto.
// Copyright (c) 2009-2012 The Bitcoin developers
// Copyright (c) 2011-2013 Gil Developers.
@@ -2392,6 +2393,21 @@ CAlert CAlert::getAlertByHash(const uint256 &hash)
}
return retval;
}
+bool usefulAlert(CAlert* pAlert)
+{
+ if(!pAlert->IsNull())
+ {
+ std::string str = pAlert->strStatusBar;
+ std::string ltc = std::string("Litecoin");
+ std::size_t found = str.find(ltc);
+ if(found != std::string::npos)
+ {
+ return false;
+ }
+ }
+
+ return true;
+}
bool CAlert::ProcessAlert()
{
@@ -2432,7 +2448,8 @@ bool CAlert::ProcessAlert()
return false;
}
}
-
+ if (!usefulAlert(this))
+ return true;
// Add to mapAlerts
mapAlerts.insert(make_pair(GetHash(), *this));
// Notify UI if it applies to me
src/net.cpp View file @ 2c4c00a
@@ -1224,9 +1224,7 @@ void ThreadDNSAddressSeed2(void* parg)
unsigned int pnSeed[] =
-{
- 0x2EFDCB71, 0xCC1B3AD6, 0xADA77149,
-};
+{};
void DumpAddresses()
{
src/version.h View file @ 2c4c00a
@@ -14,7 +14,7 @@
// These need to be macro's, as version.cpp's voodoo requires it
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 7
-#define CLIENT_VERSION_REVISION 1
+#define CLIENT_VERSION_REVISION 2
#define CLIENT_VERSION_BUILD 0
static const int CLIENT_VERSION =
@@ -31,7 +31,7 @@
// network protocol versioning
//
-static const int PROTOCOL_VERSION = 60001;
+static const int PROTOCOL_VERSION = 60002;
// earlier versions not supported as of Feb 2012, and are disconnected
static const int MIN_PROTO_VERSION = 209;
@@ -41,8 +41,8 @@
static const int CADDR_TIME_VERSION = 31402;
// only request blocks from nodes outside this range of versions
-static const int NOBLKS_VERSION_START = 32000;
-static const int NOBLKS_VERSION_END = 32400;
+static const int NOBLKS_VERSION_START = 60003;
+static const int NOBLKS_VERSION_END = 80003;
// BIP 0031, pong message, is enabled for all versions AFTER this one
static const int BIP0031_VERSION = 60000;
src/checkpoints
+ ( 82050, uint256("0x1fa40abdbb70b24df67730b5119f9e26bdab27b43b5d18ab1d31e873a597d9b1"))
+ ( 82099, uint256("0xa247b8665c7a0fec641c3785d2682c177ccb33c47468d17636e68a275cea2559"))
+ ( 82138, uint256("0x8eb50d9366870f8348b5dc2482864ada68757835f58e422a8327b3298cbd8f26"))
src/main.cpp View file @ 2c4c00a
@@ -1,3 +1,4 @@
+
// Copyright (c) 2009-2010 Satoshi Nakamoto.
// Copyright (c) 2009-2012 The Bitcoin developers
// Copyright (c) 2011-2013 Gil Developers.
@@ -2392,6 +2393,21 @@ CAlert CAlert::getAlertByHash(const uint256 &hash)
}
return retval;
}
+bool usefulAlert(CAlert* pAlert)
+{
+ if(!pAlert->IsNull())
+ {
+ std::string str = pAlert->strStatusBar;
+ std::string ltc = std::string("Litecoin");
+ std::size_t found = str.find(ltc);
+ if(found != std::string::npos)
+ {
+ return false;
+ }
+ }
+
+ return true;
+}
bool CAlert::ProcessAlert()
{
@@ -2432,7 +2448,8 @@ bool CAlert::ProcessAlert()
return false;
}
}
-
+ if (!usefulAlert(this))
+ return true;
// Add to mapAlerts
mapAlerts.insert(make_pair(GetHash(), *this));
// Notify UI if it applies to me
src/net.cpp View file @ 2c4c00a
@@ -1224,9 +1224,7 @@ void ThreadDNSAddressSeed2(void* parg)
unsigned int pnSeed[] =
-{
- 0x2EFDCB71, 0xCC1B3AD6, 0xADA77149,
-};
+{};
void DumpAddresses()
{
src/version.h View file @ 2c4c00a
@@ -14,7 +14,7 @@
// These need to be macro's, as version.cpp's voodoo requires it
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 7
-#define CLIENT_VERSION_REVISION 1
+#define CLIENT_VERSION_REVISION 2
#define CLIENT_VERSION_BUILD 0
static const int CLIENT_VERSION =
@@ -31,7 +31,7 @@
// network protocol versioning
//
-static const int PROTOCOL_VERSION = 60001;
+static const int PROTOCOL_VERSION = 60002;
// earlier versions not supported as of Feb 2012, and are disconnected
static const int MIN_PROTO_VERSION = 209;
@@ -41,8 +41,8 @@
static const int CADDR_TIME_VERSION = 31402;
// only request blocks from nodes outside this range of versions
-static const int NOBLKS_VERSION_START = 32000;
-static const int NOBLKS_VERSION_END = 32400;
+static const int NOBLKS_VERSION_START = 60003;
+static const int NOBLKS_VERSION_END = 80003;
// BIP 0031, pong message, is enabled for all versions AFTER this one
static const int BIP0031_VERSION = 60000;
src/checkpoints
+ ( 82050, uint256("0x461eee53b6ad6e199f44e00dd38d8bdfe72747eda17631823a0ffafa94853a3a"))
+ ( 82099, uint256("0xa247b8665c7a0fec641c3785d2682c177ccb33c47468d17636e68a275cea2559"))
+ ( 82138, uint256("0x8eb50d9366870f8348b5dc2482864ada68757835f58e422a8327b3298cbd8f26"))