refactor: remove unused dependencies

This commit is contained in:
Prad Nukala
2024-09-05 14:18:22 -04:00
parent ae99abf2c4
commit 2c602138ff
9 changed files with 4 additions and 27 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ func insertAssetQuery(name, symbol string, decimals int, chainID int64) string {
// Chain queries
func insertChainQuery(name string, networkID string) string {
return fmt.Sprintf(`INSERT INTO chains (name, network_id) VALUES (%s, %d)`, name, networkID)
return fmt.Sprintf(`INSERT INTO chains (name, network_id) VALUES (%s, %s)`, name, networkID)
}
// Credential queries
-2
View File
@@ -5,8 +5,6 @@ import (
"os"
"path/filepath"
_ "github.com/mattn/go-sqlite3"
"github.com/onsonr/sonr/internal/db"
)
Binary file not shown.