diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-08-20 10:26:27 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-08-20 10:43:47 +0200 |
| commit | 81212588c06cbf771bf3b60b426c3c4d2625e899 (patch) | |
| tree | 6560c655bf878ca99ac63c10bc5b87fe20b6e860 /src/core.h | |
| parent | Merge pull request #4670 (diff) | |
| download | discoin-81212588c06cbf771bf3b60b426c3c4d2625e899.tar.xz discoin-81212588c06cbf771bf3b60b426c3c4d2625e899.zip | |
Remove print() from core functions
Break dependency on util.
Diffstat (limited to 'src/core.h')
| -rw-r--r-- | src/core.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/core.h b/src/core.h index fb64e6c08..9552f7025 100644 --- a/src/core.h +++ b/src/core.h @@ -47,7 +47,6 @@ public: } std::string ToString() const; - void print() const; }; /** An inpoint - a combination of a transaction and an index n into its vin */ @@ -107,7 +106,6 @@ public: } std::string ToString() const; - void print() const; }; @@ -200,7 +198,6 @@ public: } std::string ToString() const; - void print() const; }; @@ -279,7 +276,6 @@ public: } std::string ToString() const; - void print() const; }; /** A mutable version of CTransaction. */ @@ -497,7 +493,7 @@ public: std::vector<uint256> GetMerkleBranch(int nIndex) const; static uint256 CheckMerkleBranch(uint256 hash, const std::vector<uint256>& vMerkleBranch, int nIndex); - void print() const; + std::string ToString() const; }; |