From 5f72650c7f66a7fa14b044db8037bd5c694faaf9 Mon Sep 17 00:00:00 2001 From: Rob Walker Date: Thu, 9 May 2019 11:41:11 -0700 Subject: [PATCH] add derive Debug to Keypair (#4236) --- sdk/src/signature.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/src/signature.rs b/sdk/src/signature.rs index 06c95ee202..db39005e50 100644 --- a/sdk/src/signature.rs +++ b/sdk/src/signature.rs @@ -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 {