We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5f9254 commit eb5e7c8Copy full SHA for eb5e7c8
examples/multisig/buildAndLogMultisigTransaction.ts
@@ -15,6 +15,9 @@ export async function buildAndLogMultisigTransaction(
15
): Promise<void> {
16
tx.setSender(sender);
17
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([]);
21
22
const transactionBytes = await tx.build({ client: provider });
23
const base64TxBytes = toBase64(transactionBytes);
0 commit comments