Remove logs
This commit is contained in:
parent
d937863949
commit
b6514577a7
2 changed files with 5 additions and 7 deletions
|
|
@ -242,8 +242,6 @@ void sidechain_net_handler::process_proposals() {
|
||||||
const auto po = idx.find(proposal_id);
|
const auto po = idx.find(proposal_id);
|
||||||
if (po != idx.end()) {
|
if (po != idx.end()) {
|
||||||
|
|
||||||
ilog("Proposal to process: ${po}, SON id ${son_id}", ("po", (*po).id)("son_id", plugin.get_current_son_id()));
|
|
||||||
|
|
||||||
if (po->available_active_approvals.find(plugin.get_current_son_object().son_account) != po->available_active_approvals.end()) {
|
if (po->available_active_approvals.find(plugin.get_current_son_object().son_account) != po->available_active_approvals.end()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
@ -308,16 +306,16 @@ void sidechain_net_handler::process_proposals() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (should_process) {
|
if (should_process) {
|
||||||
ilog("Proposal ${po} will be processed by sidechain handler ${sidechain}", ("po", (*po).id)("sidechain", sidechain));
|
//ilog("Proposal ${po} will be processed by sidechain handler ${sidechain}", ("po", (*po).id)("sidechain", sidechain));
|
||||||
bool should_approve = process_proposal(*po);
|
bool should_approve = process_proposal(*po);
|
||||||
if (should_approve) {
|
if (should_approve) {
|
||||||
ilog("Proposal ${po} will be approved", ("po", *po));
|
//ilog("Proposal ${po} will be approved", ("po", (*po).id));
|
||||||
approve_proposal(po->id, plugin.get_current_son_id());
|
approve_proposal(po->id, plugin.get_current_son_id());
|
||||||
} else {
|
} else {
|
||||||
ilog("Proposal ${po} is not approved", ("po", (*po).id));
|
//ilog("Proposal ${po} is not approved", ("po", (*po).id));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ilog("Proposal ${po} will not be processed by sidechain handler ${sidechain}", ("po", (*po).id)("sidechain", sidechain));
|
//ilog("Proposal ${po} will not be processed by sidechain handler ${sidechain}", ("po", (*po).id)("sidechain", sidechain));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -249,7 +249,7 @@ std::string sidechain_net_handler_peerplays::send_sidechain_transaction(const si
|
||||||
plugin.app().p2p_node()->broadcast(net::trx_message(trx));
|
plugin.app().p2p_node()->broadcast(net::trx_message(trx));
|
||||||
return trx.id().str();
|
return trx.id().str();
|
||||||
} catch (fc::exception e) {
|
} catch (fc::exception e) {
|
||||||
elog("Sending proposal for deposit sidechain transaction create operation failed with exception ${e}", ("e", e.what()));
|
elog("Sidechain transaction failed with exception ${e}", ("e", e.what()));
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue