Skip to content

Commit 3ed615a

Browse files
committed
Removed unnecessarry await
1 parent 54d96ad commit 3ed615a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/juno-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export default class JunoModule {
158158
break;
159159
}
160160
case ResponseTypes.FunctionResponse: {
161-
value = await (response as FunctionCallResponse).data;
161+
value = (response as FunctionCallResponse).data;
162162
break;
163163
}
164164
case ResponseTypes.FunctionDeclared: {

0 commit comments

Comments
 (0)