Skip to content

Commit 2fe8cc5

Browse files
committedJan 31, 2023
Comment
1 parent 5698c78 commit 2fe8cc5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎program/rust/src/accounts/product.rs

+5
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ impl PythAccount for ProductAccount {
4242
const MINIMUM_SIZE: usize = PC_PROD_ACC_SIZE as usize;
4343
}
4444

45+
/// Updates the metadata in a product account.
46+
/// The product metadata is located after the header. It is a key-value storage
47+
/// where keys are strings and values are strings
48+
/// that is represented as a byte array with the following schema :
49+
/// [len(key1), ...key1, len(val1), ...val1, len(key2), ...key2, len(val2), ...val2, ...]
4550
pub fn update_product_metadata(
4651
instruction_data: &[u8],
4752
product_account: &AccountInfo,

0 commit comments

Comments
 (0)