From e8ac4f3d40ceca030fe902bfbf584d92051efed9 Mon Sep 17 00:00:00 2001 From: Elliot Lee Date: Tue, 23 Jan 2018 16:08:40 -0800 Subject: [PATCH] Set PublicKey type to string --- src/ledger/parse/payment-channel.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ledger/parse/payment-channel.ts b/src/ledger/parse/payment-channel.ts index f82eaa3f..5656226b 100644 --- a/src/ledger/parse/payment-channel.ts +++ b/src/ledger/parse/payment-channel.ts @@ -7,7 +7,7 @@ export type PaymentChannel = { Account: string, Amount: string, Balance: string, - PublicKey: number, + PublicKey: string, Destination: string, SettleDelay: number, Expiration?: number, @@ -32,7 +32,7 @@ export type LedgerEntryResponse = { type PaymentChannelResponse = { account: string, balance: string, - publicKey: number, + publicKey: string, destination: string, settleDelay: number, expiration?: string,