Skip to content

Commit

Permalink
remove extra pub in Hyllar
Browse files Browse the repository at this point in the history
  • Loading branch information
hhalex committed Feb 26, 2025
1 parent 5c2ed5a commit b6fa884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/contracts/hyllar/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub mod indexer;
#[derive(BorshSerialize, BorshDeserialize, Serialize, Deserialize, Debug, Clone)]
pub struct Hyllar {
total_supply: u128,
pub balances: BTreeMap<String, u128>, // Balances for each account
balances: BTreeMap<String, u128>, // Balances for each account
#[serde_as(as = "Vec<(_, _)>")]
allowances: BTreeMap<(String, String), u128>, // Allowances (owner, spender)
}
Expand Down

0 comments on commit b6fa884

Please sign in to comment.