Skip to content

Commit

Permalink
fix: update QR code for CELO + cUSD (#7824)
Browse files Browse the repository at this point in the history
Updating the QR string based on celo-org/celo-monorepo#5515
This will be available in version 1.4 of Valora
  • Loading branch information
thelostone-mc authored Nov 6, 2020
1 parent c28d1c5 commit 0e39840
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/assets/v2/js/pages/bounty_details2.js
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,11 @@ Vue.mixin({
`ethereum:${address}`;
break;

case 'CELO': // waiting : pending
case 'CELO':
case 'cUSD':
qr_string = value ?
`celo://wallet/pay?address=${address}&amount=${value}` :
`celo://wallet/pay?address=${address}`;
`celo://wallet/pay?address=${address}&amount=${value}&token=${token_name}` :
`celo://wallet/pay?address=${address}&token=${token_name}`;
break;

case 'ZIL':
Expand Down

0 comments on commit 0e39840

Please sign in to comment.