Merge pull request #3068

301ec15c Change cryptonote::COMMAND_RPC_SET_LIMIT::response to use int64_t (Nick Johnson)
This commit is contained in:
Riccardo Spagni 2018-01-25 16:47:29 -08:00
commit c222b6485e
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

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)