diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index d1197ea13e374c..4aab56b6cf3f05 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -1277,6 +1277,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);