move rpc_unimplemented into impls module

This commit is contained in:
Robert Habermeier 2016-05-29 14:53:50 +02:00
parent 191bae5cd4
commit 7cea3eb5ed
2 changed files with 4 additions and 4 deletions

View File

@ -25,6 +25,10 @@ macro_rules! take_weak {
}
}
macro_rules! rpc_unimplemented {
() => (Err(Error::internal_error()))
}
mod web3;
mod eth;
mod net;

View File

@ -16,10 +16,6 @@
//! Ethereum rpc interfaces.
macro_rules! rpc_unimplemented {
() => (Err(Error::internal_error()))
}
pub mod web3;
pub mod eth;
pub mod net;