From b389c6a5bf0d45cb8ba85bdcc3cec65cce404ac6 Mon Sep 17 00:00:00 2001 From: Seongjun Ji Date: Tue, 11 Aug 2020 14:49:25 +0900 Subject: [PATCH] Extend timeout --- loopchain/consensus/runner.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/loopchain/consensus/runner.py b/loopchain/consensus/runner.py index 3137dbd07..f3a08ee38 100644 --- a/loopchain/consensus/runner.py +++ b/loopchain/consensus/runner.py @@ -53,7 +53,8 @@ def __init__(self, signer=ChannelProperty().peer_auth ) self.consensus = Consensus( - self.event_system, ChannelProperty().peer_address, self._block_factory, self._vote_factory + self.event_system, ChannelProperty().peer_address, self._block_factory, self._vote_factory, + 10, 10 ) self._loop = asyncio.get_event_loop()