setGasPayment method

void setGasPayment(
  1. List<SuiObjectRef> payments
)

Implementation

void setGasPayment(List<SuiObjectRef> payments) {
	_blockData.gasConfig.payment = payments.map(
      (p) => SuiObjectRef(p.digest, p.objectId, p.version)
    ).toList();
}