sets with_participants=False by default.

remotes/origin/v7.4.x
Kieran Prasch 2024-01-26 03:11:00 +01:00 committed by Derek Pierre
parent 00d15e3a3a
commit 9405a35b31
1 changed files with 1 additions and 1 deletions

View File

@ -747,7 +747,7 @@ class CoordinatorAgent(EthereumContractAgent):
return self.contract.functions.timeout().call()
@contract_api(CONTRACT_CALL)
def get_ritual(self, ritual_id: int, with_participants: bool = True) -> Ritual:
def get_ritual(self, ritual_id: int, with_participants: bool = False) -> Ritual:
result = self.contract.functions.rituals(int(ritual_id)).call()
ritual = self.Ritual(
initiator=ChecksumAddress(result[0]),