diff options
author | Andrew Chow <achow101-github@achow101.com> | 2019-10-02 15:49:33 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2021-12-10 08:29:24 -0500 |
commit | 3235847473e36070cbe9b0e9deacdd8d8d9428fe (patch) | |
tree | f3ce3a785b7d5f147e35a2ec8005fcb1adf301b4 /src/script | |
parent | 65b49f60a4cf521889297b2006f66efa11d769c5 (diff) |
Types are compact size uints
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/sign.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/sign.h b/src/script/sign.h index 50525af332..622147cd95 100644 --- a/src/script/sign.h +++ b/src/script/sign.h @@ -143,7 +143,7 @@ void DeserializeHDKeypaths(Stream& s, const std::vector<unsigned char>& key, std // Serialize HD keypaths to a stream from a map template<typename Stream> -void SerializeHDKeypaths(Stream& s, const std::map<CPubKey, KeyOriginInfo>& hd_keypaths, uint8_t type) +void SerializeHDKeypaths(Stream& s, const std::map<CPubKey, KeyOriginInfo>& hd_keypaths, CompactSizeWriter type) { for (auto keypath_pair : hd_keypaths) { if (!keypath_pair.first.IsValid()) { |