jleeh / flux-link-withdrawal

Simple CLI tool to automatically withdraw LINK earned in FluxAggregator contracts.
12 stars 4 forks source link

don't make a tx if reward is 0 #3

Open rstormsf opened 4 years ago

rstormsf commented 4 years ago

2020-07-29 23:08:05,261 INFO [flux-link-withdrawal] Withdrawing amount 0.0 LINK from feed 0xb51dd92a2ee1ce46df8e7661737a5cdd47fb9f24, to 0x

PatrickAlphaC commented 4 years ago

+1

rstormsf commented 4 years ago
+    if(ethers.utils.formatEther(withdrawableAmount) !== '0.0') {
+        console.log('sending tx')
+        await feedContract.withdrawPayment(walletAddress, withdrawTo, withdrawableAmount, txOptions)
+    }