Skip to content

Commit

Permalink
Fix constant name (MystenLabs#4005)
Browse files Browse the repository at this point in the history
  • Loading branch information
oxade authored Aug 15, 2022
1 parent 8fca29d commit 0643e18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sui-types/src/base_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ impl IntoPoint for TransactionDigest {
pub struct ObjectDigest(
#[schemars(with = "Base64")]
#[serde_as(as = "Readable<Base64, Bytes>")]
pub [u8; TRANSACTION_DIGEST_LENGTH],
pub [u8; OBJECT_DIGEST_LENGTH],
); // We use SHA3-256 hence 32 bytes here

#[serde_as]
Expand Down

0 comments on commit 0643e18

Please sign in to comment.