Skip to content

Commit

Permalink
fix: invalid imported crates & crate visibility (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
chungquantin authored and Daanvdplas committed Aug 19, 2024
1 parent 0811598 commit 6482a43
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pop-api/src/v0/assets/fungibles.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ use crate::{
primitives::{AccountId, AssetId, Balance},
Result, StatusCode,
};
pub use asset_management::*;
use constants::*;
use ink::{env::chain_extension::ChainExtensionMethod, prelude::vec::Vec};
pub use management::*;
pub use metadata::*;

// Helper method to build a dispatch call.
Expand Down
3 changes: 2 additions & 1 deletion runtime/devnet/src/config/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
mod api;
mod assets;
// Public due to pop api integration tests crate.
pub mod assets;
mod contracts;
mod proxy;
// Public due to integration tests crate.
Expand Down

0 comments on commit 6482a43

Please sign in to comment.