diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-06-12 19:47:19 +0100 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-06-12 19:47:19 +0100 |
commit | d2f6d2a95a9f6c1632c1ed3b5b5b67a49eb71d6b (patch) | |
tree | 2675bdd2c5101fcc85b8503985cd368b6d92c331 /src/txmempool.h | |
parent | c92fd638860c5b4477851fb3790bc8068f808d3e (diff) |
Use `int32_t` type for most transaction size/weight values
This change gets rid of a few casts and makes the following commit diff
smaller.
Diffstat (limited to 'src/txmempool.h')
-rw-r--r-- | src/txmempool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.h b/src/txmempool.h index 1ea029e949..846def02cd 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -222,7 +222,7 @@ struct TxMempoolInfo CAmount fee; /** Virtual size of the transaction. */ - size_t vsize; + int32_t vsize; /** The fee delta. */ int64_t nFeeDelta; |