mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-13 19:18:56 +00:00
require https for coin website
This commit is contained in:
parent
aa332e417d
commit
fba7ae05c9
@ -2,7 +2,7 @@
|
||||
"coin_name": "Dogecoin",
|
||||
"coin_shortcut": "DOGE",
|
||||
"coin_label": "Dogecoin",
|
||||
"website": "http://dogecoin.com",
|
||||
"website": "https://dogecoin.com",
|
||||
"github": "https://github.com/dogecoin/dogecoin",
|
||||
"maintainer": "Karel Bilek <karel.bilek@satoshilabs.com>",
|
||||
"curve_name": "secp256k1",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"coin_name": "Fujicoin",
|
||||
"coin_shortcut": "FJC",
|
||||
"coin_label": "Fujicoin",
|
||||
"website": "http://fujicoin.org",
|
||||
"website": "https://fujicoin.org",
|
||||
"github": "https://github.com/fujicoin/fujicoin",
|
||||
"maintainer": "motty <admin@fujicoin.org>",
|
||||
"curve_name": "secp256k1",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"coin_name": "Pesetacoin",
|
||||
"coin_shortcut": "PTC",
|
||||
"coin_label": "Pesetacoin",
|
||||
"website": "http://pesetacoin.info",
|
||||
"website": "https://pesetacoin.info",
|
||||
"github": "https://github.com/FundacionPesetacoin/PesetacoinCore",
|
||||
"maintainer": "Rw <info@pesetacoin.info>",
|
||||
"curve_name": "secp256k1",
|
||||
|
@ -2,7 +2,7 @@
|
||||
"coin_name": "Ravencoin",
|
||||
"coin_shortcut": "RVN",
|
||||
"coin_label": "Ravencoin",
|
||||
"website": "https://ravencoin.org/",
|
||||
"website": "https://ravencoin.org",
|
||||
"github": "https://github.com/RavenProject/Ravencoin",
|
||||
"maintainer": "Tron Black <TronBlack@gmail.com>",
|
||||
"curve_name": "secp256k1",
|
||||
|
@ -72,6 +72,7 @@
|
||||
"bitcoin:MUE": "1.7.1",
|
||||
"bitcoin:NMC": "1.5.2",
|
||||
"bitcoin:PTC": "1.7.1",
|
||||
"bitcoin:RVN": "soon",
|
||||
"bitcoin:SMART": "1.7.1",
|
||||
"bitcoin:TAZ": "1.6.2",
|
||||
"bitcoin:TBCH": "1.6.2",
|
||||
@ -974,6 +975,7 @@
|
||||
"bitcoin:MUE": "2.0.8",
|
||||
"bitcoin:NMC": "2.0.5",
|
||||
"bitcoin:PTC": "2.0.8",
|
||||
"bitcoin:RVN": "soon",
|
||||
"bitcoin:SMART": "2.0.8",
|
||||
"bitcoin:TAZ": "2.0.7",
|
||||
"bitcoin:TBCH": "2.0.7",
|
||||
|
@ -109,7 +109,7 @@ BTC_CHECKS = [
|
||||
check_key("coin_name", str, regex=r"^[A-Z]"),
|
||||
check_key("coin_shortcut", str, regex=r"^t?[A-Z]{3,}$"),
|
||||
check_key("coin_label", str, regex=r"^[A-Z]"),
|
||||
check_key("website", str, regex=r"^http.*[^/]$"),
|
||||
check_key("website", str, regex=r"^https://.*[^/]$"),
|
||||
check_key("github", str, regex=r"^https://github.com/.*[^/]$"),
|
||||
check_key("maintainer", str),
|
||||
check_key(
|
||||
|
Loading…
Reference in New Issue
Block a user