Skip to content

Commit

Permalink
fixup! feat: unify promise utils
Browse files Browse the repository at this point in the history
  • Loading branch information
karliatto committed Jan 28, 2022
1 parent 29a3b02 commit e6def13
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/blockchain-link/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { EventEmitter } from 'events';
import { createDeferred, Deferred } from '@trezor/utils';
import { createDeferred, Deferred } from '@trezor/utils/lib/createDeferred';
import { CustomError } from './constants/errors';
import { MESSAGES, RESPONSES } from './constants';
import type { BlockchainSettings } from './types';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as WebSocket from 'ws';
import { EventEmitter } from 'events';
import { createDeferred, Deferred } from '@trezor/utils';
import { createDeferred, Deferred } from '@trezor/utils/lib/createDeferred';

import { CustomError } from '../../constants/errors';
import type {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as WebSocket from 'ws';
import { EventEmitter } from 'events';
import { createDeferred, Deferred } from '@trezor/utils';
import { createDeferred, Deferred } from '@trezor/utils/lib/createDeferred';

import { CustomError } from '../../constants/errors';
import type { Send, BlockContent, BlockfrostTransaction } from '../../types/blockfrost';
Expand Down

0 comments on commit e6def13

Please sign in to comment.