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.
commit e274c40265d46b561aebf7af575d2da9657ee44d
Merge: 931500c 518a6f4
Author: deeponion
Date: Sun Sep 3 16:59:29 2017 -0700
Merge pull request #10 from chillerfx/master
Update build-unix.txt
commit 931500ce8196fe6c1bb3dc68ab42ab8b33e1db9a
Merge: d0d33df 7a618bf
Author: deeponion
Date: Sun Sep 3 16:58:05 2017 -0700
Merge pull request #5 from 420Lord/patch-1
Update README.md
commit 518a6f4efb516f17b061c185057d66f77517a713
Author: chillerfx
Date: Tue Aug 29 01:03:40 2017 +0300
Update build-unix.txt
commit 7a618bf3ce8c43a5824aac37e66a892a513e636b
Author: 420Lord <[email protected]>
Date: Mon Aug 21 11:56:22 2017 +0200
Update README.md
Fixed some grammatical errors
bf3a8c85dd2b701fa6720e1c2c7f18281a14
Author: deeponion
Date: Tue Sep 5 00:30:45 2017 -0700
minor maintenance release, with more recent checkpoints and minor fixes
diff --git a/src/checkpoints.cpp b/src/checkpoints.cpp
index d8a1ee5..f41825f 100644
--- a/src/checkpoints.cpp
+++ b/src/checkpoints.cpp
@@ -25,10 +25,11 @@ namespace Checkpoints
boost::assign::map_list_of
( 0, hashGenesisBlock )
( 1000, uint256("0x0000000000850dc77a9601bc78cc6404bf24923475194c392accdb
176c8e74da"))
- ( 4000, uint256("0x00000000001e00d978b6746fb7af2b9d566cc7c6f0bb04e952ff28
5853412be8"))
- ( 7000, uint256("0x0000000000039021cf0ceb46e1b64086b5b67150ce005813c911b9
5830374f88"))
- ( 9530, uint256("0x000000000007c0df7894a390d592099090e15e6ec631fc71af3199
b8ffabb483"))
- (10990, uint256("0x00000000003f7dc2648315fa41a9032ee7d28b2efec25b46cda292
81d2b59d5d"))
+ (10011, uint256("0x00000000003010c108b5de62eef6c69a173a34d1c68932571dc475
6e1f243903"))
+ (30001, uint256("0x000000000019c8741a4aa87170e0598802b40a7476bfe4fb082fa9
0c954a0260"))
+ (50008, uint256("0x00000000000a70b080e12cab200125ecffeebfae7c7fe7c914311a
2b1056cf5b"))
+ (70005, uint256("0x00000000000197c958de95bad1b4cf4d7d4f1f18f432e11846245c
8669b4473b"))
+ (78842, uint256("0x000000000002919668d4e78eb2aa9aa752b0f72cde01ba08f23a05
c1801c7347"))
;
// TestNet has no checkpoints
diff --git a/src/clientversion.h b/src/clientversion.h
index 6de17d2..7761f6e 100644
--- a/src/clientversion.h
+++ b/src/clientversion.h
@@ -7,7 +7,7 @@
// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 1
-#define CLIENT_VERSION_MINOR 1
+#define CLIENT_VERSION_MINOR 2
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_BUILD 0
diff --git a/src/kernel.cpp b/src/kernel.cpp
index 300138a..744f618 100644
--- a/src/kernel.cpp
+++ b/src/kernel.cpp
@@ -19,10 +19,11 @@ static std::mapmapStakeModifierCheckpoints =
boost::assign::map_list_of
( 0, 0xfd11f4e7u)
( 1000, 0x353653feu)
- ( 4000, 0x32ecbf74u)
- ( 7000, 0x34569266u)
- ( 9530, 0x33943f15u)
- (10990, 0xd0452b51u)
+ (10011, 0x5f22713eu)
+ (30001, 0xceb87179u)
+ (50008, 0x9f0053f2u)
+ (70005, 0xd005d7f9u)
+ (78842, 0x008147b4u)
;
// Hard checkpoints of stake modifiers to ensure they are deterministic (testNet)
diff --git a/src/main.cpp b/src/main.cpp
index d26ff5c..7ee6ef6 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -81,11 +81,17 @@ int64_t nTransactionFee = MIN_TX_FEE;
int64_t nReserveBalance = 0;
int64_t nMinimumInputValue = 0;
-static const int NUM_OF_POW_CHECKPOINT = 2;
+static const int NUM_OF_POW_CHECKPOINT = 8;
static const int checkpointPoWHeight[NUM_OF_POW_CHECKPOINT][2] =
{
- { 5675, 3630},
- { 9601, 4611}
+ { 9601, 4611},
+ {19767, 6631},
+ {30931, 8792},
+ {41366, 10850},
+ {50420, 13156},
+ {60229, 15420},
+ {70072, 17469},
+ {78842, 19751}
};
extern enum Checkpoints::CPMode CheckpointsMode;
@@ -1029,9 +1035,7 @@ int GetPowHeightTable(const CBlockIndex* pindex)
int GetPowHeight(const CBlockIndex* pindex)
{
int powH = 0;
- // powH = GetSpecialHeight(pindex, false);
powH = GetPowHeightTable(pindex);
-
return powH;
}