mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #3068
301ec15c
Change cryptonote::COMMAND_RPC_SET_LIMIT::response to use int64_t (Nick Johnson)
This commit is contained in:
commit
c222b6485e
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue