From 0e084358b4154688f8decc0e7ee9d9d894f2c08c Mon Sep 17 00:00:00 2001 From: Rob Walker Date: Wed, 5 Feb 2020 12:23:19 -0800 Subject: [PATCH] Fix slot_hashes documentation --- sdk/src/slot_hashes.rs | 2 +- sdk/src/sysvar/slot_hashes.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/src/slot_hashes.rs b/sdk/src/slot_hashes.rs index 7a4df5fb6b..ff1f0b2e1e 100644 --- a/sdk/src/slot_hashes.rs +++ b/sdk/src/slot_hashes.rs @@ -1,6 +1,6 @@ //! named accounts for synthesized data accounts for bank state, etc. //! -//! this account carries the Bank's most recent blockhashes for some N parents +//! this account carries the Bank's most recent bank hashes for some N parents //! use crate::hash::Hash; use std::{iter::FromIterator, ops::Deref}; diff --git a/sdk/src/sysvar/slot_hashes.rs b/sdk/src/sysvar/slot_hashes.rs index b219412140..757d9f40f3 100644 --- a/sdk/src/sysvar/slot_hashes.rs +++ b/sdk/src/sysvar/slot_hashes.rs @@ -1,6 +1,6 @@ //! named accounts for synthesized data accounts for bank state, etc. //! -//! this account carries the Bank's most recent blockhashes for some N parents +//! this account carries the Bank's most recent bank hashes for some N parents //! pub use crate::slot_hashes::SlotHashes;