restore missing `mem` import in key.rs

This commit is contained in:
Andrew Poelstra 2018-08-22 20:43:06 +00:00
parent 0d41c23c21
commit a810880c54
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@
#[cfg(any(test, feature = "rand"))] use rand::Rng;
use std::fmt;
use std::{fmt, mem};
use super::{Secp256k1};
use super::Error::{self, InvalidPublicKey, InvalidSecretKey};