openethereum/rpc/src/v1/traits/mod.rs

14 lines
232 B
Rust
Raw Normal View History

2016-01-21 01:19:29 +01:00
//! Ethereum rpc interfaces.
2016-01-27 18:17:20 +01:00
macro_rules! rpc_unimplemented {
() => (Err(Error::internal_error()))
}
2016-01-21 01:19:29 +01:00
pub mod web3;
pub mod eth;
pub mod net;
pub use self::web3::Web3;
2016-01-21 11:25:39 +01:00
pub use self::eth::{Eth, EthFilter};
2016-01-21 01:19:29 +01:00
pub use self::net::Net;