Skip to content

Commit a6d8672

Browse files
committed
chore(web-devtools): remove-neo-references
1 parent 318d311 commit a6d8672

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

web-devtools/.env.devnet-neo.public

Lines changed: 0 additions & 1 deletion
This file was deleted.

web-devtools/scripts/runEnv.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ shift
1010
commands="$*"
1111

1212
if [[ -z "$deployment" ]]; then
13-
echo "usage: $(basename "$0") <local|devnet|devnet-neo|devnet-university|testnet|mainnet-neo>"
13+
echo "usage: $(basename "$0") <local|devnet|devnet-university|testnet|mainnet>"
1414
exit 1
1515
fi
1616

17-
valid_deployments=("local" "devnet" "devnet-neo" "devnet-university" "testnet" "mainnet-neo")
17+
valid_deployments=("local" "devnet" "devnet-university" "testnet" "mainnet")
1818
if [[ ! " ${valid_deployments[*]} " =~ ${deployment} ]]; then
1919
echo "Invalid deployment option. Please choose either: ${valid_deployments[*]}."
2020
exit 1

web-devtools/src/consts/arbitratorTypes.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
export enum ArbitratorTypes {
22
vanilla,
33
university,
4-
neo,
54
}
65

76
export const getArbitratorType = (id: keyof typeof ArbitratorTypes = "vanilla" as const): ArbitratorTypes =>

0 commit comments

Comments
 (0)