Skip to content

Commit

Permalink
Make ERC20 flow control fields public
Browse files Browse the repository at this point in the history
  • Loading branch information
sug0 committed Sep 29, 2023
1 parent 2ca6524 commit 65f3717
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions shared/src/ledger/queries/shell/eth_bridge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ use crate::types::storage::MembershipProof::BridgePool;
)]
pub struct Erc20FlowControl {
/// Whether the wrapped asset is whitelisted.
whitelisted: bool,
pub whitelisted: bool,
/// Total minted supply of some wrapped asset.
supply: Amount,
pub supply: Amount,
/// The token cap of some wrapped asset.
cap: Amount,
pub cap: Amount,
}

impl Erc20FlowControl {
Expand Down

0 comments on commit 65f3717

Please sign in to comment.