Skip to content

Commit

Permalink
Review
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin-Radecki committed Oct 16, 2024
1 parent ddcddf0 commit 8d9035f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e-tests/src/balance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ impl Balance {
/// Bridge AZERO to wAZERO.
pub fn bridge_azero_azero_to_eth(&self, transfer_amount: u128) -> Result<Self> {
let mut balance = self.clone();
let azero_wzaero_decimal_ratio = 1000000u128;
let azero_wzaero_decimal_ratio = 1_000_000;
balance.azero = balance
.azero
.checked_sub(transfer_amount)
Expand Down
2 changes: 1 addition & 1 deletion eth/scripts/1_setup_bridge_contracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ async function main() {
// --- setup
const Most = await ethers.getContractFactory("Most");
const most = Most.attach(addresses.most);
//

// --- add Ethereum -> Aleph token pairs
for (let token of addresses.ethTokens) {
await addTokenPair(
Expand Down

0 comments on commit 8d9035f

Please sign in to comment.