Improved efficiency in COutPoint constructors

This commit is contained in:
Marcos Mayorga 2017-04-28 09:03:51 +01:00 committed by Marcos Mayorga
parent 4c924011f5
commit 4fbae77929

View file

@ -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;