From af7de5fb5eed63389d2d3bfb3c08f2f7efb55841 Mon Sep 17 00:00:00 2001 From: Erik van den Brink Date: Tue, 14 Nov 2023 10:40:54 +0100 Subject: [PATCH] api: fix return type of `call_function()` --- neo3/api/wrappers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo3/api/wrappers.py b/neo3/api/wrappers.py index dd1a9ad..001c227 100644 --- a/neo3/api/wrappers.py +++ b/neo3/api/wrappers.py @@ -655,7 +655,7 @@ def call_function( self, name, args: Optional[noderpc.ContractParameter] = None, - ) -> ContractMethodResult[noderpc.ExecutionResult]: + ) -> ContractMethodResult[noderpc.ExecutionResultResponse]: """ Call a method on the contract.