Skip to content

Commit

Permalink
fix: wrong vault string (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
tyleroooo authored Sep 26, 2024
1 parent 292ef28 commit d6db952
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion v4-client-js/src/clients/modules/composer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ import {
TYPE_URL_MSG_WITHDRAW_DELEGATOR_REWARD,
TYPE_URL_BATCH_CANCEL,
TYPE_URL_MSG_DEPOSIT_TO_MEGAVAULT,
TYPE_URL_MSG_WITHDRAW_FROM_MEGAVAULT,
} from '../constants';
import { DenomConfig } from '../types';
import {
Expand Down Expand Up @@ -490,7 +491,7 @@ export class Composer {
};

return {
typeUrl: TYPE_URL_MSG_DEPOSIT_TO_MEGAVAULT,
typeUrl: TYPE_URL_MSG_WITHDRAW_FROM_MEGAVAULT,
value: msg,
};
}
Expand Down

0 comments on commit d6db952

Please sign in to comment.