Skip to content

Commit

Permalink
Changed IOTA nodes
Browse files Browse the repository at this point in the history
Changed default main and fallback nodes, as previous one was failing
  • Loading branch information
josemmo committed Jun 29, 2018
1 parent 0b7851a commit 89552b7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Changelog

## 1.0.2 - 2018-02-05
- First public release
## 1.0.4 - 2018-06-29
- Changed default IOTA nodes

## 1.0.3 - 2018-04-14
- Fixed [issue #2](https://github.com/josemmo/iotawebwallet/issues/2) (excluded reattached balance from unconfirmed total)
- Added reattachment confirmed status to history ([issue #1](https://github.com/josemmo/iotawebwallet/issues/1))
- Added unconfirmed balance to address list in summary

## 1.0.2 - 2018-02-05
- First public release
2 changes: 1 addition & 1 deletion app/constants.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
define('APP_VERSION', '1.0.3');
define('APP_VERSION', '1.0.4');

define('DEP_IOTA_VERSION', '0.4.7');
define('DEP_JQUERY_VERSION', '3.3.1');
Expand Down
4 changes: 2 additions & 2 deletions js/page.settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
date: 'YYYY-MM-DD',
time: 'H:mm',
explorer: 'https://thetangle.org/',
main_node: 'https://iotanode.us:443',
fallback_node: ''
main_node: 'https://nodes.iota.fm:443',
fallback_node: 'https://durian.iotasalad.org:14265'
};
var savedSettings = localStorage.getItem(_ls_settings_key);
if (savedSettings !== null) {
Expand Down

0 comments on commit 89552b7

Please sign in to comment.