Skip to content

Commit

Permalink
switch from size_t to uint32_t
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptokatz committed Jun 11, 2019
1 parent 90f6ee7 commit 18ec3a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CryptoNoteCore/Currency.h
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ class CurrencyBuilder : boost::noncopyable {
CurrencyBuilder& upgradeHeightV6(uint64_t val) { m_currency.m_upgradeHeightV6 = val; return *this; }
CurrencyBuilder& upgradeHeightV7(uint64_t val) { m_currency.m_upgradeHeightV7 = val; return *this; }
CurrencyBuilder& upgradeVotingThreshold(unsigned int val);
CurrencyBuilder& upgradeVotingWindow(size_t val) { m_currency.m_upgradeVotingWindow = val; return *this; }
CurrencyBuilder& upgradeVotingWindow(uint32_t val) { m_currency.m_upgradeVotingWindow = val; return *this; }
CurrencyBuilder& upgradeWindow(size_t val);

CurrencyBuilder& transactionMaxSize(size_t val) { m_currency.m_transactionMaxSize = val; return *this; }
Expand Down

0 comments on commit 18ec3a4

Please sign in to comment.