Put parachain head hash into CandidateDescriptor (#2310)

* Put parachain head hash into `CandidateDescriptor`

* Update guide

* Add some checks
This commit is contained in:
Bastian Köcher
2021-01-25 13:56:17 +01:00
committed by GitHub
parent dba39c7515
commit 9563652bf2
6 changed files with 24 additions and 1 deletions
@@ -85,6 +85,8 @@ struct CandidateDescriptor {
/// Signature on blake2-256 of components of this receipt:
/// The parachain index, the relay parent, the validation data hash, and the pov_hash.
signature: CollatorSignature,
/// Hash of the para header that is being generated by this candidate.
para_head: Hash,
}
```