Update solana-vote-signer to Rust 2018

This commit is contained in:
Tyera Eulberg
2019-02-01 10:06:28 -07:00
committed by Tyera Eulberg
parent 0e58023794
commit 1b3e7f734a
4 changed files with 8 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
//! The `rpc` module implements the Vote signing service RPC interface.
use jsonrpc_core::*;
use jsonrpc_http_server::*;
use crate::jsonrpc_core::*;
use crate::jsonrpc_http_server::*;
use solana_sdk::pubkey::Pubkey;
use solana_sdk::signature::{Keypair, KeypairUtil, Signature};
use std::collections::HashMap;
@@ -178,7 +178,7 @@ impl Default for LocalVoteSigner {
#[cfg(test)]
mod tests {
use super::*;
use jsonrpc_core::Response;
use crate::jsonrpc_core::Response;
use solana_sdk::signature::{Keypair, KeypairUtil};
use std::mem;