Merge RPC branch

This commit is contained in:
Age Manning
2019-03-25 21:31:49 +11:00
29 changed files with 1110 additions and 275 deletions

View File

@@ -14,4 +14,8 @@ impl Keypair {
let pk = PublicKey::from_secret_key(&sk);
Keypair { sk, pk }
}
pub fn identifier(&self) -> String {
self.pk.concatenated_hex_id()
}
}