diff options
| author | Pieter Wuille <[email protected]> | 2015-10-29 07:11:24 +0100 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2015-11-13 18:15:20 +0100 |
| commit | 114b5812f6283f2325fc31e186b26c6d76f9551a (patch) | |
| tree | 6c04a7ee882b7d8a291bb9507ddd5cf17e23f704 /src/test/sigopcount_tests.cpp | |
| parent | Merge pull request #6983 (diff) | |
| download | discoin-114b5812f6283f2325fc31e186b26c6d76f9551a.tar.xz discoin-114b5812f6283f2325fc31e186b26c6d76f9551a.zip | |
Prevector type
Diffstat (limited to 'src/test/sigopcount_tests.cpp')
| -rw-r--r-- | src/test/sigopcount_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/sigopcount_tests.cpp b/src/test/sigopcount_tests.cpp index b26fed99f..ea2b9b795 100644 --- a/src/test/sigopcount_tests.cpp +++ b/src/test/sigopcount_tests.cpp @@ -20,7 +20,7 @@ using namespace std; static std::vector<unsigned char> Serialize(const CScript& s) { - std::vector<unsigned char> sSerialized(s); + std::vector<unsigned char> sSerialized(s.begin(), s.end()); return sSerialized; } |