Reinstate basic tx test
This commit is contained in:
9
apps/cic-eth/tests/util/gas.py
Normal file
9
apps/cic-eth/tests/util/gas.py
Normal file
@@ -0,0 +1,9 @@
|
||||
class StaticGasOracle:
|
||||
|
||||
def __init__(self, price, limit):
|
||||
self.price = price
|
||||
self.limit = limit
|
||||
|
||||
|
||||
def get_gas(self):
|
||||
return (self.price, self.limit)
|
||||
Reference in New Issue
Block a user