@@ -74,7 +74,7 @@ while [[ -n $1 ]]; do
74
74
elif [[ $1 = --no-rocksdb-compaction ]]; then # not enabled in net.sh
75
75
args+=("$1")
76
76
shift
77
- elif [[ $1 = --enable-rpc-transaction-history ]]; then # enabled through full-rpc
77
+ elif [[ $1 = --enable-rpc-transaction-history ]]; then
78
78
args+=("$1")
79
79
shift
80
80
elif [[ $1 = --rpc-pubsub-enable-block-subscription ]]; then # not enabled in net.sh
@@ -83,7 +83,10 @@ while [[ -n $1 ]]; do
83
83
elif [[ $1 = --enable-cpi-and-log-storage ]]; then # not enabled in net.sh
84
84
args+=("$1")
85
85
shift
86
- elif [[ $1 = --enable-extended-tx-metadata-storage ]]; then # enabled through full-rpc
86
+ elif [[ $1 = --full-rpc-api ]]; then
87
+ args+=("$1")
88
+ shift
89
+ elif [[ $1 = --enable-extended-tx-metadata-storage ]]; then
87
90
args+=("$1")
88
91
shift
89
92
elif [[ $1 = --enable-rpc-bigtable-ledger-storage ]]; then
@@ -161,9 +164,7 @@ args+=(
161
164
--rpc-faucet-address "$MY_POD_IP":9900 \
162
165
--no-poh-speed-test \
163
166
--no-incremental-snapshots \
164
- --full-rpc-api \
165
167
--allow-private-addr \
166
- --enable-rpc-transaction-history
167
168
)
168
169
169
170
echo "Bootstrap Args"
@@ -361,6 +362,9 @@ while [[ -n $1 ]]; do
361
362
elif [[ $1 = --no-rocksdb-compaction ]]; then
362
363
args+=("$1")
363
364
shift
365
+ elif [[ $1 = --full-rpc-api ]]; then
366
+ args+=("$1")
367
+ shift
364
368
elif [[ $1 = --enable-rpc-transaction-history ]]; then
365
369
args+=("$1")
366
370
shift
@@ -465,12 +469,10 @@ default_arg --identity "$identity"
465
469
default_arg --vote-account "$vote_account"
466
470
default_arg --ledger "$ledger_dir"
467
471
default_arg --log -
468
- default_arg --full-rpc-api
469
472
default_arg --no-incremental-snapshots
470
473
default_arg --allow-private-addr
471
474
default_arg --gossip-port 8001
472
475
default_arg --rpc-port 8899
473
- default_arg --enable-rpc-transaction-history
474
476
475
477
PS4="$(basename "$0"): "
476
478
echo "PS4: $PS4"
@@ -727,6 +729,9 @@ while [[ -n $1 ]]; do
727
729
elif [[ $1 = --ledger ]]; then
728
730
ledger_dir=$2
729
731
shift 2
732
+ elif [[ $1 = --full-rpc-api ]]; then
733
+ args+=("$1")
734
+ shift
730
735
elif [[ $1 = --entrypoint ]]; then
731
736
gossip_entrypoint=$2
732
737
args+=("$1" "$2")
873
878
default_arg --identity "$identity"
874
879
default_arg --ledger "$ledger_dir"
875
880
default_arg --log -
876
- default_arg --full-rpc-api
877
881
default_arg --no-incremental-snapshots
878
882
default_arg --allow-private-addr
879
883
default_arg --gossip-port 8001
0 commit comments