From 0dea313dcfabd8b1883c008da68d4c3c610a36b2 Mon Sep 17 00:00:00 2001 From: BiancaIalangi Date: Sun, 22 Sep 2024 00:00:51 +0300 Subject: [PATCH] wasm-extractor - clean empty contract --- contracts/examples/empty/src/empty.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/contracts/examples/empty/src/empty.rs b/contracts/examples/empty/src/empty.rs index e7495881d3..81353a08d9 100644 --- a/contracts/examples/empty/src/empty.rs +++ b/contracts/examples/empty/src/empty.rs @@ -7,9 +7,7 @@ use multiversx_sc::imports::*; #[multiversx_sc::contract] pub trait EmptyContract { #[init] - fn init(&self) -> u32 { - 64 - } + fn init(&self) {} #[upgrade] fn upgrade(&self) {}