We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50e6221 commit bca63dbCopy full SHA for bca63db
celo_sdk/contracts/GasPriceMinimumWrapper.py
@@ -37,4 +37,12 @@ def adjustment_speed(self) -> int:
37
return self._contract.functions.adjustmentSpeed().call()
38
39
def get_config(self) -> dict:
40
- pass
+ gas_price_minimum = self.get_price_minimum()
41
+ target_density = self.target_density()
42
+ adjustment_speed = self.adjustment_speed()
43
+
44
+ return {
45
+ 'gas_price_minimum': gas_price_minimum,
46
+ 'target_density': target_density,
47
+ 'adjustment_speed': adjustment_speed
48
+ }
0 commit comments