Skip to content

Commit fb3ab79

Browse files
authored
fix: fix incorrect string comparison in OPERATOR_ADDRESS check
1 parent 50a64c6 commit fb3ab79

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/fund_operator_devnet.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Check that OPERATOR_ADDRESS is not empty
4-
if [[ "$OPERATOR_ADDRESS" -eq "" ]]; then
4+
if [[ -z "$OPERATOR_ADDRESS" ]]; then
55
echo "OPERATOR_ADDRESS is empty, using default value 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266"
66
OPERATOR_ADDRESS=0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266
77
fi;

0 commit comments

Comments
 (0)