Skip to content

Commit

Permalink
refactor: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
kerber0x committed Sep 2, 2024
1 parent 042b3f5 commit 7ef2363
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions contracts/liquidity_hub/bonding-manager/src/tests/claim.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fn test_claim_successfully() {
let asset_denoms = vec!["uwhale".to_string(), "uusdc".to_string()];

#[cfg(feature = "osmosis")]
let pool_fees = PoolFee {
let pool_fees = PoolFee {
protocol_fee: Fee {
share: Decimal::from_ratio(1u128, 100u128),
},
Expand Down Expand Up @@ -913,7 +913,7 @@ fn test_rewards_forwarding() {
};

#[cfg(feature = "osmosis")]
let pool_fees = PoolFee {
let pool_fees = PoolFee {
protocol_fee: Fee {
share: Decimal::from_ratio(1u128, 100u128),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fn test_queries() {
};

#[cfg(feature = "osmosis")]
let pool_fees = PoolFee {
let pool_fees = PoolFee {
protocol_fee: Fee {
share: Decimal::from_ratio(1u128, 100u128),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ fn test_fill_rewards_from_pool_manager() {
};

#[cfg(feature = "osmosis")]
let pool_fees = PoolFee {
let pool_fees = PoolFee {
protocol_fee: Fee {
share: Decimal::from_ratio(1u128, 100u128),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fn test_unbonding_withdraw() {
};

#[cfg(feature = "osmosis")]
let pool_fees = PoolFee {
let pool_fees = PoolFee {
protocol_fee: Fee {
share: Decimal::from_ratio(1u128, 100u128),
},
Expand Down

0 comments on commit 7ef2363

Please sign in to comment.