Skip to content

Commit 44a3c52

Browse files
authored
Use const
1 parent 505e69d commit 44a3c52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ts_src/address.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const FUTURE_SEGWIT_VERSION_WARNING: string =
4343
'End users MUST be warned carefully in the GUI and asked if they wish to proceed ' +
4444
'with caution. Wallets should verify the segwit version from the output of fromBech32, ' +
4545
'then decide when it is safe to use which version of segwit.';
46-
let WARNING_STATES: boolean[] = [false, false];
46+
const WARNING_STATES: boolean[] = [false, false];
4747

4848
function _toFutureSegwitAddress(output: Buffer, network: Network): string {
4949
const data = output.slice(2);

0 commit comments

Comments
 (0)