1
0
Fork 0
forked from lthn/blockchain

added example values to wallet_provision_info

This commit is contained in:
cryptozoidberg 2024-04-10 14:52:46 +02:00
parent 53a27a4306
commit 3cde8738c2
No known key found for this signature in database
GPG key ID: 2E10CC61CAC8F36D

View file

@ -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()
};