Spaces:
Runtime error
Runtime error
jiarongqiu commited on
Commit ·
dcfaaa9
1
Parent(s): 9fdd010
tvl fix
Browse files- service/scheduler.py +2 -2
service/scheduler.py
CHANGED
|
@@ -34,9 +34,9 @@ class Scheduler:
|
|
| 34 |
|
| 35 |
def update_filecoin_data_stat(sefl):
|
| 36 |
total_raw_bytes_power = api.get_fvm_storage()
|
| 37 |
-
text = """The
|
| 38 |
""".format(total_raw_bytes_power,total_raw_bytes_power)
|
| 39 |
# print(f"Update {text}")
|
| 40 |
-
vector_store.upsert(text,"dataset_2",source='https://
|
| 41 |
|
| 42 |
|
|
|
|
| 34 |
|
| 35 |
def update_filecoin_data_stat(sefl):
|
| 36 |
total_raw_bytes_power = api.get_fvm_storage()
|
| 37 |
+
text = """The storage capacity of the Filecoin Network is {} EiB. The Network Raw Byte Power of the Filecoin Network is {} EiB.
|
| 38 |
""".format(total_raw_bytes_power,total_raw_bytes_power)
|
| 39 |
# print(f"Update {text}")
|
| 40 |
+
vector_store.upsert(text,"dataset_2",source='https://dashboard.starboard.ventures/dashboard')
|
| 41 |
|
| 42 |
|