Skip to content
This repository has been archived by the owner on Apr 24, 2022. It is now read-only.

Commit

Permalink
Fix payment server url (#62)
Browse files Browse the repository at this point in the history
* fix url for pc server

* bump version
  • Loading branch information
rllola authored Feb 20, 2022
1 parent 66ff2b9 commit 2120210
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dogecoin-spv",
"version": "0.4.2",
"version": "0.4.3",
"description": "Dogecoin SPV wallet (beta)",
"keywords": [
"dogecoin",
Expand Down
4 changes: 2 additions & 2 deletions src/interface/screens/microPaymentScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ const debug = require('debug')('paymentChannelScreen')
const KEYS = require('../keys')
const { SATOSHIS } = require('../../constants')

// const HOST = 'https://paymentchannel.shibe.technology'
const HOST = 'http://localhost:5000'
const HOST = 'https://paymentchannel.shibe.technology'
// const HOST = 'http://localhost:5000'

/*
Micro Payment Screen
Expand Down
4 changes: 2 additions & 2 deletions src/interface/screens/paymentChannelScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ const debug = require('debug')('paymentChannelScreen')
const KEYS = require('../keys')
const { SATOSHIS } = require('../../constants')

// const HOST = 'https://paymentchannel.shibe.technology'
const HOST = 'http://localhost:5000'
const HOST = 'https://paymentchannel.shibe.technology'
// const HOST = 'http://localhost:5000'

/*
Initiate Payment Channel Screen
Expand Down

0 comments on commit 2120210

Please sign in to comment.