Skip to content

Commit

Permalink
Initial vote signing service implementation (#1996)
Browse files Browse the repository at this point in the history
* Initial vote signing service implementation

- Does not use enclave for secure signing

* fix clippy errors

* added some tests

* more tests

* Address review comments + more tests
  • Loading branch information
pgarg66 authored Dec 4, 2018
1 parent da44b0f commit 2112c87
Show file tree
Hide file tree
Showing 4 changed files with 386 additions and 25 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions vote-signer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ license = "Apache-2.0"
bs58 = "0.2.0"
clap = "2.31"
log = "0.4.2"
serde_json = "1.0.10"
solana-sdk = { path = "../sdk", version = "0.11.0" }
solana-metrics = { path = "../metrics", version = "0.11.0" }
solana-jsonrpc-core = "0.3.0"
Expand Down
3 changes: 3 additions & 0 deletions vote-signer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ extern crate solana_jsonrpc_http_server as jsonrpc_http_server;
extern crate solana_sdk;
#[macro_use]
extern crate solana_jsonrpc_macros as jsonrpc_macros;
#[cfg(test)]
#[macro_use]
extern crate serde_json;
Loading

0 comments on commit 2112c87

Please sign in to comment.