Browse Source

Improved efficiency in COutPoint constructors

0.15
Marcos Mayorga 7 years ago committed by Marcos Mayorga
parent
commit
4fbae77929
  1. 4
      src/primitives/transaction.h

4
src/primitives/transaction.h

@ -22,8 +22,8 @@ public: @@ -22,8 +22,8 @@ public:
uint256 hash;
uint32_t n;
COutPoint() { SetNull(); }
COutPoint(uint256 hashIn, uint32_t nIn) { hash = hashIn; n = nIn; }
COutPoint(): n((uint32_t) -1) { }
COutPoint(const uint256& hashIn, uint32_t nIn): hash(hashIn), n(nIn) { }
ADD_SERIALIZE_METHODS;

Loading…
Cancel
Save