diff --git a/README.md b/README.md index d78e8836..8ec51004 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Zingo PC is written in Electron/Javascript and can be build from source. It will also automatically compile the Rust SDK needed to run zingo-pc. #### Pre-Requisites -You need to have the following software installed before you can build Zingo PC Fullnode +You need to have the following software installed before you can build Zingo PC * [Nodejs recommended version: v16.16.0 (LTS) ](https://nodejs.org/en/blog/release/v16.16.0) * [Yarn](https://yarnpkg.com) diff --git a/src/root/Routes.tsx b/src/root/Routes.tsx index d2d4f405..c387aed5 100644 --- a/src/root/Routes.tsx +++ b/src/root/Routes.tsx @@ -145,7 +145,7 @@ class Routes extends React.Component { // 1. Check if the wallet is encrypted and locked // 2. If it is, open the password dialog // 3. Attempt to unlock wallet. - // a. If unlock suceeds, do the callback + // a. If unlock succeeds, do the callback // b. If the unlock fails, show an error // 4. If wallet is not encrypted or already unlocked, just call the successcallback. openPasswordAndUnlockIfNeeded = (successCallback: () => void) => { diff --git a/src/rpc/rpc.ts b/src/rpc/rpc.ts index c4062c92..6876c4b1 100644 --- a/src/rpc/rpc.ts +++ b/src/rpc/rpc.ts @@ -312,7 +312,7 @@ export default class RPC { info.connections = 1; info.version = `${infoJSON.vendor}/${infoJSON.git_commit.substring(0, 6)}/${infoJSON.version}`; //info.zcashdVersion = infoJSON.zcashd_version; - info.zcashdVersion = "Not Avaiable"; + info.zcashdVersion = "Not Available"; info.currencyName = info.testnet ? "TAZ" : "ZEC"; info.solps = 0; @@ -821,10 +821,10 @@ export default class RPC { }); // If you send yourself transactions, the underlying SDK doesn't handle it very well, so - // we supress these in the UI to make things a bit clearer. + // we suppress these in the UI to make things a bit clearer. //txlist = txlist.filter((tx) => !(tx.type === "sent" && tx.amount < 0 && tx.detailedTxns.length === 0)); - // We need to group transactions that have the same (txid and send/recive), for multi-part memos + // We need to group transactions that have the same (txid and send/receive), for multi-part memos const m = new Map(); txlist.forEach((tx) => { const key: string = tx.txid + tx.type; @@ -934,7 +934,7 @@ export default class RPC { } // Calculate ETA. - let secondsPerComputation: number = 3; // defalt + let secondsPerComputation: number = 3; // default if (progressJSON.progress > 0) { const currentTimeSeconds: number = new Date().getTime() / 1000; secondsPerComputation = (currentTimeSeconds - startTimeSeconds) / progressJSON.progress;