rename symbol _create to _deploy due to name conflict with external "create" which creates a contract

This commit is contained in:
fro
2017-11-15 19:14:08 +03:00
parent 357e8b41de
commit b8354e292c

View File

@ -4,7 +4,7 @@ extern crate byteorder;
#[macro_use] extern crate log;
#[macro_use] extern crate lazy_static;
pub static CREATE_SYMBOL: &'static str = "_create";
pub static CREATE_SYMBOL: &'static str = "_deploy";
pub static CALL_SYMBOL: &'static str = "_call";
pub mod rules;