Skip to content

Commit

Permalink
fix: clean up imports (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
chungquantin authored Jul 27, 2024
1 parent 027cb85 commit 30ff91a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pop-api/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![cfg_attr(not(feature = "std"), no_std, no_main)]

use ink::env::chain_extension::{ChainExtensionMethod, FromStatusCode};
use ink::env::chain_extension::ChainExtensionMethod;

use constants::DECODING_FAILED;
use ink::env::chain_extension::FromStatusCode;
Expand Down
2 changes: 1 addition & 1 deletion pop-api/src/v0/assets/fungibles.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use ink::{env::chain_extension::ChainExtensionMethod, prelude::vec::Vec, scale::Decode};

use crate::{
constants::{ASSETS, BALANCES, DECODING_FAILED, DISPATCH, FUNGIBLES, READ_STATE},
constants::{ASSETS, BALANCES, DECODING_FAILED, FUNGIBLES},
primitives::{AccountId, AssetId, Balance},
v0::V0,
Result, StatusCode,
Expand Down

0 comments on commit 30ff91a

Please sign in to comment.