status-im/status-go

View on GitHub
services/wallet/collectibles/db_utils.go

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
package collectibles

func insertStatement(allowUpdate bool) string {
    if allowUpdate {
        return `INSERT OR REPLACE`
    }
    return `INSERT OR IGNORE`
}