Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
KorbinianK committed Jun 8, 2024
1 parent 00ed1f3 commit 726dc9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/bridge-ui/src/libs/relayer/RelayerAPIService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,11 +200,11 @@ export class RelayerAPIService {
data: data as Hex,
srcOwner: tx.data.Message.SrcOwner,
from: tx.data.Message.From,
gasLimit: Number(tx.data.Message.GasLimit),
gasLimit: tx.data.Message.GasLimit,
value: BigInt(tx.data.Message.Value.toString()),
srcChainId: BigInt(tx.data.Message.SrcChainId),
destChainId: BigInt(tx.data.Message.DestChainId),
fee: BigInt(tx.data.Message.Fee),
fee: BigInt(tx.data.Message.Fee.toString()),
},
} satisfies BridgeTransaction;

Expand Down

0 comments on commit 726dc9b

Please sign in to comment.