remove last two references to signing root
This commit is contained in:
parent
47ecedb81d
commit
b09c45ffd2
|
@ -421,7 +421,7 @@ The fields are, as seen by the client at the time of sending the message:
|
||||||
- `head_fork_version`: The beacon_state `Fork` version.
|
- `head_fork_version`: The beacon_state `Fork` version.
|
||||||
- `finalized_root`: `state.finalized_checkpoint.root` for the state corresponding to the head block.
|
- `finalized_root`: `state.finalized_checkpoint.root` for the state corresponding to the head block.
|
||||||
- `finalized_epoch`: `state.finalized_checkpoint.epoch` for the state corresponding to the head block.
|
- `finalized_epoch`: `state.finalized_checkpoint.epoch` for the state corresponding to the head block.
|
||||||
- `head_root`: The signing root of the current head block.
|
- `head_root`: The hash_tree_root root of the current head block.
|
||||||
- `head_slot`: The slot of the block corresponding to the `head_root`.
|
- `head_slot`: The slot of the block corresponding to the `head_root`.
|
||||||
|
|
||||||
The dialing client MUST send a `Status` request upon connection.
|
The dialing client MUST send a `Status` request upon connection.
|
||||||
|
|
|
@ -37,7 +37,7 @@ Valid has 3 parts: `meta.yaml`, `serialized.ssz`, `value.yaml`
|
||||||
|
|
||||||
### `meta.yaml`
|
### `meta.yaml`
|
||||||
|
|
||||||
Valid ssz objects can have a hash-tree-root, and for some types also a signing-root.
|
Valid ssz objects can have a hash-tree-root.
|
||||||
The expected roots are encoded into the metadata yaml:
|
The expected roots are encoded into the metadata yaml:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
|
@ -61,7 +61,6 @@ The conditions are the same for each type:
|
||||||
- Encoding: After encoding the given `value` object, the output should match `serialized`.
|
- Encoding: After encoding the given `value` object, the output should match `serialized`.
|
||||||
- Decoding: After decoding the given `serialized` bytes, it should match the `value` object.
|
- Decoding: After decoding the given `serialized` bytes, it should match the `value` object.
|
||||||
- Hash-tree-root: the root should match the root declared in the metadata.
|
- Hash-tree-root: the root should match the root declared in the metadata.
|
||||||
- Signing-root: if present in metadata, the signing root of the object should match the container.
|
|
||||||
|
|
||||||
## `invalid`
|
## `invalid`
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue