aboutsummaryrefslogtreecommitdiff
path: root/src/core.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2014-08-20 10:26:27 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2014-08-20 10:43:47 +0200
commit81212588c06cbf771bf3b60b426c3c4d2625e899 (patch)
tree6560c655bf878ca99ac63c10bc5b87fe20b6e860 /src/core.h
parentdd2819701a1a4481ae06b24924b75d55b9feb115 (diff)
downloadbitcoin-81212588c06cbf771bf3b60b426c3c4d2625e899.tar.xz
Remove print() from core functions
Break dependency on util.
Diffstat (limited to 'src/core.h')
-rw-r--r--src/core.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/core.h b/src/core.h
index fb64e6c08e..9552f70254 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;
};