Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,6 @@ jobs:

steps:
- checkout
- run: git submodule sync
- run: git submodule update --init # For wallet submoudle

- restore_cache:
name: Restore cached venv
Expand Down
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

8 changes: 2 additions & 6 deletions bittensor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,12 +184,8 @@ def debug(on: bool = True):

from substrateinterface import Keypair as Keypair
from .config import *
from ._wallet import (
wallet as wallet,
Keyfile as Keyfile,
WalletConfig as WalletConfig,
WalletConfigDefault as WalletConfigDefault,
)
from .keyfile import *
from .wallet import *

from .utils import *
from .utils.balance import Balance as Balance
Expand Down
1 change: 0 additions & 1 deletion bittensor/_wallet
Submodule _wallet deleted from 286eb4
2 changes: 1 addition & 1 deletion bittensor/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ class NotDelegateError(StakeError):


class KeyFileError(Exception):
"""Error thrown when the Keyfile is corrupt, non-writable, non-readable or the password used to decrypt is invalid."""
"""Error thrown when the keyfile is corrupt, non-writable, non-readable or the password used to decrypt is invalid."""

pass
Loading