void Tx::set(Coin::Transaction coin_tx, uint32_t timestamp, status_t status) { LOGGER(trace) << "Tx::set - fromCoinClasses(coin_tx);" << std::endl; fromCoinClasses(coin_tx); timestamp_ = timestamp; if (missingSigCount()) { status_ = UNSIGNED; } else { status_ = status; hash_ = coin_tx.getHashLittleEndian(); } coin_tx.clearScriptSigs(); unsigned_hash_ = coin_tx.getHashLittleEndian(); }
void onTx(Peer& peer, const Coin::Transaction& tx) { cout << endl << "Received transaction " << tx.getHashLittleEndian().getHex() << " from peer " << peer.name() << endl;// << tx.toIndentedString() << endl; }