return_ -> ret

This commit is contained in:
NikVolf
2019-01-24 11:20:31 +03:00
parent 6046e94b40
commit 56464c102f
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -34,7 +34,7 @@ pub use runtime_type::inject_runtime_type;
pub struct TargetSymbols {
pub create: &'static str,
pub call: &'static str,
pub return_: &'static str,
pub ret: &'static str,
}
pub enum TargetRuntime {
@@ -48,7 +48,7 @@ impl TargetRuntime {
TargetRuntime::Substrate(TargetSymbols {
create: "deploy",
call: "call",
return_: "ext_return",
ret: "ext_return",
})
}
@@ -56,7 +56,7 @@ impl TargetRuntime {
TargetRuntime::PWasm(TargetSymbols {
create: "deploy",
call: "call",
return_: "ret",
ret: "ret",
})
}