Skip to content

Commit

Permalink
fix tests (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc authored Oct 3, 2023
1 parent 6d3b232 commit 87a8939
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion networks/moonbeam.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default {
config: ({ alith }) => ({
storages: {
System: {
Account: [[[alith.address], { data: { free: 1000n * 10n ** 18n } }]],
Account: [[[alith.address], { providers: 1, data: { free: 1000n * 10n ** 18n } }]],
},
AuthorFilter: {
EligibleRatio: 100,
Expand Down
2 changes: 1 addition & 1 deletion scripts/configs/shiden.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
extensions:
client:
endpoints:
- wss://shiden.api.onfinality.io:443/public-ws
- wss://rpc.shiden.astar.network
event_bus:
substrate_api:
stale_timeout_seconds: 60
Expand Down
4 changes: 2 additions & 2 deletions tests/acala/__snapshots__/liquid-crowdloan.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -151,15 +151,15 @@ exports[`liquid crowdloan > works > first redeem 1`] = `

exports[`liquid crowdloan > works > pallet account balance 1`] = `
{
"free": 99999216661,
"free": 99999232850,
"frozen": 0,
"reserved": 0,
}
`;

exports[`liquid crowdloan > works > pallet account balance after all transfer 1`] = `
{
"free": "0x00000000000000000358c71d041ad811",
"free": "0x00000000000000000358c71d041b568b",
"frozen": 0,
"reserved": 0,
}
Expand Down
4 changes: 2 additions & 2 deletions tests/xcm-transfer/__snapshots__/polkadot-para.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,10 @@ exports[`'acala' -> 'moonbeam' xcm transfer 'DOT' > xtokens transfer > balance o
{
"balance": "(rounded 1000000000000)",
"extra": null,
"isFrozen": false,
"reason": {
"sufficient": null,
},
"status": "Liquid",
}
`;

Expand Down Expand Up @@ -809,10 +809,10 @@ exports[`'moonbeam' -> 'acala' xcm transfer 'DOT' > xtokens transfer > balance o
{
"balance": 9000000000000,
"extra": null,
"isFrozen": false,
"reason": {
"consumer": null,
},
"status": "Liquid",
}
`;

Expand Down

0 comments on commit 87a8939

Please sign in to comment.