Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
Signed-off-by: Marin Petrunic <[email protected]>
  • Loading branch information
mpetrunic committed Sep 26, 2023
1 parent d32982e commit fc1bf0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/web3-utils/src/chunk_response_parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ along with web3.js. If not, see <http://www.gnu.org/licenses/>.
import { JsonRpcResponse } from 'web3-types';
import { InvalidResponseError } from 'web3-errors';
import { EventEmitter } from 'events';
import { Timeout } from './promise_helpers';
import { Timeout } from './promise_helpers.js';

export class ChunkResponseParser {
private lastChunk: string | undefined;
Expand Down
2 changes: 1 addition & 1 deletion packages/web3-utils/src/web3_deferred_promise.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ along with web3.js. If not, see <http://www.gnu.org/licenses/>.

import { OperationTimeoutError } from 'web3-errors';
import { Web3DeferredPromiseInterface } from 'web3-types';
import { Timeout } from './promise_helpers';
import { Timeout } from './promise_helpers.js';

/**
* The class is a simple implementation of a deferred promise with optional timeout functionality,
Expand Down

0 comments on commit fc1bf0c

Please sign in to comment.