Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Commit

Permalink
stubbed functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Padraic-O-Mhuiris committed Jul 9, 2020
1 parent 19c0247 commit 5247572
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions packages/dai-plugin-mcd/src/PsmType.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import assert from 'assert';
import { stringToBytes } from './utils';
import tracksTransactions from './utils/tracksTransactions';

export default class PsmType {
constructor(
Expand All @@ -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;
Expand Down

0 comments on commit 5247572

Please sign in to comment.