summaryrefslogtreecommitdiff
path: root/src/mint/mint.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-01-29 20:00:21 +0100
committerChristian Grothoff <christian@grothoff.org>2015-01-29 20:00:21 +0100
commit090ddf170bd6fcf1d3d3d9d4fcc720ccb86b089e (patch)
tree3fc2f500c96db57fdb6cff4c68f9d93bcf5e4389 /src/mint/mint.h
parent8ca555500f01ebb2f7286961588b81b4ee5ac4fe (diff)
downloadexchange-090ddf170bd6fcf1d3d3d9d4fcc720ccb86b089e.tar.gz
exchange-090ddf170bd6fcf1d3d3d9d4fcc720ccb86b089e.tar.bz2
exchange-090ddf170bd6fcf1d3d3d9d4fcc720ccb86b089e.zip
working on cleaning up /refresh/melt logic
Diffstat (limited to 'src/mint/mint.h')
-rw-r--r--src/mint/mint.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/mint/mint.h b/src/mint/mint.h
index 1e1221157..e2d559701 100644
--- a/src/mint/mint.h
+++ b/src/mint/mint.h
@@ -36,54 +36,6 @@
-/**
- * Global information for a refreshing session.
- */
-struct RefreshSession
-{
- /**
- * Signature over the commitments by the client.
- */
- struct GNUNET_CRYPTO_EddsaSignature commit_sig;
-
- /**
- * Public key of the refreshing session, used to sign
- * the client's commit message.
- */
- struct GNUNET_CRYPTO_EddsaPublicKey session_pub;
-
- /**
- * Number of coins we are melting.
- */
- uint16_t num_oldcoins;
-
- /**
- * Number of new coins we are creating.
- */
- uint16_t num_newcoins;
-
- /**
- * Number of parallel operations we perform for the cut and choose.
- * (must be greater or equal to three for security).
- */
- uint16_t kappa;
-
- /**
- * Index (smaller @e kappa) which the mint has chosen to not
- * have revealed during cut and choose.
- */
- uint16_t noreveal_index;
-
- /**
- * FIXME.
- */
- int has_commit_sig;
-
- /**
- * FIXME.
- */
- uint8_t reveal_ok;
-};