diff --git a/nym-wallet/src/components/Bonding/modals/NodeCostParametersModals.tsx b/nym-wallet/src/components/Bonding/modals/NodeCostParametersModals.tsx index fe42b6481c..d78a2c1065 100644 --- a/nym-wallet/src/components/Bonding/modals/NodeCostParametersModals.tsx +++ b/nym-wallet/src/components/Bonding/modals/NodeCostParametersModals.tsx @@ -48,15 +48,8 @@ export const UpdateCostParametersModal = ({ } }; - if (isMixnode(node)) { - if (node.proxy) { - getFee(simulateUpdateMixnodeCostParams, costParams); - } else { - getFee(simulateUpdateMixnodeCostParams, costParams); - } - } else if (isNymNode(node)) { - getFee(simulateUpdateMixnodeCostParams, costParams); - } + getFee(simulateUpdateMixnodeCostParams, costParams); + } catch (error) { onError(error as string); }