From 1068076822142d8044e0ef25d4dd99ed2a90b532 Mon Sep 17 00:00:00 2001 From: Joseph Delong Date: Fri, 21 Dec 2018 16:18:41 -0600 Subject: [PATCH] update vrc cotnract for vyper v0.1.0-beta.6 --- specs/core/0_beacon-chain.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index d805d3934..7d4194085 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -621,7 +621,7 @@ When sufficiently many full deposits have been made the deposit contract emits t ### Vyper code ```python -## compiled with v0.1.0-beta.4 ## +## compiled with v0.1.0-beta.6 ## MIN_DEPOSIT: constant(uint256) = 1 # ETH MAX_DEPOSIT: constant(uint256) = 32 # ETH @@ -634,7 +634,7 @@ SECONDS_PER_DAY: constant(uint256) = 86400 Eth1Deposit: event({previous_receipt_root: bytes32, data: bytes[2064], deposit_count: uint256}) ChainStart: event({receipt_root: bytes32, time: bytes[8]}) -receipt_tree: bytes32[uint256] +receipt_tree: map(uint256, bytes32) deposit_count: uint256 full_deposit_count: uint256