wasm-fix: Fixing more build errors @ gusc1a-ossdev-jsl5

This commit is contained in:
Josh Siegel 2022-06-14 18:47:17 +00:00 committed by Evan Gray
parent f5aad60600
commit 69b2cba3ca
1 changed files with 6 additions and 6 deletions

View File

@ -309,7 +309,7 @@ export async function transferNativeSol(
WSOL_ADDRESS,
nonce,
amount.valueOf(),
relayerFee,
relayerFee.valueOf(),
targetAddress,
coalesceChainId(targetChain),
payload
@ -323,7 +323,7 @@ export async function transferNativeSol(
WSOL_ADDRESS,
nonce,
amount.valueOf(),
relayerFee,
relayerFee.valueOf(),
targetAddress,
coalesceChainId(targetChain)
)
@ -410,7 +410,7 @@ export async function transferFromSolana(
mintAddress,
nonce,
amount.valueOf(),
relayerFee,
relayerFee.valueOf(),
targetAddress,
coalesceChainId(targetChain),
payload
@ -424,7 +424,7 @@ export async function transferFromSolana(
mintAddress,
nonce,
amount.valueOf(),
relayerFee,
relayerFee.valueOf(),
targetAddress,
coalesceChainId(targetChain)
)
@ -440,7 +440,7 @@ export async function transferFromSolana(
originAddress as Uint8Array, // checked by throw
nonce,
amount.valueOf(),
relayerFee,
relayerFee.valueOf(),
targetAddress,
coalesceChainId(targetChain),
payload
@ -456,7 +456,7 @@ export async function transferFromSolana(
originAddress as Uint8Array, // checked by throw
nonce,
amount.valueOf(),
relayerFee,
relayerFee.valueOf(),
targetAddress,
coalesceChainId(targetChain)
)