mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
wallet_rpc_server: fix build - forgot to build rpc version
This commit is contained in:
parent
2329d2f4c8
commit
9b38551c3c
@ -1195,7 +1195,7 @@ namespace wallet_rpc
|
||||
std::string address;
|
||||
bool double_spend_seen;
|
||||
uint64_t confirmations;
|
||||
uint64_t suggested_confirmation_threshold;
|
||||
uint64_t suggested_confirmations_threshold;
|
||||
|
||||
BEGIN_KV_SERIALIZE_MAP()
|
||||
KV_SERIALIZE(txid);
|
||||
@ -1211,8 +1211,8 @@ namespace wallet_rpc
|
||||
KV_SERIALIZE(subaddr_index);
|
||||
KV_SERIALIZE(address);
|
||||
KV_SERIALIZE(double_spend_seen)
|
||||
KV_SERIALIZE_OPT(confirmations, 0)
|
||||
KV_SERIALIZE_OPT(suggested_confirmation_threshold, 0)
|
||||
KV_SERIALIZE_OPT(confirmations, (uint64_t)0)
|
||||
KV_SERIALIZE_OPT(suggested_confirmations_threshold, (uint64_t)0)
|
||||
END_KV_SERIALIZE_MAP()
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user