Skip to content

Commit

Permalink
806 Add PL flag
Browse files Browse the repository at this point in the history
  • Loading branch information
kladkogex committed Feb 24, 2025
1 parent 7f83097 commit cb2c187
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions network/Network.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -333,14 +333,14 @@ void Network::postDeferOrDrop( const ptr< NetworkMessageEnvelope >& _me ) {
#ifndef PL
if ( msg->getMsgType() == MSG_ORACLE_REQ_BROADCAST || msg->getMsgType() == MSG_ORACLE_RSP ) {
sChain->getOracleResultAssemblyAgent()->postMessage( _me );
} else if ( sChain->getBlockConsensusInstance()->shouldPost( msg ) ) {
} else
#endif
if ( sChain->getBlockConsensusInstance()->shouldPost( msg ) ) {
sChain->postMessage( _me );
} else {
#endif

addToDeferredMessageQueue( _me );
#ifndef PL
}
#endif
}

void Network::trySendingDelayedSends() {
Expand Down

0 comments on commit cb2c187

Please sign in to comment.