Skip to content
Open
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: 1 addition & 1 deletion bridge-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bridge-cli"
version = "0.3.14"
version = "0.3.15"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
version = "0.3.15"
version = "0.3.16"

edition = "2021"
repository = "https://github.com/Near-One/bridge-sdk-rs"

Expand Down
2 changes: 1 addition & 1 deletion bridge-sdk/bridge-clients/near-bridge-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "near-bridge-client"
version = "0.2.2"
version = "0.2.3"
edition = "2021"

[dependencies]
Expand Down
8 changes: 8 additions & 0 deletions bridge-sdk/bridge-clients/near-bridge-client/src/btc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,14 @@ impl NearBridgeClient {
let endpoint = self.endpoint()?;
let btc_connector = self.utxo_chain_connector(chain)?;

tracing::info!(
"{}",
serde_json::json!({

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nitpick: serde_json::to_string_pretty can be used to handle any serialization errors properly and display structure in a formatted way

"deposit_msg": deposit_msg
})
.to_string()
);

let response = near_rpc_client::view(
endpoint,
ViewRequest {
Expand Down
2 changes: 1 addition & 1 deletion bridge-sdk/connectors/omni-connector/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "omni-connector"
version = "0.2.13"
version = "0.2.14"
edition = "2021"

[dependencies]
Expand Down
Loading