Skip to content

Commit

Permalink
Merge branch 'main' into fix-non-integer-block-number-calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
mikewcasale authored Jan 24, 2024
2 parents fca7f90 + 415e0f2 commit c043c6c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,22 @@

## [Unreleased](https://github.com/bancorprotocol/fastlane-bot/tree/HEAD)

[Full Changelog](https://github.com/bancorprotocol/fastlane-bot/compare/v3.0.19...HEAD)
[Full Changelog](https://github.com/bancorprotocol/fastlane-bot/compare/v3.0.20...HEAD)

- hex string without 0x prefix [\#306](https://github.com/bancorprotocol/fastlane-bot/issues/306)
- max priority fee overridden in build\_transaction\_with\_gas when gas base fee fails [\#300](https://github.com/bancorprotocol/fastlane-bot/issues/300)
- hex string without 0x prefix [\#324](https://github.com/bancorprotocol/fastlane-bot/pull/324) ([mikewcasale](https://github.com/mikewcasale))

- Add support for Solidly Uni V2-style pools [\#274](https://github.com/bancorprotocol/fastlane-bot/issues/274)

Closed issues

- Fix production job alert spam \(time-outs\) [\#325](https://github.com/bancorprotocol/fastlane-bot/issues/325)

## [v3.0.20](https://github.com/bancorprotocol/fastlane-bot/tree/v3.0.20) (2024-01-22)

[Full Changelog](https://github.com/bancorprotocol/fastlane-bot/compare/v3.0.19...v3.0.20)

- 274 add support for solidly uni v2 style pools [\#282](https://github.com/bancorprotocol/fastlane-bot/pull/282) ([Lesigh-3100](https://github.com/Lesigh-3100))

## [v3.0.19](https://github.com/bancorprotocol/fastlane-bot/tree/v3.0.19) (2024-01-22)
Expand Down
2 changes: 1 addition & 1 deletion fastlane_bot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .bot import CarbonBot as Bot, __VERSION__, __DATE__
from .config import Config, ConfigNetwork, ConfigDB, ConfigLogger, ConfigProvider

__version__ = "3.0.20"
__version__ = "3.0.21"
2 changes: 2 additions & 0 deletions fastlane_bot/events/async_event_update_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,8 @@ def async_update_pools_from_contracts(mgr: Any, current_block: int, logging_path
# Initialize web3
new_pool_data_df["cid"] = [
cfg.w3.keccak(text=f"{row['descr']}").hex()
if row["exchange_name"] not in mgr.cfg.CARBON_V1_FORKS
else int(row['cid'])
for index, row in new_pool_data_df.iterrows()
]

Expand Down

0 comments on commit c043c6c

Please sign in to comment.