Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/3id-did-resolver/generateVectorDocuments.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* This is the script that was used to generate the test vectors currently
* used by the 3id-did-resolver tests. This is just a simple javascript
* file here in case the tests vectors need to be recreated in the future.
* To run this script make sure you have all the dependencies instralled
* To run this script make sure you have all the dependencies installed
* and run it using $ node generateVectorDocuments.js
*
* The result of this script, which is a commit log for a 3IDv0 and a 3IDv1,
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/daemon/handle-heapdump-signal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function timestamp(timestamp: Date = new Date()): string {
* It takes time to make a heapdump. We log when the heapdumping starts and finishes in `${folder}/heapdump-progress` file.
*
* @param folder Folder that contains a heapdump.
* @param logger Used to annouce the heapdump events: when it is started and finished.
* @param logger Used to announce the heapdump events: when it is started and finished.
*/
export function handleHeapdumpSignal(folder: URL, logger: DiagnosticsLogger): void {
process.on('SIGUSR2', () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/ipfs-connection-factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class IpfsConnectionFactory {
agent: this.ipfsHttpAgent(ipfsEndpoint),
})

// TODO: WS1-1483 We utilize the `ipfs.config.get` method to retrieve the api address to use for recon calls. This prevents us from making unneccessary config changes until we are able to retrieve config data from the recon/rust-ceramic node.
// TODO: WS1-1483 We utilize the `ipfs.config.get` method to retrieve the api address to use for recon calls. This prevents us from making unnecessary config changes until we are able to retrieve config data from the recon/rust-ceramic node.
ipfsApi.config.get = async (key: string): Promise<string | object> => {
if (key === 'Addresses.API') {
return ipfsEndpoint
Expand Down
2 changes: 1 addition & 1 deletion packages/common/src/node-status-interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export interface ActiveSyncStatus {
startedAt: Date
}
export interface ContinuousSyncStatus {
// The first block recevied form the chain on node startup
// The first block received form the chain on node startup
startBlock: number
// The latest block received from the chain
latestBlock: number
Expand Down
2 changes: 1 addition & 1 deletion packages/indexing/src/history-sync/sync-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export interface ActiveSyncStatus {
startedAt: Date
}
export interface ContinuousSyncStatus {
// The first block recevied form the chain on node startup
// The first block received form the chain on node startup
startBlock: number
// The latest block received from the chain
latestBlock: number
Expand Down
2 changes: 1 addition & 1 deletion packages/indexing/src/history-sync/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class MerkleTreeLoader {
}

/**
* retreives the path to the leaf and the cid found at the provided index
* retrieves the path to the leaf and the cid found at the provided index
* @param index index of the leaf
* @returns promise for the cid stored in the leaf
*/
Expand Down