BitcoinLib.Services.CoinService.DecodeScript C# (CSharp) Method

DecodeScript() public method

public DecodeScript ( string hexString ) : DecodeScriptResponse
hexString string
return DecodeScriptResponse
        public DecodeScriptResponse DecodeScript(string hexString)
        {
            return _rpcConnector.MakeRequest<DecodeScriptResponse>(RpcMethods.decodescript, hexString);
        }