Ejemplo n.º 1
0
//C++ TO C# CONVERTER TODO TASK: The implementation of the following method could not be found:
//	TransactionImpl(BinaryArray txblob);
        public TransactionImpl(CryptoNote.Transaction tx)
        {
            this.transaction = new CryptoNote.Transaction(tx);
            extra.parse(transaction.extra);
        }
Ejemplo n.º 2
0
 public abstract bool checkTransactionInputs(CryptoNote.Transaction tx, BlockInfo maxUsedBlock, BlockInfo lastFailed);
Ejemplo n.º 3
0
 public abstract bool haveSpentKeyImages(CryptoNote.Transaction tx);
Ejemplo n.º 4
0
 public override void relayTransaction(CryptoNote.Transaction transaction, Callback callback)
 {
     callback(std::error_code());
 }