Skip to content

Commit

Permalink
fix: validator error in unbond
Browse files Browse the repository at this point in the history
  • Loading branch information
ninhxuanhuan committed Oct 17, 2024
1 parent 7a1b794 commit 8e3833f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/TxDialog/messages/Unbond.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const isValid = computed(() => {
ok = false;
error = 'Sender is empty';
}
if (!params.value.validatorAddress) {
if (!params.value.validator_address) {
ok = false;
error = 'Validator is empty';
}
Expand Down

0 comments on commit 8e3833f

Please sign in to comment.