From 0ba361a59a3ca1c797f53089ea65c7dc0d6d096c Mon Sep 17 00:00:00 2001 From: jl777 Date: Fri, 21 Oct 2016 17:34:42 -0300 Subject: [PATCH] test --- src/coins.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/coins.h b/src/coins.h index da201a91c..920a17f0c 100644 --- a/src/coins.h +++ b/src/coins.h @@ -85,12 +85,14 @@ public: //! version of the CTransaction; accesses to this value should probably check for nHeight as well, //! as new tx version will probably only be introduced at certain heights int nVersion; + uint32_t nLockTime; void FromTx(const CTransaction &tx, int nHeightIn) { fCoinBase = tx.IsCoinBase(); vout = tx.vout; nHeight = nHeightIn; nVersion = tx.nVersion; + nLockTime = tx.nLockTime; ClearUnspendable(); }