We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e72e7dc commit 8d01c7eCopy full SHA for 8d01c7e
2 files changed
libs/ethabi/src/contract.rs
@@ -70,11 +70,12 @@ impl<'a> Visitor<'a> for ContractVisitor {
70
}
71
72
impl Contract {
73
+ /*
74
/// Loads contract from json.
75
pub fn load<T: io::Read>(reader: T) -> errors::Result<Self> {
76
let c = serde_json::from_reader(reader).map_err(From::from);
77
return c;
- }
78
+ }*/
79
80
/// Creates constructor call builder.
81
pub fn constructor(&self) -> Option<&Constructor> {
src/lib.rs
@@ -45,7 +45,7 @@ cfg_if! {
45
mod native;
46
mod utils;
47
48
-pub extern crate ethabi;
+pub extern crate ethabi as pdxabi;
49
50
//pub extern crate rustc_hex;
51
pub mod pdx;
0 commit comments