Skip to content

Commit 2fd5e25

Browse files
authored
Bump Engine dep to bottlenose-397a1bc0 (#952)
## Summary Pulling the latest `bottlenose-397a1bc0` Engine with a receipt versioning fix. ## Testing No changes testable in Node's local tests.
2 parents 4fc2351 + 61ced6a commit 2fd5e25

File tree

6 files changed

+33
-33
lines changed

6 files changed

+33
-33
lines changed

core-rust/Cargo.lock

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

core-rust/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ resolver = "2"
2323
# $ git push origin "release_name-BLAH"
2424
# * Then use tag="release_name-BLAH" in the below dependencies.
2525
#
26-
sbor = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-25601aac", features = ["serde"] }
27-
radix-transactions = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-25601aac" }
28-
radix-transaction-scenarios = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-25601aac" }
29-
radix-common = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-25601aac", features = ["serde"] }
30-
radix-engine-interface = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-25601aac" }
31-
radix-engine = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-25601aac" }
32-
radix-substate-store-impls = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-25601aac" }
33-
radix-substate-store-interface = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-25601aac" }
34-
radix-substate-store-queries = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-25601aac" }
35-
radix-rust = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-25601aac", features = ["serde"] }
36-
radix-blueprint-schema-init = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-25601aac", features = ["serde"] }
26+
sbor = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-397a1bc0", features = ["serde"] }
27+
radix-transactions = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-397a1bc0" }
28+
radix-transaction-scenarios = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-397a1bc0" }
29+
radix-common = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-397a1bc0", features = ["serde"] }
30+
radix-engine-interface = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-397a1bc0" }
31+
radix-engine = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-397a1bc0" }
32+
radix-substate-store-impls = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-397a1bc0" }
33+
radix-substate-store-interface = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-397a1bc0" }
34+
radix-substate-store-queries = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-397a1bc0" }
35+
radix-rust = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-397a1bc0", features = ["serde"] }
36+
radix-blueprint-schema-init = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "bottlenose-397a1bc0", features = ["serde"] }
3737

3838
itertools = { version = "=0.10.5" }
3939
jni = { version = "=0.19.0" }

core-rust/core-api-server/src/core_api/conversions/receipt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ pub fn to_api_fee_summary(
698698
pub fn to_api_costing_parameters(
699699
_context: &MappingContext,
700700
engine_costing_parameters: &CostingParameters,
701-
transaction_costing_parameters: &TransactionCostingParameters,
701+
transaction_costing_parameters: &TransactionCostingParametersReceipt,
702702
) -> Result<models::CostingParameters, MappingError> {
703703
Ok(models::CostingParameters {
704704
execution_cost_unit_price: to_api_decimal(

core-rust/state-manager/src/receipt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ pub struct LocalTransactionExecutionV1 {
237237
pub fee_source: FeeSource,
238238
pub fee_destination: FeeDestination,
239239
pub engine_costing_parameters: CostingParameters,
240-
pub transaction_costing_parameters: TransactionCostingParameters,
240+
pub transaction_costing_parameters: TransactionCostingParametersReceipt,
241241
pub application_logs: Vec<(Level, String)>,
242242
pub state_update_summary: StateUpdateSummary,
243243
pub global_balance_summary: GlobalBalanceSummary,

core-rust/state-manager/src/staging/result.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ pub struct HashUpdateContext<'s, S> {
114114
pub struct ExecutionFeeData {
115115
pub fee_summary: TransactionFeeSummary,
116116
pub engine_costing_parameters: CostingParameters,
117-
pub transaction_costing_parameters: TransactionCostingParameters,
117+
pub transaction_costing_parameters: TransactionCostingParametersReceipt,
118118
}
119119

120120
impl ProcessedTransactionReceipt {

testnet-node/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
core:
55
container_name: radixdlt-stokenet-node
66
#### Chose to either uncomment "image" or "build" to either pull the image from dockerhub or build locally from source
7-
image: radixdlt/babylon-node:v1.2.0.2
7+
image: radixdlt/babylon-node:v1.2.0.3
88
# build:
99
# context: ..
1010
# dockerfile: Dockerfile

0 commit comments

Comments
 (0)