From 1df0f9f1b7dc7c633c5bcdff00607045fbb439b0 Mon Sep 17 00:00:00 2001 From: vbuterin Date: Tue, 27 Nov 2018 07:25:31 -0500 Subject: [PATCH] Fixed indent. --- specs/core/0_beacon-chain.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index 78c2e7df3..1403f404e 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -152,22 +152,22 @@ An `AttestationRecord` has the following fields: ```python { - # Slot number - 'slot': 'uint64', - # Shard number - 'shard': 'uint64', - # Hash of the block we're signing - 'block_hash': 'hash32', - # Hash of the ancestor at the cycle boundary - 'cycle_boundary_hash': 'hash32', - # Shard block hash being attested to - 'shard_block_hash': 'hash32', - # Last crosslink hash - 'last_crosslink_hash': 'hash32', - # Slot of last justified beacon block - 'justified_slot': 'uint64', - # Hash of last justified beacon block - 'justified_block_hash': 'hash32', + # Slot number + 'slot': 'uint64', + # Shard number + 'shard': 'uint64', + # Hash of the block we're signing + 'block_hash': 'hash32', + # Hash of the ancestor at the cycle boundary + 'cycle_boundary_hash': 'hash32', + # Shard block hash being attested to + 'shard_block_hash': 'hash32', + # Last crosslink hash + 'last_crosslink_hash': 'hash32', + # Slot of last justified beacon block + 'justified_slot': 'uint64', + # Hash of last justified beacon block + 'justified_block_hash': 'hash32', } ```