From 52475727c2ab9f8ce26660e39fb224f2872b8449 Mon Sep 17 00:00:00 2001 From: padraic-X Date: Thu, 9 Jul 2020 12:21:49 +0100 Subject: [PATCH] stubbed functions --- packages/dai-plugin-mcd/src/PsmType.js | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/packages/dai-plugin-mcd/src/PsmType.js b/packages/dai-plugin-mcd/src/PsmType.js index 41c81265e..2723de84c 100644 --- a/packages/dai-plugin-mcd/src/PsmType.js +++ b/packages/dai-plugin-mcd/src/PsmType.js @@ -1,6 +1,5 @@ import assert from 'assert'; import { stringToBytes } from './utils'; -import tracksTransactions from './utils/tracksTransactions'; export default class PsmType { constructor( @@ -19,11 +18,17 @@ export default class PsmType { if (options.prefetch) this.prefetch(); } - get feeIn() {} + get feeIn() { + return null; + } - get feeOut() {} + get feeOut() { + return null; + } - prefetch() {} + prefetch() { + return null; + } async reset() { this._prefetchPromise = null;