From 216b7e30201d0e8c93df4f2b20fa343c74a1690e Mon Sep 17 00:00:00 2001 From: Matthew Date: Tue, 23 May 2023 18:45:41 -0700 Subject: [PATCH] Let otherParams be null when converting guiMakeSpendInfo to EdgeSpendInfo --- src/actions/SendConfirmationActions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions/SendConfirmationActions.tsx b/src/actions/SendConfirmationActions.tsx index 74b2217b543..062bcf0c137 100644 --- a/src/actions/SendConfirmationActions.tsx +++ b/src/actions/SendConfirmationActions.tsx @@ -572,7 +572,7 @@ const getSpendInfo = (state: RootState, newSpendInfo: GuiMakeSpendInfo = {}, sel spendTargets, networkFeeOption: newSpendInfo.networkFeeOption || getNetworkFeeOption(state), customNetworkFee: newSpendInfo.customNetworkFee ? { ...getCustomNetworkFee(state), ...newSpendInfo.customNetworkFee } : getCustomNetworkFee(state), - otherParams: newSpendInfo.otherParams || {} + otherParams: newSpendInfo.otherParams } }