Skip to content

Commit

Permalink
Updated Namada dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
murisi committed Jul 2, 2024
1 parent d89f8ee commit 597c8f3
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 31 deletions.
50 changes: 25 additions & 25 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ tendermint-rpc = { version = "0.36.0" }
tendermint-testgen = { version = "0.36.0" }

# Namada dependencies
namada_ibc = { git = "https://github.com/anoma/namada", rev = "7dd97fa8600b5a467eda2eebaace1b66a0d66231" }
namada_parameters = { git = "https://github.com/anoma/namada", rev = "7dd97fa8600b5a467eda2eebaace1b66a0d66231" }
namada_sdk = { git = "https://github.com/anoma/namada", rev = "7dd97fa8600b5a467eda2eebaace1b66a0d66231" }
namada_token = { git = "https://github.com/anoma/namada", rev = "7dd97fa8600b5a467eda2eebaace1b66a0d66231" }
namada_ibc = { git = "https://github.com/anoma/namada", rev = "7e23015cbb878f5c2a69042cf8bafcd49d51b238" }
namada_parameters = { git = "https://github.com/anoma/namada", rev = "7e23015cbb878f5c2a69042cf8bafcd49d51b238" }
namada_sdk = { git = "https://github.com/anoma/namada", rev = "7e23015cbb878f5c2a69042cf8bafcd49d51b238" }
namada_token = { git = "https://github.com/anoma/namada", rev = "7e23015cbb878f5c2a69042cf8bafcd49d51b238" }

# Other dependencies
abscissa_core = "=0.6.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/relayer/src/chain/namada/tx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use namada_sdk::ibc::core::host::types::identifiers::{ChannelId, PortId};
use namada_sdk::masp::{PaymentAddress, TransferTarget};
use namada_sdk::masp_primitives::transaction::Transaction as MaspTransaction;
use namada_sdk::{signing, tx, Namada};
use namada_token::ShieldingTransfer;
use namada_token::Transfer;
use tendermint_proto::Protobuf;
use tendermint_rpc::endpoint::broadcast::tx_sync::Response;
use tracing::{debug, debug_span, trace};
Expand Down Expand Up @@ -214,7 +214,7 @@ impl NamadaChain {
channel_id: &ChannelId,
packet_data: &[u8],
is_refund: bool,
) -> Result<Option<(ShieldingTransfer, MaspTransaction)>, Error> {
) -> Result<Option<(Transfer, MaspTransaction)>, Error> {
let transfer = serde_json::from_slice::<PacketData>(packet_data)
.ok()
.and_then(|data| {
Expand Down

0 comments on commit 597c8f3

Please sign in to comment.