From 7e57dbe09321978cfd7d0b50ced1f96e247a525f Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 16 Mar 2017 12:52:38 -0500 Subject: [PATCH] chaincfg: Allow non-std transactions on testnet2. The test network should allow any scripts and transaction types that are valid according to consensus rules as opposed to the more strict standardness rules that apply to mainnet. This allows new script forms and types to be tested before they go to mainnet. Also, this is the same setting as the previous test network. --- chaincfg/params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chaincfg/params.go b/chaincfg/params.go index 558947979d..902ff82b55 100644 --- a/chaincfg/params.go +++ b/chaincfg/params.go @@ -772,7 +772,7 @@ var TestNet2Params = Params{ BlockUpgradeNumToCheck: 100, // Mempool parameters - RelayNonStdTxs: false, + RelayNonStdTxs: true, // Address encoding magics NetworkAddressPrefix: "T",