mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 12:22:39 -03:00
span: Add Span::empty() and use it in script/descriptor
This commit is contained in:
parent
fa8a992589
commit
fa2ae0ac8d
2 changed files with 4 additions and 3 deletions
|
@ -825,9 +825,9 @@ std::unique_ptr<PubkeyProvider> ParsePubkey(uint32_t key_exp_index, const Span<c
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
if (origin_split.size() == 1) return ParsePubkeyInner(key_exp_index, origin_split[0], permit_uncompressed, out, error);
|
if (origin_split.size() == 1) return ParsePubkeyInner(key_exp_index, origin_split[0], permit_uncompressed, out, error);
|
||||||
if (origin_split[0].size() < 1 || origin_split[0][0] != '[') {
|
if (origin_split[0].empty() || origin_split[0][0] != '[') {
|
||||||
error = strprintf("Key origin start '[ character expected but not found, got '%c' instead",
|
error = strprintf("Key origin start '[ character expected but not found, got '%c' instead",
|
||||||
origin_split[0].size() < 1 ? /** empty, implies split char */ ']' : origin_split[0][0]);
|
origin_split[0].empty() ? /** empty, implies split char */ ']' : origin_split[0][0]);
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
auto slash_split = Split(origin_split[0].subspan(1), '/');
|
auto slash_split = Split(origin_split[0].subspan(1), '/');
|
||||||
|
@ -897,7 +897,7 @@ std::unique_ptr<DescriptorImpl> ParseScript(uint32_t key_exp_index, Span<const c
|
||||||
providers.emplace_back(std::move(pk));
|
providers.emplace_back(std::move(pk));
|
||||||
key_exp_index++;
|
key_exp_index++;
|
||||||
}
|
}
|
||||||
if (providers.size() < 1 || providers.size() > 16) {
|
if (providers.empty() || providers.size() > 16) {
|
||||||
error = strprintf("Cannot have %u keys in multisig; must have between 1 and 16 keys, inclusive", providers.size());
|
error = strprintf("Cannot have %u keys in multisig; must have between 1 and 16 keys, inclusive", providers.size());
|
||||||
return nullptr;
|
return nullptr;
|
||||||
} else if (thres < 1) {
|
} else if (thres < 1) {
|
||||||
|
|
|
@ -151,6 +151,7 @@ public:
|
||||||
return m_data[m_size - 1];
|
return m_data[m_size - 1];
|
||||||
}
|
}
|
||||||
constexpr std::size_t size() const noexcept { return m_size; }
|
constexpr std::size_t size() const noexcept { return m_size; }
|
||||||
|
constexpr bool empty() const noexcept { return size() == 0; }
|
||||||
CONSTEXPR_IF_NOT_DEBUG C& operator[](std::size_t pos) const noexcept
|
CONSTEXPR_IF_NOT_DEBUG C& operator[](std::size_t pos) const noexcept
|
||||||
{
|
{
|
||||||
ASSERT_IF_DEBUG(size() > pos);
|
ASSERT_IF_DEBUG(size() > pos);
|
||||||
|
|
Loading…
Reference in a new issue