Reinstate basic tx test

This commit is contained in:
nolash
2021-03-20 22:58:48 +01:00
parent 2eaaedb0f0
commit 06ddfb4fe8
3 changed files with 105 additions and 67 deletions

View 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)