Skip to content

Commit eb5e7c8

Browse files
committed
add todo for buildAndLogMultisigTransaction to use address balance instead of gas coins
1 parent b5f9254 commit eb5e7c8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

examples/multisig/buildAndLogMultisigTransaction.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ export async function buildAndLogMultisigTransaction(
1515
): Promise<void> {
1616
tx.setSender(sender);
1717
tx.setGasPrice(gasPrice);
18+
// TODO: Use addressBalance option (once mainnet supports it)
19+
// to pay for the transaction gas to avoid gas coin objects version conflicts.
20+
// tx.setGasPayment([]);
1821

1922
const transactionBytes = await tx.build({ client: provider });
2023
const base64TxBytes = toBase64(transactionBytes);

0 commit comments

Comments
 (0)