Ejemplo n.º 1
0
        public void SendSignedTransaction()
        {
            // This can only be executed once in testnet, then tx input is spend and not longer useable
            GenerateRawTx();
            // Signing for hardware wallets is done on the website, we can directly broadcast signed txs
            var signedTx = node.SignRawTx(rawTx);

            Console.WriteLine("Final tx: " + node.BroadcastSignedTxIntoDashNetwork(signedTx, false));
        }