SendFormActions: setDefaultGesLimit - token or coin value fix

pull/287/head
Szymon Lesisz 6 years ago committed by Szymon Lesisz
parent 4f4eec540d
commit e2c2770990

@ -389,14 +389,17 @@ export const setDefaultGasLimit = (): ThunkAction => (dispatch: Dispatch, getSta
const { network } = getState().selectedAccount;
if (!network) return;
const isToken = state.currency !== state.networkSymbol;
const gasLimit = isToken ? network.defaultGasLimitTokens.toString() : network.defaultGasLimit.toString();
dispatch({
type: SEND.CHANGE,
state: {
...state,
calculatingGasLimit: false,
untouched: false,
touched: { ...state.touched, gasLimit: true },
gasLimit: network.defaultGasLimit.toString(),
touched: { ...state.touched, gasLimit: false },
gasLimit,
},
});
};

Loading…
Cancel
Save