mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 14:42:40 +01:00
wallet/db_postgres.c: Fix obvious typo in error message.
ChangeLog-None
This commit is contained in:
parent
ba77fce453
commit
d330e6e5b4
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue