|
@@ -1,5 +1,5 @@
|
|
|
use crate::{amount, asset::AssetId, storage, transaction, AccountId};
|
|
|
-use serde::{Serialize, Serializer};
|
|
|
+use serde::Serialize;
|
|
|
use std::fmt::Display;
|
|
|
|
|
|
/// The errors that can happen in the Verax crate
|
|
@@ -29,11 +29,3 @@ pub enum Error {
|
|
|
#[error("Invalid amount: {0}")]
|
|
|
InvalidAmount(#[from] amount::Error),
|
|
|
}
|
|
|
-
|
|
|
-pub fn serialize_to_string<S, T>(value: &T, serializer: S) -> Result<S::Ok, S::Error>
|
|
|
-where
|
|
|
- S: Serializer,
|
|
|
- T: ToString + Display,
|
|
|
-{
|
|
|
- serializer.serialize_str(&value.to_string())
|
|
|
-}
|