From 52995ab5f5ba7541443c10b8f506d9c6acf0c6eb Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Fri, 2 Apr 2021 23:34:17 +0000 Subject: [PATCH] Use generic BLS object instead of BLST (#2290) ## Issue Addressed NA ## Proposed Changes Fixes a compile error when using the `milagro` feature. I can't see any need to use the specific BLST object here. @pawanjay176 can you please confirm? ## Additional Info NA --- validator_client/src/graffiti_file.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validator_client/src/graffiti_file.rs b/validator_client/src/graffiti_file.rs index 75b75b1482..ecb294f0f6 100644 --- a/validator_client/src/graffiti_file.rs +++ b/validator_client/src/graffiti_file.rs @@ -5,7 +5,7 @@ use std::io::{prelude::*, BufReader}; use std::path::PathBuf; use std::str::FromStr; -use bls::blst_implementations::PublicKeyBytes; +use bls::PublicKeyBytes; use types::{graffiti::GraffitiString, Graffiti}; #[derive(Debug)]