Skip to content

Commit

Permalink
call value - fix after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-marinica committed Jan 8, 2025
1 parent abcfe75 commit 4715c1d
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 35 deletions.
66 changes: 33 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub trait ForwarderDynamicModule:
token_type: EsdtTokenType,
num_decimals: usize,
) {
let issue_cost = self.call_value().egld_value().clone_value();
let issue_cost = self.call_value().egld().clone_value();
let caller = self.blockchain().get_caller();

self.send()
Expand All @@ -40,7 +40,7 @@ pub trait ForwarderDynamicModule:
token_type: EsdtTokenType,
num_decimals: usize,
) {
let issue_cost = self.call_value().egld_value().clone_value();
let issue_cost = self.call_value().egld().clone_value();
let caller = self.blockchain().get_caller();

self.send()
Expand Down

0 comments on commit 4715c1d

Please sign in to comment.