From 525465343fcf266a03d8be4844c449a8f2dd5280 Mon Sep 17 00:00:00 2001 From: pascal Date: Mon, 2 Oct 2023 12:29:47 +0200 Subject: [PATCH] scribe: Adds comment for _pubKeys --- src/Scribe.sol | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Scribe.sol b/src/Scribe.sol index 3c7cb1e..29b4953 100644 --- a/src/Scribe.sol +++ b/src/Scribe.sol @@ -44,6 +44,8 @@ contract Scribe is IScribe, Auth, Toll { /// @dev Scribe's current value and corresponding age. PokeData internal _pokeData; + /// @dev Statically allocated array of feeds' public keys. + /// Indexed via the public keys address' highest-order byte. LibSecp256k1.Point[256] internal _pubKeys; /// @inheritdoc IScribe