From 1b3e4e9c4bb31098854f1576f22e42392f6f8185 Mon Sep 17 00:00:00 2001 From: Stuart Popejoy Date: Thu, 30 Apr 2020 19:38:34 -0400 Subject: [PATCH] development to 20 chains --- lib/TXG/Utils.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/TXG/Utils.hs b/lib/TXG/Utils.hs index 56a3c4d..9b3a898 100644 --- a/lib/TXG/Utils.hs +++ b/lib/TXG/Utils.hs @@ -135,7 +135,7 @@ cidFromText t = case readEither (T.unpack t) of chainIds :: ChainwebVersion -> [ChainId] chainIds Mainnet01 = ChainId <$> [0..9] -chainIds Development = ChainId <$> [0..9] +chainIds Development = ChainId <$> [0..19] chainIds Testnet04 = ChainId <$> [0..9] -- -------------------------------------------------------------------------- -- @@ -306,4 +306,3 @@ mempoolMember -> [TransactionHash] -> IO (Either ClientError [Bool]) mempoolMember m a v c txh = mempoolPost m a v c "/member" txh -