aboutsummaryrefslogtreecommitdiffstats
path: root/packages/subproviders/test/utils/report_callback_errors.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/subproviders/test/utils/report_callback_errors.ts')
-rw-r--r--packages/subproviders/test/utils/report_callback_errors.ts14
1 files changed, 0 insertions, 14 deletions
diff --git a/packages/subproviders/test/utils/report_callback_errors.ts b/packages/subproviders/test/utils/report_callback_errors.ts
deleted file mode 100644
index 6eb7420c3..000000000
--- a/packages/subproviders/test/utils/report_callback_errors.ts
+++ /dev/null
@@ -1,14 +0,0 @@
-import { DoneCallback } from '@0x/types';
-
-export const reportCallbackErrors = (done: DoneCallback) => {
- return (f: (...args: any[]) => void) => {
- const wrapped = async (...args: any[]) => {
- try {
- f(...args);
- } catch (err) {
- done(err);
- }
- };
- return wrapped;
- };
-};