From daed9ba7ccbf3e507a609683e7ed345073960ed0 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Thu, 3 May 2018 10:47:22 +0100 Subject: [PATCH] Change JSOutPoint constructor to have js argument be uint64_t Closes #3192. --- src/wallet/wallet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 6c05244e4..831541040 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -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;