diff options
| author | Cory Fields <[email protected]> | 2014-03-26 15:57:21 -0400 |
|---|---|---|
| committer | langerhans <[email protected]> | 2014-05-29 20:04:32 +0200 |
| commit | d3755d5afbe9fb1498a962929a344945ecfb3571 (patch) | |
| tree | dc2ea57a445eeacdf0499eff7c4e6483fb46ddfb /src/script.h | |
| parent | script: switch outside users to CScriptNum (diff) | |
| download | discoin-d3755d5afbe9fb1498a962929a344945ecfb3571.tar.xz discoin-d3755d5afbe9fb1498a962929a344945ecfb3571.zip | |
script: remove bignum dependency
Diffstat (limited to 'src/script.h')
| -rw-r--r-- | src/script.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/script.h b/src/script.h index 7781ea61c..1742ce81f 100644 --- a/src/script.h +++ b/src/script.h @@ -6,7 +6,6 @@ #ifndef H_BITCOIN_SCRIPT #define H_BITCOIN_SCRIPT -#include "bignum.h" #include "key.h" #include "util.h" @@ -441,7 +440,6 @@ public: explicit CScript(opcodetype b) { operator<<(b); } explicit CScript(const uint256& b) { operator<<(b); } explicit CScript(const CScriptNum& b) { operator<<(b); } - explicit CScript(const CBigNum& b) { operator<<(b); } explicit CScript(const std::vector<unsigned char>& b) { operator<<(b); } @@ -477,12 +475,6 @@ public: return *this; } - CScript& operator<<(const CBigNum& b) - { - *this << b.getvch(); - return *this; - } - CScript& operator<<(const CScriptNum& b) { *this << b.getvch(); |