This commit is contained in:
swrup 2026-03-03 01:55:28 +01:00
parent 5b4b963db1
commit 5f8708f75b
2 changed files with 9 additions and 2 deletions

View file

@ -10,6 +10,11 @@ auditor_pub="A17JXR3E6J4CXDPYT7S1H25PGJ3ABS26TQ38654QCX0TB59RPMF0"
master_key="./default/master_offline_private_key"
zero_kudos="KUDOS:0.0"
/dev/null < dune exec src/mte.exe &
sleep 0.2
mte_pid=$!
offline_tool() {
dune exec offline -- "$@" > /dev/null
}
@ -110,3 +115,5 @@ offline_tool drain \
--amount $zero_kudos
offline_tool upload --input $b --url $url"/management/drain"
echo "[OK] /management/drain"
kill "$mte_pid"

View file

@ -77,7 +77,7 @@ let keys content =
|> list_iter
(Denomination.verify_denomination_key_validity ~key:v.master_public_key)
in
Fmt.pr "OK denominations@.";
(*Fmt.pr "OK denominations@.";*)
let* () =
(* TODO O(n^2) *)
@ -115,7 +115,7 @@ let keys content =
denom_hash= dn.h_pub;
})
in
Fmt.pr "OK auditors@.";
(*Fmt.pr "OK auditors@.";*)
Ok ()