remove debug impl in runtime-std

This commit is contained in:
Robert Habermeier
2018-02-06 16:44:30 +01:00
parent 6aaf446352
commit 10ba24673e
+2 -1
View File
@@ -50,7 +50,8 @@ pub mod transaction {
use core::ops;
/// A type-safe indicator that a transaction has been checked.
#[derive(Debug, PartialEq, Eq, Clone)]
#[derive(PartialEq, Eq, Clone)]
#[cfg_attr(feature = "std", derive(Debug))]
pub struct CheckedTransaction(UncheckedTransaction);
impl CheckedTransaction {