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 13, 2023
1 parent a025cfc commit 3b3e6e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sdk/src/queries/shell/eth_bridge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ use crate::queries::{EncodedResponseQuery, RequestCtx, RequestQuery};
)]
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 3b3e6e9

Please sign in to comment.