add derive Debug to Keypair (#4236)

This commit is contained in:
Rob Walker 2019-05-09 11:41:11 -07:00 committed by GitHub
parent 5d0d467287
commit 5f72650c7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -18,6 +18,7 @@ use std::path::Path;
// --BEGIN
// the below can go away if this lands:
// https://github.com/dalek-cryptography/ed25519-dalek/pull/82
#[derive(Debug)]
pub struct Keypair(ed25519_dalek::Keypair);
impl PartialEq for Keypair {
fn eq(&self, other: &Self) -> bool {