add caqti device
This commit is contained in:
parent
606d2a6045
commit
3d47efb6f3
7 changed files with 70 additions and 5 deletions
|
|
@ -9,7 +9,7 @@ module Exchange = struct
|
|||
let currency_round_unit = amount "EUR:0.01"
|
||||
let db = "postgres"
|
||||
let attribute_encryption_key = "uhuhg" (* high-entropy nonce. *)
|
||||
let port = 3696
|
||||
let port = 3434
|
||||
|
||||
let master_public_key =
|
||||
"8MQF2XPWCKCW4199JFPE08X7Y9XAX21SF2HD8NZKXM3PY3CMCJ90===="
|
||||
|
|
@ -57,6 +57,18 @@ module Secmod_eddsa = struct
|
|||
let key_dir = Fpath.(v "eddsa")
|
||||
end
|
||||
|
||||
module Exchangedb_postgres = struct
|
||||
(* pgx://<user>:<password>@<host-or-directory>:<port>/<database> *)
|
||||
let config =
|
||||
let user = "mte" in
|
||||
let password = "hunter2" in
|
||||
let host = "localhost" in
|
||||
let port = 5432 in
|
||||
let database = "taler-exchange" in
|
||||
Uri.of_string
|
||||
@@ Fmt.str "pgx://%s:%s@%s:%d/%s" user password host port database
|
||||
end
|
||||
|
||||
let coin_kudo_1 =
|
||||
Types.Config_types.Coin.
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue