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 Oct 9, 2023
1 parent 1a94d9c commit 8cea853
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 8cea853

Please sign in to comment.