- Change file mode from 644 to 755 for all project files - Add chain_id parameter to get_balance RPC endpoint with default "ait-devnet" - Rename Miner.extra_meta_data to extra_metadata for consistency
12 lines
450 B
Diff
Executable File
12 lines
450 B
Diff
Executable File
--- 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
|