bls: fix imports for fake_crypto

This commit is contained in:
Michael Sproul 2019-06-11 17:58:03 +10:00
parent b9f0348930
commit 0eea6fd367
No known key found for this signature in database
GPG Key ID: 77B1309D2E54E914
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
use super::{PublicKey, BLS_PUBLIC_KEY_BYTE_SIZE};
use bls_aggregates::AggregatePublicKey as RawAggregatePublicKey;
use milagro_bls::AggregatePublicKey as RawAggregatePublicKey;
/// A BLS aggregate public key.
///

View File

@ -1,6 +1,6 @@
use super::{SecretKey, BLS_PUBLIC_KEY_BYTE_SIZE};
use bls_aggregates::PublicKey as RawPublicKey;
use cached_tree_hash::cached_tree_hash_ssz_encoding_as_vector;
use milagro_bls::PublicKey as RawPublicKey;
use serde::de::{Deserialize, Deserializer};
use serde::ser::{Serialize, Serializer};
use serde_hex::{encode as hex_encode, HexVisitor};