Skip to content

Commit

Permalink
fix(rpc): change function name
Browse files Browse the repository at this point in the history
change function name to camel case to be consistent with other functions

BREAKING CHANGE: function name has been changed
  • Loading branch information
gridcat committed Jan 14, 2019
1 parent 03b4621 commit af869a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GridcoinRPC.ts
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ class GridcoinRPC {
* @returns {Promise<INode>}
* @memberof GridcoinRPC
*/
public getaddednodeinfo(dns: boolean, node?: string): Promise<INode> {
public getAddedNodeInfo(dns: boolean, node?: string): Promise<INode> {
return this.call('getaddednodeinfo', dns, node);
}

Expand Down

0 comments on commit af869a0

Please sign in to comment.