|
6 | 6 | from bittensor.core.chain_data.metagraph_info import MetagraphInfo
|
7 | 7 | from bittensor.utils.balance import Balance
|
8 | 8 | from bittensor.utils.btlogging import logging
|
9 |
| -from tests.e2e_tests.utils.chain_interactions import ANY_BALANCE |
10 | 9 |
|
11 | 10 | NULL_KEY = tuple(bytearray(32))
|
12 | 11 |
|
@@ -204,14 +203,14 @@ def test_metagraph_info(subtensor, alice_wallet):
|
204 | 203 | subnet_emission=Balance(0),
|
205 | 204 | alpha_in=Balance.from_tao(10),
|
206 | 205 | alpha_out=Balance.from_tao(2),
|
207 |
| - tao_in=ANY_BALANCE, |
| 206 | + tao_in=Balance.from_tao(10), |
208 | 207 | alpha_out_emission=Balance.from_tao(1),
|
209 | 208 | alpha_in_emission=Balance(0),
|
210 | 209 | tao_in_emission=Balance(0),
|
211 | 210 | pending_alpha_emission=Balance.from_tao(0.820004577),
|
212 | 211 | pending_root_emission=Balance(0),
|
213 | 212 | subnet_volume=Balance(0),
|
214 |
| - moving_price=Balance.from_tao(0.000003000), |
| 213 | + moving_price=Balance(0), |
215 | 214 | rho=10,
|
216 | 215 | kappa=32767,
|
217 | 216 | min_allowed_weights=0.0,
|
@@ -268,9 +267,9 @@ def test_metagraph_info(subtensor, alice_wallet):
|
268 | 267 | trust=[0.0],
|
269 | 268 | rank=[0.0],
|
270 | 269 | block_at_registration=(0,),
|
271 |
| - alpha_stake=[ANY_BALANCE], |
| 270 | + alpha_stake=[Balance.from_tao(1.0)], |
272 | 271 | tao_stake=[Balance(0)],
|
273 |
| - total_stake=[ANY_BALANCE], |
| 272 | + total_stake=[Balance.from_tao(1.0)], |
274 | 273 | tao_dividends_per_hotkey=[
|
275 | 274 | ("5C4hrfjw9DjXZTzV3MwzrrAr9P1MJhSrvWGWqi1eSuyUpnhM", Balance(0))
|
276 | 275 | ],
|
|
0 commit comments