bittensor icon indicating copy to clipboard operation
bittensor copied to clipboard

Internet-scale Neural Networks

Results 190 bittensor issues
Sort by recently updated
recently updated
newest added

Methods need to be back to the SDK: - Subtensor.get_delegate_by_hotkey - Subtensor.root_set_weights - Subtensor.root_register - Subtensor.get_all_subnets_info - Subtensor.get_delegate_take Add tests.

### Describe the bug When the `bt.logging` is set to `debug` mode, there are two instances where setting weights can fail, as the code attempts to log an array without...

bug

We need to provide a async implementation of the Subtensor class, as a separate class for folks to use. This will be a standalone and entirely optional implementation

### Is your feature request related to a problem? Please describe. We have tests for many things, but they don't really test. Here's an example: ```py def test_set_weights(self): chain_weights =...

enhancement
feature

### Bug https://discord.com/channels/1120750674595024897/1283483486182969465 Currently 6.12.3 does not have the fixed reconnection logic introduced in 7.4.0. This means that when running on testnet miners and validators get the attached error: ![Screenshot_2024-09-11_at_09...

### Description of the Change Modified e2e tests to check that - Non-zero transaction fee is applied for balance transfers - No transaction fee is applied for add_stake extrinsic ###...

```py from bittensor.utils.btlogging import logging print(logging.get_level()) # prints 30 logging.setLevel(20) print(logging.get_level()) # prints 30 ``` I would expect this to set the logging level to 20, but it does not....

bug