Skip to content

Commit

Permalink
typo fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
gagarin55 committed Sep 6, 2023
1 parent d5305b2 commit 0542c6a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ Start application
$ yarn start
```

### How to build
```
$ yarn build
$ yarn dist
```

### How to verify checksums of release

MacOS, Linux, or Windows with gitbash: `shasum -a 256 <filename>`
Expand Down
2 changes: 1 addition & 1 deletion src/main/application/services/wallet/WalletImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export class WalletImpl extends EventEmitter implements Wallet {
public static TXS_LOADING = 'LoadingHistory';
public static UNSPENT_LOADING = 'LoadingUnspent';

private _keyManager: any;
private connector: Connector;

private unspentMonitor: UnspentMonitor;
Expand Down Expand Up @@ -211,6 +210,7 @@ export class WalletImpl extends EventEmitter implements Wallet {
this.emit(WalletImpl.UPDATED_EVENT, {});

});
logger.debug(`Wallet processed ${transactions.length} txs. Current hold ${this.transactions.size} txs.`);
}

public getAddresses(): any {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class ExplorerClient implements Provider {
}

/**
* It loads all unspent boxes for address my portion of 100.
* It loads all unspent boxes for address by portion of 100.
* @param address
* @returns
*/
Expand Down

0 comments on commit 0542c6a

Please sign in to comment.