Skip to content

Commit

Permalink
switch to @hashgraph/protobufjs in more places
Browse files Browse the repository at this point in the history
  • Loading branch information
mehcode committed Nov 12, 2020
1 parent 4fc20f6 commit 193b341
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/channel/Channel.js
Expand Up @@ -175,7 +175,7 @@ export default class Channel {
* @abstract
* @protected
* @param {string} serviceName
* @returns {import("protobufjs").RPCImpl}
* @returns {import("@hashgraph/protobufjs").RPCImpl}
*/
// eslint-disable-next-line @typescript-eslint/no-unused-vars
_createUnaryClient(serviceName) {
Expand Down
2 changes: 1 addition & 1 deletion src/channel/NodeChannel.js
Expand Up @@ -36,7 +36,7 @@ export default class NodeChannel extends Channel {
* @override
* @protected
* @param {string} serviceName
* @returns {import("protobufjs").RPCImpl}
* @returns {import("@hashgraph/protobufjs").RPCImpl}
*/
_createUnaryClient(serviceName) {
return (method, requestData, callback) => {
Expand Down
2 changes: 1 addition & 1 deletion src/channel/WebChannel.js
Expand Up @@ -27,7 +27,7 @@ export default class WebChannel extends Channel {
* @override
* @protected
* @param {string} serviceName
* @returns {import("protobufjs").RPCImpl}
* @returns {import("@hashgraph/protobufjs").RPCImpl}
*/
_createUnaryClient(serviceName) {
return async (method, requestData, callback) => {
Expand Down

0 comments on commit 193b341

Please sign in to comment.