From af675365989f296ab0cad4dca21d41633b42e260 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Tue, 21 Mar 2017 20:04:51 +0900 Subject: [PATCH] Set reorg limit to 8k on testnet --- lib/coins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/coins.py b/lib/coins.py index b6c7575..3971407 100644 --- a/lib/coins.py +++ b/lib/coins.py @@ -332,7 +332,7 @@ class BitcoinTestnet(Bitcoin): WIF_BYTE = bytes.fromhex("ef") GENESIS_HASH = ('000000000933ea01ad0ee984209779ba' 'aec3ced90fa3f408719526f8d77f4943') - REORG_LIMIT = 4000 + REORG_LIMIT = 8000 TX_COUNT = 12242438 TX_COUNT_HEIGHT = 1035428 TX_PER_BLOCK = 21