From b358241e43fbaca0669c9ab34d4116e96822bb9d Mon Sep 17 00:00:00 2001
From: pbattu123
Date: Fri, 20 Sep 2019 14:03:59 -0300
Subject: [PATCH] Comments update
---
libraries/wallet/wallet.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libraries/wallet/wallet.cpp b/libraries/wallet/wallet.cpp
index 75a90f82..185fc7d1 100644
--- a/libraries/wallet/wallet.cpp
+++ b/libraries/wallet/wallet.cpp
@@ -1971,7 +1971,7 @@ public:
fc::optional vbid = maybe_id(witness_name);
if( !vbid )
{
- //Changes done to retrive user accounts along with witnesses accounts based on account name
+ //Changes done to retrive user account/witness account based on account name
fc::optional acct_id = maybe_id( witness_name );
if( !acct_id )
acct_id = get_account( witness_name ).id;
@@ -1985,7 +1985,7 @@ public:
}
}
- //whether it is a witness or user, keep in container and iterate over it process all vesting balances and types
+ //whether it is a witness or user, keep it in a container and iterate over to process all vesting balances and types
if(!vbos.size())
vbos.emplace_back( get_object(*vbid) );