Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Bobrikov committed Oct 19, 2023
1 parent 46fc3bc commit b747270
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic
- evm.node: Fixed incorrect log request parameters.
- evm.subsquid.events: Fixed issue with determining the last level when syncing with node.
- hasura: Increated retry count for initial connection (healthcheck).
- tezos.tzkt: Fixed token_id handler in token transfers index.
- tezos.tzkt.token_transfers: Fixed token_id handler in token transfers index.

## [7.0.0] - 2023-09-25

Expand Down
2 changes: 1 addition & 1 deletion src/dipdup/models/tezos_tzkt.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ class TzktTokenBalanceData(HasLevel):
balance_value: float | None = None

@property
def level(self) -> int:
def level(self) -> int: # type: ignore[override]
return self.last_level

@classmethod
Expand Down

0 comments on commit b747270

Please sign in to comment.