exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 18ee4166a5b193ea1bb9f049067f927498e90d0e
parent 2b3351c174f5ecd756af5e0d5107bd9440ee9318
Author: Sebastian <sebasjm@gmail.com>
Date:   Mon,  6 Jan 2025 20:02:10 -0300

codespell doesn't like hist

Diffstat:
Msrc/exchangedb/pg_get_reserve_history.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/exchangedb/pg_get_reserve_history.c b/src/exchangedb/pg_get_reserve_history.c @@ -716,11 +716,11 @@ TEH_PG_get_reserve_history ( PREPARE (pg, "get_reserve_history_etag", "SELECT" - " hist.reserve_history_serial_id" + " his.reserve_history_serial_id" ",r.current_balance" - " FROM reserve_history hist" + " FROM reserve_history his" " JOIN reserves r USING (reserve_pub)" - " WHERE hist.reserve_pub=$1" + " WHERE his.reserve_pub=$1" " ORDER BY reserve_history_serial_id DESC" " LIMIT 1;"); PREPARE (pg,