Skip to content

Commit

Permalink
try to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Kailai-Wang committed Dec 10, 2022
1 parent d562265 commit d714d25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ts-tests/tests/bridge.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ describeCrossChainTransfer('Test Cross-chain Transfer', ``, (context) => {
handlerBalance
.div(BigNumber.from(1000000))
.add(BigNumber.from(100))
.add(BigNumber.from(fee.toString())),
.add(BigNumber.from(fee.toString())).toString(),
receipt,
0
),
Expand Down Expand Up @@ -107,7 +107,7 @@ describeCrossChainTransfer('Test Cross-chain Transfer', ``, (context) => {
const fee = await context.parachainConfig.api.query.chainBridge.bridgeFee(0);
await signAndSend(
context.parachainConfig.api.tx.bridgeTransfer.transferNative(
handlerBalance.div(BigNumber.from(1000000)).add(BigNumber.from(fee.toString())),
handlerBalance.div(BigNumber.from(1000000)).add(BigNumber.from(fee.toString())).toString(),
receipt,
0
),
Expand Down

0 comments on commit d714d25

Please sign in to comment.