From 9a2f37a3b0d48a1e94592769798d6f05b8e939e7 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Tue, 19 Jul 2022 20:30:07 -0400 Subject: [PATCH] *rename promise to result --- src/rpcQuery.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpcQuery.ts b/src/rpcQuery.ts index 1ab505e..0ba63bd 100644 --- a/src/rpcQuery.ts +++ b/src/rpcQuery.ts @@ -21,7 +21,7 @@ export default class RpcQuery { this.init(); } - get promise(): Promise { + get result(): Promise { return this._promise as Promise; }