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 and hugocaillard committed Jan 16, 2024
1 parent bd8f749 commit c736b26
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 c736b26

Please sign in to comment.