We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8b78b1 commit f9b0661Copy full SHA for f9b0661
plenum/server/node.py
@@ -3304,6 +3304,14 @@ def commitAndSendReplies(self, three_pc_batch: ThreePcBatch) -> List:
3304
# in between catchup rounds, then the 3PC batch will not be applied,
3305
# since it was reverted before catchup started, and only COMMITs were
3306
# processed in between catchup that led to this ORDERED msg
3307
+ logger.info("{} applying stashed requests for batch {} {} of {} requests; state root {}; txn root {}"
3308
+ .format(self.name,
3309
+ three_pc_batch.view_no,
3310
+ three_pc_batch.pp_seq_no,
3311
+ len(three_pc_batch.valid_digests),
3312
+ three_pc_batch.state_root,
3313
+ three_pc_batch.txn_root))
3314
+
3315
self.apply_stashed_reqs(three_pc_batch)
3316
3317
reqHandler = self.get_req_handler(three_pc_batch.ledger_id)
0 commit comments