cic-stack/apps/cic-eth/tests/util/gas.py

10 lines
181 B
Python
Raw Normal View History

class StaticGasOracle:
def __init__(self, price, limit):
self.price = price
self.limit = limit
def get_gas(self):
return (self.price, self.limit)