From b396bb9be5df6f19c26d448f2f629d6c25f89908 Mon Sep 17 00:00:00 2001 From: teor Date: Tue, 23 Mar 2021 11:09:06 +1000 Subject: [PATCH] Document that the mandatory checkpoint can change We don't want users relying on the exact height of Zebra's mandatory checkpoint. --- zebra-consensus/src/config.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zebra-consensus/src/config.rs b/zebra-consensus/src/config.rs index a5b036e0..0ad6ac8f 100644 --- a/zebra-consensus/src/config.rs +++ b/zebra-consensus/src/config.rs @@ -8,6 +8,9 @@ pub struct Config { /// /// Setting this option to true enables post-Canopy checkpoints. /// (Zebra always checkpoints on Canopy activation.) + /// + /// Future versions of Zebra may change the mandatory checkpoint + /// height. pub checkpoint_sync: bool, }