Skip to content

Post escrow release #8361

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

Merged
merged 1 commit into from
Jul 17, 2025
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
2 changes: 2 additions & 0 deletions backend/canisters/escrow/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [unreleased]

## [[2.0.1834](https://github.com/open-chat-labs/open-chat/releases/tag/v2.0.1834-escrow)] - 2025-07-17

### Changed

- Expose `liquid_cycles_balance` in metrics ([#8350](https://github.com/open-chat-labs/open-chat/pull/8350))
Expand Down
2 changes: 0 additions & 2 deletions backend/canisters/escrow/impl/src/model/swaps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ pub struct Swap {
pub id: u32,
pub location: P2PSwapLocation,
pub created_at: TimestampMillis,
#[serde(alias = "created_by")]
pub offered_by: Principal,
#[serde(default)]
pub restricted_to: Option<Principal>,
pub token0: TokenInfo,
pub amount0: u128,
Expand Down
Loading