This commit is contained in:
antiochp 2018-12-05 12:10:12 +00:00
parent fd41b4918e
commit 6a4278c67e
No known key found for this signature in database
GPG key ID: 49CBDBCE8AB061C1
2 changed files with 3 additions and 2 deletions

View file

@ -20,7 +20,7 @@ use core::block::{Block, BlockHeader, Error};
use core::hash::Hashed; use core::hash::Hashed;
use core::id::ShortIdentifiable; use core::id::ShortIdentifiable;
use core::{KernelFeatures, Output, OutputFeatures, ShortId, TxKernel}; use core::{KernelFeatures, Output, OutputFeatures, ShortId, TxKernel};
use ser::{self, read_multi, Readable, Reader, VerifySortOrder, Writeable, Writer}; use ser::{self, read_multi, Readable, Reader, VerifySortedAndUnique, Writeable, Writer};
/// Container for full (full) outputs and kernels and kern_ids for a compact block. /// Container for full (full) outputs and kernels and kern_ids for a compact block.
#[derive(Debug, Clone)] #[derive(Debug, Clone)]

View file

@ -29,7 +29,8 @@ use core::verifier_cache::VerifierCache;
use core::{committed, Committed}; use core::{committed, Committed};
use keychain::{self, BlindingFactor}; use keychain::{self, BlindingFactor};
use ser::{ use ser::{
self, read_multi, FixedLength, PMMRable, Readable, Reader, VerifySortOrder, Writeable, Writer, self, read_multi, FixedLength, PMMRable, Readable, Reader, VerifySortedAndUnique, Writeable,
Writer,
}; };
use util; use util;
use util::secp; use util::secp;