From f341f5364d0bac00e0a31e2abc64a4d885009954 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Mon, 20 Jan 2020 23:41:06 -0500 Subject: [PATCH] Security.keyBase changed to protected/readonly --- src/api/Security.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/Security.ts b/src/api/Security.ts index 2058619..2dc019f 100644 --- a/src/api/Security.ts +++ b/src/api/Security.ts @@ -7,7 +7,7 @@ import { AccountInterface } from '../models'; export default class Security { public client: Client; - private keyBase: { key: string, iv: string }; + protected readonly keyBase: { key: string, iv: string }; constructor(client: Client) { this.client = client;