From af869a05a57a11a656c5af9002da527c15ee01bb Mon Sep 17 00:00:00 2001 From: Grid Cat Date: Mon, 14 Jan 2019 22:31:22 +0100 Subject: [PATCH] fix(rpc): change function name change function name to camel case to be consistent with other functions BREAKING CHANGE: function name has been changed --- src/GridcoinRPC.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GridcoinRPC.ts b/src/GridcoinRPC.ts index 9604e41..7d19293 100644 --- a/src/GridcoinRPC.ts +++ b/src/GridcoinRPC.ts @@ -849,7 +849,7 @@ class GridcoinRPC { * @returns {Promise} * @memberof GridcoinRPC */ - public getaddednodeinfo(dns: boolean, node?: string): Promise { + public getAddedNodeInfo(dns: boolean, node?: string): Promise { return this.call('getaddednodeinfo', dns, node); }