Set PublicKey type to string

This commit is contained in:
Elliot Lee
2018-01-23 16:08:40 -08:00
parent ae2ccd9887
commit e8ac4f3d40

View File

@@ -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,