Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Commit

Permalink
pymaker dependency upgraded
Browse files Browse the repository at this point in the history
  • Loading branch information
reverendus committed Aug 30, 2018
1 parent 636ce23 commit 416a243
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions arbitrage_keeper/arbitrage_keeper.py
Expand Up @@ -29,7 +29,7 @@
from pymaker import Address
from pymaker.approval import via_tx_manager, directly
from pymaker.gas import DefaultGasPrice, FixedGasPrice
from pymaker.lifecycle import Web3Lifecycle
from pymaker.lifecycle import Lifecycle
from pymaker.numeric import Wad, Ray
from pymaker.oasis import MatchingMarket
from pymaker.sai import Tub, Tap
Expand Down Expand Up @@ -117,7 +117,7 @@ def __init__(self, args, **kwargs):
level=(logging.DEBUG if self.arguments.debug else logging.INFO))

def main(self):
with Web3Lifecycle(self.web3) as lifecycle:
with Lifecycle(self.web3) as lifecycle:
self.lifecycle = lifecycle
lifecycle.on_startup(self.startup)
lifecycle.on_block(self.process_block)
Expand Down

0 comments on commit 416a243

Please sign in to comment.