Merge pull request #324 from ethereum/cleanup

A couple of quick fixes
This commit is contained in:
Hsiao-Wei Wang 2018-12-15 10:32:44 +08:00 committed by GitHub
commit 6c6fcef0c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -34,7 +34,6 @@
- [`Deposit`](#deposit) - [`Deposit`](#deposit)
- [`DepositData`](#depositdata) - [`DepositData`](#depositdata)
- [`DepositInput`](#depositinput) - [`DepositInput`](#depositinput)
- [`ProofOfPossessionData`](#proofofpossessiondata)
- [Exits](#exits) - [Exits](#exits)
- [`Exit`](#exit) - [`Exit`](#exit)
- [Beacon chain blocks](#beacon-chain-blocks) - [Beacon chain blocks](#beacon-chain-blocks)
@ -1223,8 +1222,7 @@ def process_deposit(state: BeaconState,
deposit: int, deposit: int,
proof_of_possession: bytes, proof_of_possession: bytes,
withdrawal_credentials: Hash32, withdrawal_credentials: Hash32,
randao_commitment: Hash32, randao_commitment: Hash32) -> int:
status: int) -> int:
""" """
Process a deposit from Ethereum 1.0. Process a deposit from Ethereum 1.0.
Note that this function mutates ``state``. Note that this function mutates ``state``.