Skip to content

Commit 50d01a4

Browse files
removing trailing whitespaces
1 parent 8fd1136 commit 50d01a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Functions/FunctionsBech32Representation.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ constexpr size_t max_hrp_len = 83; // Note: if we only support segwit addresses,
2626

2727
using bech32_data = std::vector<uint8_t>;
2828

29-
/** Convert from one power-of-2 number base to another.
30-
*
29+
/** Convert from one power-of-2 number base to another.
30+
*
3131
* Function will convert a input vector of <frombits>-bit data to an output vector of <tobit>-bit data,
3232
* padding the result if <pad> is true.
3333
*
@@ -37,7 +37,7 @@ using bech32_data = std::vector<uint8_t>;
3737
*
3838
* The last 4 "extra" 0s in the output are padding, they will only be added if <pad> is true.
3939
* If <pad> is false, no padding will be added and the function will return false if there are bits
40-
* left over
40+
* left over.
4141
*/
4242
template <int frombits, int tobits, bool pad>
4343
bool convertbits(bech32_data & out, const bech32_data & in)

0 commit comments

Comments
 (0)