summaryrefslogtreecommitdiff
path: root/scripts/buildtable.pl
diff options
context:
space:
mode:
authorLuke Dashjr <luke_github1@dashjr.org>2016-11-30 03:33:15 +0000
committerGitHub <noreply@github.com>2016-11-30 03:33:15 +0000
commit453b8ab83299b8f2468830d2f803f96fba98d7f9 (patch)
treec287c21dfd1594c998f23646a786e58dbdde97a9 /scripts/buildtable.pl
parent06e6f29fcaab9cb255943288a8b26af4b720018e (diff)
parentc834fde23b11b61cefe0b97a53f198f2d9cffbdc (diff)
downloadbips-453b8ab83299b8f2468830d2f803f96fba98d7f9.tar.xz
Merge pull request #477 from luke-jr/bip0123-clarify
BIP 123: Clarify how used with non-Standards BIPs, and update list
Diffstat (limited to 'scripts/buildtable.pl')
-rwxr-xr-xscripts/buildtable.pl5
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/buildtable.pl b/scripts/buildtable.pl
index f0e43d2..d8f52f2 100755
--- a/scripts/buildtable.pl
+++ b/scripts/buildtable.pl
@@ -31,9 +31,6 @@ my %MiscField = (
'Resolution' => undef,
);
-my %ValidLayer = (
- Process => undef,
-);
my %ValidStatus = (
Draft => undef,
Deferred => undef,
@@ -106,8 +103,6 @@ while (++$bipnum <= $topbip) {
} else {
$type = $val;
}
- } elsif ($field eq 'Layer') { # BIP 123
- die "Invalid layer $val in $fn" unless exists $ValidLayer{$val};
} elsif (exists $DateField{$field}) {
die "Invalid date format in $fn" unless $val =~ /^20\d{2}\-(?:0\d|1[012])\-(?:[012]\d|30|31)$/;
} elsif (exists $EmailField{$field}) {