Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Synchronize main with release/1.5.x #569

Merged
merged 15 commits into from
Sep 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.5.1] 2024-08-26

### Added

- Added support for the experimental multidapp claimer.
- Added the `DAPP_CONTRACT_ADDRESS` environment variable to the `authority-claimer`. If let unset, the service instantiates the MultidappClaimer, that reads dapp addresses from Redis.
- Added `READER_MODE_ENABLED` environment variable to control whether the node generate claims or not.

### Changed

- Redacted the contents of `CARTESI_EXPERIMENTAL_SUNODO_VALIDATOR_REDIS_ENDPOINT`.
- Logged server-manager tainted session errors on advance-runner and inspect-server.
- Adjusted dispatcher, advance-runner and authority-claimer logs.

## [1.5.0] 2024-07-22

Expand Down
54 changes: 27 additions & 27 deletions offchain/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion offchain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ members = [
]

[workspace.package]
version = "1.5.0"
version = "1.5.1"
license = "Apache-2.0"
edition = "2021"

Expand Down
6 changes: 3 additions & 3 deletions offchain/advance-runner/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,14 +127,14 @@ impl Runner {
.context(ProduceOutputsSnafu)?;
tracing::trace!("produced outputs in broker stream");

let dapp_address = rollups_claim.dapp_address.clone();
let claim = rollups_claim.clone();
self.broker
.produce_rollups_claim(rollups_claim)
.await
.context(ProduceClaimSnafu)?;
tracing::info!(
"produced epoch claim in broker stream for dapp address {:?}",
dapp_address
"produced epoch claim in broker stream: {:?}",
claim
);
}
Err(source) => {
Expand Down
Loading
Loading