示例#1
0
        public static bool DecodeRawTransaction()
        {
            Console.WriteLine("Starting DecodeRawTransaction tests...");

            // Note that right now, CreateRawTransaction in this class needs to be called first to fill the rawTx strings.

            Bitcoind.DecodeRawTransaction(_rawTx1To1);
            Bitcoind.DecodeRawTransaction(_rawTx1To2);
            Bitcoind.DecodeRawTransaction(_rawTx2To1);
            Bitcoind.DecodeRawTransaction(_rawTx2To2);

            return(true);
        }