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
No known key found for this signature in database
GPG Key ID: 665DBCD284F7DAFF
1 changed files with 1 additions and 1 deletions

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;