-
Notifications
You must be signed in to change notification settings - Fork 837
Description
Hello Team
I have avalanchego (v1.10.1) index and full node both. I want to access debug_traceTransaction rpc quesy but it's return us "error": {"code": -32601, "message": "the method debug_traceTransaction does not exist/is not available"}.
Here Is Docker-compose file
version: '2'
services:
node-avalanchego:
image: avaplatform/avalanchego:v1.10.1
container_name: avalanchego-1332
restart: always
ports:
- "9651:9651"
- "1332:9650"
volumes:
- /localdisk/data:/data
- /localdisk/logs:/root/.avalanchego
command:
# - "--index-enabled=true" //currently commented, using as non-indexer node
# - "--x-chaos-vm-tracing-enabled=true" //not working
- "geth --http --http.rpc.api eth,debug"
mem_limit: 10g
entrypoint: "./avalanchego --http-host="
At the place of --x-chaos-vm-tracing-enabled, tried with --trace, --debug-vm-tracing-enabled, --api-debug-enabled, --api-debug but seems node not starting,
flag - --trace o/p User couldn't configure flags: unknown flag: --trace
flag - --debug-vm-tracing-enabled o/p User couldn't configure flags: unknown flag: --debug-vm-tracing-enabled
flag - --api-debug-enabled o/p User couldn't configure flags: unknown flag: --api-debug-enabled
flag - --api-debug o/p User couldn't configure flags: unknown flag: --api-debug
Thanks
Umang