Change JSOutPoint constructor to have js argument be uint64_t

Closes #3192.
This commit is contained in:
Jack Grigg
2018-05-03 10:47:22 +01:00
parent 9e5398686c
commit daed9ba7cc

View File

@@ -165,7 +165,7 @@ public:
uint8_t n;
JSOutPoint() { SetNull(); }
JSOutPoint(uint256 h, size_t js, uint8_t n) : hash {h}, js {js}, n {n} { }
JSOutPoint(uint256 h, uint64_t js, uint8_t n) : hash {h}, js {js}, n {n} { }
ADD_SERIALIZE_METHODS;