Skip to content

Commit

Permalink
Add missing arg in dispense passive. (#746)
Browse files Browse the repository at this point in the history
  • Loading branch information
calina-c authored Nov 10, 2023
1 parent 72709ad commit 3af696b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion df_py/util/dftool_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -1063,7 +1063,8 @@ def do_dispense_passive():

feedist = FeeDistributor(arguments.CHAINID)
OCEAN = OCEAN_token(arguments.CHAINID)
retry_function(dispense.dispense_passive, 3, 60, OCEAN, feedist, amount)
web3 = networkutil.chain_id_to_web3(arguments.CHAINID)
retry_function(dispense.dispense_passive, 3, 60, web3, OCEAN, feedist, amount)

print("Dispensed passive rewards")

Expand Down

0 comments on commit 3af696b

Please sign in to comment.