Skip to content

Commit

Permalink
Fix: don't omit valur for StakingTxInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
katspaugh committed Nov 22, 2024
1 parent 35d25d9 commit 566e96d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/transactions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ export type StakingTxDepositInfo = {
export type StakingTxExitInfo = {
type: TransactionInfoType.NATIVE_STAKING_VALIDATORS_EXIT
humanDescription?: string
} & Omit<NativeStakingValidatorsExitConfirmationView, 'type' | 'value'>
} & Omit<NativeStakingValidatorsExitConfirmationView, 'type'>

export type StakingTxWithdrawInfo = {
type: TransactionInfoType.NATIVE_STAKING_WITHDRAW
Expand Down

0 comments on commit 566e96d

Please sign in to comment.