File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
bittensor/core/subtensor_api Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 9
9
from .metagraphs import Metagraphs as _Metagraphs
10
10
from .neurons import Neurons as _Neurons
11
11
from .queries import Queries as _Queries
12
- from .stakes import Stakes as _Stakes
12
+ from .staking import Staking as _Staking
13
13
from .subnets import Subnets as _Subnets
14
14
from .utils import add_legacy_methods as _add_classic_fields
15
15
from .wallets import Wallets as _Wallets
@@ -221,9 +221,9 @@ def queries(self):
221
221
return _Queries (self ._subtensor )
222
222
223
223
@property
224
- def stakes (self ):
225
- """Property to access stakes methods."""
226
- return _Stakes (self ._subtensor )
224
+ def staking (self ):
225
+ """Property to access staking methods."""
226
+ return _Staking (self ._subtensor )
227
227
228
228
@property
229
229
def subnets (self ):
You can’t perform that action at this time.
0 commit comments