Skip to content

Commit

Permalink
Merge pull request #52 from VerusCoin/dev
Browse files Browse the repository at this point in the history
v0.7.1-1
  • Loading branch information
Asherda authored Jul 16, 2020
2 parents 0166f1a + 8603541 commit 94ea208
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ stages:
variables:
DOCKER_DRIVER: overlay2
DEFAULT_VERUSCOIN_BRANCH: release
VERUS_VERSION: 0.7.1
VERUSCOIN_VERSION: 0.7.1
VERUS_VERSION: 0.7.1-1
VERUSCOIN_VERSION: 0.7.1-1
KOMODO_VERSION: 0.6.1
BINARY_SOURCE: VerusCoin
VERUS_APPIMAGE_X64: Verus-Desktop-v${VERUS_VERSION}-x86_64.AppImage
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "verus-desktop",
"productName": "Verus-Desktop",
"version": "0.7.1",
"version": "0.7.1-1",
"description": "Verus Desktop Wallet App",
"main": "main.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions routes/api/daemonControl.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ module.exports = (api) => {
api.writeRpcPort(coin, confFile, fallbackPort),
api.writeRpcPassword(confFile),
api.writeRpcUser(confFile),
api.WriteAddNode('185.25.48.72', confFile, '16329'),
api.WriteAddNode('185.64.105.111', confFile, '16329')
api.WriteAddNode('185.25.48.72', confFile, '19424'),
api.WriteAddNode('185.64.105.111', confFile, '19424')
]);
} else {
return Promise.all([
Expand Down
2 changes: 1 addition & 1 deletion routes/api/native/send.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ module.exports = (api) => {
] != null
) {
price = toCurrency.bestcurrencystate.currencies[fromCurrency.currencyid].lastconversionprice;
conversionValue = 1 / (spendAmount * price)
conversionValue = spendAmount * (1 / price)
} else if (
fromCurrency.bestcurrencystate != null &&
fromCurrency.bestcurrencystate.currencies[
Expand Down
2 changes: 1 addition & 1 deletion routes/ports.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const assetChainPorts = {
ZEXO: 33970,
LABS: 40265,
DP: 28388,
VRSCTEST: 18268,
VRSCTEST: 19425,
VRSC: 27486,
ZEC: 11192,
VOTE2020: 44249
Expand Down
4 changes: 2 additions & 2 deletions version
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=0.7.1
minversion=0.7.1
version=0.7.1-1
minversion=0.7.1-1

0 comments on commit 94ea208

Please sign in to comment.