Skip to content

Commit

Permalink
Change payment qr-code format (#817)
Browse files Browse the repository at this point in the history
  • Loading branch information
isaldin authored and levenecav committed Dec 17, 2018
1 parent 881bdc5 commit c346f7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/Checkout/PaymentInfo/PaymentInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ class PaymentInfo extends PureComponent<PropsType, StateType> {
<div styleName="paymentInfoWrapper">
<div styleName="qr">
<QRCode
value={`ethereum:${wallet}?gas=21000?value=${amount}`}
value={`ethereum:${wallet}?amount=${amount}`}
renderAs="svg"
size={165}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/common/PaymentPopup/PaymentPopup.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class PaymentPopup extends Component<PropsType, StateType> {
</div>
<div styleName="paymentInfoWrapper">
<QRCode
value={`ethereum:${walletAddress}[?gas=21000][?value=${amount}]`}
value={`ethereum:${walletAddress}amount=${amount}`}
renderAs="svg"
size={200}
/>
Expand Down

0 comments on commit c346f7a

Please sign in to comment.