diff --git a/src/miner.h b/src/miner.h
--- a/src/miner.h
+++ b/src/miner.h
@@ -34,9 +34,22 @@
     //!< Cached total number of SigOps
     uint64_t txSigOps;
 
+    //!< Track the "order" of a transaction in a package. (Order is >= 0) Larger
+    //!< number means it has more dependencies.  It is roughly the number of
+    //!< dependencies this transaction has.
+    uint64_t packageOrder;
+    //!< Estimated package fees (This is guaranteed to be >= real fees)
+    Amount packageFee;
+    //!< Estimated package size (This is guaranteed to be >= real size)
+    size_t packageSize;
+    //!< Estimated package sigops (This is guaranteed to be >= real sigops)
+    uint64_t packageSigOps;
+
     CBlockTemplateEntry(CTransactionRef _tx, Amount _fees, uint64_t _size,
                         int64_t _sigOps)
-        : tx(_tx), txFee(_fees), txSize(_size), txSigOps(_sigOps) {}
+        : tx(_tx), txFee(_fees), txSize(_size), txSigOps(_sigOps),
+          packageOrder(0), packageFee(_fees), packageSize(_size),
+          packageSigOps(_sigOps) {}
 };
 
 struct CBlockTemplate {
diff --git a/src/test/miner_tests.cpp b/src/test/miner_tests.cpp
--- a/src/test/miner_tests.cpp
+++ b/src/test/miner_tests.cpp
@@ -778,6 +778,9 @@
     BOOST_CHECK_EQUAL(txEntry.txFee, 1 * SATOSHI);
     BOOST_CHECK_EQUAL(txEntry.txSize, 200);
     BOOST_CHECK_EQUAL(txEntry.txSigOps, 10);
+    BOOST_CHECK_EQUAL(txEntry.packageFee, 1 * SATOSHI);
+    BOOST_CHECK_EQUAL(txEntry.packageSize, 200);
+    BOOST_CHECK_EQUAL(txEntry.packageSigOps, 10);
 }
 
 BOOST_AUTO_TEST_SUITE_END()