Tidy the DEX pallet

This commit is contained in:
Luke Parker
2025-11-30 21:27:04 -05:00
parent c45c973ca1
commit 30ea9d9a06
22 changed files with 664 additions and 3555 deletions

View File

@@ -1,4 +1,5 @@
use core::cmp::Ord;
use alloc::vec::Vec;
use scale::FullCodec;

View File

@@ -1,10 +1,14 @@
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]
#![cfg_attr(not(feature = "std"), no_std)]
#![no_std]
#![deny(missing_docs)]
use core::cmp::Ordering;
extern crate alloc;
#[cfg(feature = "std")]
extern crate std;
use scale::{EncodeLike, FullCodec};
use frame_support::storage::*;