mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-19 05:21:03 +00:00
Contracts: Fix typo (#3563)
This commit is contained in:
@@ -180,7 +180,7 @@ pub trait HostFn {
|
|||||||
flags: CallFlags,
|
flags: CallFlags,
|
||||||
callee: &[u8],
|
callee: &[u8],
|
||||||
ref_time_limit: u64,
|
ref_time_limit: u64,
|
||||||
proof_time_limit: u64,
|
proof_size_limit: u64,
|
||||||
deposit: Option<&[u8]>,
|
deposit: Option<&[u8]>,
|
||||||
value: &[u8],
|
value: &[u8],
|
||||||
input_data: &[u8],
|
input_data: &[u8],
|
||||||
|
|||||||
@@ -130,7 +130,7 @@ impl HostFn for HostFnImpl {
|
|||||||
flags: CallFlags,
|
flags: CallFlags,
|
||||||
callee: &[u8],
|
callee: &[u8],
|
||||||
ref_time_limit: u64,
|
ref_time_limit: u64,
|
||||||
proof_time_limit: u64,
|
proof_size_limit: u64,
|
||||||
deposit: Option<&[u8]>,
|
deposit: Option<&[u8]>,
|
||||||
value: &[u8],
|
value: &[u8],
|
||||||
input_data: &[u8],
|
input_data: &[u8],
|
||||||
|
|||||||
@@ -223,7 +223,7 @@ mod sys {
|
|||||||
|
|
||||||
pub fn weight_to_fee(
|
pub fn weight_to_fee(
|
||||||
ref_time_limit: u64,
|
ref_time_limit: u64,
|
||||||
proof_time_limit: u64,
|
proof_size_limit: u64,
|
||||||
output_ptr: *mut u8,
|
output_ptr: *mut u8,
|
||||||
output_len_ptr: *mut u32,
|
output_len_ptr: *mut u32,
|
||||||
);
|
);
|
||||||
@@ -239,7 +239,7 @@ mod sys {
|
|||||||
flags: u32,
|
flags: u32,
|
||||||
callee_ptr: *const u8,
|
callee_ptr: *const u8,
|
||||||
ref_time_limit: u64,
|
ref_time_limit: u64,
|
||||||
proof_time_limit: u64,
|
proof_size_limit: u64,
|
||||||
deposit_ptr: *const u8,
|
deposit_ptr: *const u8,
|
||||||
transferred_value_ptr: *const u8,
|
transferred_value_ptr: *const u8,
|
||||||
input_data_ptr: *const u8,
|
input_data_ptr: *const u8,
|
||||||
@@ -251,7 +251,7 @@ mod sys {
|
|||||||
pub fn instantiate(
|
pub fn instantiate(
|
||||||
code_hash_ptr: *const u8,
|
code_hash_ptr: *const u8,
|
||||||
ref_time_limit: u64,
|
ref_time_limit: u64,
|
||||||
proof_time_limit: u64,
|
proof_size_limit: u64,
|
||||||
deposit_ptr: *const u8,
|
deposit_ptr: *const u8,
|
||||||
value_ptr: *const u8,
|
value_ptr: *const u8,
|
||||||
input_ptr: *const u8,
|
input_ptr: *const u8,
|
||||||
@@ -487,7 +487,7 @@ impl HostFn for HostFnImpl {
|
|||||||
flags: CallFlags,
|
flags: CallFlags,
|
||||||
callee: &[u8],
|
callee: &[u8],
|
||||||
ref_time_limit: u64,
|
ref_time_limit: u64,
|
||||||
proof_time_limit: u64,
|
proof_size_limit: u64,
|
||||||
deposit: Option<&[u8]>,
|
deposit: Option<&[u8]>,
|
||||||
value: &[u8],
|
value: &[u8],
|
||||||
input_data: &[u8],
|
input_data: &[u8],
|
||||||
@@ -501,7 +501,7 @@ impl HostFn for HostFnImpl {
|
|||||||
flags.bits(),
|
flags.bits(),
|
||||||
callee.as_ptr(),
|
callee.as_ptr(),
|
||||||
ref_time_limit,
|
ref_time_limit,
|
||||||
proof_time_limit,
|
proof_size_limit,
|
||||||
deposit_ptr,
|
deposit_ptr,
|
||||||
value.as_ptr(),
|
value.as_ptr(),
|
||||||
input_data.as_ptr(),
|
input_data.as_ptr(),
|
||||||
|
|||||||
Reference in New Issue
Block a user