public IActionResult NewTransaction(TransactionClient transaction)
        {
            var sign     = RSA.RSA.Sign(transaction.sender_private_key, transaction.ToString());
            var response = new { transaction = transaction, signature = sign };

            return(Ok(response));
        }