From 00230328ec847663df0a62b563210cdd562c5440 Mon Sep 17 00:00:00 2001 From: Yoichi Hirai Date: Mon, 20 Nov 2017 12:08:59 +0100 Subject: [PATCH] Replace a METROPOLIS with BYZANTIUM --- EIPS/eip-100.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EIPS/eip-100.md b/EIPS/eip-100.md index 2d631de3..6bb6dcfc 100644 --- a/EIPS/eip-100.md +++ b/EIPS/eip-100.md @@ -18,7 +18,7 @@ child_diff = int(max(parent.difficulty + (parent.difficulty // BLOCK_DIFF_FACTOR ... ``` -If `block.number >= METROPOLIS_FORK_BLKNUM`, we change the first line to the following: +If `block.number >= BYZANTIUM_FORK_BLKNUM`, we change the first line to the following: ``` python adj_factor = max((2 if len(parent.uncles) else 1) - ((timestamp - parent.timestamp) // 9), -99)