From fa4621e70c48500a372504eb8ae9b9481531c555 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 16 Dec 2019 12:53:22 +0100 Subject: history events WIP --- src/util/amounts.ts | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/util/amounts.ts') diff --git a/src/util/amounts.ts b/src/util/amounts.ts index 26cee7f8f..c8fb76793 100644 --- a/src/util/amounts.ts +++ b/src/util/amounts.ts @@ -22,7 +22,6 @@ * Imports. */ import { Checkable } from "./checkable"; -import { objectCodec, numberCodec, stringCodec, Codec } from "./codec"; /** * Number of fractional units that one value unit represents. @@ -68,12 +67,6 @@ export class AmountJson { static checked: (obj: any) => AmountJson; } -const amountJsonCodec: Codec = objectCodec() - .property("value", numberCodec) - .property("fraction", numberCodec) - .property("currency", stringCodec) - .build("AmountJson"); - /** * Result of a possibly overflowing operation. */ -- cgit v1.2.3