Skip to content

Commit

Permalink
Merge pull request #49 from Sturdy-Subnet/hotfix/db-fix
Browse files Browse the repository at this point in the history
Hotfix: move sql db script into validator folder
  • Loading branch information
Shr1ftyy authored Aug 25, 2024
2 parents d510e73 + c49c5ba commit c82730d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion neurons/validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import web3.constants

# api key db
from db import sql
from sturdy.validator import sql

# Bittensor Validator Template:
from sturdy.pools import PoolFactory
Expand Down
2 changes: 1 addition & 1 deletion sturdy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# DEALINGS IN THE SOFTWARE.

# Define the version of the template module.
__version__ = "1.3.2"
__version__ = "1.3.3"
version_split = __version__.split(".")
__spec_version__ = (1000 * int(version_split[0])) + (10 * int(version_split[1])) + (1 * int(version_split[2]))

Expand Down
File renamed without changes.

0 comments on commit c82730d

Please sign in to comment.