summaryrefslogtreecommitdiff
path: root/src/include/merchant.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/merchant.h')
-rw-r--r--src/include/merchant.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/include/merchant.h b/src/include/merchant.h
index a5273507..dcd4388e 100644
--- a/src/include/merchant.h
+++ b/src/include/merchant.h
@@ -58,6 +58,50 @@ struct MERCHANT_MintInfo {
*/
uint16_t port;
+ /* According to the mint's location, some of the following
+ fields may be omitted. In case of numbers, they will be set
+ to zero, otherwise SET TO nuLL */
+
+ /**
+ * The Country where the mint operates from
+ */
+ char *country;
+
+ /**
+ * The city where the mint operates from
+ */
+ char *city;
+
+ /**
+ * The State (within a Country) where the mint
+ * operates from
+ */
+ char *state;
+
+ /**
+ * The region where the mint operates from
+ */
+ char *region;
+
+ /**
+ * The province where the mint operates from
+ */
+ char *province;
+
+ /**
+ * The ZIP code where the mint operates from
+ */
+ uint16_t zip_code;
+
+ /**
+ * The street's name where the mint operates from
+ */
+ char *street;
+
+ /**
+ * The street number where the mint operates from
+ */
+ uint16_t street_no;
};