Skip to content

Commit

Permalink
Merge pull request #1 from BigslimVdub/1.0.1
Browse files Browse the repository at this point in the history
Update for maintenance release and addition of locked ring 3.
  • Loading branch information
BigslimVdub authored Sep 2, 2019
2 parents 7e6f769 + 3bf23db commit fb3c803
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 14 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,14 @@ To build on all operating systems run:
npm run build-all
```

### NOTE:
### Change NOTES:

For building on the v0.12.9.0 Aeon network, for full functionality you must use 12.9 release daemon and current 12.9 master RPC for seed and wallet restore functions.
If you use the current 12.9 release RPC you will be unable to restore a wallet and unable to restore or import a wallet made on v1.0.0 release on a later AeonLW release.
It is recommended to make a NEW wallet with AeonLW v1.0.0 release.

Version 1.0.1 has the "pre-release" functionality of K12 with locked ring 3 and updated fee structure. Please use the latest pre-release binaries for K12 fork with this version if building from source.

---

### LICENSE
Expand Down
1 change: 0 additions & 1 deletion bin/put binaries here.md

This file was deleted.

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.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "AeonLW",
"version": "1.0.0",
"daemonVersion": "0.12.9.0",
"version": "1.0.1",
"daemonVersion": "0.12.9.0-27158f",
"description": "A Lightweight Digital Aeon Wallet",
"productName": "AEONLW",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions src/components/settings_general.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
</div>

<p v-if="config.daemon.type == 'local'">
Full privacy, wallet will download the full blockchain. You will not be able to transact until sync is completed.
Full privacy, wallet will download the full blockchain. You will not be able to transact until sync is completed. This may take a while to sync.
</p>
<p v-if="config.daemon.type == 'remote'">
Less privacy, wallet will connect to a remote node to make all transactions.
Less privacy, wallet will connect to a remote node to make all transactions. This is fairly quick for usage.
</p>

<q-field v-if="config.daemon.type != 'remote'">
Expand Down
9 changes: 3 additions & 6 deletions src/pages/wallet/send.vue
Original file line number Diff line number Diff line change
Expand Up @@ -159,14 +159,11 @@ export default {
}
},
mixinOptions: [
{label: "0 mixin (Lowest)", value: 0},
{label: "2 mixins (Default)", value: 2},
{label: "9 mixins (Higher)", value: 9},
{label: "19 mixins (MAX)", value: 19},
{label: "99 mixins (!CRAZY!)", value: 99},
{label: "Locked Ring Size 3", value: 2},
],
priorityOptions: [
{label: "Normal (x1 fee)", value: 1},
{label: "Faster (x2 fee)", value: 2},
{label: "Fast (x5 fee)", value: 3},
{label: "Fastest (x41.5 fee)", value: 4},
],
Expand Down Expand Up @@ -255,7 +252,7 @@ export default {
this.$q.notify({
type: "negative",
timeout: 2000,
message: "You have too many Aeon Coins to send, Try Again =)"
message: "You have too many Aeon Coins to send, Donate some =)"
})
return
} else if(this.newTx.amount > this.unlocked_balance / 1e12) {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/wallet/wallet.vue
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ export default {
if(this.modals.rescan.type == "full") {
this.$q.dialog({
title: "Rescan wallet",
message: "Warning: Some information about previous transactions\nsuch as the recipient's address will be lost.",
message: "Warning: Some information about previous transactions\nsuch as the recipient's address will be lost.\nThis may take a while on slower hardware.",
ok: {
label: "RESCAN"
},
Expand Down

0 comments on commit fb3c803

Please sign in to comment.