Skip to content

Commit

Permalink
fix wallet connect
Browse files Browse the repository at this point in the history
  • Loading branch information
keninqiu committed Nov 16, 2023
1 parent 5de9d7d commit a860f2f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ export class WalletconnectComponent implements OnInit {
const retBnb = await this.apiServ.postEtheruemCompatibleTx('BNB', txhex);
console.log('retBnb===', retBnb);
if (retBnb) {
if(retBnb) {
if(retBnb.txHash) {
result.push(retBnb.txHash.trim());
} else {
return this.alertServ.openSnackBar(this.translateServ.instant('Error'), retBnb.errMsg);
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const environment = {
baseUrl: 'https://exchangily.com',
// url: 'https://api.exchangily.com/',
url: 'https://api.dscmap.com/',
version: '2.3.8',
version: '2.3.9',
campaignId: 1,
PUBLIC_KEY: '8aff99f9727143fccd28e62df14e4e67305faa70d19b4cb0b9d4cde18ea3cd23c8e58bda3c26e10813aaa6020f3d07a3d9f83a9062cfe662a600949325378b99',
OTC_COMMISSION_RATE: 0,
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as Btc from 'bitcoinjs-lib';

export const environment = {
production: false,
version: '2.3.8',
version: '2.3.9',
IssueTokenReceipt: 'mxU2i997YxYv75E6YNVNwkN5qJ68WC5sZN',
SQUARE_APP_ID: {
CAD: 'sandbox-sq0idb-UUMNZpqOLdU5yOO9Y6AKyg', // ccount kenin
Expand Down

0 comments on commit a860f2f

Please sign in to comment.