@msafe/sui3-sdk 1.0.19 → 1.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1213,14 +1213,6 @@ var MSafeAccount = class _MSafeAccount {
1213
1213
  throw new Error("Already rejected");
1214
1214
  }
1215
1215
  const rejectTxb = toSuiTransaction(buildRejectTxb(this.address));
1216
- rejectTxb.setGasPrice(input.gasPrice);
1217
- await prepareGasFunding({
1218
- tx: rejectTxb,
1219
- suiClient: this.suiClient,
1220
- owner: this.address,
1221
- gasPrice: input.gasPrice,
1222
- gasBudget: input.gasBudget
1223
- });
1224
1216
  const digest = await rejectTxb.getDigest({ client: this.suiClient });
1225
1217
  const payload = await rejectTxb.build({ client: this.suiClient });
1226
1218
  const signature = await this.wallet.signTransactionBlock({ transactionBlock: payload });