submitFeeBumpTransaction method

Future<SubmitTransactionResponse> submitFeeBumpTransaction(
  1. FeeBumpTransaction feeBumpTransaction
)

Submits a feeBumpTransaction to the network.

Implementation

Future<SubmitTransactionResponse> submitFeeBumpTransaction(
    FeeBumpTransaction feeBumpTransaction) async {
  return submitTransactionEnvelopeXdrBase64(feeBumpTransaction.toEnvelopeXdrBase64());
}