Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add limit for node fee and close dialog after success of failure #2693

Merged
merged 3 commits into from
May 14, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
validators.required('Fee is required.'),
validators.isNumeric('Fee must be a valid number.'),
validators.min('Fee must be a 0 or more.', 0),
validators.max('Maximum allowed fee is 1000000000000000', 1000000000000000),
AhmedHanafy725 marked this conversation as resolved.
Show resolved Hide resolved
]"
#="{ props }"
>
Expand Down Expand Up @@ -124,6 +125,7 @@ export default {
createCustomToast("Failed to set additional fees!", ToastType.danger);
} finally {
isSetting.value = false;
showDialogue.value = false;
}
}

Expand Down
Loading