Skip to content

Commit 12c1c55

Browse files
author
Kotsias, Panagiotis-Christos
committed
Renamed avg to average
1 parent 6101a83 commit 12c1c55

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

configs/stable.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@
391391
"sort": "asc"
392392
}
393393
},
394-
"get_eth_daily_avg_gas_price": {
394+
"get_eth_daily_average_gas_price": {
395395
"module": "pro",
396396
"kwargs": {
397397
"start_date": "2019-02-01",
@@ -423,7 +423,7 @@
423423
"sort": "asc"
424424
}
425425
},
426-
"get_daily_avg_network_hash_rate": {
426+
"get_daily_average_network_hash_rate": {
427427
"module": "pro",
428428
"kwargs": {
429429
"start_date": "2019-02-01",
@@ -439,7 +439,7 @@
439439
"sort": "asc"
440440
}
441441
},
442-
"get_daily_avg_network_difficulty": {
442+
"get_daily_average_network_difficulty": {
443443
"module": "pro",
444444
"kwargs": {
445445
"start_date": "2019-02-01",

etherscan/modules/pro.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def get_eth_daily_total_gas_used(
211211
return url
212212

213213
@staticmethod
214-
def get_eth_daily_avg_gas_price(
214+
def get_eth_daily_average_gas_price(
215215
start_date: int,
216216
end_date: int,
217217
sort: str,
@@ -291,7 +291,7 @@ def get_daily_network_utilization(
291291
return url
292292

293293
@staticmethod
294-
def get_daily_avg_network_hash_rate(
294+
def get_daily_average_network_hash_rate(
295295
start_date: int,
296296
end_date: int,
297297
sort: str,
@@ -331,7 +331,7 @@ def get_daily_tx_count(
331331
return url
332332

333333
@staticmethod
334-
def get_daily_avg_network_difficulty(
334+
def get_daily_average_network_difficulty(
335335
start_date: int,
336336
end_date: int,
337337
sort: str,

0 commit comments

Comments
 (0)