commit 23445db811b4a4a281f0456f3a4e0411d2109d95
parent f6e14d3e936142b7181c7ef6246a2fd78c050301
Author: Sree Harsha Totakura <sreeharsha@totakura.in>
Date: Fri, 10 Apr 2015 14:47:23 +0200
mintdb postgres: hardlimit storing of currency code to 3 characters - #3768
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mintdb/plugin_mintdb_postgres.c b/src/mintdb/plugin_mintdb_postgres.c
@@ -1409,7 +1409,7 @@ postgres_insert_deposit (void *cls,
TALER_PQ_QUERY_PARAM_PTR (&amount_nbo.value),
TALER_PQ_QUERY_PARAM_PTR (&amount_nbo.fraction),
TALER_PQ_QUERY_PARAM_PTR_SIZED (amount_nbo.currency,
- TALER_CURRENCY_LEN - 1),
+ 3),
TALER_PQ_QUERY_PARAM_PTR (&deposit->merchant_pub),
TALER_PQ_QUERY_PARAM_PTR (&deposit->h_contract),
TALER_PQ_QUERY_PARAM_PTR (&deposit->h_wire),