Skip to content

Commit

Permalink
rename method usages
Browse files Browse the repository at this point in the history
  • Loading branch information
glevco committed Oct 10, 2023
1 parent f35ffce commit d43178a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hathor/builder/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ def _get_or_create_verification_service(self) -> VerificationService:
def _get_or_create_vertex_verifiers(self) -> VertexVerifiers:
if self._vertex_verifiers is None:
settings = self._get_or_create_settings()
self._vertex_verifiers = VertexVerifiers.create(settings=settings)
self._vertex_verifiers = VertexVerifiers.create_defaults(settings=settings)

return self._vertex_verifiers

Expand Down
2 changes: 1 addition & 1 deletion hathor/builder/cli_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def create_manager(self, reactor: Reactor) -> HathorManager:
not_support_features=self._args.signal_not_support
)

vertex_verifiers = VertexVerifiers.create(settings=settings)
vertex_verifiers = VertexVerifiers.create_defaults(settings=settings)
verification_service = VerificationService(verifiers=vertex_verifiers)

p2p_manager = ConnectionsManager(
Expand Down

0 comments on commit d43178a

Please sign in to comment.