We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48a01e1 commit a9d2bf0Copy full SHA for a9d2bf0
1 file changed
crates/blockchain/src/lib.rs
@@ -220,11 +220,9 @@ impl BlockChainServer {
220
return;
221
};
222
223
- // Create proposer's attestation (attests to the new block)
224
- //
225
- // Use post-block checkpoints from the state transition rather than the
226
- // store's current values. The block's attestations may have advanced
227
- // justification/finalization, but the block hasn't been imported yet.
+ // Create proposer's attestation using post-block checkpoints because
+ // the block's attestations may have advanced justification/finalization
+ // but the block hasn't been imported into the store yet.
228
let proposer_attestation = Attestation {
229
validator_id,
230
data: AttestationData {
0 commit comments