bigint upgraded to version 3.0

This commit is contained in:
debris
2017-07-04 12:19:11 +02:00
parent cc718bb108
commit a9aaacd88b
77 changed files with 123 additions and 228 deletions

View File

@@ -559,7 +559,7 @@ mod tests {
use node_table::{Node, NodeId, NodeEndpoint};
use std::str::FromStr;
use rustc_serialize::hex::FromHex;
use rustc_hex::FromHex;
use ethkey::{Random, Generator};
use AllowIP;

View File

@@ -331,7 +331,7 @@ impl Handshake {
#[cfg(test)]
mod test {
use std::sync::Arc;
use rustc_serialize::hex::FromHex;
use rustc_hex::FromHex;
use super::*;
use util::hash::H256;
use io::*;

View File

@@ -66,6 +66,7 @@ extern crate crypto as rcrypto;
extern crate rand;
extern crate time;
extern crate ansi_term; //TODO: remove this
extern crate rustc_hex;
extern crate rustc_serialize;
extern crate igd;
extern crate libc;