Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
clippy
  • Loading branch information
ascjones committed Feb 1, 2023
commit 6eee75d41d9205c07b06583e8277d4244a497893
3 changes: 1 addition & 2 deletions examples/erc1155/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,6 @@ mod erc1155 {
{
use ink::env::call::{
build_call,
Call,
ExecutionInput,
Selector,
};
Expand All @@ -374,7 +373,7 @@ mod erc1155 {
.push_arg(from)
.push_arg(token_id)
.push_arg(value)
.push_arg(data),
.push_arg(data),Call::new()
)
.returns::<Vec<u8>>()
.params()
Expand Down