Skip to content

Commit 9874c17

Browse files
committed
fix
1 parent 3924bb0 commit 9874c17

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

runtime/integration-tests/src/runtime.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ mod mandala_only_tests {
518518
).unwrap().0,
519519
@r###"
520520
ValidTransaction {
521-
priority: 60975980945150000,
521+
priority: 72934097558400000,
522522
requires: [],
523523
provides: [],
524524
longevity: 18446744073709551615,

ts-tests/tests/test-balance.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ describeWithAcala("Acala RPC (Balance)", (context) => {
1111
});
1212

1313
it("genesis balance is setup correctly", async function () {
14-
expect((await context.provider.getBalance(alice.getAddress())).toString()).to.equal("8999999995072568421000000");
15-
expect((await context.provider.getBalance(alice.getAddress(), "latest")).toString()).to.equal("8999999995072568421000000");
14+
expect((await context.provider.getBalance(alice.getAddress())).toString()).to.equal("8999999995071274009000000");
15+
expect((await context.provider.getBalance(alice.getAddress(), "latest")).toString()).to.equal("8999999995071274009000000");
1616

1717
expect((await context.provider.getBalance(alice.getAddress(), "latest")).toString())
1818
.to.equal((await context.provider.api.query.system.account(alice.substrateAddress)).data.free.toString() + "000000");
1919
});
2020

2121
it("balance to be updated after transfer", async function () {
22-
expect((await context.provider.getBalance(alice.getAddress())).toString()).to.equal("8999999995072568421000000");
23-
expect((await context.provider.getBalance(alice_stash.getAddress())).toString()).to.equal("10100000995072575531000000");
22+
expect((await context.provider.getBalance(alice.getAddress())).toString()).to.equal("8999999995071274009000000");
23+
expect((await context.provider.getBalance(alice_stash.getAddress())).toString()).to.equal("10100000995071281122000000");
2424

2525
await transfer(context, alice.substrateAddress, alice_stash.substrateAddress, 1000);
26-
expect((await context.provider.getBalance(alice.getAddress())).toString()).to.equal("8999999990446773722000000");
27-
expect((await context.provider.getBalance(alice_stash.getAddress())).toString()).to.equal("10100000995072576531000000");
28-
expect((await context.provider.getBalance(alice.getAddress(), "latest")).toString()).to.equal("8999999990446773722000000");
26+
expect((await context.provider.getBalance(alice.getAddress())).toString()).to.equal("8999999990445479310000000");
27+
expect((await context.provider.getBalance(alice_stash.getAddress())).toString()).to.equal("10100000995071282122000000");
28+
expect((await context.provider.getBalance(alice.getAddress(), "latest")).toString()).to.equal("8999999990445479310000000");
2929
expect((await context.provider.getBalance(alice_stash.getAddress(), "earliest")).toString()).to.equal("0");
3030
});
3131
});

ts-tests/tests/test-evm-call-fill-block.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ describeWithAcala("Acala RPC (EVM call fill block)", (context) => {
3737

3838
const evmCreateEvents = events.events.filter((item) => context.provider.api.events.evm.Executed.is(item.event));
3939

40-
expect(evmCreateEvents.length).to.closeTo(275, 10);
40+
expect(evmCreateEvents.length).to.closeTo(240, 10);
4141
});
4242
});

ts-tests/tests/test-evm-create-fill-block.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ describeWithAcala("Acala RPC (EVM create fill block)", (context) => {
3535

3636
const evmCreateEvents = events.events.filter((item) => context.provider.api.events.evm.Created.is(item.event));
3737

38-
expect(evmCreateEvents.length).to.equal(216);
38+
expect(evmCreateEvents.length).to.equal(206);
3939
});
4040
});

ts-tests/tests/test-mempool-priority.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ describeWithAcala("Acala RPC (Mempool Priority Order)", (context) => {
7878
{
7979
"ok": {
8080
"longevity": 31,
81-
"priority": "0x010543655f7f0900",
81+
"priority": "0x012f5e1ae66220c0",
8282
"propagate": true,
8383
"provides": [
8484
"0xd43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d03000000",

0 commit comments

Comments
 (0)