Skip to content

Commit

Permalink
feat: wallet upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
trevelyan committed Nov 4, 2021
1 parent 8f34264 commit 9c2b492
Show file tree
Hide file tree
Showing 3 changed files with 13,416 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/core/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Saito {
this.miner = new saito_lib.miner(this);
this.keys = new saito_lib.keychain(this);
this.network = new saito_lib.network(this);
this.networkapi = new saito_lib.networkapi(this);
//this.networkapi = new saito_lib.networkapi(this);
this.burnfee = new saito_lib.burnfee(this);
this.blockchain = new saito_lib.blockchain(this);

Expand Down Expand Up @@ -75,7 +75,7 @@ class Saito {
await this.blockchain.initialize();

this.network.initialize();
this.networkapi.initialize();
//this.networkapi.initialize();

if (this.server) {
this.server.initialize();
Expand Down
2 changes: 1 addition & 1 deletion lib/saito/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Wallet {
this.wallet.outputs = [];
this.wallet.spends = []; // spent but still around
this.wallet.default_fee = 2;
this.wallet.version = 3.443;
this.wallet.version = 3.451;

this.wallet.preferred_crypto = "SAITO";
this.wallet.preferred_txs = [];
Expand Down
Loading

0 comments on commit 9c2b492

Please sign in to comment.