Skip to content

Commit

Permalink
Move PFM to middlewares
Browse files Browse the repository at this point in the history
  • Loading branch information
sug0 committed Dec 2, 2024
1 parent ba1ba03 commit abb2841
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion crates/ibc/src/context/middlewares.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
//! Middleware entry points on Namada.
pub mod pfm_mod;
// mod crossroads_mod;

use std::cell::RefCell;
use std::collections::BTreeSet;
use std::fmt::Debug;
Expand All @@ -9,7 +12,7 @@ use std::rc::Rc;
use ibc_middleware_packet_forward::PacketForwardMiddleware;
use namada_core::address::Address;

use crate::context::pfm_mod::PfmTransferModule;
use self::pfm_mod::PfmTransferModule;
use crate::context::transfer_mod::TransferModule;
use crate::{IbcCommonContext, IbcStorageContext};

Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion crates/ibc/src/context/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ pub mod execution;
pub mod middlewares;
pub mod nft_transfer;
pub mod nft_transfer_mod;
pub mod pfm_mod;
pub mod router;
pub mod storage;
pub mod token_transfer;
Expand Down

0 comments on commit abb2841

Please sign in to comment.