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
ui test
  • Loading branch information
ascjones committed Feb 27, 2024
commit 6f41de9d0c48b1668e878aecc7e4d5c4309d55c8
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ fn main() {
let _: fn() -> CalleeRef = || {
CalleeRef::new_self()
.code_hash(ink_primitives::Clear::CLEAR_HASH)
.gas_limit(4000)
.endowment(25)
.salt_bytes([0xDE, 0xAD, 0xBE, 0xEF])
.instantiate()
Expand All @@ -55,7 +54,6 @@ fn main() {
let _: fn() -> CalleeRef = || {
CalleeRef::new_storage_name()
.code_hash(ink_primitives::Clear::CLEAR_HASH)
.gas_limit(4000)
.endowment(25)
.salt_bytes([0xDE, 0xAD, 0xBE, 0xEF])
.instantiate()
Expand All @@ -65,7 +63,6 @@ fn main() {
let _: fn() -> Result<CalleeRef, Error> = || {
CalleeRef::new_result_self()
.code_hash(ink_primitives::Clear::CLEAR_HASH)
.gas_limit(4000)
.endowment(25)
.salt_bytes([0xDE, 0xAD, 0xBE, 0xEF])
.instantiate()
Expand All @@ -75,7 +72,6 @@ fn main() {
let _: fn() -> Result<CalleeRef, Error> = || {
CalleeRef::new_result_self()
.code_hash(ink_primitives::Clear::CLEAR_HASH)
.gas_limit(4000)
.endowment(25)
.salt_bytes([0xDE, 0xAD, 0xBE, 0xEF])
.instantiate()
Expand Down