diff --git a/README.md b/README.md index 71dd3c79..d547cd7a 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Some examples of these types of applications: ## Documentation -Read the [development userguide](https://docs.apeworx.io/silverback/stable/development) to learn more how to develop an application. +Read the [development userguide](https://docs.apeworx.io/silverback/stable/userguides/development.html) to learn more how to develop an application. ## Dependencies diff --git a/silverback/application.py b/silverback/application.py index 7bac94e4..4a514802 100644 --- a/silverback/application.py +++ b/silverback/application.py @@ -65,12 +65,12 @@ def __init__(self, settings: Optional[Settings] = None): network_str = f'\n NETWORK="{provider.network.ecosystem.name}:{provider.network.name}"' signer_str = f"\n SIGNER={repr(self.signer)}" start_block_str = f"\n START_BLOCK={self.start_block}" if self.start_block else "" - new_bock_timeout_str = ( + new_block_timeout_str = ( f"\n NEW_BLOCK_TIMEOUT={self.new_block_timeout}" if self.new_block_timeout else "" ) logger.info( f"Loaded Silverback App:{network_str}" - f"{signer_str}{start_block_str}{new_bock_timeout_str}" + f"{signer_str}{start_block_str}{new_block_timeout_str}" ) def on_startup(self) -> Callable: @@ -132,7 +132,7 @@ def on_( Args: container: (Union[BlockContainer, ContractEvent]): The event source to watch. - new_block_timeout: (Optional[int]): Override for block timeoui that is acceptable. + new_block_timeout: (Optional[int]): Override for block timeout that is acceptable. Defaults to whatever the app's settings are for default polling timeout are. start_block (Optional[int]): block number to start processing events from. Defaults to whatever the latest block is.