docs: run automated documentation updates workflow

This commit is contained in:
oib
2026-03-03 20:48:51 +01:00
parent 0ebac91f45
commit f0c7cd321e
60 changed files with 678 additions and 81 deletions

View File

@@ -0,0 +1,11 @@
--- a/apps/blockchain-node/src/aitbc_chain/consensus/poa.py
+++ b/apps/blockchain-node/src/aitbc_chain/consensus/poa.py
@@ -101,7 +101,7 @@
# Wait for interval before proposing next block
await asyncio.sleep(self.config.interval_seconds)
- self._propose_block()
+ await self._propose_block()
except asyncio.CancelledError:
pass