Skip to content

Commit

Permalink
Fix transferFrom inheritance
Browse files Browse the repository at this point in the history
  • Loading branch information
MiniRoman committed Jun 14, 2024
1 parent 18bf4d4 commit 1c9dcd8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ contract BackedTokenImplementationWithMultiplierAndAutoFeeAccrual is
address to,
uint256 amount
) public virtual override updateMultiplier returns (bool) {
return this.transferFrom(from, to, amount);
return super.transferFrom(from, to, amount);
}

/**
Expand Down

0 comments on commit 1c9dcd8

Please sign in to comment.