Skip to content

Commit

Permalink
fix: set the sender correctly for contract calls (#1300)
Browse files Browse the repository at this point in the history
  • Loading branch information
obycode authored Jan 5, 2024
1 parent d5a796e commit d03dd3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/clarity-repl/src/repl/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -824,8 +824,8 @@ impl ClarityInterpreter {
g,
&called_contract.contract_context,
&mut call_stack,
Some(StandardPrincipalData::transient().into()),
Some(StandardPrincipalData::transient().into()),
Some(tx_sender.clone()),
Some(tx_sender),
None,
) {
Ok(res) => res,
Expand Down

0 comments on commit d03dd3f

Please sign in to comment.