Start QBFT Node Has Error Massage: Unavailable modules in HTTP API list #1465
-
OS: MacOS Catalina static-nodes.json [
"enode://8f69c97e485eccf0e8a096a52be4116abf755a2f68579409b8445cfef8e6f824dd2b1292a2a90a2aae2d3f46e2c80813389520bdd8313be4d37ab4fea38a4b5e@localhost:30300?discport=0&raftport=53000",
"enode://308da0f6d63d563caea99c06e6d34c4708af3456c309e11dfbb01371eec775feb29c851a4df7df34350e20fc78205ae3011cbd145dec99df0e5f07bf22edb019@localhost:30301?discport=0&raftport=53001",
"enode://0f17606c7da27482c57e5f6156b1188aa43c69f076effefc79da22736344f2d8da505ee97bc3222ffdee3025c5c210b5b2508ba47bf8584ab0d171dc237eaf73@localhost:30302?discport=0&raftport=53002",
"enode://5453313fda3db1dadc7e65719cc4ce187e978e19d58193310a70fbe140540894ae1112d4900cc1ecafd535e57aca086d555c0c1604f2ef94c5a44c84100c723f@localhost:30303?discport=0&raftport=53003",
"enode://c2a43afce994b4cb8021f0c85a4a55cbaf3188e564b8c53ffded9666e7e79ed76e1d7b6e619ac27dd58bf609805994b9b62439b04240afd475ee81fab36a0e7e@localhost:30304?discport=0&raftport=53004"
]
startnode0.json export ADDRESS=$(grep -o '"address": *"[^"]*"' ./data/keystore/accountKeystore | grep -o '"[^"]*"$' | sed 's/"//g')
export PRIVATE_CONFIG=ignore
./geth --datadir data \
--networkid 1337 --nodiscover --verbosity 5 \
--syncmode full \
--istanbul.blockperiod 5 --mine --miner.threads 1 --miner.gasprice 0 --emitcheckpoints \
--http --http.addr localhost --http.port 22000 --http.corsdomain "*" --http.vhosts "*" \
--ws --ws.addr localhost --ws.port 32000 --ws.origins "*" \
--http.api admin,eth,debug,miner,net,txpool,personal,web3,istanbul \
--ws.api admin,eth,debug,miner,net,txpool,personal,web3,istanbul \
--unlock ${ADDRESS} --allow-insecure-unlock --password ./data/keystore/accountPassword \
--port 30300
some mssage DEBUG[07-30|11:38:50.334] IPCs registered namespaces=admin,debug,web3,eth,txpool,personal,ethash,miner,net
INFO [07-30|11:38:50.335] IPC endpoint opened url=/Users/lyon/Desktop/QBFT-Network/data/geth.ipc isMultitenant=false
INFO [07-30|11:38:50.335] Security Plugin is not enabled
ERROR[07-30|11:38:50.335] Unavailable modules in HTTP API list unavailable=[istanbul] available="[admin debug web3 eth txpool personal ethash miner net]"
ERROR[07-30|11:38:50.335] Unavailable modules in HTTP API list unavailable=[istanbul] available="[admin debug web3 eth txpool personal ethash miner net]"
DEBUG[07-30|11:38:50.336] Allowed origin(s) for WS RPC interface [*]
INFO [07-30|11:38:50.336] Security: TLS not enabled endpoint=localhost:22000 reason="no TLSConfigurationSource found"
INFO [07-30|11:38:50.338] HTTP server started endpoint=127.0.0.1:22000 prefix= cors=* vhosts=* isTls=false
INFO [07-30|11:38:50.338] Security: TLS not enabled endpoint=localhost:32000 reason="no TLSConfigurationSource found"
INFO [07-30|11:38:50.338] WebSocket enabled url=ws://127.0.0.1:32000 |
Beta Was this translation helpful? Give feedback.
Answered by
antonydenyer
Aug 1, 2022
Replies: 1 comment
-
Indeed, Where did you copy the example from and I'll update it? |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
baptiste-b-pegasys
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Indeed,
istanbul
is not available remove it from--http.api admin,eth,debug,miner,net,txpool,personal,web3,istanbul
Where did you copy the example from and I'll update it?