mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-20 13:37:28 +02:00
Merge 9307c588d0 into merged_master (Bitcoin PR #21293)
This commit is contained in:
commit
9acd1fc4e8
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ static std::map<std::string, unsigned int> mapFlagNames = {
|
|||
|
||||
unsigned int ParseScriptFlags(std::string strFlags)
|
||||
{
|
||||
if (strFlags.empty() | strFlags == "NONE") return 0;
|
||||
if (strFlags.empty() || strFlags == "NONE") return 0;
|
||||
unsigned int flags = 0;
|
||||
std::vector<std::string> words;
|
||||
boost::algorithm::split(words, strFlags, boost::algorithm::is_any_of(","));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue