Skip to content

Commit 7edbed0

Browse files
committed
fix: linting
Signed-off-by: nabil salah <nabil.salah203@gmail.com>
1 parent 7d7abfe commit 7edbed0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

node-registrar/pkg/db/accounts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func (db *Database) UpdateAccount(twinID uint64, relays pq.StringArray, rmbEncKe
3333

3434
func (db *Database) UpdateAccountPK(twinID uint64, publicKey string) error {
3535
result := db.gormDB.Model(&Account{}).Where("twin_id = ?", twinID).Updates(map[string]interface{}{
36-
"public_key": publicKey,
36+
"public_key": publicKey,
3737
})
3838
if result.Error != nil {
3939
return result.Error

0 commit comments

Comments
 (0)