diff --git a/src/core/currency/wallet/currency-wallet-api.ts b/src/core/currency/wallet/currency-wallet-api.ts index f6d8c320..e0b46b56 100644 --- a/src/core/currency/wallet/currency-wallet-api.ts +++ b/src/core/currency/wallet/currency-wallet-api.ts @@ -459,6 +459,7 @@ export function makeCurrencyWalletApi( const { assetAction, customNetworkFee, + enableRbf, memos, metadata, networkFeeOption = 'standard', @@ -518,6 +519,7 @@ export function makeCurrencyWalletApi( { ...upgradedCurrency, customNetworkFee, + enableRbf, memos, metadata, networkFeeOption, diff --git a/src/types/types.ts b/src/types/types.ts index 9241dfb2..117f21d9 100644 --- a/src/types/types.ts +++ b/src/types/types.ts @@ -667,7 +667,7 @@ export interface EdgeSpendInfo { noUnconfirmed?: boolean networkFeeOption?: 'high' | 'standard' | 'low' | 'custom' customNetworkFee?: JsonObject // Some kind of currency-specific JSON - /** Enables/disables RBF for currencies where RBF is opt-in or optional. */ + /** Enables RBF on chains where RBF is optional */ enableRbf?: boolean pendingTxs?: EdgeTransaction[] /** @deprecated Use enableRbf instead */