mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-18 14:44:22 +01:00
wallet/db_postgres.c: Fix obvious typo in error message.
ChangeLog-None
This commit is contained in:
committed by
Christian Decker
parent
ba77fce453
commit
d330e6e5b4
@@ -264,7 +264,7 @@ static bool db_postgres_vacuum(struct db *db)
|
||||
|
||||
res = PQexec(db->conn, "VACUUM FULL;");
|
||||
if (PQresultStatus(res) != PGRES_COMMAND_OK) {
|
||||
db->error = tal_fmt(db, "BEGIN command failed: %s",
|
||||
db->error = tal_fmt(db, "VACUUM command failed: %s",
|
||||
PQerrorMessage(db->conn));
|
||||
PQclear(res);
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user