From 25d7b3055f9cec988632ea920ef0cdf103ee37b0 Mon Sep 17 00:00:00 2001 From: oxarbitrage Date: Fri, 17 Mar 2017 18:31:45 -0300 Subject: [PATCH] struct range_proof_info change int to int64_t https://github.com/bitshares/bitshares-core/issues/160 --- include/fc/crypto/elliptic.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fc/crypto/elliptic.hpp b/include/fc/crypto/elliptic.hpp index dd60da7..7d3046f 100644 --- a/include/fc/crypto/elliptic.hpp +++ b/include/fc/crypto/elliptic.hpp @@ -218,8 +218,8 @@ namespace fc { struct range_proof_info { - int exp; - int mantissa; + int64_t exp; + int64_t mantissa; uint64_t min_value; uint64_t max_value; };