From 7005e5fd55f007ff0c15a518036def669716f77b Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Thu, 17 Jan 2019 16:49:08 +0800 Subject: [PATCH] Replace `['uint384']` with `Signature` --- specs/core/0_beacon-chain.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index cf284b169..7873a5aa4 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -311,7 +311,7 @@ Unless otherwise indicated, code appearing in `this style` is to be interpreted # Attestation data 'data': AttestationData, # Aggregate signature - 'aggregate_signature': ['uint384'], + 'aggregate_signature': Signature, } ``` @@ -328,7 +328,7 @@ Unless otherwise indicated, code appearing in `this style` is to be interpreted # Custody bitfield 'custody_bitfield': 'bytes', # BLS aggregate signature - 'aggregate_signature': ['uint384'], + 'aggregate_signature': Signature, } ``` @@ -407,7 +407,7 @@ Unless otherwise indicated, code appearing in `this style` is to be interpreted # Initial custody commitment 'custody_commitment': 'bytes32', # A BLS signature of this `DepositInput` - 'proof_of_possession': ['uint384'], + 'proof_of_possession': Signature, } ``` @@ -438,7 +438,7 @@ Unless otherwise indicated, code appearing in `this style` is to be interpreted 'state_root': 'bytes32', 'randao_reveal': 'bytes32', 'deposit_root': 'bytes32', - 'signature': ['uint384'], + 'signature': Signature, ## Body ## 'body': BeaconBlockBody,