Skip to content

Commit 17198e3

Browse files
Fixed filtering of big map diffs by the path, bump deps (#189)
1 parent 31fe1aa commit 17198e3

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ Please use [this](https://docs.gitlab.com/ee/development/changelog.html) documen
88

99
* cli: Fixed missing `schema approve --hashes` argument.
1010
* codegen: Fixed contract address used instead of an alias when typename is not set.
11-
* tzkt: Fixed processing operations with entrypoint `default`
11+
* tzkt: Fixed processing operations with entrypoint `default`.
1212
* tzkt: Fixed regression in processing migration originations.
13+
* tzkt: Fixed filtering of big map diffs by the path.
1314

1415
### Removed
1516

poetry.lock

Lines changed: 6 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/dipdup/datasources/tzkt/datasource.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ async def get_big_maps(
477477
url='v1/bigmaps/updates',
478478
params={
479479
"contract.in": ",".join(addresses),
480-
"paths.in": ",".join(paths),
480+
"path.in": ",".join(paths),
481481
"offset": offset,
482482
"limit": self.request_limit,
483483
"level.gt": first_level,

0 commit comments

Comments
 (0)