Skip to content

Commit

Permalink
frank/remove debug print from decode pull oracle (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
soundsonacid authored Jul 1, 2024
1 parent ba2819d commit 0777154
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.7.62
current_version = 0.7.63
commit = True
tag = True
tag_name = {new_version}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "driftpy"
version = "0.7.62"
version = "0.7.63"
description = "A Python client for the Drift DEX"
authors = ["x19 <https://twitter.com/[email protected]>", "bigz <https://twitter.com/bigz_pubkey>", "frank <https://twitter.com/soundsonacid>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/driftpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.62"
__version__ = "0.7.63"
1 change: 0 additions & 1 deletion src/driftpy/decode/pull_oracle.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ def decode_pull_oracle(buffer: bytes) -> PriceUpdateV2:
offset += 32 # skip write_authority

verification_level_flag = read_uint8(buffer, offset)
print(verification_level_flag)
if verification_level_flag & 0x1:
offset += 1 # skip verification_level Full
else:
Expand Down

0 comments on commit 0777154

Please sign in to comment.