aboutsummaryrefslogtreecommitdiff
path: root/src/ringct/rctTypes.h
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-08-10 17:16:05 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-08-28 21:30:21 +0100
commitd4b8991e4434974dd02b1ee40b33876a69ff19fd (patch)
tree376ed268a3cab1882d93c979c0f0d3f742549a4b /src/ringct/rctTypes.h
parentrct amount key modified as per luigi1111's recommendations (diff)
downloadmonero-d4b8991e4434974dd02b1ee40b33876a69ff19fd.tar.xz
rct: serialize txnFee as varint
Diffstat (limited to 'src/ringct/rctTypes.h')
-rw-r--r--src/ringct/rctTypes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ringct/rctTypes.h b/src/ringct/rctTypes.h
index 8211fbaed..da2e3808c 100644
--- a/src/ringct/rctTypes.h
+++ b/src/ringct/rctTypes.h
@@ -207,7 +207,7 @@ namespace rct {
for (size_t n = 0; n < outPk.size(); ++n)
this->outPk[n].mask = outPk[n];
}
- FIELD(txnFee)
+ VARINT_FIELD(txnFee)
END_SERIALIZE()
};
struct rctSigPrunable {