From d4e88c29c6a8cd90188bef46c22ca5909943f0aa Mon Sep 17 00:00:00 2001 From: Mark Friedenbach Date: Wed, 8 Feb 2017 17:23:06 -0800 Subject: [PATCH] f "CA: Add skeletal CAssetReissuance class illustrating fields" --- src/primitives/transaction.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/primitives/transaction.h b/src/primitives/transaction.h index 5b178d00b8..269466bba1 100644 --- a/src/primitives/transaction.h +++ b/src/primitives/transaction.h @@ -468,6 +468,12 @@ public: // be the output being spent in either case. CTxOutValue nAmount; + // Set to 1 if the reissuance is increasing the number of asset + // tokens in circulation (treated as an input), -1 if the reissuance + // is decreasing the number of tokens (treated as an output), and 0 + // if there is no reissuance (reissuance object is Null). + int nSign; + public: // FIXME: constructor and methods };