Skip to content

Commit

Permalink
- fix single recipient gauge adder
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyferion committed Apr 22, 2024
1 parent 5f31097 commit 772fa7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/Mainnet Gauge Adder/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async function getGauges() {
const json = await response.json()
let rootGauges = json.data.rootGauges;
let singleRecipientGauges = json.data.singleRecipientGauges;
singleRecipientGauges.forEach(obj => obj.chain = "Ethereum");
singleRecipientGauges.forEach(obj => obj.chain = "EthereumSingleRecipientGauge");


return [...rootGauges, ...singleRecipientGauges]
Expand Down

0 comments on commit 772fa7f

Please sign in to comment.