diff options
Diffstat (limited to 'src/bech32.h')
-rw-r--r-- | src/bech32.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bech32.h b/src/bech32.h index 7e92d5d23a..5e89e6efda 100644 --- a/src/bech32.h +++ b/src/bech32.h @@ -46,7 +46,7 @@ struct DecodeResult DecodeResult Decode(const std::string& str); /** Return the positions of errors in a Bech32 string. */ -std::string LocateErrors(const std::string& str, std::vector<int>& error_locations); +std::pair<std::string, std::vector<int>> LocateErrors(const std::string& str); } // namespace bech32 |