Skip to content

Commit

Permalink
set type before nonce
Browse files Browse the repository at this point in the history
  • Loading branch information
alyn509 committed Jul 30, 2024
1 parent 956b8dd commit 1414343
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simple-esdt-test/src/simple_esdt_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ pub trait SimpleEsdtTest {
arg_buffer.push_arg(&ManagedBuffer::new()); //attributes
arg_buffer.push_arg(&ManagedVec::<Self::Api, ManagedBuffer>::new()); // uris

arg_buffer.push_arg(nonce);
arg_buffer.push_arg(token_type);
arg_buffer.push_arg(nonce);
arg_buffer.push_arg(creator);

let _ = self.send_raw().call_local_esdt_built_in_function(
Expand Down

0 comments on commit 1414343

Please sign in to comment.