From 9e9a5fb3d99da23bbfff7e0dd3614f332496db89 Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Fri, 28 Jun 2024 11:57:22 -0400 Subject: [PATCH] docs(chain): add context for ConfirmationTimeHeightAnchor.confirmation_time field --- crates/chain/src/chain_data.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/chain/src/chain_data.rs b/crates/chain/src/chain_data.rs index ae0976de57..a6aa909bfc 100644 --- a/crates/chain/src/chain_data.rs +++ b/crates/chain/src/chain_data.rs @@ -199,7 +199,8 @@ impl AnchorFromBlockPosition for ConfirmationHeightAnchor { pub struct ConfirmationTimeHeightAnchor { /// The confirmation height of the transaction being anchored. pub confirmation_height: u32, - /// The confirmation time of the transaction being anchored. + /// The confirmation time of the transaction being anchored as claimed by the miner in the block + /// header. pub confirmation_time: u64, /// The anchor block. pub anchor_block: BlockId,