From 3cde8738c2196500d177ea4fb73ca9c80162269b Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Wed, 10 Apr 2024 14:52:46 +0200 Subject: [PATCH] added example values to wallet_provision_info --- src/wallet/wallet_public_structs_defs.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/wallet/wallet_public_structs_defs.h b/src/wallet/wallet_public_structs_defs.h index ab7c82e2..00cbc3de 100644 --- a/src/wallet/wallet_public_structs_defs.h +++ b/src/wallet/wallet_public_structs_defs.h @@ -511,11 +511,11 @@ namespace wallet_public BEGIN_KV_SERIALIZE_MAP() - KV_SERIALIZE(transfers_count) DOC_DSCR("Number of transfers in wallet") DOC_EXMP() DOC_END - KV_SERIALIZE(transfer_entries_count) DOC_DSCR("Number of UTXO entries in wallet") DOC_EXMP() DOC_END - KV_SERIALIZE(balance) DOC_DSCR("Current balance of native coins") DOC_EXMP() DOC_END - KV_SERIALIZE(unlocked_balance) DOC_DSCR("Unlocked balance oof native coins") DOC_EXMP() DOC_END - KV_SERIALIZE(curent_height) DOC_DSCR("Current sync height of the wallet") DOC_EXMP() DOC_END + KV_SERIALIZE(transfers_count) DOC_DSCR("Number of transfers in wallet") DOC_EXMP(1) DOC_END + KV_SERIALIZE(transfer_entries_count) DOC_DSCR("Number of UTXO entries in wallet") DOC_EXMP(3) DOC_END + KV_SERIALIZE(balance) DOC_DSCR("Current balance of native coins") DOC_EXMP(100000000000) DOC_END + KV_SERIALIZE(unlocked_balance) DOC_DSCR("Unlocked balance oof native coins") DOC_EXMP(90000000000) DOC_END + KV_SERIALIZE(curent_height) DOC_DSCR("Current sync height of the wallet") DOC_EXMP(121212) DOC_END END_KV_SERIALIZE_MAP() };