You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// GBT must be called with 'signet' set in the rules for signet chains
720
+
if (consensusParams.signet_blocks && setClientRules.count("signet") != 1) {
721
+
throwJSONRPCError(RPC_INVALID_PARAMETER, "getblocktemplate must be called with the signet rule set (call with {\"rules\": [\"segwit\", \"signet\"]})");
722
+
}
723
+
717
724
// GBT must be called with 'segwit' set in the rules
718
725
if (setClientRules.count("segwit") != 1) {
719
726
throwJSONRPCError(RPC_INVALID_PARAMETER, "getblocktemplate must be called with the segwit rule set (call with {\"rules\": [\"segwit\"]})");
0 commit comments