Skip to content

Commit

Permalink
fix(swap): swap type enum should be a string
Browse files Browse the repository at this point in the history
  • Loading branch information
blockdylanb committed Jun 2, 2021
1 parent 73fc1b8 commit 568d76e
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -13,8 +13,8 @@ import * as AT from './actionTypes'
export type MempoolFeeType = 'regular' | 'priority'

export enum SwapBaseCounterTypes {
'ACCOUNT',
'CUSTODIAL'
ACCOUNT = 'ACCOUNT',
CUSTODIAL = 'CUSTODIAL'
}
export type SwapAccountType = {
accountIndex?: number
Expand Down

0 comments on commit 568d76e

Please sign in to comment.