diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index 38d6b1401d5887..d9ddb07f923550 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -1288,6 +1288,9 @@ UniValue getblockchaininfo(const JSONRPCRequest& request) } const Consensus::Params& consensusParams = Params().GetConsensus(); + if (consensusParams.signet_blocks) { + obj.pushKV("signet-blockscript", HexStr(g_signet_blockscript)); + } UniValue softforks(UniValue::VOBJ); BuriedForkDescPushBack(softforks, "bip34", consensusParams.BIP34Height); BuriedForkDescPushBack(softforks, "bip66", consensusParams.BIP66Height);