remove vote logs

This commit is contained in:
musitdev 2023-09-20 17:07:28 +02:00
parent 2c88df491c
commit 8ea2ad4730
1 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ impl VoteStore {
bail!("Can't read Vote from account data");
};
log::info!("add_vote {} :{vote_data:?}", new_account.pubkey);
//log::info!("add_vote {} :{vote_data:?}", new_account.pubkey);
let new_voteacc = StoredVote {
pubkey: new_account.pubkey,
@ -144,7 +144,7 @@ pub fn merge_program_account_in_vote_map(
},
)
.for_each(|(pk, vote)| {
log::info!("Vote init {pk} :{vote:?}");
//log::info!("Vote init {pk} :{vote:?}");
let vote = StoredVote {
pubkey: pk,
vote_data: vote,