Skip to content

Commit

Permalink
V0.0.13 (#528)
Browse files Browse the repository at this point in the history
* Prepare version 0.0.13

* Set non-managed poet

* Small fixes
  • Loading branch information
avive authored Jun 8, 2020
1 parent 6ea7c09 commit 89d5b65
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
20 changes: 10 additions & 10 deletions desktop/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"hdist": 10,
"atxs-per-block": 25,
"genesis-active-size": 100,
"genesis-time": "2020-05-24T10:03:40+00:00",
"poet-server": "34.68.14.225:8080"
"genesis-time": "2020-06-05T17:15:52+00:00",
"poet-server": "34.71.204.0:8080"
},
"p2p": {
"dial-timeout": "1m",
Expand All @@ -28,16 +28,16 @@
"alpha": 3,
"randcon": 8,
"bootnodes": [
"spacemesh://[email protected]:20000",
"spacemesh://[email protected]:20000",
"spacemesh://DgrcDMboGw3NeyyjRLeSNMGiyyVdyfgcRsmFhEFghyC7@35.238.91.227:20000",
"spacemesh://E35ULVSWiPETriidfLhqYGSaqLjWcL3VHZFYhEcwVyCd@35.225.107.117:20000",
"spacemesh://[email protected]:20000",
"spacemesh://4nM4sKkbMGy8JJoq1VZzFWivH8XdQJK1QG5tPFcQmpuh@35.223.236.209:20000"
"spacemesh://[email protected]:20000",
"spacemesh://[email protected]:20002",
"spacemesh://DsJ6Tj1nykSenzWKYLDiGShFDRxGudeVVH8P2aPwJdXA@35.223.119.33:20004",
"spacemesh://9wvPx5jZskHQk4uoUCiV2hfkVSWtUWKg47Dv77yWte8w@35.223.119.33:20006",
"spacemesh://[email protected]:20000",
"spacemesh://8Kv1mw5ExMUde4WAVGpAKGBf22y6kAWeW3eSkpm3mrMw@35.238.91.227:20002"
],
"bootstrap": true
},
"network-id": 115
"network-id": 116
},
"post": {
"post-space": 4294967296,
Expand Down Expand Up @@ -91,4 +91,4 @@
"atx-builder": "info",
"hare-beacon": "info"
}
}
}
2 changes: 1 addition & 1 deletion desktop/netService.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class NetService {
});
});

setAwardsAddress = ({ address }) =>
setRewardsAddress = ({ address }) =>
new Promise((resolve, reject) => {
this.service.SetAwardsAddress({ address }, { deadline: getDeadline() }, (error, response) => {
if (error) {
Expand Down
2 changes: 1 addition & 1 deletion desktop/nodeManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ class NodeManager {

setRewardsAddress = async ({ address }) => {
try {
await netService.setAwardsAddress({ address });
await netService.setRewardsAddress({ address });
return { error: null };
} catch (error) {
return { error };
Expand Down
8 changes: 4 additions & 4 deletions desktop/transactionManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ const fromHexString = (hexString) => {
};

const compare = (a, b) => {
if (!a[1].timestamp && !b[1].timestamp) {
if (!a.timestamp && !b.timestamp) {
return 0;
} else if (a[1].timestamp && !b[1].timestamp) {
} else if (a.timestamp && !b.timestamp) {
return 1;
} else if (!a[1].timestamp && b[1].timestamp) {
} else if (!a.timestamp && b.timestamp) {
return -1;
} else return b[1].timestamp - a[1].timestamp;
} else return b.timestamp - a.timestamp;
};

class TransactionManager {
Expand Down
2 changes: 1 addition & 1 deletion 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,7 +1,7 @@
{
"name": "spacemesh_app",
"productName": "Spacemesh",
"version": "0.0.11",
"version": "0.0.13",
"author": {
"name": "Spacemesh",
"email": "[email protected]",
Expand Down

0 comments on commit 89d5b65

Please sign in to comment.