Skip to content

Commit 5d08b35

Browse files
for some reason style checker doesn't like namespace comments
1 parent 0f247e1 commit 5d08b35

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Functions/bech32.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ data create_checksum(const std::string & hrp, const data & values, Encoding enco
179179
return ret;
180180
}
181181

182-
} // namespace
182+
}
183183

184184
/** Encode a Bech32 or Bech32m string. */
185185
std::string encode(const std::string & hrp, const data & values, Encoding encoding)
@@ -245,4 +245,4 @@ DecodeResult decode(const std::string & str)
245245
return {result, std::move(hrp), data(values.begin(), values.end() - 6)};
246246
}
247247

248-
} // namespace bech32
248+
}

src/Functions/bech32.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ struct DecodeResult
6161
/** Decode a Bech32 or Bech32m string. */
6262
DecodeResult decode(const std::string & str);
6363

64-
} // namespace bech32
64+
}

0 commit comments

Comments
 (0)