From 129b1f2736f58113e8b0a4d32bb652b98c655807 Mon Sep 17 00:00:00 2001 From: Mark Friedenbach Date: Tue, 22 Nov 2016 18:05:52 -0800 Subject: [PATCH] f "CA: Add skeletal CAssetReissuance class illustrating fields" --- src/primitives/transaction.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/primitives/transaction.h b/src/primitives/transaction.h index 6029664d1e..5b178d00b8 100644 --- a/src/primitives/transaction.h +++ b/src/primitives/transaction.h @@ -458,16 +458,16 @@ public: // asset tag and reissuance tokens. uint256 hashAssetEntropy; - // The reissuance amount, either positive (inflation) or negative - // (deflation). Note that the corresponding reissuance token must - // be the output being spent in either case. - CTxOutValue nAmount; - // This is a revelation of the blinding key for the input, // which shows that the input being spent is of the reissuance // capability type for the asset being inflated. uint256 assetBlindingNonce; + // The reissuance amount, either positive (inflation) or negative + // (deflation). Note that the corresponding reissuance token must + // be the output being spent in either case. + CTxOutValue nAmount; + public: // FIXME: constructor and methods };