We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a673682 commit 864ccb6Copy full SHA for 864ccb6
src/app/saga/app/rewardsSaga.ts
@@ -124,7 +124,10 @@ function* queryDistribution() {
124
const zilswap = ZilswapConnector.getSDK();
125
for (let i = 0; i < d.length; ++i) {
126
const info = d[i]
127
- const addr = info.distributor_address
+ const addr = info.distributor_address;
128
+ if (info.distributor_address === "0x940c02e471a082cc3062b7cc446e652e64fe13fe" && info.epoch_number === 3)
129
+ continue;
130
+
131
let uploadState = uploadStates[addr]
132
if (!uploadState) {
133
const contract = zilswap.getContract(addr);
0 commit comments