Skip to content

Commit

Permalink
build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
smohan-dw committed Dec 29, 2023
1 parent f52b379 commit 5381a47
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions primitives/identifier/src/curi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
// You should have received a copy of the GNU General Public License
// along with CORD. If not, see <https://www.gnu.org/licenses/>.

#![cfg_attr(not(feature = "std"), no_std)]
#![allow(clippy::unused_unit)]

use crate::*;
Expand All @@ -25,7 +24,11 @@ use blake2_rfc::blake2b::{Blake2b, Blake2bResult};
use codec::{Decode, Encode, MaxEncodedLen};
use frame_support::{ensure, sp_runtime::RuntimeDebug, traits::ConstU32, BoundedVec};
use scale_info::TypeInfo;
use sp_std::{fmt::Debug, prelude::Clone, str, vec};
use sp_std::{
fmt::Debug,
prelude::{Clone, Vec},
str, vec,
};

/// CORD Identifier Prefix
const PREFIX: &[u8] = b"CRDIDFR";
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "stable"
channel = "1.74.1"
components = [
"cargo",
"clippy",
Expand Down

0 comments on commit 5381a47

Please sign in to comment.