Change cryptonote::COMMAND_RPC_SET_LIMIT::response to use int64_t

This commit is contained in:
Nick Johnson 2018-01-04 20:59:29 -06:00
parent a529f0a6c9
commit 301ec15c49
No known key found for this signature in database
GPG Key ID: 57B519D8E4B741EF
1 changed files with 2 additions and 2 deletions

View File

@ -1653,8 +1653,8 @@ namespace cryptonote
struct response
{
std::string status;
uint64_t limit_up;
uint64_t limit_down;
int64_t limit_up;
int64_t limit_down;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE(status)