Esempio n. 1
0
        public static bool SetTxFee()
        {
            Console.WriteLine("Starting SetTxFee tests...");

            if (!Bitcoind.SetTxFee("0.0005"))
            {
                return(false);
            }
            if (!Bitcoind.SetTxFee("0.0001"))
            {
                return(false);
            }

            return(true);
        }