🎨 Improve blocktree

This commit is contained in:
Daniel 2024-07-02 12:09:59 +08:00
parent a8b3f6cc25
commit 415607f6dd
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
3 changed files with 4 additions and 7 deletions

View file

@ -146,7 +146,7 @@ func removeDatabaseFile() (err error) {
func GetBlockTreesByType(typ string) (ret []*BlockTree) {
sqlStmt := "SELECT * FROM blocktrees WHERE type = ?"
rows, err := db.Query(sqlStmt)
rows, err := db.Query(sqlStmt, typ)
if nil != err {
logging.LogErrorf("sql query [%s] failed: %s", sqlStmt, err)
return