From 647a5369fc7c950f7f9b78fb19f10cf53310b0db Mon Sep 17 00:00:00 2001 From: Pavel Baykov Date: Tue, 14 Jun 2022 13:13:52 -0300 Subject: [PATCH] process_proposal stub true --- .../peerplays_sidechain/sidechain_net_handler_eth.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libraries/plugins/peerplays_sidechain/sidechain_net_handler_eth.cpp b/libraries/plugins/peerplays_sidechain/sidechain_net_handler_eth.cpp index f940dc16..3cc7ec43 100644 --- a/libraries/plugins/peerplays_sidechain/sidechain_net_handler_eth.cpp +++ b/libraries/plugins/peerplays_sidechain/sidechain_net_handler_eth.cpp @@ -502,7 +502,7 @@ sidechain_net_handler_eth::~sidechain_net_handler_eth() { bool sidechain_net_handler_eth::process_proposal(const proposal_object &po) { - //ilog("Proposal to process: ${po}, SON id ${son_id}", ("po", po.id)("son_id", plugin.get_current_son_id())); + ilog("Proposal to process: ${po}, SON id ${son_id}", ("po", po.id)("son_id", plugin.get_current_son_id())); /* bool should_approve = false; @@ -785,7 +785,8 @@ bool sidechain_net_handler_eth::process_proposal(const proposal_object &po) { return should_approve; */ - return false; + + return true; } void sidechain_net_handler_eth::process_primary_wallet() {