diff options
| author | MarcoFalke <[email protected]> | 2018-07-22 09:38:00 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-07-22 09:38:10 -0400 |
| commit | 62baa28787a02515bdfd1eb91279a3d00f503e34 (patch) | |
| tree | 47a937de28004ea776bb7caf1aa366677e7d182f /src/script/standard.cpp | |
| parent | Merge #13722: trivial: Replace CPubKey::operator[] with CPubKey::vch where po... (diff) | |
| parent | Remove redundant statement (diff) | |
| download | discoin-62baa28787a02515bdfd1eb91279a3d00f503e34.tar.xz discoin-62baa28787a02515bdfd1eb91279a3d00f503e34.zip | |
Merge #13691: Remove redundant variables, statements and forward declarations
3dee4cc509 Remove redundant statement (practicalswift)
99be644966 Remove redundant unused variables (practicalswift)
66ed242343 Remove redundant forward declaration (practicalswift)
Pull request description:
Remove redundant …
* ~access modifiers,~
* forward declarations,
* unused variables,
* statements, and
* ~return types from lambdas.~
Tree-SHA512: 328bb7d9c45398e44ecbee32095b6376879470dfddbc2180e037620d8390d524b51d7fda112fd58a078715e04432b24dd6998a2459f3550aa0498aa68de866d4
Diffstat (limited to 'src/script/standard.cpp')
| -rw-r--r-- | src/script/standard.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/script/standard.cpp b/src/script/standard.cpp index f0b2c62a9..d7b172479 100644 --- a/src/script/standard.cpp +++ b/src/script/standard.cpp @@ -324,8 +324,6 @@ CScript GetScriptForMultisig(int nRequired, const std::vector<CPubKey>& keys) CScript GetScriptForWitness(const CScript& redeemscript) { - CScript ret; - txnouttype typ; std::vector<std::vector<unsigned char> > vSolutions; if (Solver(redeemscript, typ, vSolutions)) { |