Merge pull request #351 from dangerousfood/vrc-con-update
Update VRC contract for Vyper v0.1.0-beta.6
This commit is contained in:
commit
985a3fe958
|
@ -639,7 +639,7 @@ When sufficiently many full deposits have been made the deposit contract emits t
|
||||||
### Vyper code
|
### Vyper code
|
||||||
|
|
||||||
```python
|
```python
|
||||||
## compiled with v0.1.0-beta.4 ##
|
## compiled with v0.1.0-beta.6 ##
|
||||||
|
|
||||||
MIN_DEPOSIT: constant(uint256) = 1 # ETH
|
MIN_DEPOSIT: constant(uint256) = 1 # ETH
|
||||||
MAX_DEPOSIT: constant(uint256) = 32 # ETH
|
MAX_DEPOSIT: constant(uint256) = 32 # ETH
|
||||||
|
@ -652,7 +652,7 @@ SECONDS_PER_DAY: constant(uint256) = 86400
|
||||||
Eth1Deposit: event({previous_receipt_root: bytes32, data: bytes[2064], deposit_count: uint256})
|
Eth1Deposit: event({previous_receipt_root: bytes32, data: bytes[2064], deposit_count: uint256})
|
||||||
ChainStart: event({receipt_root: bytes32, time: bytes[8]})
|
ChainStart: event({receipt_root: bytes32, time: bytes[8]})
|
||||||
|
|
||||||
receipt_tree: bytes32[uint256]
|
receipt_tree: map(uint256, bytes32)
|
||||||
deposit_count: uint256
|
deposit_count: uint256
|
||||||
full_deposit_count: uint256
|
full_deposit_count: uint256
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue