We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6bf4cc commit d38dd64Copy full SHA for d38dd64
elrond-wasm/src/types/arg_buffer.rs
@@ -1,6 +1,9 @@
1
use alloc::vec::Vec;
2
use elrond_codec::TopEncodeOutput;
3
4
+/// Helper structure for providing arguments to all SC call functions other than async_call.
5
+/// It keeps argument lengths separately from the argument data itself.
6
+/// Argument data is concatenated into a single byte buffer.
7
pub struct ArgBuffer {
8
arg_lengths: Vec<usize>,
9
arg_data: Vec<u8>,
0 commit comments