Skip to content

Commit c1e8b2a

Browse files
Merge branch 'main' into INFRA-171-cicd-tycho-integration-tests
2 parents e9924db + d03ed8e commit c1e8b2a

File tree

7 files changed

+159
-108
lines changed

7 files changed

+159
-108
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## [0.182.0](https://github.com/propeller-heads/tycho-simulation/compare/0.181.9...0.182.0) (2025-10-17)
2+
3+
4+
### Features
5+
6+
* add more context to the "component not found" logs and when updating the protocols_pairs cache ([58e9bd2](https://github.com/propeller-heads/tycho-simulation/commit/58e9bd27f3ec315cdb4711e53af65f80a890398b))
7+
8+
9+
### Bug Fixes
10+
11+
* handle semaphore acquire error ([2ebb0b6](https://github.com/propeller-heads/tycho-simulation/commit/2ebb0b609341ed1b684b90a91730a9a28324a525))
12+
13+
## [0.181.9](https://github.com/propeller-heads/tycho-simulation/compare/0.181.8...0.181.9) (2025-10-15)
14+
15+
16+
### Bug Fixes
17+
18+
* pass the full formatted error to the metrics ([5d6688f](https://github.com/propeller-heads/tycho-simulation/commit/5d6688f957e3bcf2a02000baa9d2130f2446ed76))
19+
20+
## [0.181.8](https://github.com/propeller-heads/tycho-simulation/compare/0.181.7...0.181.8) (2025-10-15)
21+
122
## [0.181.7](https://github.com/propeller-heads/tycho-simulation/compare/0.181.6...0.181.7) (2025-10-14)
223

324

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tycho-simulation"
3-
version = "0.181.7"
3+
version = "0.182.0"
44
edition = "2021"
55
description = "Provides tools for interacting with protocol states, calculating spot prices, and quoting token swaps."
66
repository = "https://github.com/propeller-heads/tycho-simulation"

tycho-integration-test/src/execution/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ mod traces;
2424

2525
pub async fn simulate_swap_transaction(
2626
rpc_tools: &RPCTools,
27-
simulation_id: &str,
2827
solution: &Solution,
2928
transaction: &Transaction,
3029
block: &Block,
@@ -75,7 +74,7 @@ pub async fn simulate_swap_transaction(
7574

7675
match result {
7776
execution_simulator::SimulationResult::Success { return_data, gas_used } => {
78-
info!("[{simulation_id}] Transaction succeeded, gas used: {gas_used}");
77+
info!("Transaction succeeded, gas used: {gas_used}");
7978
let amount_out = U256::abi_decode(&return_data).map_err(|e| {
8079
(
8180
miette!("Failed to decode swap amount: {e:?}"),

0 commit comments

Comments
 (0)