From 86b4e2ba83c25aaa2f1a1dc0abf65b3f74b5dcfa Mon Sep 17 00:00:00 2001 From: Emanuele Bellocchia <54482000+ebellocchia@users.noreply.github.com> Date: Mon, 15 Apr 2024 21:18:42 +0200 Subject: [PATCH] Fix prospector warning --- bip_utils/coin_conf/coins_conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bip_utils/coin_conf/coins_conf.py b/bip_utils/coin_conf/coins_conf.py index 27f41498..887eaa21 100644 --- a/bip_utils/coin_conf/coins_conf.py +++ b/bip_utils/coin_conf/coins_conf.py @@ -44,7 +44,7 @@ _BTC_P2TR_WIT_VER_TN: int = 1 _BTC_WIF_NET_VER_TN: bytes = b"\xef" # Regtest -_BTC_P2PKH_NET_VER_RT: bytes =_BTC_P2PKH_NET_VER_TN +_BTC_P2PKH_NET_VER_RT: bytes = _BTC_P2PKH_NET_VER_TN _BTC_P2SH_NET_VER_RT: bytes = _BTC_P2SH_NET_VER_TN _BTC_P2WPKH_HRP_RT: str = Slip173.BITCOIN_REGTEST _BTC_P2WPKH_WIT_VER_RT: int = _BTC_P2TR_WIT_VER_TN