Skip to content

Commit

Permalink
revert some erroneous Monero->Loki name changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tewinget committed Apr 10, 2018
1 parent c6549bf commit 2a2bc7c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/cryptonote_core/blockchain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ static const struct {
uint8_t threshold;
time_t time;
} mainnet_hard_forks[] = {
// version 7 from the start of the blockchain, inhereted from Loki mainnet
// version 7 from the start of the blockchain, inhereted from Monero mainnet
{ 7, 1, 0, 1503046577 },
};
static const uint64_t mainnet_hard_fork_version_1_till = 0;
Expand All @@ -101,7 +101,7 @@ static const struct {
uint8_t threshold;
time_t time;
} testnet_hard_forks[] = {
// version 7 from the start of the blockchain, inhereted from Loki testnet
// version 7 from the start of the blockchain, inhereted from Monero testnet
{ 7, 1, 0, 1512211236 },
};
static const uint64_t testnet_hard_fork_version_1_till = 624633;
Expand All @@ -112,7 +112,7 @@ static const struct {
uint8_t threshold;
time_t time;
} stagenet_hard_forks[] = {
// version 7 from the start of the blockchain, inhereted from Loki testnet
// version 7 from the start of the blockchain, inhereted from Monero testnet
{ 7, 1, 0, 1341378000 },
};

Expand Down
12 changes: 6 additions & 6 deletions src/debug_utilities/object_sizes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ int main(int argc, char* argv[])
SL(tools::wallet2::unsigned_tx_set);
SL(tools::wallet2::signed_tx_set);

SL(Loki::WalletImpl);
SL(Loki::AddressBookRow);
SL(Loki::TransactionInfoImpl);
SL(Loki::TransactionHistoryImpl);
SL(Loki::PendingTransactionImpl);
SL(Loki::UnsignedTransactionImpl);
SL(Monero::WalletImpl);
SL(Monero::AddressBookRow);
SL(Monero::TransactionInfoImpl);
SL(Monero::TransactionHistoryImpl);
SL(Monero::PendingTransactionImpl);
SL(Monero::UnsignedTransactionImpl);

return 0;
}

0 comments on commit 2a2bc7c

Please sign in to comment.