Skip to content

Commit

Permalink
add gauge manager from tx.origin
Browse files Browse the repository at this point in the history
  • Loading branch information
bout3fiddy committed Nov 8, 2023
1 parent e337d42 commit 2ff41de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/main/LiquidityGauge.vy
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def __init__(_lp_token: address):
"""
self.lp_token = _lp_token
self.factory = msg.sender
self.manager = msg.sender
self.manager = tx.origin

symbol: String[32] = ERC20Extended(_lp_token).symbol()
name: String[64] = concat("Curve.fi ", symbol, " Gauge Deposit")
Expand Down

1 comment on commit 2ff41de

@mo-anon
Copy link

@mo-anon mo-anon commented on 2ff41de Nov 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah the good old gauge manager

Please sign in to comment.