Fix agent updated call to minimumAuthorization.

pull/3213/head
derekpierre 2023-09-07 19:56:07 -04:00
parent 526fb779fa
commit c035e2c3b8
1 changed files with 1 additions and 1 deletions

View File

@ -404,7 +404,7 @@ class PREApplicationAgent(EthereumContractAgent):
@contract_api(CONTRACT_CALL)
def get_min_authorization(self) -> int:
result = self.contract.functions.minAuthorization().call()
result = self.contract.functions.minimumAuthorization().call()
return result
@contract_api(CONTRACT_CALL)