Skip to content
Merged
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 yarn-project/blob-sink/src/server/server.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ describe('BlobSinkService', () => {
expect(retrievedBlob2.commitment.toString('hex')).toBe(blob2.commitment.toString('hex'));
});

it('should retreive a single index', async () => {
it('should retrieve a single index', async () => {
const getWithIndicies = await request(service.getApp()).get(`/eth/v1/beacon/blob_sidecars/${blockId}?indices=1`);

expect(getWithIndicies.status).toBe(200);
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/end-to-end/src/e2e_p2p/reex.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ describe('e2e_p2p_reex', () => {
await sleep(4000);

// Submit the txs to the mempool. We submit a single set of txs, and then inject different behaviors
// into the vlaidator nodes to cause them to fail in different ways.
// into the validator nodes to cause them to fail in different ways.
t.logger.info('Submitting txs');
txs = await submitComplexTxsTo(t.logger, t.spamContract!, NUM_TXS_PER_NODE, { callPublic: true });
});
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/p2p/src/services/reqresp/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export interface ProtocolRateLimitQuota {
export const noopValidator = () => Promise.resolve(true);

/**
* A type mapping from supprotocol to it's handling funciton
* A type mapping from supprotocol to it's handling function
*/
export type ReqRespSubProtocolHandlers = Record<ReqRespSubProtocol, ReqRespSubProtocolHandler>;

Expand Down