From bb40dbde9d9eab7b627f52800000192229442a15 Mon Sep 17 00:00:00 2001 From: Daniel Chan <41564344+Daniel-MCO@users.noreply.github.com> Date: Fri, 12 Apr 2019 08:13:42 +0800 Subject: [PATCH] Add deliveredAmount as optional field for type Outcome (#996) --- src/transaction/types.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/transaction/types.ts b/src/transaction/types.ts index 22cf3c1f..2e72fad8 100644 --- a/src/transaction/types.ts +++ b/src/transaction/types.ts @@ -82,6 +82,11 @@ export type Outcome = { }[] }, orderbookChanges: object, + deliveredAmount?: { + currency: string, + counterparty?: string, + value: string + }, timestamp?: string }