Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade substrate to v0.9.37 #2072

Merged
merged 22 commits into from
Feb 13, 2023
Merged
Prev Previous commit
Next Next commit
fix tests
  • Loading branch information
nbaztec committed Feb 9, 2023
commit c36d9be588bdf48118c1adb5993506d264f6ed11
2 changes: 1 addition & 1 deletion tests/tests/test-maintenance/test-maintenance-filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ describeDevMoonbeam("Maintenance Mode - Filter", (context) => {
name: "FOREIGN",
symbol: "FOREIGN",
decimals: new BN(12),
status: "Live",
isFroze: false,
};

const sourceLocation = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ describeDevMoonbeamAllEthTxTypes(

let alithFrozen = await context.polkadotApi.query.localAssets.account(assetId, alith.address);

expect(alithFrozen.unwrap()["status"].isFrozen).to.be.true;
expect(alithFrozen.unwrap().isFrozen.isTrue).to.be.true;
});
},
true
Expand Down Expand Up @@ -1004,7 +1004,7 @@ describeDevMoonbeamAllEthTxTypes(
alith.address
);

expect(baltatharFrozen.unwrap()["status"].isFrozen).to.be.true;
expect(baltatharFrozen.unwrap().isFrozen.isTrue).to.be.true;
});
},
true
Expand Down