Skip to content

Commit

Permalink
fix RAD value for sellAmount
Browse files Browse the repository at this point in the history
  • Loading branch information
mstfash committed May 12, 2022
1 parent a51eeb1 commit 9678df7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AuctionsOperations/AuctionsPayment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const AuctionsPayment = () => {

const maxBid = (): string => {
const sellAmountBN = sellAmount
? BigNumber.from(toFixedString(sellAmount, 'WAD'))
? BigNumber.from(toFixedString(sellAmount, 'RAD'))
: BigNumber.from('0')
const buyAmountBN = buyAmount
? auctionType === 'STAKED_TOKEN'
Expand Down

0 comments on commit 9678df7

Please sign in to comment.