aboutsummaryrefslogtreecommitdiff
path: root/src/consensus
diff options
context:
space:
mode:
Diffstat (limited to 'src/consensus')
-rw-r--r--src/consensus/consensus-simulation.py.in5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/consensus/consensus-simulation.py.in b/src/consensus/consensus-simulation.py.in
index 161015d00..23639b195 100644
--- a/src/consensus/consensus-simulation.py.in
+++ b/src/consensus/consensus-simulation.py.in
@@ -17,9 +17,6 @@
17# 17#
18# SPDX-License-Identifier: AGPL3.0-or-later 18# SPDX-License-Identifier: AGPL3.0-or-later
19 19
20from __future__ import absolute_import
21from __future__ import print_function
22from __future__ import division
23from builtins import str 20from builtins import str
24from builtins import range 21from builtins import range
25from past.utils import old_div 22from past.utils import old_div
@@ -49,8 +46,6 @@ def simulate(k, n, verbose):
49 print("we have", num_ghosts, "ghost peers") 46 print("we have", num_ghosts, "ghost peers")
50 # n.b. all peers with idx<k are evil 47 # n.b. all peers with idx<k are evil
51 peers = list(range(n)) 48 peers = list(range(n))
52 # py2-3 compatible, backwards.
53 # refer to http://python-future.org/compatible_idioms.html#xrange
54 info = [1 << x for x in range(n)] 49 info = [1 << x for x in range(n)]
55 50
56 def done_p(): 51 def done_p():