-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Conversation
b027ab6
to
145c0d5
Compare
145c0d5
to
f55c3c1
Compare
libdevcore/FixedHash.cpp
Outdated
namespace dev | ||
{ | ||
|
||
const Address ZeroAddress = Address(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Address const
libdevcore/FixedHash.cpp
Outdated
/** @file FixedHash.cpp | ||
* @author Gav Wood <[email protected]> | ||
* @date 2014 | ||
*/ | ||
|
||
#include "FixedHash.h" | ||
#include <boost/algorithm/string.hpp> | ||
|
||
using namespace std; | ||
using namespace dev; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can remove this now
libdevcore/FixedHash.h
Outdated
@@ -351,6 +351,25 @@ using h160Set = std::set<h160>; | |||
using h256Hash = std::unordered_set<h256>; | |||
using h160Hash = std::unordered_set<h160>; | |||
|
|||
/// An Ethereum address: 20 bytes. | |||
/// @NOTE This is not endian-specific; it's just a bunch of bytes. | |||
using Address = h160; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd prefer to put these into separate Address.h/cpp
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Two cons for this: increased build time (?) and additional maintenance cost. I'm not sure...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's your way it could be theoretically increased build time, because everyone who needs only FixedHash
has to compile Address
-related stuff, too
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would make navigating the code easier, putting Address
into Address.h instead of suprisingly FixedHash.h
libethcore/Transaction.h
Outdated
|
||
#pragma once | ||
|
||
#include <boost/optional.hpp> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#include
s should be in increasing order of generality, so this goes after our own headers
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we have it the other way around in most files. Personally, I don't care. Why is this better?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Link from coding standards: http://stackoverflow.com/questions/614302/c-header-order/614333#614333
It prevents the headers from not including all necessary headers but still working because of weird inter-header dependency
libethereum/TransactionReceipt.h
Outdated
#include <boost/variant/variant.hpp> | ||
#include <libdevcore/RLP.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be before boost & <array>
libethcore/Common.h
Outdated
Live | ||
}; | ||
|
||
struct LogEntry |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These could go into separate LogEntry.h
, but it's up to you
@@ -23,6 +23,7 @@ | |||
|
|||
#pragma once | |||
|
|||
#include <libdevcrypto/Common.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this added now?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Previously this header was implicitly included for Address. Now we still need it for crypto::Signature.
libethcore/Common.cpp
Outdated
@@ -191,5 +189,26 @@ string TransactionSkeleton::userReadable(bool _toProxy, function<pair<bool, stri | |||
formatBalance(gas * gasPrice) + "."); | |||
} | |||
|
|||
LogEntry::LogEntry(RLP const& _r) | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should there be an assertion against
_r
not being a list and_r
being too short?
libethcore/Common.h
Outdated
{ | ||
LogEntry() = default; | ||
explicit LogEntry(RLP const& _r); | ||
LogEntry(Address const& _address, h256s _ts, bytes&& _d): address(_address), topics(std::move(_ts)), data(std::move(_d)) {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder why _ts
is not an rvalue reference and _d
is an rvalue reference...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Generic way is to pass by value and move in the initialization list (like with h256s
case). This way you handle both copy and move, depending what argument you have.
The version with &&
prevents you from passing argument by copy -- you can only pass an argument being rvalue. This is restrictive, but enforces some optimizations. I don't like it because it is more confusing than useful.
f55c3c1
to
b4fc3aa
Compare
Codecov Report
@@ Coverage Diff @@
## develop #4496 +/- ##
=========================================
+ Coverage 56.29% 62.7% +6.4%
=========================================
Files 337 368 +31
Lines 22788 30991 +8203
Branches 2750 2749 -1
=========================================
+ Hits 12829 19433 +6604
- Misses 9090 11321 +2231
+ Partials 869 237 -632
Continue to review full report at Codecov.
|
I think I addressed all issues. Can you review before builds? |
@@ -90,6 +96,13 @@ enum class RelativeBlock: BlockNumber | |||
Pending = PendingBlock | |||
}; | |||
|
|||
enum class BlockPolarity |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is used only in LocalisedLogEntry
, maybe move it to LogEntry.h
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately, this is also used in Client.cpp and ClientBase.cpp.
This moves utility structs like
LogEntry
from ExtVMFace.h (libevm) to libethcore. Previously some files from libethcore have to include ExtVMFace.h.Also
Address
is moved from libdevcrypto to libdevcore as it is used not only in crypto context.