diff --git a/Cargo.lock b/Cargo.lock index 3f5253edaa..a69ad3257c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4739,7 +4739,7 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" [[package]] name = "nym-api" -version = "1.1.72" +version = "1.1.73" dependencies = [ "anyhow", "async-trait", diff --git a/nym-api/Cargo.toml b/nym-api/Cargo.toml index 13d67751a4..4af3e64aec 100644 --- a/nym-api/Cargo.toml +++ b/nym-api/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "nym-api" license = "GPL-3.0" -version = "1.1.72" +version = "1.1.73" authors.workspace = true edition = "2021" rust-version.workspace = true diff --git a/nym-api/src/support/storage/manager.rs b/nym-api/src/support/storage/manager.rs index 203fb2d0bc..6b1283760d 100644 --- a/nym-api/src/support/storage/manager.rs +++ b/nym-api/src/support/storage/manager.rs @@ -837,7 +837,7 @@ impl StorageManager { for route_result in route_results { sqlx::query!( r#" - INSERT OR IGNORE INTO routes (layer1, layer2, layer3, gw, success) VALUES (?, ?, ?, ?, ?); + INSERT INTO routes (layer1, layer2, layer3, gw, success) VALUES (?, ?, ?, ?, ?); "#, route_result.layer1, route_result.layer2,