Last active
May 28, 2020 04:53
-
-
Save ajsutton/d4b9cb62614e1b985e8e13b8d44ccc32 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I ran lighthouse compiled from latest master (or back a couple of commits for OS X) with: | |
| RUST_LOG=multistream_select=trace lighthouse --debug-level trace bn --http --port 9001 --maxpeers 0 | |
| Then grabbed it's multiaddr from log output when it starts up. Configured Teku with: | |
| network: "witti" | |
| p2p-enabled: true | |
| p2p-discovery-enabled: false | |
| # Make this the multiaddr from your Lighthouse | |
| p2p-static-peers: ["/ip4/127.0.0.1/tcp/9001/p2p/16Uiu2HAmEh2HHJSBdsP5hs3wkcquzR6vMGyq4gdTWz2pUJ81KgHn"] | |
| eth1-enabled: false | |
| Xlog-wire-cipher-enabled: true | |
| Xlog-wire-plain-enabled: true | |
| Xlog-wire-mux-enabled: true | |
| Xlog-wire-gossip-enabled: true | |
| I use a custom log4j with Teku to silence some noisy classes but it's mostly just at trace level. | |
| All of io.libp2p and io.netty is trace level in the above log. | |
| I replaced the timeout in RpcHandler.sendRequest (the one with exception message "Timed out waiting to initialize stream") | |
| with a log statement to see where it would have timed out but then let it carry on. About 10 seconds later we actually get | |
| the metadata response. | |
| https://github.com/PegaSysEng/teku/pull/1993 is the other Teku code changes I've made - that gets us responding to | |
| metadata requests from Lighthouse correctly - just need to understand we it takes us 10 seconds to open the channel when we request. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /Library/Java/JavaVirtualMachines/adoptopenjdk-11.jdk/Contents/Home/bin/java -Xmx5g -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n -Dlog4j.configurationFile=/Users/aj/Documents/code/teku/tmp/log4j.xml -javaagent:/Users/aj/Library/Application Support/JetBrains/Toolbox/apps/IDEA-C/ch-0/201.7223.91/IntelliJ IDEA 2019.3 CE EAP.app/Contents/lib/idea_rt.jar=64139:/Users/aj/Library/Application Support/JetBrains/Toolbox/apps/IDEA-C/ch-0/201.7223.91/IntelliJ IDEA 2019.3 CE EAP.app/Contents/bin -Dfile.encoding=UTF-8 -classpath /Users/aj/Documents/code/teku/teku/out/production/classes:/Users/aj/Documents/code/teku/teku/out/production/resources:/Users/aj/.gradle/caches/modules-2/files-2.1/io.libp2p/jvm-libp2p-minimal/0.4.1-RELEASE/aef64c1845e18a84050ae747e0616a4e0297ecaf/jvm-libp2p-minimal-0.4.1-RELEASE.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.tuweni/tuweni-plumtree/0.10.0/614d14ff1efde5fe2919450d323e972c122c8fde/tuweni-plumtree-0.10.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.tuweni/tuweni-ssz/0.10.0/8e9078a588523f626731e60eca8ec4b07b23a2bb/tuweni-ssz-0.10.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.tuweni/tuweni-crypto/0.10.0/19555cfafba648cc48fca7380462e7607f48d46f/tuweni-crypto-0.10.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.tuweni/tuweni-units/0.10.0/4ed41e73f91927008d61a972eb20b168cf8b236b/tuweni-units-0.10.0.jar:/Users/aj/Documents/code/teku/logging/out/production/classes:/Users/aj/Documents/code/teku/logging/out/production/resources:/Users/aj/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/28.1-jre/b0e91dcb6a44ffb6221b5027e12a5cb34b841145/guava-28.1-jre.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-lang3/3.9/122c7cee69b53ed4a7681c03d4ee4c0e2765da5/commons-lang3-3.9.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-slf4j-impl/2.13.2/49df25f7a35dd7fbd8131fc5ab09665d18e3d4fe/log4j-slf4j-impl-2.13.2.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.hyperledger.besu.internal/metrics-core/1.3.4/a4a0ce0af4e3d39de746ad67d8902f7bdd196d64/metrics-core-1.3.4.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.13.2/567ea514dedd8679c429c5b5b39b0d67b6464c3c/log4j-api-2.13.2.jar:/Users/aj/Documents/code/teku/bls/out/production/classes:/Users/aj/Documents/code/teku/data/out/production/classes:/Users/aj/Documents/code/teku/data/metrics/out/production/classes:/Users/aj/Documents/code/teku/data/recorder/out/production/classes:/Users/aj/Documents/code/teku/ethereum/core/out/production/classes:/Users/aj/Documents/code/teku/ethereum/datastructures/out/production/classes:/Users/aj/Documents/code/teku/ethereum/statetransition/out/production/classes:/Users/aj/Documents/code/teku/events/out/production/classes:/Users/aj/Documents/code/teku/networking/p2p/out/production/classes:/Users/aj/Documents/code/teku/networking/p2p/out/production/resources:/Users/aj/Documents/code/teku/pow/out/production/classes:/Users/aj/Documents/code/teku/pow/out/production/resources:/Users/aj/Documents/code/teku/services/beaconchain/out/production/classes:/Users/aj/Documents/code/teku/services/chainstorage/out/production/classes:/Users/aj/Documents/code/teku/services/powchain/out/production/classes:/Users/aj/Documents/code/teku/services/serviceutils/out/production/classes:/Users/aj/Documents/code/teku/services/timer/out/production/classes:/Users/aj/Documents/code/teku/storage/out/production/classes:/Users/aj/Documents/code/teku/util/out/production/classes:/Users/aj/Documents/code/teku/util/out/production/resources:/Users/aj/Documents/code/teku/validator/coordinator/out/production/classes:/Users/aj/Documents/code/teku/validator/client/out/production/classes:/Users/aj/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.8.6/9180733b7df8542621dc12e21e87557e8c99b8cb/gson-2.8.6.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.squareup.okhttp3/okhttp/4.2.2/39b5a2a8c5fd14fbb7d64c6c606819e3ede5afd2/okhttp-4.2.2.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/info.picocli/picocli/4.2.0/8c986f8f790e18facf9b3cde42bfbaffaa6c1198/picocli-4.2.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.vertx/vertx-web/3.8.3/8534f347ce214f725ed9bb01a9b7fc6b6a884b77/vertx-web-3.8.3.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.vertx/vertx-core/3.8.3/37b9a302dfdbac6b880ee0c04877197b7e5fff3a/vertx-core-3.8.3.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.tuweni/tuweni-toml/0.10.0/96a73e2ca8bb28b669a8172055ff0df4eb43c820/tuweni-toml-0.10.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/tech.pegasys.signers.internal/bls-keystore/1.0.1/2582afb85c5878052e8fce063b6355edba68fa3d/bls-keystore-1.0.1.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/2.11.0/f5314fe164fc1e3bdcaf20fe0851759917312d9e/jackson-dataformat-yaml-2.11.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.11.0/8f5aaf3878b0647ff3a16610af53b1a5c05d9f15/jackson-databind-2.11.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.13.2/8eb1fc1914eb2550bf3ddea26917c9a7cbb00593/log4j-core-2.13.2.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.bouncycastle/bcpkix-jdk15on/1.62/3d2e8f5827257331cfe82487f5bab392994e6e32/bcpkix-jdk15on-1.62.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.bouncycastle/bcprov-jdk15on/1.64/1467dac1b787b5ad2a18201c0c281df69882259e/bcprov-jdk15on-1.64.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.netty/netty-all/4.1.36.Final/722e6b1b3ceead8fbe3c5d0218e083f757155451/netty-all-4.1.36.Final.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.google.protobuf/protobuf-java/3.11.0/992c02b8fba83bdda5602c12b5eee31e468b3069/protobuf-java-3.11.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/commons-codec/commons-codec/1.13/3f18e1aa31031d89db6f01ba05d501258ce69d2c/commons-codec-1.13.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.tuweni/tuweni-bytes/0.10.0/344bff64155aa60f1fe065a01dafcb590431ff15/tuweni-bytes-0.10.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.tuweni/tuweni-concurrent/0.10.0/664927be8c0fe0132cf0fc409dfc36fa4e54ca16/tuweni-concurrent-0.10.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib/1.3.61/4702105e97f7396ae41b113fdbdc180ec1eb1e36/kotlin-stdlib-1.3.61.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.tuweni/tuweni-io/0.10.0/8293e77e40abbdff9371489e70da948af3839609/tuweni-io-0.10.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.github.jnr/jnr-ffi/2.1.9/c465565992e8264012023c8b240e8175e235aa4e/jnr-ffi-2.1.9.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.google.guava/failureaccess/1.0.1/1dcf1de382a0bf95a3d8b0849546c88bac1292c9/failureaccess-1.0.1.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.google.guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/b421526c5f297295adef1c886e5246c39d4ac629/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/3.0.2/25ea2e8b0c338a877313bd4672d3fe056ea78f0d/jsr305-3.0.2.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.checkerframework/checker-qual/2.8.1/eb2e8ab75598548cc8acf9a1ca227e480e01881e/checker-qual-2.8.1.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.google.errorprone/error_prone_annotations/2.3.2/d1a0c5032570e0f64be6b4d9c90cdeb103129029/error_prone_annotations-2.3.2.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.google.j2objc/j2objc-annotations/1.3/ba035118bc8bac37d7eff77700720999acd9986d/j2objc-annotations-1.3.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.codehaus.mojo/animal-sniffer-annotations/1.18/f7aa683ea79dc6681ee9fb95756c999acbb62f5d/animal-sniffer-annotations-1.18.jar:/Users/aj/Documents/code/teku/ssz/out/production/classes:/Users/aj/.gradle/caches/modules-2/files-2.1/org.hyperledger.besu/plugin-api/1.3.4/75f49831813098e831a658b59b1babf37b89dd4b/plugin-api-1.3.4.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.web3j/core/4.5.6/edb97d7bf304be6b5cc28c7a9332133d7d334ace/core-4.5.6.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.squareup.okio/okio/2.2.2/36f483536153f15339a8b48d508e22be7c9c531a/okio-2.2.2.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.vertx/vertx-web-common/3.8.3/8d028be50e16d4fe138b5ba146ba8a617f0040ea/vertx-web-common-3.8.3.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.vertx/vertx-auth-common/3.8.3/8f785c808552f1ee669fe8e92ab5d1c33f6825be/vertx-auth-common-3.8.3.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.vertx/vertx-bridge-common/3.8.3/5ec91de80bab7d3200fb48d9fccbbdf34fdcb7a2/vertx-bridge-common-3.8.3.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.netty/netty-handler-proxy/4.1.42.Final/7b816d9f37ddcb68f6c1b9b0d7b5a98bfac40911/netty-handler-proxy-4.1.42.Final.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.netty/netty-codec-http2/4.1.42.Final/819e7b5f2005770cf7558c04276fff080331c6df/netty-codec-http2-4.1.42.Final.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.netty/netty-codec-http/4.1.42.Final/5f71267aa784d0e6c5ec09fb988339d244b205a0/netty-codec-http-4.1.42.Final.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.netty/netty-handler/4.1.42.Final/fc6546be5df552d9729f008d8d41a6dee28127aa/netty-handler-4.1.42.Final.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.netty/netty-resolver-dns/4.1.42.Final/385e8b85dce81f8ac61d8b161c5b39020b5d789f/netty-resolver-dns-4.1.42.Final.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.netty/netty-transport/4.1.42.Final/857502e863c02c829fdafea61c3fda6bda01d0af/netty-transport-4.1.42.Final.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.netty/netty-buffer/4.1.42.Final/6e6fc9178d1f1401aa0d6b843341efb91720f2cd/netty-buffer-4.1.42.Final.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.netty/netty-resolver/4.1.42.Final/ccaacf418a9e486b65e82c47bed66439119c5fdb/netty-resolver-4.1.42.Final.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.netty/netty-common/4.1.42.Final/e02700b574d3a0e2100308f971f0753ac8700e7c/netty-common-4.1.42.Final.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.11.0/f84302e14648f9f63c0c73951054aeb2ff0b810a/jackson-core-2.11.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.antlr/antlr4-runtime/4.7.1/946f8aa9daa917dd81a8b818111bec7e288f821a/antlr4-runtime-4.7.1.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/1.26/a78a8747147d2c5807683e76ec2b633e95c14fe9/snakeyaml-1.26.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.11.0/c626020ae55d19c690d25cb51c1532ba76e5890f/jackson-annotations-2.11.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-common/1.3.61/65abb71d5afb850b68be03987b08e2c864ca3110/kotlin-stdlib-common-1.3.61.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.jetbrains/annotations/13.0/919f0dfe192fb4e063e7dacadee7f8bb9a2672a9/annotations-13.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.github.jnr/jffi/1.2.17/6ffa5106be5a121bea9d0779cd757e804633e543/jffi-1.2.17.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-commons/5.0.3/a7111830132c7f87d08fe48cb0ca07630f8cb91c/asm-commons-5.0.3.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-analysis/5.0.3/c7126aded0e8e13fed5f913559a0dd7b770a10f3/asm-analysis-5.0.3.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-util/5.0.3/1512e5571325854b05fb1efce1db75fcced54389/asm-util-5.0.3.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm-tree/5.0.3/287749b48ba7162fb67c93a026d690b29f410bed/asm-tree-5.0.3.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm/5.0.3/dcc2193db20e19e1feca8b1240dbbc4e190824fa/asm-5.0.3.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.github.jnr/jnr-a64asm/1.0.0/a1cb8dbe71b5a6a0288043c3ba3ca64545be165/jnr-a64asm-1.0.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.github.jnr/jnr-x86asm/1.0.2/6936bbd6c5b235665d87bd450f5e13b52d4b48/jnr-x86asm-1.0.2.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.squareup.okhttp3/logging-interceptor/3.8.1/feab46062803513d6a8307c74b0084265855de1a/logging-interceptor-3.8.1.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.web3j/crypto/4.5.6/78a1d96760a8c51e3e95e729666dc1b1883b5423/crypto-4.5.6.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.web3j/abi/4.5.6/56b60151f15cbe5f34c65ec51a012b8151409bee/abi-4.5.6.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.github.jnr/jnr-unixsocket/0.21/d4351c82cd6d03c0359191e10ded45dc603efb81/jnr-unixsocket-0.21.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.web3j/tuples/4.5.6/b2932f5f4132aa5b74e2e97695a31cd05f6d60f3/tuples-4.5.6.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.reactivex.rxjava2/rxjava/2.2.2/db2277cb0641bd8bd2f491fab555d37345351d6/rxjava-2.2.2.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.java-websocket/Java-WebSocket/1.3.8/5ed9421c83110a74f6c805cdef3060faa44f5b68/Java-WebSocket-1.3.8.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.netty/netty-codec-socks/4.1.42.Final/dd355f01dc00f93aaebe805b05026d7cf57c60ec/netty-codec-socks-4.1.42.Final.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.netty/netty-codec/4.1.42.Final/b1d5ed85a558fbbadc2783f869fbd0adcd32b07b/netty-codec-4.1.42.Final.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.netty/netty-codec-dns/4.1.42.Final/67528de727bae6c4a2ff4dce0afa2a4c3c8f60bd/netty-codec-dns-4.1.42.Final.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.web3j/rlp/4.5.6/a40ddbdcbc70a8163fbd4c450bcc5be620129a66/rlp-4.5.6.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.web3j/utils/4.5.6/b17458a68a1f3df320215da5629ceb32733ad7d1/utils-4.5.6.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.github.jnr/jnr-enxio/0.19/c7664aa74f424748b513619d71141a249fb74e3e/jnr-enxio-0.19.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.github.jnr/jnr-posix/3.0.47/317088ec3e1acc75da591edc38689e46deb2a28a/jnr-posix-3.0.47.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.github.jnr/jnr-constants/0.9.11/b8609839a9e71c4df0d409a8175bcc7bbebe2224/jnr-constants-0.9.11.jar:/Users/aj/Documents/code/teku/data/beaconrestapi/out/production/classes:/Users/aj/Documents/code/teku/data/beaconrestapi/out/production/resources:/Users/aj/Documents/code/teku/data/provider/out/production/classes:/Users/aj/Documents/code/teku/sync/out/production/classes:/Users/aj/Documents/code/teku/networking/eth2/out/production/classes:/Users/aj/Documents/code/teku/networking/eth2/out/production/resources:/Users/aj/Documents/code/teku/validator/api/out/production/classes:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.tuweni/tuweni-config/0.10.0/8d65342e400d1837828efa38264c1b69c743ad2f/tuweni-config-0.10.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.tuweni/tuweni-kv/0.10.0/5acbd1ab7db4e65da82d7d4b3e337eacf8f2f516/tuweni-kv-0.10.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.tuweni/tuweni-rlpx/0.10.0/76701e240e454bc6e04b1669b95242c34d5a1f79/tuweni-rlpx-0.10.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/tech.pegasys.discovery/discovery/0.3.5/6f83c798c6319f775aac21d7a8bc815155cb8201/discovery-0.3.5.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.projectreactor/reactor-core/3.3.0.RELEASE/4824f980e5696e95289d5fb0de62e3d34508b358/reactor-core-3.3.0.RELEASE.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.xerial.snappy/snappy-java/1.1.7.3/241bb74a1eb37d68a4e324a4bc3865427de0a62d/snappy-java-1.1.7.3.jar:/Users/aj/Documents/code/teku/validator/anticorruption/out/production/classes:/Users/aj/Documents/code/teku/protoarray/out/production/classes:/Users/aj/.gradle/caches/modules-2/files-2.1/org.quartz-scheduler/quartz/2.3.2/18a6d6b5a40b77bd060b34cb9f2acadc4bae7c8a/quartz-2.3.2.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.mapdb/mapdb/3.0.7/f90c2bae858cd1eb28f52d16ebaf920b32b8287d/mapdb-3.0.7.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.rocksdb/rocksdbjni/6.4.6/c03101c2386a1e1d66efd54ab524191fe7c25a42/rocksdbjni-6.4.6.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.googlecode.json-simple/json-simple/1.1/5e303a03d04e6788dddfa3655272580ae0fc13bb/json-simple-1.1.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.miracl.milagro.amcl/milagro-crypto-java/0.4.0/ebe6bca0c7a1b82dac212c042b4840da6fb51120/milagro-crypto-java-0.4.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-compress/1.20/b8df472b31e1f17c232d2ad78ceb1c84e00c641b/commons-compress-1.20.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlinx/kotlinx-coroutines-core/1.3.0-M1/a89c1a47eb68d6795e2737d84ba1bd81e146ac03/kotlinx-coroutines-core-1.3.0-M1.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-jdk8/1.3.61/e91d61b7cfd9a45566b580fef18bbd5c32d505b5/kotlin-stdlib-jdk8-1.3.61.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.prometheus/simpleclient_pushgateway/0.7.0/e5ac7816a60c99689bac0fe94bfab67765172eaf/simpleclient_pushgateway-0.7.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.prometheus/simpleclient_common/0.7.0/a598922ebc3f63737d5e47b8a231f0891e6e58ac/simpleclient_common-0.7.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.prometheus/simpleclient_hotspot/0.7.0/f95324b295f30014bb2744ddda7a950f05b20aa4/simpleclient_hotspot-0.7.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.prometheus/simpleclient/0.7.0/cf856bef2a2ac2af16c8e057d5f76514bbd991e9/simpleclient-0.7.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/1.7.28/2cd9b264f76e3d087ee21bfc99305928e1bdb443/slf4j-api-1.7.28.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.swagger.core.v3/swagger-core/2.1.2/c093f79f9e5f19fe5b15072e85b9e00918a303a4/swagger-core-2.1.2.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-kotlin/2.11.0/b55296d24e99b3b010c9f765d50ee6b619bb2631/jackson-module-kotlin-2.11.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.javalin/javalin/3.7.0/a357d0953f52691f2a7d1b6037174ed6592c6de1/javalin-3.7.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.swagger.core.v3/swagger-annotations/2.1.2/d407a33aa71444802c640080eb4d5f499b027f96/swagger-annotations-2.1.2.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.github.classgraph/classgraph/4.8.34/f1377a8f952c9c8999244ca30d82e0ce2d75ed4a/classgraph-4.8.34.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.webjars/swagger-ui/3.24.3/ed6a10c742a866e885aa111ca98af1c673b02b61/swagger-ui-3.24.3.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.tuweni/tuweni-concurrent-coroutines/0.10.0/6f79a3777be6306106162830217021f7b2a36123/tuweni-concurrent-coroutines-0.10.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlinx/kotlinx-coroutines-guava/1.1.1/b77fc11dceae5e2e486582775318794854a2f7c6/kotlinx-coroutines-guava-1.1.1.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlinx/kotlinx-coroutines-jdk8/1.1.1/830dbee69f68af66803b8b426e0a5f48be7a7db4/kotlinx-coroutines-jdk8-1.1.1.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.tuweni/tuweni-rlp/0.10.0/6901c2409947299ce753cc8d1e31e8f5c2df20e8/tuweni-rlp-0.10.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.logl/logl-api/0.3.1/4eee3a50fba1a4b8bbed52e769d429830e48b4e6/logl-api-0.3.1.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.reactivestreams/reactive-streams/1.0.3/d9fb7a7926ffa635b3dcaa5049fb2bfa25b3e7d0/reactive-streams-1.0.3.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP-java7/2.4.13/3e441eddedb374d4de8e3abbb0c90997f51cc97b/HikariCP-java7-2.4.13.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.collections/eclipse-collections-forkjoin/10.2.0/947281cdbc73d557100f354ece57c94cbcf78457/eclipse-collections-forkjoin-10.2.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.collections/eclipse-collections/10.2.0/189c578f7ae883a7d319f9925a9fa3297a382bf8/eclipse-collections-10.2.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.collections/eclipse-collections-api/10.2.0/adc34f171dbb7f9ab78b28eac563f2749ec853dd/eclipse-collections-api-10.2.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/net.jpountz.lz4/lz4/1.3.0/c708bb2590c0652a642236ef45d9f99ff842a2ce/lz4-1.3.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.mapdb/elsa/3.0.0-M5/d7c1920d084e741e04844f512af24012e745e809/elsa-3.0.0-M5.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-math3/3.6.1/e4ba98f1d4b3c80ec46392f25e094a6a2e58fcbf/commons-math3-3.6.1.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-jdk7/1.3.61/70dffc5f8ac5ea7c34f30deac5b9d8b1d48af066/kotlin-stdlib-jdk7-1.3.61.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.github.jnr/jffi/1.2.17/19335d57d54d54680bdf5aa2fe92cd41f5cd29ee/jffi-1.2.17-native.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.10.1/52ee272b0181a1c0df5c931235c494b1e0e022d0/jackson-datatype-jsr310-2.10.1.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/io.swagger.core.v3/swagger-models/2.1.2/e7edeed6456a16d707542c003af03a594ecafe3a/swagger-models-2.1.2.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/2.3.2/8d49996a4338670764d7ca4b85a1c4ccf7fe665d/jakarta.xml.bind-api-2.3.2.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/jakarta.validation/jakarta.validation-api/2.0.2/5eacc6522521f7eacb081f95cee1e231648461e7/jakarta.validation-api-2.0.2.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-reflect/1.3.61/2e07c9a84c9e118efb70eede7e579fd663932122/kotlin-reflect-1.3.61.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-webapp/9.4.25.v20191220/d9f0c70493252c7cf9b2952b88051c999cf9f53c/jetty-webapp-9.4.25.v20191220.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty.websocket/websocket-server/9.4.25.v20191220/642fea5ce3946ba3654d27b516c2315a0d939f7c/websocket-server-9.4.25.v20191220.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-server/9.4.25.v20191220/5b352c9f9135a1c20e4808e5cb1d84fbddfdc460/jetty-server-9.4.25.v20191220.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/1.2.1/562a587face36ec7eff2db7f2fc95425c6602bc1/jakarta.activation-api-1.2.1.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-servlet/9.4.25.v20191220/bee77d6a4f87dc90d5bc142cbd6cef470ec46aae/jetty-servlet-9.4.25.v20191220.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-xml/9.4.25.v20191220/697a266475607faf3633cea196654feaf40a2ff8/jetty-xml-9.4.25.v20191220.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty.websocket/websocket-servlet/9.4.25.v20191220/faf031394980ae052eab38374e564b61fe35ea81/websocket-servlet-9.4.25.v20191220.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty.websocket/websocket-client/9.4.25.v20191220/3c20f5d2f63767f7809d39c405e133647aa6fce1/websocket-client-9.4.25.v20191220.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-http/9.4.25.v20191220/c3aa7da362f1a492667ce754ba16b2535b793668/jetty-http-9.4.25.v20191220.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty.websocket/websocket-common/9.4.25.v20191220/98c31c8baf4b20aea05d5a20d8dcdcd65bad2204/websocket-common-9.4.25.v20191220.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/javax.servlet/javax.servlet-api/3.1.0/3cd63d075497751784b2fa84be59432f4905bf7c/javax.servlet-api-3.1.0.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-io/9.4.25.v20191220/3eb34b5481012701de0ea9dfaf2bdf1dbb947b16/jetty-io-9.4.25.v20191220.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-security/9.4.25.v20191220/593ff5b5dfd5bf973184329f5d1209b9a411ec12/jetty-security-9.4.25.v20191220.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-util/9.4.25.v20191220/fd8b642cc16728f1c36ca6a64653cb1b26ec0232/jetty-util-9.4.25.v20191220.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty.websocket/websocket-api/9.4.25.v20191220/214deebd21e03eff107d2c2540d70770c154bc1e/websocket-api-9.4.25.v20191220.jar:/Users/aj/.gradle/caches/modules-2/files-2.1/org.eclipse.jetty/jetty-client/9.4.25.v20191220/a845f43d3b5bb457866a8e0c2f728c388e181a0a/jetty-client-9.4.25.v20191220.jar tech.pegasys.teku.Teku --config-file tmp/config.yaml | |
| Listening for transport dt_socket at address: 8000 | |
| 2020-05-28 14:48:35.262+10:00 | main | DEBUG | InternalLoggerFactory | Using SLF4J as the default logging framework | |
| 2020-05-28 14:48:35.271+10:00 | main | DEBUG | ResourceLeakDetector | -Dio.netty.leakDetection.level: simple | |
| 2020-05-28 14:48:35.272+10:00 | main | DEBUG | ResourceLeakDetector | -Dio.netty.leakDetection.targetRecords: 4 | |
| 2020-05-28 14:48:35.286+10:00 | main | DEBUG | InternalThreadLocalMap | -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024 | |
| 2020-05-28 14:48:35.286+10:00 | main | DEBUG | InternalThreadLocalMap | -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096 | |
| 2020-05-28 14:48:35.296+10:00 | main | DEBUG | MultithreadEventLoopGroup | -Dio.netty.eventLoopThreads: 24 | |
| 2020-05-28 14:48:35.324+10:00 | main | DEBUG | NioEventLoop | -Dio.netty.noKeySetOptimization: false | |
| 2020-05-28 14:48:35.324+10:00 | main | DEBUG | NioEventLoop | -Dio.netty.selectorAutoRebuildThreshold: 512 | |
| 2020-05-28 14:48:35.346+10:00 | main | DEBUG | PlatformDependent | Platform: MacOS | |
| 2020-05-28 14:48:35.348+10:00 | main | DEBUG | PlatformDependent0 | -Dio.netty.noUnsafe: false | |
| 2020-05-28 14:48:35.348+10:00 | main | DEBUG | PlatformDependent0 | Java version: 11 | |
| 2020-05-28 14:48:35.350+10:00 | main | DEBUG | PlatformDependent0 | sun.misc.Unsafe.theUnsafe: available | |
| 2020-05-28 14:48:35.351+10:00 | main | DEBUG | PlatformDependent0 | sun.misc.Unsafe.copyMemory: available | |
| 2020-05-28 14:48:35.352+10:00 | main | DEBUG | PlatformDependent0 | java.nio.Buffer.address: available | |
| 2020-05-28 14:48:35.352+10:00 | main | DEBUG | PlatformDependent0 | direct buffer constructor: unavailable | |
| java.lang.UnsupportedOperationException: Reflective setAccessible(true) disabled | |
| at io.netty.util.internal.ReflectionUtil.trySetAccessible(ReflectionUtil.java:31) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.util.internal.PlatformDependent0$4.run(PlatformDependent0.java:224) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at java.security.AccessController.doPrivileged(Native Method) ~[?:?] | |
| at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:218) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:214) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:82) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.nio.NioEventLoop.newTaskQueue(NioEventLoop.java:269) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.util.concurrent.SingleThreadEventExecutor.<init>(SingleThreadEventExecutor.java:166) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.SingleThreadEventLoop.<init>(SingleThreadEventLoop.java:58) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.nio.NioEventLoop.<init>(NioEventLoop.java:135) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.nio.NioEventLoopGroup.newChild(NioEventLoopGroup.java:127) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.nio.NioEventLoopGroup.newChild(NioEventLoopGroup.java:36) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.util.concurrent.MultithreadEventExecutorGroup.<init>(MultithreadEventExecutorGroup.java:84) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.util.concurrent.MultithreadEventExecutorGroup.<init>(MultithreadEventExecutorGroup.java:58) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.util.concurrent.MultithreadEventExecutorGroup.<init>(MultithreadEventExecutorGroup.java:47) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.MultithreadEventLoopGroup.<init>(MultithreadEventLoopGroup.java:59) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.nio.NioEventLoopGroup.<init>(NioEventLoopGroup.java:77) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.nio.NioEventLoopGroup.<init>(NioEventLoopGroup.java:72) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.nio.NioEventLoopGroup.<init>(NioEventLoopGroup.java:59) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.vertx.core.net.impl.transport.Transport.eventLoopGroup(Transport.java:148) ~[vertx-core-3.8.3.jar:3.8.3] | |
| at io.vertx.core.impl.VertxImpl.<init>(VertxImpl.java:143) ~[vertx-core-3.8.3.jar:3.8.3] | |
| at io.vertx.core.impl.VertxImpl.vertx(VertxImpl.java:92) ~[vertx-core-3.8.3.jar:3.8.3] | |
| at io.vertx.core.impl.VertxFactoryImpl.vertx(VertxFactoryImpl.java:40) ~[vertx-core-3.8.3.jar:3.8.3] | |
| at io.vertx.core.impl.VertxFactoryImpl.vertx(VertxFactoryImpl.java:32) ~[vertx-core-3.8.3.jar:3.8.3] | |
| at io.vertx.core.impl.VertxFactoryImpl.vertx(VertxFactoryImpl.java:27) ~[vertx-core-3.8.3.jar:3.8.3] | |
| at io.vertx.core.Vertx.vertx(Vertx.java:75) ~[vertx-core-3.8.3.jar:3.8.3] | |
| at tech.pegasys.teku.BeaconNode.<init>(BeaconNode.java:39) ~[classes/:?] | |
| at tech.pegasys.teku.Teku.start(Teku.java:38) ~[classes/:?] | |
| at tech.pegasys.teku.cli.BeaconNodeCommand.call(BeaconNodeCommand.java:245) [classes/:?] | |
| at tech.pegasys.teku.cli.BeaconNodeCommand.call(BeaconNodeCommand.java:61) [classes/:?] | |
| at picocli.CommandLine.executeUserObject(CommandLine.java:1783) [picocli-4.2.0.jar:4.2.0] | |
| at picocli.CommandLine.access$900(CommandLine.java:145) [picocli-4.2.0.jar:4.2.0] | |
| at picocli.CommandLine$RunLast.executeUserObjectOfLastSubcommandWithSameParent(CommandLine.java:2150) [picocli-4.2.0.jar:4.2.0] | |
| at picocli.CommandLine$RunLast.handle(CommandLine.java:2144) [picocli-4.2.0.jar:4.2.0] | |
| at picocli.CommandLine$RunLast.handle(CommandLine.java:2108) [picocli-4.2.0.jar:4.2.0] | |
| at picocli.CommandLine$AbstractParseResultHandler.execute(CommandLine.java:1975) [picocli-4.2.0.jar:4.2.0] | |
| at picocli.CommandLine.execute(CommandLine.java:1904) [picocli-4.2.0.jar:4.2.0] | |
| at tech.pegasys.teku.cli.BeaconNodeCommand.parse(BeaconNodeCommand.java:194) [classes/:?] | |
| at tech.pegasys.teku.Teku.main(Teku.java:31) [classes/:?] | |
| 2020-05-28 14:48:35.365+10:00 | main | DEBUG | PlatformDependent0 | java.nio.Bits.unaligned: available, true | |
| 2020-05-28 14:48:35.366+10:00 | main | DEBUG | PlatformDependent0 | jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable | |
| java.lang.IllegalAccessException: class io.netty.util.internal.PlatformDependent0$6 cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc to unnamed module @b25b095 | |
| at jdk.internal.reflect.Reflection.newIllegalAccessException(Reflection.java:361) ~[?:?] | |
| at java.lang.reflect.AccessibleObject.checkAccess(AccessibleObject.java:591) ~[?:?] | |
| at java.lang.reflect.Method.invoke(Method.java:558) ~[?:?] | |
| at io.netty.util.internal.PlatformDependent0$6.run(PlatformDependent0.java:334) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at java.security.AccessController.doPrivileged(Native Method) ~[?:?] | |
| at io.netty.util.internal.PlatformDependent0.<clinit>(PlatformDependent0.java:325) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:214) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.util.internal.PlatformDependent.<clinit>(PlatformDependent.java:82) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.nio.NioEventLoop.newTaskQueue(NioEventLoop.java:269) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.util.concurrent.SingleThreadEventExecutor.<init>(SingleThreadEventExecutor.java:166) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.SingleThreadEventLoop.<init>(SingleThreadEventLoop.java:58) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.nio.NioEventLoop.<init>(NioEventLoop.java:135) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.nio.NioEventLoopGroup.newChild(NioEventLoopGroup.java:127) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.nio.NioEventLoopGroup.newChild(NioEventLoopGroup.java:36) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.util.concurrent.MultithreadEventExecutorGroup.<init>(MultithreadEventExecutorGroup.java:84) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.util.concurrent.MultithreadEventExecutorGroup.<init>(MultithreadEventExecutorGroup.java:58) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.util.concurrent.MultithreadEventExecutorGroup.<init>(MultithreadEventExecutorGroup.java:47) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.MultithreadEventLoopGroup.<init>(MultithreadEventLoopGroup.java:59) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.nio.NioEventLoopGroup.<init>(NioEventLoopGroup.java:77) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.nio.NioEventLoopGroup.<init>(NioEventLoopGroup.java:72) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.netty.channel.nio.NioEventLoopGroup.<init>(NioEventLoopGroup.java:59) ~[netty-all-4.1.36.Final.jar:4.1.36.Final] | |
| at io.vertx.core.net.impl.transport.Transport.eventLoopGroup(Transport.java:148) ~[vertx-core-3.8.3.jar:3.8.3] | |
| at io.vertx.core.impl.VertxImpl.<init>(VertxImpl.java:143) ~[vertx-core-3.8.3.jar:3.8.3] | |
| at io.vertx.core.impl.VertxImpl.vertx(VertxImpl.java:92) ~[vertx-core-3.8.3.jar:3.8.3] | |
| at io.vertx.core.impl.VertxFactoryImpl.vertx(VertxFactoryImpl.java:40) ~[vertx-core-3.8.3.jar:3.8.3] | |
| at io.vertx.core.impl.VertxFactoryImpl.vertx(VertxFactoryImpl.java:32) ~[vertx-core-3.8.3.jar:3.8.3] | |
| at io.vertx.core.impl.VertxFactoryImpl.vertx(VertxFactoryImpl.java:27) ~[vertx-core-3.8.3.jar:3.8.3] | |
| at io.vertx.core.Vertx.vertx(Vertx.java:75) ~[vertx-core-3.8.3.jar:3.8.3] | |
| at tech.pegasys.teku.BeaconNode.<init>(BeaconNode.java:39) ~[classes/:?] | |
| at tech.pegasys.teku.Teku.start(Teku.java:38) ~[classes/:?] | |
| at tech.pegasys.teku.cli.BeaconNodeCommand.call(BeaconNodeCommand.java:245) [classes/:?] | |
| at tech.pegasys.teku.cli.BeaconNodeCommand.call(BeaconNodeCommand.java:61) [classes/:?] | |
| at picocli.CommandLine.executeUserObject(CommandLine.java:1783) [picocli-4.2.0.jar:4.2.0] | |
| at picocli.CommandLine.access$900(CommandLine.java:145) [picocli-4.2.0.jar:4.2.0] | |
| at picocli.CommandLine$RunLast.executeUserObjectOfLastSubcommandWithSameParent(CommandLine.java:2150) [picocli-4.2.0.jar:4.2.0] | |
| at picocli.CommandLine$RunLast.handle(CommandLine.java:2144) [picocli-4.2.0.jar:4.2.0] | |
| at picocli.CommandLine$RunLast.handle(CommandLine.java:2108) [picocli-4.2.0.jar:4.2.0] | |
| at picocli.CommandLine$AbstractParseResultHandler.execute(CommandLine.java:1975) [picocli-4.2.0.jar:4.2.0] | |
| at picocli.CommandLine.execute(CommandLine.java:1904) [picocli-4.2.0.jar:4.2.0] | |
| at tech.pegasys.teku.cli.BeaconNodeCommand.parse(BeaconNodeCommand.java:194) [classes/:?] | |
| at tech.pegasys.teku.Teku.main(Teku.java:31) [classes/:?] | |
| 2020-05-28 14:48:35.367+10:00 | main | DEBUG | PlatformDependent0 | java.nio.DirectByteBuffer.<init>(long, int): unavailable | |
| 2020-05-28 14:48:35.367+10:00 | main | DEBUG | PlatformDependent | sun.misc.Unsafe: available | |
| 2020-05-28 14:48:35.367+10:00 | main | DEBUG | PlatformDependent | maxDirectMemory: 5368709120 bytes (maybe) | |
| 2020-05-28 14:48:35.368+10:00 | main | DEBUG | PlatformDependent | -Dio.netty.tmpdir: /var/folders/y5/11pn6x114xb7gxngshh4ljbw0000gn/T (java.io.tmpdir) | |
| 2020-05-28 14:48:35.368+10:00 | main | DEBUG | PlatformDependent | -Dio.netty.bitMode: 64 (sun.arch.data.model) | |
| 2020-05-28 14:48:35.369+10:00 | main | DEBUG | PlatformDependent | -Dio.netty.maxDirectMemory: -1 bytes | |
| 2020-05-28 14:48:35.369+10:00 | main | DEBUG | PlatformDependent | -Dio.netty.uninitializedArrayAllocationThreshold: -1 | |
| 2020-05-28 14:48:35.371+10:00 | main | DEBUG | CleanerJava9 | java.nio.ByteBuffer.cleaner(): available | |
| 2020-05-28 14:48:35.371+10:00 | main | DEBUG | PlatformDependent | -Dio.netty.noPreferDirect: false | |
| 2020-05-28 14:48:35.382+10:00 | main | DEBUG | PlatformDependent | org.jctools-core.MpscChunkedArrayQueue: available | |
| 2020-05-28 14:48:35.390+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@11b377c5 | |
| 2020-05-28 14:48:35.391+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@5833f5cd | |
| 2020-05-28 14:48:35.391+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@10fbbdb | |
| 2020-05-28 14:48:35.391+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@23f3dbf0 | |
| 2020-05-28 14:48:35.391+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@31d6f3fe | |
| 2020-05-28 14:48:35.392+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@760cf594 | |
| 2020-05-28 14:48:35.392+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@aa149ed | |
| 2020-05-28 14:48:35.392+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@37303f12 | |
| 2020-05-28 14:48:35.392+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@31ff6309 | |
| 2020-05-28 14:48:35.392+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@204e90f7 | |
| 2020-05-28 14:48:35.392+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@20a05b32 | |
| 2020-05-28 14:48:35.393+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@165e389b | |
| 2020-05-28 14:48:35.393+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@5c73f672 | |
| 2020-05-28 14:48:35.393+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@8ee0c23 | |
| 2020-05-28 14:48:35.393+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@2ab5afc7 | |
| 2020-05-28 14:48:35.393+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@4dc8c0ea | |
| 2020-05-28 14:48:35.393+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@e4b6f47 | |
| 2020-05-28 14:48:35.394+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@763cf5b9 | |
| 2020-05-28 14:48:35.394+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@71f0b72e | |
| 2020-05-28 14:48:35.394+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@7a34f66a | |
| 2020-05-28 14:48:35.394+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@2f508f3c | |
| 2020-05-28 14:48:35.394+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@3ed03652 | |
| 2020-05-28 14:48:35.394+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@4aedaf61 | |
| 2020-05-28 14:48:35.395+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@173797f0 | |
| 2020-05-28 14:48:35.396+10:00 | main | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@35e8316e | |
| 2020-05-28 14:48:35.428+10:00 | main | DEBUG | DefaultDnsServerAddressStreamProvider | Default DNS servers: [/10.0.1.201:53] (sun.net.dns.ResolverConfiguration) | |
| 2020-05-28 14:48:35.435+10:00 | main | DEBUG | NetUtil | -Djava.net.preferIPv4Stack: false | |
| 2020-05-28 14:48:35.436+10:00 | main | DEBUG | NetUtil | -Djava.net.preferIPv6Addresses: false | |
| 2020-05-28 14:48:35.438+10:00 | main | DEBUG | NetUtil | Loopback interface: lo0 (lo0, 0:0:0:0:0:0:0:1%lo0) | |
| 2020-05-28 14:48:35.438+10:00 | main | DEBUG | NetUtil | Failed to get SOMAXCONN from sysctl and file /proc/sys/net/core/somaxconn. Default: 128 | |
| 2020-05-28 14:48:35.657+10:00 | main | INFO | StdSchedulerFactory | Using default implementation for ThreadExecutor | |
| 2020-05-28 14:48:35.660+10:00 | main | INFO | SimpleThreadPool | Job execution threads will use class loader of thread: main | |
| 2020-05-28 14:48:35.673+10:00 | main | INFO | SchedulerSignalerImpl | Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl | |
| 2020-05-28 14:48:35.673+10:00 | main | INFO | QuartzScheduler | Quartz Scheduler v.2.3.2 created. | |
| 2020-05-28 14:48:35.674+10:00 | main | INFO | RAMJobStore | RAMJobStore initialized. | |
| 2020-05-28 14:48:35.675+10:00 | main | INFO | QuartzScheduler | Scheduler meta-data: Quartz Scheduler (v2.3.2) 'DefaultQuartzScheduler' with instanceId 'NON_CLUSTERED' | |
| Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. | |
| NOT STARTED. | |
| Currently in standby mode. | |
| Number of jobs executed: 0 | |
| Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. | |
| Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. | |
| 2020-05-28 14:48:35.675+10:00 | main | INFO | StdSchedulerFactory | Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties' | |
| 2020-05-28 14:48:35.675+10:00 | main | INFO | StdSchedulerFactory | Quartz scheduler version: 2.3.2 | |
| 2020-05-28 14:48:35.705+10:00 | main | DEBUG | ValidatorLoader | Loaded validators: | |
| 2020-05-28 14:48:35,747 main INFO Custom logging configuration applied from: /Users/aj/Documents/code/teku/tmp/log4j.xml | |
| 2020-05-28 14:48:35.748+10:00 | main | INFO | teku-status-log | Using data path: /tmp/teku | |
| 2020-05-28 14:48:35.750+10:00 | main | INFO | MetricsHttpService | Starting metrics http service on 127.0.0.1:8009 | |
| 2020-05-28 14:48:35.826+10:00 | main | DEBUG | PooledByteBufAllocator | -Dio.netty.allocator.numHeapArenas: 24 | |
| 2020-05-28 14:48:35.826+10:00 | main | DEBUG | PooledByteBufAllocator | -Dio.netty.allocator.numDirectArenas: 24 | |
| 2020-05-28 14:48:35.826+10:00 | main | DEBUG | PooledByteBufAllocator | -Dio.netty.allocator.pageSize: 8192 | |
| 2020-05-28 14:48:35.826+10:00 | main | DEBUG | PooledByteBufAllocator | -Dio.netty.allocator.maxOrder: 11 | |
| 2020-05-28 14:48:35.826+10:00 | main | DEBUG | PooledByteBufAllocator | -Dio.netty.allocator.chunkSize: 16777216 | |
| 2020-05-28 14:48:35.826+10:00 | main | DEBUG | PooledByteBufAllocator | -Dio.netty.allocator.tinyCacheSize: 512 | |
| 2020-05-28 14:48:35.826+10:00 | main | DEBUG | PooledByteBufAllocator | -Dio.netty.allocator.smallCacheSize: 256 | |
| 2020-05-28 14:48:35.826+10:00 | main | DEBUG | PooledByteBufAllocator | -Dio.netty.allocator.normalCacheSize: 64 | |
| 2020-05-28 14:48:35.826+10:00 | main | DEBUG | PooledByteBufAllocator | -Dio.netty.allocator.maxCachedBufferCapacity: 32768 | |
| 2020-05-28 14:48:35.826+10:00 | main | DEBUG | PooledByteBufAllocator | -Dio.netty.allocator.cacheTrimInterval: 8192 | |
| 2020-05-28 14:48:35.827+10:00 | main | DEBUG | PooledByteBufAllocator | -Dio.netty.allocator.cacheTrimIntervalMillis: 0 | |
| 2020-05-28 14:48:35.827+10:00 | main | DEBUG | PooledByteBufAllocator | -Dio.netty.allocator.useCacheForAllThreads: true | |
| 2020-05-28 14:48:35.827+10:00 | main | DEBUG | PooledByteBufAllocator | -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023 | |
| 2020-05-28 14:48:35.900+10:00 | main | DEBUG | DefaultChannelId | -Dio.netty.processId: 38962 (auto-detected) | |
| 2020-05-28 14:48:35.903+10:00 | main | DEBUG | DefaultChannelId | -Dio.netty.machineId: f8:ff:c2:ff:fe:5f:35:78 (auto-detected) | |
| 2020-05-28 14:48:35.927+10:00 | main | DEBUG | ByteBufUtil | -Dio.netty.allocator.type: pooled | |
| 2020-05-28 14:48:35.928+10:00 | main | DEBUG | ByteBufUtil | -Dio.netty.threadLocalDirectBufferSize: 0 | |
| 2020-05-28 14:48:35.928+10:00 | main | DEBUG | ByteBufUtil | -Dio.netty.maxThreadLocalCharBufferSize: 16384 | |
| 2020-05-28 14:48:35.954+10:00 | main | INFO | QuartzScheduler | Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started. | |
| 2020-05-28 14:48:35.955+10:00 | vert.x-eventloop-thread-1 | INFO | MetricsHttpService | Metrics service started and listening on 8009:8009 | |
| 2020-05-28 14:48:35.957+10:00 | main | DEBUG | BeaconChainController | Starting BeaconChainController | |
| 2020-05-28 14:48:35.965+10:00 | main | INFO | teku-status-log | Initializing storage | |
| 2020-05-28 14:48:35.970+10:00 | main | INFO | VersionedDatabaseFactory | Data directory set to: /tmp/teku | |
| 2020-05-28 14:48:36.587+10:00 | main | INFO | V3RocksDbDao | Initializing hot states from hot blocks | |
| 2020-05-28 14:48:36.587+10:00 | main | INFO | V3RocksDbDao | Finished initializing hot states from hot blocks | |
| 2020-05-28 14:48:46.095+10:00 | StorageUpdateChannel-0 | INFO | teku-status-log | Storage initialization complete | |
| 2020-05-28 14:48:46.096+10:00 | StorageUpdateChannel-0 | DEBUG | BeaconChainController | BeaconChainController.initStateTransition() | |
| 2020-05-28 14:48:46.099+10:00 | StorageUpdateChannel-0 | DEBUG | BeaconChainController | BeaconChainController.initForkChoice() | |
| 2020-05-28 14:48:46.372+10:00 | StorageUpdateChannel-0 | DEBUG | BeaconChainController | BeaconChainController.initBlockImporter() | |
| 2020-05-28 14:48:46.378+10:00 | StorageUpdateChannel-0 | DEBUG | BeaconChainController | BeaconChainController.initCombinedChainDataClient() | |
| 2020-05-28 14:48:46.379+10:00 | StorageUpdateChannel-0 | DEBUG | BeaconChainController | BeaconChainController.initMetrics() | |
| 2020-05-28 14:48:46.387+10:00 | StorageUpdateChannel-0 | DEBUG | BeaconChainController | BeaconChainController.initAttestationPool() | |
| 2020-05-28 14:48:46.389+10:00 | StorageUpdateChannel-0 | DEBUG | BeaconChainController | BeaconChainController.initEth1DataCache | |
| 2020-05-28 14:48:46.391+10:00 | StorageUpdateChannel-0 | DEBUG | BeaconChainController | BeaconChainController.initDepositProvider() | |
| 2020-05-28 14:48:46.401+10:00 | StorageUpdateChannel-0 | DEBUG | BeaconChainController | BeaconChainController.initP2PNetwork() | |
| 2020-05-28 14:48:46.401+10:00 | StorageUpdateChannel-0 | INFO | BeaconChainController | Private key file not supplied. A private key will be generated | |
| 2020-05-28 14:48:46.685+10:00 | StorageUpdateChannel-0 | DEBUG | AbstractByteBuf | -Dio.netty.buffer.checkAccessible: true | |
| 2020-05-28 14:48:46.686+10:00 | StorageUpdateChannel-0 | DEBUG | AbstractByteBuf | -Dio.netty.buffer.checkBounds: true | |
| 2020-05-28 14:48:46.688+10:00 | StorageUpdateChannel-0 | DEBUG | ResourceLeakDetectorFactory | Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@9c7509d | |
| 2020-05-28 14:48:46.844+10:00 | StorageUpdateChannel-0 | DEBUG | BeaconChainController | BeaconChainController.initSyncManager() | |
| 2020-05-28 14:48:46.856+10:00 | StorageUpdateChannel-0 | DEBUG | BeaconChainController | BeaconChainController.initSyncStateTracker | |
| 2020-05-28 14:48:46.858+10:00 | StorageUpdateChannel-0 | DEBUG | BeaconChainController | BeaconChainController.initValidatorApiHandler() | |
| 2020-05-28 14:48:46.863+10:00 | StorageUpdateChannel-0 | DEBUG | BeaconChainController | BeaconChainController.initRestAPI() | |
| 2020-05-28 14:48:46.974+10:00 | StorageUpdateChannel-0 | DEBUG | log | Logging to org.apache.logging.slf4j.Log4jLogger@17573185 via org.eclipse.jetty.util.log.Slf4jLog | |
| 2020-05-28 14:48:46.977+10:00 | StorageUpdateChannel-0 | INFO | log | Logging initialized @13897ms to org.eclipse.jetty.util.log.Slf4jLog | |
| 2020-05-28 14:48:47.083+10:00 | StorageUpdateChannel-0 | INFO | LibP2PNetwork | Starting libp2p network... | |
| 2020-05-28 14:48:47.084+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@9b52c3 | |
| 2020-05-28 14:48:47.084+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@1451c36e | |
| 2020-05-28 14:48:47.084+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@47496802 | |
| 2020-05-28 14:48:47.085+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@1d1e2762 | |
| 2020-05-28 14:48:47.085+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@67034692 | |
| 2020-05-28 14:48:47.085+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@7d53b3af | |
| 2020-05-28 14:48:47.085+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@7156cd7f | |
| 2020-05-28 14:48:47.085+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@1d9fd100 | |
| 2020-05-28 14:48:47.085+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@60d523f7 | |
| 2020-05-28 14:48:47.085+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@fb3a89 | |
| 2020-05-28 14:48:47.085+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@470132dc | |
| 2020-05-28 14:48:47.086+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@2475eced | |
| 2020-05-28 14:48:47.086+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@6df6a90f | |
| 2020-05-28 14:48:47.086+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@3400e94a | |
| 2020-05-28 14:48:47.086+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@7a59aac4 | |
| 2020-05-28 14:48:47.086+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@714023e6 | |
| 2020-05-28 14:48:47.086+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@29a65210 | |
| 2020-05-28 14:48:47.086+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@1adfb4d7 | |
| 2020-05-28 14:48:47.087+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@2de722c2 | |
| 2020-05-28 14:48:47.087+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@5d487b8b | |
| 2020-05-28 14:48:47.087+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@46e594e0 | |
| 2020-05-28 14:48:47.087+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@21fbf9e7 | |
| 2020-05-28 14:48:47.087+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@359e2e28 | |
| 2020-05-28 14:48:47.087+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@2b149f33 | |
| 2020-05-28 14:48:47.087+10:00 | StorageUpdateChannel-0 | TRACE | NioEventLoop | instrumented a special java.util.Set into: sun.nio.ch.KQueueSelectorImpl@41bc4c25 | |
| 2020-05-28 14:48:47.093+10:00 | StorageUpdateChannel-0 | INFO | teku-status-log | Listening for connections on: /ip4/10.0.1.100/tcp/9005/p2p/16Uiu2HAmTAvd4REB2vSkAPjeq5EDHdm6kbenudrAcEcpevRcXfQF | |
| 2020-05-28 14:48:47.093+10:00 | StorageUpdateChannel-0 | DEBUG | ConnectionManager | Connecting to peer 16Uiu2HAmEh2HHJSBdsP5hs3wkcquzR6vMGyq4gdTWz2pUJ81KgHn | |
| 2020-05-28 14:48:47.094+10:00 | StorageUpdateChannel-0 | DEBUG | PeerManager | Connecting to 16Uiu2HAmEh2HHJSBdsP5hs3wkcquzR6vMGyq4gdTWz2pUJ81KgHn | |
| 2020-05-28 14:48:47.122+10:00 | StorageUpdateChannel-0 | TRACE | LibP2PGossipNetwork | Subscribe to topic: /eth2/f6775d07/beacon_block/ssz_snappy | |
| 2020-05-28 14:48:47.128+10:00 | StorageUpdateChannel-0 | TRACE | LibP2PGossipNetwork | Subscribe to topic: /eth2/f6775d07/beacon_aggregate_and_proof/ssz_snappy | |
| 2020-05-28 14:48:47.138+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee] REGISTERED | |
| 2020-05-28 14:48:47.138+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee] CONNECT: /127.0.0.1:9001 | |
| 2020-05-28 14:48:47.141+10:00 | StorageUpdateChannel-0 | INFO | Javalin | Starting Javalin ... | |
| 2020-05-28 14:48:47.143+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] ACTIVE | |
| 2020-05-28 14:48:47.155+10:00 | nioEventLoopGroup-3-1 | DEBUG | Recycler | -Dio.netty.recycler.maxCapacityPerThread: 4096 | |
| 2020-05-28 14:48:47.155+10:00 | nioEventLoopGroup-3-1 | DEBUG | Recycler | -Dio.netty.recycler.maxSharedCapacityFactor: 2 | |
| 2020-05-28 14:48:47.155+10:00 | nioEventLoopGroup-3-1 | DEBUG | Recycler | -Dio.netty.recycler.linkCapacity: 16 | |
| 2020-05-28 14:48:47.155+10:00 | nioEventLoopGroup-3-1 | DEBUG | Recycler | -Dio.netty.recycler.ratio: 8 | |
| 2020-05-28 14:48:47.173+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 20B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.174+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 8B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 07 2f 6e 6f 69 73 65 0a |./noise. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.174+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.180+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 24B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a 03 6e 61 0a |0.0..na. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.182+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 14B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 0d 2f 73 65 63 69 6f 2f 31 2e 30 2e 30 0a |./secio/1.0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.182+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.182+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:47.184+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 131B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 0d 2f 73 65 63 69 6f 2f 31 2e 30 2e 30 0a 00 00 |./secio/1.0.0...| | |
| |00000010| 00 71 0a 10 a6 9c af db a4 64 39 2a 1b 53 72 7e |.q.......d9*.Sr~| | |
| |00000020| 0e bc 96 a0 12 25 08 02 12 21 03 1e 3c b7 ff 7e |.....%...!..<..~| | |
| |00000030| 0b 00 b2 ec e8 78 ef dc d9 0f 0c bd 23 ba 80 4a |.....x......#..J| | |
| |00000040| f5 25 e7 e2 be e3 6f 31 b9 0d 39 1a 0b 50 2d 32 |.%....o1..9..P-2| | |
| |00000050| 35 36 2c 50 2d 33 38 34 22 1a 41 45 53 2d 31 32 |56,P-384".AES-12| | |
| |00000060| 38 2c 41 45 53 2d 32 35 36 2c 54 77 6f 66 69 73 |8,AES-256,Twofis| | |
| |00000070| 68 43 54 52 2a 0d 53 48 41 32 35 36 2c 53 48 41 |hCTR*.SHA256,SHA| | |
| |00000080| 35 31 32 |512 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.184+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] USER_EVENT: ProtocolNegotiationSucceeded(proto=/secio/1.0.0) | |
| 2020-05-28 14:48:47.199+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 6c |...l | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.199+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 108B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 0a 10 0d c9 40 1d 76 b5 d2 04 00 33 19 d8 2d a2 |[email protected].| | |
| |00000010| 03 0e 12 25 08 02 12 21 03 d7 ae d3 6b 77 a4 79 |...%...!....kw.y| | |
| |00000020| 18 dd c2 1a d1 cc f6 fd ed b5 ab f7 ba ac 0d 09 |................| | |
| |00000030| f2 fc 0b 22 92 f3 99 c2 3c 1a 11 50 2d 32 35 36 |..."....<..P-256| | |
| |00000040| 2c 50 2d 33 38 34 2c 50 2d 35 32 31 22 0f 41 45 |,P-384,P-521".AE| | |
| |00000050| 53 2d 31 32 38 2c 41 45 53 2d 32 35 36 2a 0d 53 |S-128,AES-256*.S| | |
| |00000060| 48 41 32 35 36 2c 53 48 41 35 31 32 |HA256,SHA512 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.200+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.340+10:00 | StorageUpdateChannel-0 | INFO | Javalin | Listening on http://localhost:19501/ | |
| 2020-05-28 14:48:47.340+10:00 | StorageUpdateChannel-0 | INFO | Javalin | Javalin started in 199ms \o/ | |
| 2020-05-28 14:48:47.453+10:00 | ValidatorTimingChannel-0 | TRACE | ValidatorApiDutyLoader | Requesting duties for epoch 270 | |
| 2020-05-28 14:48:47.456+10:00 | ValidatorTimingChannel-0 | TRACE | ValidatorApiDutyLoader | Requesting duties for epoch 271 | |
| 2020-05-28 14:48:47.457+10:00 | ValidatorApiChannel-0 | DEBUG | RetryingDutyLoader | Unable to schedule duties for epoch 270 because node was syncing. Retrying. | |
| 2020-05-28 14:48:47.458+10:00 | ValidatorApiChannel-0 | DEBUG | RetryingDutyLoader | Unable to schedule duties for epoch 271 because node was syncing. Retrying. | |
| 2020-05-28 14:48:47.460+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 8c |.... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.460+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 140B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 0a 41 04 53 80 01 2d a9 fb 50 b3 56 85 62 73 89 |.A.S..-..P.V.bs.| | |
| |00000010| b8 c9 6c 0c f7 80 84 b1 f0 f1 60 92 c1 bf 8c fe |..l.......`.....| | |
| |00000020| 46 9a 7d 4f 7c 32 17 8f 50 d5 21 07 3f 4d dd b9 |F.}O|2..P.!.?M..| | |
| |00000030| 19 29 72 79 46 1b f0 e0 07 f4 e5 fb f8 ba b3 c7 |.)ryF...........| | |
| |00000040| 9b 0f 02 12 47 30 45 02 21 00 df d1 a3 89 68 d0 |....G0E.!.....h.| | |
| |00000050| 3e 93 3d 22 69 91 01 0f 08 95 00 e3 11 12 c9 e1 |>.="i...........| | |
| |00000060| f8 e4 e1 bc f4 6d 38 a0 74 5a 02 20 18 ad ea f1 |.....m8.tZ. ....| | |
| |00000070| 5a 52 cd 09 d2 4a 2c 35 82 3a 63 d0 b4 04 4a 35 |ZR...J,5.:c...J5| | |
| |00000080| ca 02 ed 70 54 10 05 c5 e4 76 b1 b0 |...pT....v.. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.460+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.460+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:47.461+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 144B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 8c 0a 41 04 46 e7 03 c2 e9 d2 3e e9 41 |.....A.F.....>.A| | |
| |00000010| 1b 82 7f 25 4a 05 0f 47 4c 88 73 12 91 0f 53 04 |...%J..GL.s...S.| | |
| |00000020| f4 8b 61 c7 3c 7d 6a 3b 83 51 54 96 bd b2 fe 7d |..a.<}j;.QT....}| | |
| |00000030| f0 46 b9 5b a3 9b 31 c0 98 98 f3 47 af 82 a6 cd |.F.[..1....G....| | |
| |00000040| 0f e3 66 ce 44 a5 f4 12 47 30 45 02 21 00 f8 87 |..f.D...G0E.!...| | |
| |00000050| 72 61 57 c0 d9 b2 a4 a2 6c d5 d5 b7 e7 ca ec 9b |raW.....l.......| | |
| |00000060| 4d cc d5 c6 ac f2 61 8c 4a 9c bc e5 fd f0 02 20 |M.....a.J...... | | |
| |00000070| 71 99 b1 f1 65 2b 7f 38 6c 59 f7 79 52 71 3a e0 |q...e+.8lY.yRq:.| | |
| |00000080| a3 d5 f3 68 07 87 36 f1 b9 44 39 1c bd 9f 1c 80 |...h..6..D9.....| | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.495+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 30 |...0 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.495+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 48B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 12 39 49 12 4e 23 f1 02 a1 79 65 3d bc d4 c5 1b |.9I.N#...ye=....| | |
| |00000010| 92 90 f1 dc 18 be db 55 ce 64 6a 50 d6 fc 7e 8e |.......U.djP..~.| | |
| |00000020| ea 09 6d 3c 87 9c 2e c3 fa 1e 21 84 c0 4e 0c 50 |..m<......!..N.P| | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.495+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.495+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:47.496+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 52B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 30 e5 e1 97 c6 16 22 e5 c2 35 8c 09 d7 |...0....."..5...| | |
| |00000010| 1d 14 fa f7 29 27 f3 01 22 1e fa b9 4c d8 07 86 |....)'.."...L...| | |
| |00000020| f1 f1 db 94 9f 5d 77 3c 5c 63 1a 88 24 0f d2 96 |.....]w<\c..$...| | |
| |00000030| 88 fd ce 59 |...Y | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.497+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] ACTIVE | |
| 2020-05-28 14:48:47.497+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 20B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.497+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 34 |...4 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.497+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 52B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| cc 09 73 06 e3 46 4a 1b 9b aa 9e 8f 43 9d fc bc |..s..FJ.....C...| | |
| |00000010| ad 4c bc a1 44 62 a2 17 ae 55 bc 09 f4 15 1e ce |.L..Db...U......| | |
| |00000020| 33 06 24 6d 26 8d 8d 59 82 e3 66 84 d9 87 c4 b7 |3.$m&..Y..f.....| | |
| |00000030| 78 ff 3a ec |x.:. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.498+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 14B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 0d 2f 6d 70 6c 65 78 2f 36 2e 37 2e 30 0a |./mplex/6.7.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.498+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 2e |.... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.498+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 46B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 06 5e ab f8 1b 4c 71 7c f7 2a 7e cd dd a1 7b aa |.^...Lq|.*~...{.| | |
| |00000010| 94 84 28 ad a2 f8 f6 59 23 fa e1 bf 0d 4a 09 27 |..(....Y#....J.'| | |
| |00000020| 8a b9 60 4d ea 81 84 4a 12 99 d3 08 a4 68 |..`M...J.....h | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.498+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.498+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.499+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:47.499+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:47.499+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 56B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 34 41 03 eb 4a a8 66 02 e6 0e 16 db 8b |...4A..J.f......| | |
| |00000010| 18 b4 fa 1d 65 2f 0f dd a3 cf 1e 9c 8c ea 28 32 |....e/........(2| | |
| |00000020| bf 5c 31 61 e1 cc e6 e8 69 ed 90 8d cd 48 a9 af |.\1a....i....H..| | |
| |00000030| 26 63 3e 13 18 66 94 33 |&c>..f.3 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.499+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 20B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.499+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:47.499+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:47.501+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 50B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 2e e0 47 d1 2e 60 c1 50 9a 24 ef 81 85 |.....G..`.P.$...| | |
| |00000010| 43 c6 eb d8 3a 29 45 10 f1 e1 a7 91 33 83 b9 a6 |C...:)E.....3...| | |
| |00000020| 06 a5 b8 87 c5 22 71 2f 82 33 96 a3 c8 a9 ef 45 |....."q/.3.....E| | |
| |00000030| 43 40 |C@ | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.502+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 14B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 0d 2f 6d 70 6c 65 78 2f 36 2e 37 2e 30 0a |./mplex/6.7.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.502+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] USER_EVENT: ProtocolNegotiationSucceeded(proto=/mplex/6.7.0) | |
| 2020-05-28 14:48:47.502+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] USER_EVENT: ProtocolNegotiationSucceeded(proto=/mplex/6.7.0) | |
| 2020-05-28 14:48:47.513+10:00 | nioEventLoopGroup-3-1 | DEBUG | PeerManager | onConnectedPeer() 16Uiu2HAmEh2HHJSBdsP5hs3wkcquzR6vMGyq4gdTWz2pUJ81KgHn | |
| 2020-05-28 14:48:47.650+10:00 | nioEventLoopGroup-3-1 | DEBUG | ConnectionManager | Connection to peer 16Uiu2HAmEh2HHJSBdsP5hs3wkcquzR6vMGyq4gdTWz2pUJ81KgHn was successful | |
| 2020-05-28 14:48:47.650+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] USER_EVENT: ProtocolNegotiationSucceeded(proto=/mplex/6.7.0) | |
| 2020-05-28 14:48:47.650+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] ACTIVE | |
| 2020-05-28 14:48:47.650+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:47.650+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:47.650+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:47.652+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE, MuxFrame(id=89db27ee/16/true, flag=OPEN, data=null), 0B | |
| 2020-05-28 14:48:47.653+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 3B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 80 01 00 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.653+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 23 |...# | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.653+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 35B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| aa ad 2c 21 a1 8d 3b 87 d7 05 86 33 68 4e 44 1a |..,!..;....3hND.| | |
| |00000010| 71 ba db a0 98 0e 6c 54 08 bb 17 65 5b e1 f6 71 |q.....lT...e[..q| | |
| |00000020| 68 9e 5d |h.] | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.654+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.654+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.654+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.657+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/16/true, flag=DATA, data=132f6d756c746973747265616d2f312e302e300a), 20B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.658+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 23B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 82 01 14 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d |..../multistream| | |
| |00000010| 2f 31 2e 30 2e 30 0a |/1.0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.658+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 37 |...7 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.658+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 55B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| a6 18 71 d7 56 4a ef a7 b5 6a dd d8 ce 59 d0 a2 |..q.VJ...j...Y..| | |
| |00000010| 7a 52 31 a2 9c a5 93 b3 8d 16 0e 93 6c de be f2 |zR1.........l...| | |
| |00000020| 34 30 ad aa cc 07 66 e3 61 56 9e e2 03 b8 92 44 |40....f.aV.....D| | |
| |00000030| 55 b6 47 3e bf 44 b5 |U.G>.D. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.658+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.658+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.659+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.659+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/16/true, flag=DATA, data=2b2f657468322f626561636f6e5f636861696e2f7265712f7374617475732f312f73737a5f736e617070790a), 44B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 2b 2f 65 74 68 32 2f 62 65 61 63 6f 6e 5f 63 68 |+/eth2/beacon_ch| | |
| |00000010| 61 69 6e 2f 72 65 71 2f 73 74 61 74 75 73 2f 31 |ain/req/status/1| | |
| |00000020| 2f 73 73 7a 5f 73 6e 61 70 70 79 0a |/ssz_snappy. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.659+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 47B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 82 01 2c 2b 2f 65 74 68 32 2f 62 65 61 63 6f 6e |..,+/eth2/beacon| | |
| |00000010| 5f 63 68 61 69 6e 2f 72 65 71 2f 73 74 61 74 75 |_chain/req/statu| | |
| |00000020| 73 2f 31 2f 73 73 7a 5f 73 6e 61 70 70 79 0a |s/1/ssz_snappy. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.660+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 4f |...O | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.660+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 79B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| f1 ae 56 7b 96 2b 7e b6 97 19 2a 84 c2 26 a5 5c |..V{.+~...*..&.\| | |
| |00000010| ba ff cd ed 31 80 84 fe d7 b5 f5 4b 46 94 6d e9 |....1......KF.m.| | |
| |00000020| d3 68 c8 c9 8f d6 ad ec 83 ca 8b 96 f0 29 e0 02 |.h...........)..| | |
| |00000030| 23 63 08 eb 41 77 be 52 46 11 e9 16 f2 2a 1a 7b |#c..Aw.RF....*.{| | |
| |00000040| 75 b7 c0 6f 04 d7 cf 32 8c 7d 29 91 7a 58 c5 |u..o...2.}).zX. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.660+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.660+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.660+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.661+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE, MuxFrame(id=89db27ee/17/true, flag=OPEN, data=null), 0B | |
| 2020-05-28 14:48:47.661+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 3B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 88 01 00 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.661+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 23 |...# | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.661+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 35B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 0b 87 7d d1 85 3e 9d ee e2 87 e1 76 39 61 f9 dd |..}..>.....v9a..| | |
| |00000010| 3d 15 50 7a 42 ae f7 0c 83 26 f5 35 1e 57 a9 f4 |=.PzB....&.5.W..| | |
| |00000020| a5 e4 f9 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.661+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.662+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.662+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.663+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/17/true, flag=DATA, data=132f6d756c746973747265616d2f312e302e300a), 20B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.663+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 23B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 8a 01 14 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d |..../multistream| | |
| |00000010| 2f 31 2e 30 2e 30 0a |/1.0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.663+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 37 |...7 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.663+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 55B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| d9 a4 8a 11 e9 45 14 4d 6a 4b 24 3d 19 d6 c6 23 |.....E.MjK$=...#| | |
| |00000010| 07 94 ce 8d e0 9f c3 6e b9 4a f4 60 86 a7 7b 18 |.......n.J.`..{.| | |
| |00000020| 75 31 57 60 df 41 47 d4 24 10 f0 41 78 ec e4 27 |u1W`.AG.$..Ax..'| | |
| |00000030| a8 0a 94 cb 30 bc 61 |....0.a | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.663+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.663+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.664+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.664+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/17/true, flag=DATA, data=0f2f6d6573687375622f312e302e300a), 16B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 0f 2f 6d 65 73 68 73 75 62 2f 31 2e 30 2e 30 0a |./meshsub/1.0.0.| | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.664+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 19B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 8a 01 10 0f 2f 6d 65 73 68 73 75 62 2f 31 2e 30 |..../meshsub/1.0| | |
| |00000010| 2e 30 0a |.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.664+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 33 |...3 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.665+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 51B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| dd 27 2f 05 99 b7 bc 72 84 48 10 a4 bc f3 df ea |.'/....r.H......| | |
| |00000010| 25 95 3a 79 5f cb 6f 9b 62 ae c5 a0 55 2a 82 a8 |%.:y_.o.b...U*..| | |
| |00000020| b4 ba 2e 92 f4 a0 de 36 1e 27 82 bf f9 27 dc 21 |.......6.'...'.!| | |
| |00000030| cd 04 b4 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.665+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.665+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.665+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.666+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 480B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 22 23 21 7d 34 24 a8 3a 32 fc 85 66 37 |..."#!}4$.:2..f7| | |
| |00000010| cd f8 40 92 11 35 d1 dd b9 95 fe 95 fd 76 2b 32 |[email protected]+2| | |
| |00000020| 1f 06 17 d0 4a b2 00 00 00 46 22 d1 d1 aa f4 d7 |....J....F".....| | |
| |00000030| f4 69 41 01 26 3f f6 0b 8c 40 4e a5 78 74 eb 93 |.iA.&[email protected]..| | |
| |00000040| ad 42 49 2f 3b 68 c8 9e de 35 c4 1d 86 1e d4 f5 |.BI/;h...5......| | |
| |00000050| 96 5b f0 1d ce 31 5f 6d 89 6f 04 2b 2f 8d d0 93 |.[...1_m.o.+/...| | |
| |00000060| 46 d6 0b a3 b0 87 0b b6 4c 06 db e5 38 1b f6 33 |F.......L...8..3| | |
| |00000070| 00 00 00 22 d8 71 83 a0 e7 2f 92 f0 8b 18 ad 33 |...".q.../.....3| | |
| |00000080| d3 d6 a1 65 8b 54 e6 6e 2f e8 aa f6 af ac dd 4b |...e.T.n/......K| | |
| |00000090| ca f4 60 8a ee 44 00 00 00 64 21 3f ee c4 de 31 |..`..D...d!?...1| | |
| |000000a0| 1f 3a f2 a3 b6 7e ef 3a 55 1f ae ed 97 b6 c5 0c |.:...~.:U.......| | |
| |000000b0| c3 cf 76 cc d9 fb 9a cd 1b dc b3 a4 85 0d 2c 29 |..v...........,)| | |
| |000000c0| e9 dd 0d e1 98 7b 8e ff ee f0 5e 52 79 d9 b0 91 |.....{....^Ry...| | |
| |000000d0| b2 58 f3 3f 6d bc 98 54 f2 da 90 21 5d 0e b6 5c |.X.?m..T...!]..\| | |
| |000000e0| e2 cf 78 c0 0d d4 d8 67 9a 48 90 9e 5b 95 21 5d |..x....g.H..[.!]| | |
| |000000f0| 3b 24 60 7c 5a 97 eb a2 e0 0a 98 bb c1 99 00 00 |;$`|Z...........| | |
| |00000100| 00 22 57 00 89 a7 2b 80 58 4c 0e ba 2b 18 b9 1a |."W...+.XL..+...| | |
| |00000110| 3b 18 24 9a fc a6 69 c2 38 08 91 11 ed 67 e7 43 |;.$...i.8....g.C| | |
| |00000120| 69 36 b6 7f 00 00 00 46 98 34 be 1a fd b6 c0 56 |i6.....F.4.....V| | |
| |00000130| 97 ce 60 03 db d0 36 fb e8 9c 40 32 71 56 1c 15 |..`...6...@2qV..| | |
| |00000140| 12 50 5a b9 a4 c8 2f 7e 82 6b ec 6f 60 45 d1 2a |.PZ.../~.k.o`E.*| | |
| |00000150| 2f f3 4e cd 21 8c 37 57 a6 10 9b 3c 6b 39 26 bd |/.N.!.7W...<k9&.| | |
| |00000160| 60 d4 5e 80 e3 e8 c8 bc 8b 28 95 fb 23 03 00 00 |`.^......(..#...| | |
| |00000170| 00 37 d5 f5 61 2e 96 5c df f7 92 5d c6 83 8a a7 |.7..a..\...]....| | |
| |00000180| ee 04 cc 59 af 53 11 2c 91 28 30 aa 6d bb c2 63 |...Y.S.,.(0.m..c| | |
| |00000190| f5 58 8b ca 6f bd 90 ff 94 07 b8 75 7e 08 ec 56 |.X..o......u~..V| | |
| |000001a0| b1 78 88 18 76 f4 2f 3c 8e 00 00 00 4f 2d a5 68 |.x..v./<....O-.h| | |
| |000001b0| 60 52 e7 da 05 e9 e9 4e 72 29 a5 2a 45 99 5c e2 |`R.....Nr).*E.\.| | |
| |000001c0| 4c 18 e9 33 9c 47 95 0f 59 9d 82 8b ed d1 26 4c |L..3.G..Y.....&L| | |
| |000001d0| 0b c1 4c e5 3d b9 63 aa 29 8c df d4 84 ed 1d 47 |..L.=.c.)......G| | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.666+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 2B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 |.. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.667+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ, MplexFrame(id=89db27ee/0/false, flag=OPEN (init), data=), 0B | |
| 2020-05-28 14:48:47.669+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/0/false, flag=DATA, data=132f6d756c746973747265616d2f312e302e300a), 20B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.670+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 22B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 01 14 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f |.../multistream/| | |
| |00000010| 31 2e 30 2e 30 0a |1.0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.670+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 36 |...6 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.670+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 54B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 76 3f 65 7d f4 b5 69 c3 0c ac 44 3f 56 f3 19 95 |v?e}..i...D?V...| | |
| |00000010| 94 61 12 1b 37 d9 1d b9 4a 07 29 26 48 e7 e9 f7 |.a..7...J.)&H...| | |
| |00000020| e0 0f 9b f3 69 2a bd 2e 53 2b 78 60 36 2e b2 31 |....i*..S+x`6..1| | |
| |00000030| d6 2c 10 2e 17 2c |.,..., | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.670+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.670+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.670+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.671+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 38B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 02 24 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f |.$./multistream/| | |
| |00000010| 31 2e 30 2e 30 0a 0f 2f 6d 65 73 68 73 75 62 2f |1.0.0../meshsub/| | |
| |00000020| 31 2e 30 2e 30 0a |1.0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.671+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/0/false, flag=DATA (init), data=132f6d756c746973747265616d2f312e302e300a0f2f6d6573687375622f312e302e300a), 36B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a 0f 2f 6d 65 73 68 73 75 62 2f 31 2e |0.0../meshsub/1.| | |
| |00000020| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.672+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/0/false, flag=DATA, data=0f2f6d6573687375622f312e302e300a), 16B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 0f 2f 6d 65 73 68 73 75 62 2f 31 2e 30 2e 30 0a |./meshsub/1.0.0.| | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.672+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 18B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 01 10 0f 2f 6d 65 73 68 73 75 62 2f 31 2e 30 2e |.../meshsub/1.0.| | |
| |00000010| 30 0a |0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.672+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 32 |...2 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.672+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 50B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 3a 42 01 00 fe 53 98 40 d5 24 6a 85 d9 00 30 0f |:B...S.@.$j...0.| | |
| |00000010| 05 7f 9b 01 79 a0 a6 e2 29 7e 2f f7 4b 1f 52 a6 |....y...)~/.K.R.| | |
| |00000020| 0f fc ee 0e a8 bc f0 2c 30 1b f6 91 ff da da c3 |.......,0.......| | |
| |00000030| f1 25 |.% | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.673+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.673+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.673+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.678+10:00 | nioEventLoopGroup-3-1 | DEBUG | gossip | [id: 0x89db27ee/0/false, L:Mux[/127.0.0.1:64154-89db27ee/0/false] - R:Mux[/127.0.0.1:9001-89db27ee/0/false]] USER_EVENT: ProtocolNegotiationSucceeded(proto=/meshsub/1.0.0) | |
| 2020-05-28 14:48:47.678+10:00 | nioEventLoopGroup-3-1 | DEBUG | gossip | [id: 0x89db27ee/0/false, L:Mux[/127.0.0.1:64154-89db27ee/0/false] - R:Mux[/127.0.0.1:9001-89db27ee/0/false]] ACTIVE | |
| 2020-05-28 14:48:47.679+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 2B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 08 00 |.. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.679+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ, MplexFrame(id=89db27ee/1/false, flag=OPEN (init), data=), 0B | |
| 2020-05-28 14:48:47.680+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/1/false, flag=DATA, data=132f6d756c746973747265616d2f312e302e300a), 20B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.680+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 22B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 09 14 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f |.../multistream/| | |
| |00000010| 31 2e 30 2e 30 0a |1.0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.680+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 36 |...6 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.680+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 54B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 43 21 c3 06 78 4b 70 df cf 0e 8f 32 3e 03 89 41 |C!..xKp....2>..A| | |
| |00000010| 67 e9 49 04 43 e9 71 85 06 94 29 67 ca f9 71 82 |g.I.C.q...)g..q.| | |
| |00000020| 7f 3a 20 32 a5 b9 1d 71 bc ce 25 f2 77 bd 9e 68 |.: 2...q..%.w..h| | |
| |00000030| 3b 54 09 e4 99 49 |;T...I | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.680+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.680+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.680+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.681+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 68B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 0a 42 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f |.B./multistream/| | |
| |00000010| 31 2e 30 2e 30 0a 2d 2f 65 74 68 32 2f 62 65 61 |1.0.0.-/eth2/bea| | |
| |00000020| 63 6f 6e 5f 63 68 61 69 6e 2f 72 65 71 2f 6d 65 |con_chain/req/me| | |
| |00000030| 74 61 64 61 74 61 2f 31 2f 73 73 7a 5f 73 6e 61 |tadata/1/ssz_sna| | |
| |00000040| 70 70 79 0a |ppy. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.681+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/1/false, flag=DATA (init), data=132f6d756c746973747265616d2f312e302e300a2d2f657468322f626561636f6e5f636861696e2f7265712f6d657461646174612f312f73737a5f736e617070790a), 66B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a 2d 2f 65 74 68 32 2f 62 65 61 63 6f |0.0.-/eth2/beaco| | |
| |00000020| 6e 5f 63 68 61 69 6e 2f 72 65 71 2f 6d 65 74 61 |n_chain/req/meta| | |
| |00000030| 64 61 74 61 2f 31 2f 73 73 7a 5f 73 6e 61 70 70 |data/1/ssz_snapp| | |
| |00000040| 79 0a |y. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.681+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/1/false, flag=DATA, data=2d2f657468322f626561636f6e5f636861696e2f7265712f6d657461646174612f312f73737a5f736e617070790a), 46B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 2d 2f 65 74 68 32 2f 62 65 61 63 6f 6e 5f 63 68 |-/eth2/beacon_ch| | |
| |00000010| 61 69 6e 2f 72 65 71 2f 6d 65 74 61 64 61 74 61 |ain/req/metadata| | |
| |00000020| 2f 31 2f 73 73 7a 5f 73 6e 61 70 70 79 0a |/1/ssz_snappy. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.682+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 48B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 09 2e 2d 2f 65 74 68 32 2f 62 65 61 63 6f 6e 5f |..-/eth2/beacon_| | |
| |00000010| 63 68 61 69 6e 2f 72 65 71 2f 6d 65 74 61 64 61 |chain/req/metada| | |
| |00000020| 74 61 2f 31 2f 73 73 7a 5f 73 6e 61 70 70 79 0a |ta/1/ssz_snappy.| | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.682+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 50 |...P | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.682+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 80B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| f5 e9 8c 3c ec 34 f6 be d9 60 f5 99 d9 17 c4 55 |...<.4...`.....U| | |
| |00000010| 60 d3 1f de 24 f9 bb 0a c0 e4 d9 20 5b 5f 42 e0 |`...$...... [_B.| | |
| |00000020| 62 5f 30 b5 04 93 d1 94 24 74 54 2b 5d 2b 1c 42 |b_0.....$tT+]+.B| | |
| |00000030| 65 fc d6 3a 92 ac 12 0e 46 9f 5e 85 d1 9a f9 5b |e..:....F.^....[| | |
| |00000040| 7e 11 1c a6 35 1b ba 39 93 72 d7 4e f6 4c f2 ee |~...5..9.r.N.L..| | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.682+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.682+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.682+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.690+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 2B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 10 00 |.. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.690+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ, MplexFrame(id=89db27ee/2/false, flag=OPEN (init), data=), 0B | |
| 2020-05-28 14:48:47.691+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/2/false, flag=DATA, data=132f6d756c746973747265616d2f312e302e300a), 20B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.691+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 22B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 11 14 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f |.../multistream/| | |
| |00000010| 31 2e 30 2e 30 0a |1.0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.691+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 36 |...6 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.692+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 54B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 19 ae b2 cd ad 72 9e 22 32 e0 87 1c 41 d4 cf a2 |.....r."2...A...| | |
| |00000010| 1b 25 7a 8c e3 34 d8 4e ba e9 66 7d 21 ee 52 d3 |.%z..4.N..f}!.R.| | |
| |00000020| 5d 5e 0c 3e 09 bf 06 d1 68 9c 2a 71 9d ab 79 da |]^.>....h.*q..y.| | |
| |00000030| 01 96 cf 35 a2 d6 |...5.. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.692+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.692+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.692+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.692+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 38B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 12 24 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f |.$./multistream/| | |
| |00000010| 31 2e 30 2e 30 0a 0f 2f 69 70 66 73 2f 69 64 2f |1.0.0../ipfs/id/| | |
| |00000020| 31 2e 30 2e 30 0a |1.0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.692+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/2/false, flag=DATA (init), data=132f6d756c746973747265616d2f312e302e300a0f2f697066732f69642f312e302e300a), 36B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a 0f 2f 69 70 66 73 2f 69 64 2f 31 2e |0.0../ipfs/id/1.| | |
| |00000020| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.693+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/2/false, flag=DATA, data=0f2f697066732f69642f312e302e300a), 16B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 0f 2f 69 70 66 73 2f 69 64 2f 31 2e 30 2e 30 0a |./ipfs/id/1.0.0.| | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.693+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 18B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 11 10 0f 2f 69 70 66 73 2f 69 64 2f 31 2e 30 2e |.../ipfs/id/1.0.| | |
| |00000010| 30 0a |0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.693+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 32 |...2 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.693+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 50B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| bc 33 85 67 12 cc 5e af c5 e3 c9 0e c9 26 c5 ae |.3.g..^......&..| | |
| |00000010| 6c 8e fc c4 fb bd 3e 98 61 2b a6 60 9e ed 85 f4 |l.....>.a+.`....| | |
| |00000020| 47 f7 fb 6e 90 d3 43 8c 18 40 2c 41 00 fc 3b 59 |G..n..C..@,A..;Y| | |
| |00000030| 7c 81 ||. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.693+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.693+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.694+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.697+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/2/false, flag=DATA, data=c9010a250802122103d7aed36b77a47918ddc21ad1ccf6fdedb5abf7baac0d09f2fc0b2292f399c23c1232040a00016406232da5032700250802122103d7aed36b77a47918ddc21ad1ccf6fdedb5abf7baac0d09f2fc0b2292f399c23c1a102f697066732f70696e672f312e302e301a0e2f6d6573687375622f312e302e302208047f0000010623292a0a697066732f302e312e30323474656b752f74656b752f763c556e6b6e6f776e3e2f6f73782d7838365f36342f61646f70746f70656e6a646b2d6a6176612d3131), 203B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| c9 01 0a 25 08 02 12 21 03 d7 ae d3 6b 77 a4 79 |...%...!....kw.y| | |
| |00000010| 18 dd c2 1a d1 cc f6 fd ed b5 ab f7 ba ac 0d 09 |................| | |
| |00000020| f2 fc 0b 22 92 f3 99 c2 3c 12 32 04 0a 00 01 64 |..."....<.2....d| | |
| |00000030| 06 23 2d a5 03 27 00 25 08 02 12 21 03 d7 ae d3 |.#-..'.%...!....| | |
| |00000040| 6b 77 a4 79 18 dd c2 1a d1 cc f6 fd ed b5 ab f7 |kw.y............| | |
| |00000050| ba ac 0d 09 f2 fc 0b 22 92 f3 99 c2 3c 1a 10 2f |......."....<../| | |
| |00000060| 69 70 66 73 2f 70 69 6e 67 2f 31 2e 30 2e 30 1a |ipfs/ping/1.0.0.| | |
| |00000070| 0e 2f 6d 65 73 68 73 75 62 2f 31 2e 30 2e 30 22 |./meshsub/1.0.0"| | |
| |00000080| 08 04 7f 00 00 01 06 23 29 2a 0a 69 70 66 73 2f |.......#)*.ipfs/| | |
| |00000090| 30 2e 31 2e 30 32 34 74 65 6b 75 2f 74 65 6b 75 |0.1.024teku/teku| | |
| |000000a0| 2f 76 3c 55 6e 6b 6e 6f 77 6e 3e 2f 6f 73 78 2d |/v<Unknown>/osx-| | |
| |000000b0| 78 38 36 5f 36 34 2f 61 64 6f 70 74 6f 70 65 6e |x86_64/adoptopen| | |
| |000000c0| 6a 64 6b 2d 6a 61 76 61 2d 31 31 |jdk-java-11 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.697+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 206B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 11 cb 01 c9 01 0a 25 08 02 12 21 03 d7 ae d3 6b |......%...!....k| | |
| |00000010| 77 a4 79 18 dd c2 1a d1 cc f6 fd ed b5 ab f7 ba |w.y.............| | |
| |00000020| ac 0d 09 f2 fc 0b 22 92 f3 99 c2 3c 12 32 04 0a |......"....<.2..| | |
| |00000030| 00 01 64 06 23 2d a5 03 27 00 25 08 02 12 21 03 |..d.#-..'.%...!.| | |
| |00000040| d7 ae d3 6b 77 a4 79 18 dd c2 1a d1 cc f6 fd ed |...kw.y.........| | |
| |00000050| b5 ab f7 ba ac 0d 09 f2 fc 0b 22 92 f3 99 c2 3c |.........."....<| | |
| |00000060| 1a 10 2f 69 70 66 73 2f 70 69 6e 67 2f 31 2e 30 |../ipfs/ping/1.0| | |
| |00000070| 2e 30 1a 0e 2f 6d 65 73 68 73 75 62 2f 31 2e 30 |.0../meshsub/1.0| | |
| |00000080| 2e 30 22 08 04 7f 00 00 01 06 23 29 2a 0a 69 70 |.0".......#)*.ip| | |
| |00000090| 66 73 2f 30 2e 31 2e 30 32 34 74 65 6b 75 2f 74 |fs/0.1.024teku/t| | |
| |000000a0| 65 6b 75 2f 76 3c 55 6e 6b 6e 6f 77 6e 3e 2f 6f |eku/v<Unknown>/o| | |
| |000000b0| 73 78 2d 78 38 36 5f 36 34 2f 61 64 6f 70 74 6f |sx-x86_64/adopto| | |
| |000000c0| 70 65 6e 6a 64 6b 2d 6a 61 76 61 2d 31 31 |penjdk-java-11 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.698+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 ee |.... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.698+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 238B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| cc c8 d0 18 3b 96 b0 4c cd 9f 5b 46 8e 5b 0d 34 |....;..L..[F.[.4| | |
| |00000010| a3 16 bb 46 b4 af d3 6f bc e4 46 5c ea d4 2e 7f |...F...o..F\....| | |
| |00000020| 19 8b 3b ec 8a 38 ac 15 6a a5 e7 3a 26 76 c9 6e |..;..8..j..:&v.n| | |
| |00000030| 9c d6 ac cc 94 33 42 db 4e f6 2d 90 f1 f1 e1 9d |.....3B.N.-.....| | |
| |00000040| cb ab a5 cb 2d 06 67 97 0e 5a 46 2f 20 d2 19 1c |....-.g..ZF/ ...| | |
| |00000050| 16 b8 5d 54 53 bf e7 bb c3 56 c8 56 05 52 87 bf |..]TS....V.V.R..| | |
| |00000060| 03 91 04 82 7c 72 41 1d b0 87 25 75 8c 22 50 b1 |....|rA...%u."P.| | |
| |00000070| 33 10 2d ae 00 25 05 e1 07 d8 f6 65 8a 0c e9 78 |3.-..%.....e...x| | |
| |00000080| 61 63 29 2c 71 b8 33 37 dd ce a0 1b bd 5c 30 51 |ac),q.37.....\0Q| | |
| |00000090| 70 81 d4 47 e3 4d 99 28 35 f0 cc ac 3b f0 dc 66 |p..G.M.(5...;..f| | |
| |000000a0| c9 8b 49 d4 49 ce 19 e5 4b 23 39 cd ae 26 ab 28 |..I.I...K#9..&.(| | |
| |000000b0| d2 45 d7 7f cd af 4f 00 03 a2 1b 07 85 0e d0 9b |.E....O.........| | |
| |000000c0| 70 c5 88 8b 9a 7b 9a d4 f2 e4 d7 cb 08 ee 08 b0 |p....{..........| | |
| |000000d0| 9b 93 ca 63 6d e0 bd d8 1b 61 6b d3 14 3a 5f 84 |...cm....ak..:_.| | |
| |000000e0| c0 2b 36 59 bb 45 a4 f2 1c 3f b7 53 72 8b |.+6Y.E...?.Sr. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.698+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.698+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.698+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.699+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE, MuxFrame(id=89db27ee/2/false, flag=RESET, data=null), 0B | |
| 2020-05-28 14:48:47.699+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 2B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 15 00 |.. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.699+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 22 |..." | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.699+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 34B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 0d 4c 6f 2a b5 32 9d 04 40 1c fa 8e 33 dd 56 a1 |.Lo*[email protected].| | |
| |00000010| 8a c2 cf 53 ce 7c 13 c7 a2 5a 35 96 32 95 28 15 |...S.|...Z5.2.(.| | |
| |00000020| fd db |.. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.699+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.700+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.700+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.702+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 23B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 81 01 14 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d |..../multistream| | |
| |00000010| 2f 31 2e 30 2e 30 0a |/1.0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.702+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/16/true, flag=DATA (resp), data=132f6d756c746973747265616d2f312e302e300a), 20B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.702+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 467B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| f2 02 3a 35 52 d1 28 de 16 a0 b4 6c 36 83 64 4e |..:5R.(....l6.dN| | |
| |00000010| 30 ee 13 96 1b cf 21 86 89 d0 2b d8 00 00 00 37 |0.....!...+....7| | |
| |00000020| 6a 9c f7 a2 ad e4 95 1b 5b 46 77 5e 71 f7 cc 5d |j.......[Fw^q..]| | |
| |00000030| fd 6b 42 6b ad ad 68 bf 57 54 8e fe eb 45 d6 97 |.kBk..h.WT...E..| | |
| |00000040| 3d 80 25 33 e0 75 bc 7a cd b2 0e b2 a5 f7 45 10 |=.%3.u.z......E.| | |
| |00000050| c3 ac 27 a6 24 ac 21 00 00 00 33 55 16 c9 30 2f |..'.$.!...3U..0/| | |
| |00000060| f3 b5 3f fe 4d f6 1d f5 b6 9a f0 ff 01 28 6f a7 |..?.M........(o.| | |
| |00000070| e0 c7 0a 84 8f 13 20 3e 3b fa a3 3e 26 27 bc b8 |...... >;..>&'..| | |
| |00000080| a2 f5 e7 bd 85 c4 36 a1 18 b4 ba 91 9e 53 00 00 |......6......S..| | |
| |00000090| 01 1b a2 b3 0c f0 36 63 8b 4f f9 f9 67 bd 41 47 |......6c.O..g.AG| | |
| |000000a0| 8b 48 ab 39 c9 8f be 16 75 99 fa c7 5d 73 df f1 |.H.9....u...]s..| | |
| |000000b0| dc 0c 04 2a 82 9e dd c5 50 74 2f 7e e1 1f 00 b0 |...*....Pt/~....| | |
| |000000c0| b3 aa 80 c4 e0 8b 5e b7 fe d7 03 dd 46 80 25 ef |......^.....F.%.| | |
| |000000d0| 93 83 0f 16 95 4c 38 09 29 7a 64 ed 01 f4 dc c2 |.....L8.)zd.....| | |
| |000000e0| 91 3b 2a 0b 9f 4f ad 4d 96 d0 05 af 0c 69 bb 12 |.;*..O.M.....i..| | |
| |000000f0| 61 c3 04 f6 89 de c9 f5 b4 e7 65 55 03 d7 82 50 |a.........eU...P| | |
| |00000100| d4 8d 4a 04 b8 82 79 d2 17 e8 31 ae cc b6 4e 17 |..J...y...1...N.| | |
| |00000110| 8d 0c 80 13 34 1e 08 71 70 66 44 4b 34 7e 3b 90 |....4..qpfDK4~;.| | |
| |00000120| 35 e9 b6 f7 f3 ef 73 08 7f 50 42 cd 8c 83 ac 0a |5.....s..PB.....| | |
| |00000130| 20 31 a6 39 81 ab 99 f4 d9 94 1e 6d 45 b5 38 a6 | 1.9.......mE.8.| | |
| |00000140| a8 7a 1d 35 cf f6 59 5d 40 3a df ca 7a 07 b7 5a |.z.5..Y]@:..z..Z| | |
| |00000150| 63 79 18 21 36 62 d5 94 70 93 24 48 37 38 07 8b |cy.!6b..p.$H78..| | |
| |00000160| e1 a4 b5 82 4f 05 58 a2 65 2f b2 11 4a 01 7a 40 |....O.X.e/..J.z@| | |
| |00000170| 72 4f 97 b2 f1 39 c2 f4 f5 9e e4 8f a4 a7 89 bf |rO...9..........| | |
| |00000180| 7e 5d 2c 2d b9 57 c4 56 a0 9b 20 1b 17 96 95 4c |~],-.W.V.. ....L| | |
| |00000190| 25 d1 c4 0e 49 70 ca 52 46 5e b7 d4 27 22 63 9b |%...Ip.RF^..'"c.| | |
| |000001a0| 41 29 bb 83 85 e5 cd 60 dc d0 ee 31 74 00 00 00 |A).....`...1t...| | |
| |000001b0| 22 79 1b b2 dc 11 d6 9c 1e 7a 13 62 8c 6c 2a 8b |"y.......z.b.l*.| | |
| |000001c0| 5b 66 82 b3 67 32 8d 76 74 f7 4d 58 5f 3c 11 4e |[f..g2.vt.MX_<.N| | |
| |000001d0| 08 ee dd |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.703+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 47B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 81 01 2c 2b 2f 65 74 68 32 2f 62 65 61 63 6f 6e |..,+/eth2/beacon| | |
| |00000010| 5f 63 68 61 69 6e 2f 72 65 71 2f 73 74 61 74 75 |_chain/req/statu| | |
| |00000020| 73 2f 31 2f 73 73 7a 5f 73 6e 61 70 70 79 0a |s/1/ssz_snappy. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.703+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/16/true, flag=DATA (resp), data=2b2f657468322f626561636f6e5f636861696e2f7265712f7374617475732f312f73737a5f736e617070790a), 44B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 2b 2f 65 74 68 32 2f 62 65 61 63 6f 6e 5f 63 68 |+/eth2/beacon_ch| | |
| |00000010| 61 69 6e 2f 72 65 71 2f 73 74 61 74 75 73 2f 31 |ain/req/status/1| | |
| |00000020| 2f 73 73 7a 5f 73 6e 61 70 70 79 0a |/ssz_snappy. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.703+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/16/true, flag=DATA, data=54ff060000734e615070590037000032f776ef5410f6775d07009a01009c19aa2deaa02cac9774eb8948a8ead1ebe851ba9590878a10cd5767092e16ba120000000000000000), 70B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 54 ff 06 00 00 73 4e 61 50 70 59 00 37 00 00 32 |T....sNaPpY.7..2| | |
| |00000010| f7 76 ef 54 10 f6 77 5d 07 00 9a 01 00 9c 19 aa |.v.T..w]........| | |
| |00000020| 2d ea a0 2c ac 97 74 eb 89 48 a8 ea d1 eb e8 51 |-..,..t..H.....Q| | |
| |00000030| ba 95 90 87 8a 10 cd 57 67 09 2e 16 ba 12 00 00 |.......Wg.......| | |
| |00000040| 00 00 00 00 00 00 |...... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.704+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 73B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 82 01 46 54 ff 06 00 00 73 4e 61 50 70 59 00 37 |..FT....sNaPpY.7| | |
| |00000010| 00 00 32 f7 76 ef 54 10 f6 77 5d 07 00 9a 01 00 |..2.v.T..w].....| | |
| |00000020| 9c 19 aa 2d ea a0 2c ac 97 74 eb 89 48 a8 ea d1 |...-..,..t..H...| | |
| |00000030| eb e8 51 ba 95 90 87 8a 10 cd 57 67 09 2e 16 ba |..Q.......Wg....| | |
| |00000040| 12 00 00 00 00 00 00 00 00 |......... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.704+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 69 |...i | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.704+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 105B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 4c 45 30 57 5c f5 e9 d6 17 9e 37 fe e6 0e 83 c8 |LE0W\.....7.....| | |
| |00000010| 54 45 17 51 f4 ec 82 cf 02 20 9a 4c 0a 45 d0 8d |TE.Q..... .L.E..| | |
| |00000020| 1c 99 88 21 3c 2f 06 96 9b 55 19 b3 2c c9 ba 81 |...!</...U..,...| | |
| |00000030| 19 b4 fb 67 71 8d 4d 59 c7 6b 17 da 69 c8 4d 93 |...gq.MY.k..i.M.| | |
| |00000040| ce a2 ef 6c ce f1 93 ed 84 b9 ab b3 de 03 0f 4b |...l...........K| | |
| |00000050| 8e b7 ce fc c2 42 69 9d c6 84 a5 ca 4f 27 e6 3c |.....Bi.....O'.<| | |
| |00000060| 19 65 ef 3a e0 06 52 ca d1 |.e.:..R.. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.704+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.704+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.704+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.706+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE, MuxFrame(id=89db27ee/16/true, flag=CLOSE, data=null), 0B | |
| 2020-05-28 14:48:47.706+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 3B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 84 01 00 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.706+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 23 |...# | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.706+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 35B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 20 d9 d9 88 23 f2 a3 05 72 bf ae 06 1a ed 43 ff | ...#...r.....C.| | |
| |00000010| a1 15 20 bf fd 94 64 4d a3 58 a3 03 13 47 1a 9f |.. ...dM.X...G..| | |
| |00000020| c8 e1 9f |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.706+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.706+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.706+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.709+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 23B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 89 01 14 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d |..../multistream| | |
| |00000010| 2f 31 2e 30 2e 30 0a |/1.0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.709+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/17/true, flag=DATA (resp), data=132f6d756c746973747265616d2f312e302e300a), 20B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.710+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 19B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 89 01 10 0f 2f 6d 65 73 68 73 75 62 2f 31 2e 30 |..../meshsub/1.0| | |
| |00000010| 2e 30 0a |.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.710+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/17/true, flag=DATA (resp), data=0f2f6d6573687375622f312e302e300a), 16B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 0f 2f 6d 65 73 68 73 75 62 2f 31 2e 30 2e 30 0a |./meshsub/1.0.0.| | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.710+10:00 | nioEventLoopGroup-3-1 | DEBUG | gossip | [id: 0x89db27ee/17/true, L:Mux[/127.0.0.1:64154-89db27ee/17/true] - R:Mux[/127.0.0.1:9001-89db27ee/17/true]] USER_EVENT: ProtocolNegotiationSucceeded(proto=/meshsub/1.0.0) | |
| 2020-05-28 14:48:47.710+10:00 | nioEventLoopGroup-3-1 | DEBUG | gossip | [id: 0x89db27ee/17/true, L:Mux[/127.0.0.1:64154-89db27ee/17/true] - R:Mux[/127.0.0.1:9001-89db27ee/17/true]] ACTIVE | |
| 2020-05-28 14:48:47.711+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 251B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 02 f8 01 f6 01 0a 2a 08 01 12 26 2f 65 74 68 32 |......*...&/eth2| | |
| |00000010| 2f 66 36 37 37 35 64 30 37 2f 62 65 61 63 6f 6e |/f6775d07/beacon| | |
| |00000020| 5f 62 6c 6f 63 6b 2f 73 73 7a 5f 73 6e 61 70 70 |_block/ssz_snapp| | |
| |00000030| 79 0a 38 08 01 12 34 2f 65 74 68 32 2f 66 36 37 |y.8...4/eth2/f67| | |
| |00000040| 37 35 64 30 37 2f 62 65 61 63 6f 6e 5f 61 67 67 |75d07/beacon_agg| | |
| |00000050| 72 65 67 61 74 65 5f 61 6e 64 5f 70 72 6f 6f 66 |regate_and_proof| | |
| |00000060| 2f 73 73 7a 5f 73 6e 61 70 70 79 0a 2f 08 01 12 |/ssz_snappy./...| | |
| |00000070| 2b 2f 65 74 68 32 2f 66 36 37 37 35 64 30 37 2f |+/eth2/f6775d07/| | |
| |00000080| 70 72 6f 70 6f 73 65 72 5f 73 6c 61 73 68 69 6e |proposer_slashin| | |
| |00000090| 67 2f 73 73 7a 5f 73 6e 61 70 70 79 0a 2f 08 01 |g/ssz_snappy./..| | |
| |000000a0| 12 2b 2f 65 74 68 32 2f 66 36 37 37 35 64 30 37 |.+/eth2/f6775d07| | |
| |000000b0| 2f 61 74 74 65 73 74 65 72 5f 73 6c 61 73 68 69 |/attester_slashi| | |
| |000000c0| 6e 67 2f 73 73 7a 5f 73 6e 61 70 70 79 0a 2c 08 |ng/ssz_snappy.,.| | |
| |000000d0| 01 12 28 2f 65 74 68 32 2f 66 36 37 37 35 64 30 |..(/eth2/f6775d0| | |
| |000000e0| 37 2f 76 6f 6c 75 6e 74 61 72 79 5f 65 78 69 74 |7/voluntary_exit| | |
| |000000f0| 2f 73 73 7a 5f 73 6e 61 70 70 79 |/ssz_snappy | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.711+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/0/false, flag=DATA (init), data=f6010a2a080112262f657468322f66363737356430372f626561636f6e5f626c6f636b2f73737a5f736e617070790a38080112342f657468322f66363737356430372f626561636f6e5f6167677265676174655f616e645f70726f6f662f73737a5f736e617070790a2f0801122b2f657468322f66363737356430372f70726f706f7365725f736c617368696e672f73737a5f736e617070790a2f0801122b2f657468322f66363737356430372f61747465737465725f736c617368696e672f73737a5f736e617070790a2c080112282f657468322f66363737356430372f766f6c756e746172795f657869742f73737a5f736e61707079), 248B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| f6 01 0a 2a 08 01 12 26 2f 65 74 68 32 2f 66 36 |...*...&/eth2/f6| | |
| |00000010| 37 37 35 64 30 37 2f 62 65 61 63 6f 6e 5f 62 6c |775d07/beacon_bl| | |
| |00000020| 6f 63 6b 2f 73 73 7a 5f 73 6e 61 70 70 79 0a 38 |ock/ssz_snappy.8| | |
| |00000030| 08 01 12 34 2f 65 74 68 32 2f 66 36 37 37 35 64 |...4/eth2/f6775d| | |
| |00000040| 30 37 2f 62 65 61 63 6f 6e 5f 61 67 67 72 65 67 |07/beacon_aggreg| | |
| |00000050| 61 74 65 5f 61 6e 64 5f 70 72 6f 6f 66 2f 73 73 |ate_and_proof/ss| | |
| |00000060| 7a 5f 73 6e 61 70 70 79 0a 2f 08 01 12 2b 2f 65 |z_snappy./...+/e| | |
| |00000070| 74 68 32 2f 66 36 37 37 35 64 30 37 2f 70 72 6f |th2/f6775d07/pro| | |
| |00000080| 70 6f 73 65 72 5f 73 6c 61 73 68 69 6e 67 2f 73 |poser_slashing/s| | |
| |00000090| 73 7a 5f 73 6e 61 70 70 79 0a 2f 08 01 12 2b 2f |sz_snappy./...+/| | |
| |000000a0| 65 74 68 32 2f 66 36 37 37 35 64 30 37 2f 61 74 |eth2/f6775d07/at| | |
| |000000b0| 74 65 73 74 65 72 5f 73 6c 61 73 68 69 6e 67 2f |tester_slashing/| | |
| |000000c0| 73 73 7a 5f 73 6e 61 70 70 79 0a 2c 08 01 12 28 |ssz_snappy.,...(| | |
| |000000d0| 2f 65 74 68 32 2f 66 36 37 37 35 64 30 37 2f 76 |/eth2/f6775d07/v| | |
| |000000e0| 6f 6c 75 6e 74 61 72 79 5f 65 78 69 74 2f 73 73 |oluntary_exit/ss| | |
| |000000f0| 7a 5f 73 6e 61 70 70 79 |z_snappy | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.781+10:00 | nioEventLoopGroup-3-1 | DEBUG | gossip | [id: 0x89db27ee/0/false, L:Mux[/127.0.0.1:64154-89db27ee/0/false] - R:Mux[/127.0.0.1:9001-89db27ee/0/false]] READ: subscriptions { | |
| subscribe: true | |
| topicid: "/eth2/f6775d07/beacon_block/ssz_snappy" | |
| } | |
| subscriptions { | |
| subscribe: true | |
| topicid: "/eth2/f6775d07/beacon_aggregate_and_proof/ssz_snappy" | |
| } | |
| subscriptions { | |
| subscribe: true | |
| topicid: "/eth2/f6775d07/proposer_slashing/ssz_snappy" | |
| } | |
| subscriptions { | |
| subscribe: true | |
| topicid: "/eth2/f6775d07/attester_slashing/ssz_snappy" | |
| } | |
| subscriptions { | |
| subscribe: true | |
| topicid: "/eth2/f6775d07/voluntary_exit/ssz_snappy" | |
| } | |
| 2020-05-28 14:48:47.782+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 2B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 14 00 |.. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.782+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ, MplexFrame(id=89db27ee/2/false, flag=CLOSE (init), data=), 0B | |
| 2020-05-28 14:48:47.782+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:47.783+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:47.783+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:47.784+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/1/false, flag=DATA, data=0010ff060000734e6150705901140000b96f57d800000000000000000000000000000000), 36B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 10 ff 06 00 00 73 4e 61 50 70 59 01 14 00 00 |......sNaPpY....| | |
| |00000010| b9 6f 57 d8 00 00 00 00 00 00 00 00 00 00 00 00 |.oW.............| | |
| |00000020| 00 00 00 00 |.... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.784+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 38B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 09 24 00 10 ff 06 00 00 73 4e 61 50 70 59 01 14 |.$......sNaPpY..| | |
| |00000010| 00 00 b9 6f 57 d8 00 00 00 00 00 00 00 00 00 00 |...oW...........| | |
| |00000020| 00 00 00 00 00 00 |...... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.784+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 46 |...F | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.784+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 70B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 25 d0 f3 5c 1c b9 4e 4a 4c 28 62 e3 7f 57 30 9a |%..\..NJL(b..W0.| | |
| |00000010| e2 f0 46 38 78 a3 e2 a2 a5 51 1f 2c fa eb 92 c2 |..F8x....Q.,....| | |
| |00000020| 82 5c 48 25 fb e3 07 3d 45 40 73 01 c9 39 3f c2 |.\H%[email protected]?.| | |
| |00000030| 39 5c e3 65 d6 b7 1e 49 d1 2e 51 e3 a4 69 b4 55 |9\.e...I..Q..i.U| | |
| |00000040| 2a 3c d4 ae a7 85 |*<.... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.785+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.785+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.785+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.788+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE, MuxFrame(id=89db27ee/1/false, flag=CLOSE, data=null), 0B | |
| 2020-05-28 14:48:47.788+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 2B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 0b 00 |.. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.789+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 22 |..." | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.789+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 34B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 6f e0 5b a1 51 12 7c 8c b6 89 1a 8f 02 bd a9 54 |o.[.Q.|........T| | |
| |00000010| ed 84 c0 db 79 2a 38 59 9e 7b fc 7a c5 ec c7 b8 |....y*8Y.{.z....| | |
| |00000020| cc bf |.. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.789+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.789+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.789+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.790+10:00 | nioEventLoopGroup-3-1 | DEBUG | gossip | [id: 0x89db27ee/17/true, L:Mux[/127.0.0.1:64154-89db27ee/17/true] - R:Mux[/127.0.0.1:9001-89db27ee/17/true]] WRITE: subscriptions { | |
| subscribe: true | |
| topicid: "/eth2/f6775d07/beacon_block/ssz_snappy" | |
| } | |
| subscriptions { | |
| subscribe: true | |
| topicid: "/eth2/f6775d07/beacon_aggregate_and_proof/ssz_snappy" | |
| } | |
| 2020-05-28 14:48:47.790+10:00 | nioEventLoopGroup-3-1 | DEBUG | gossip | [id: 0x89db27ee/17/true, L:Mux[/127.0.0.1:64154-89db27ee/17/true] - R:Mux[/127.0.0.1:9001-89db27ee/17/true]] FLUSH | |
| 2020-05-28 14:48:47.790+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/17/true, flag=DATA, data=660a2a080112262f657468322f66363737356430372f626561636f6e5f626c6f636b2f73737a5f736e617070790a38080112342f657468322f66363737356430372f626561636f6e5f6167677265676174655f616e645f70726f6f662f73737a5f736e61707079), 103B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 66 0a 2a 08 01 12 26 2f 65 74 68 32 2f 66 36 37 |f.*...&/eth2/f67| | |
| |00000010| 37 35 64 30 37 2f 62 65 61 63 6f 6e 5f 62 6c 6f |75d07/beacon_blo| | |
| |00000020| 63 6b 2f 73 73 7a 5f 73 6e 61 70 70 79 0a 38 08 |ck/ssz_snappy.8.| | |
| |00000030| 01 12 34 2f 65 74 68 32 2f 66 36 37 37 35 64 30 |..4/eth2/f6775d0| | |
| |00000040| 37 2f 62 65 61 63 6f 6e 5f 61 67 67 72 65 67 61 |7/beacon_aggrega| | |
| |00000050| 74 65 5f 61 6e 64 5f 70 72 6f 6f 66 2f 73 73 7a |te_and_proof/ssz| | |
| |00000060| 5f 73 6e 61 70 70 79 |_snappy | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.790+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 106B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 8a 01 67 66 0a 2a 08 01 12 26 2f 65 74 68 32 2f |..gf.*...&/eth2/| | |
| |00000010| 66 36 37 37 35 64 30 37 2f 62 65 61 63 6f 6e 5f |f6775d07/beacon_| | |
| |00000020| 62 6c 6f 63 6b 2f 73 73 7a 5f 73 6e 61 70 70 79 |block/ssz_snappy| | |
| |00000030| 0a 38 08 01 12 34 2f 65 74 68 32 2f 66 36 37 37 |.8...4/eth2/f677| | |
| |00000040| 35 64 30 37 2f 62 65 61 63 6f 6e 5f 61 67 67 72 |5d07/beacon_aggr| | |
| |00000050| 65 67 61 74 65 5f 61 6e 64 5f 70 72 6f 6f 66 2f |egate_and_proof/| | |
| |00000060| 73 73 7a 5f 73 6e 61 70 70 79 |ssz_snappy | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.790+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 8a |.... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.791+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 138B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 2a d1 18 3e 1a a9 48 1b 2e de d4 e4 d1 32 cb 17 |*..>..H......2..| | |
| |00000010| a9 5d 0d a7 60 09 23 90 e2 75 4e f8 d1 ca 97 21 |.]..`.#..uN....!| | |
| |00000020| 97 5c 21 01 b3 d2 67 70 8d 07 20 a2 1b cb 4a a8 |.\!...gp.. ...J.| | |
| |00000030| 7b a9 40 3e 9b 8a 7c a0 1c 24 4b b3 d0 bf e2 d2 |{.@>..|..$K.....| | |
| |00000040| 02 25 57 a0 0f 59 a1 84 9c f8 55 2b 42 06 04 5e |.%W..Y....U+B..^| | |
| |00000050| 6b 05 24 8a ac 70 02 f8 9f d6 d7 6f 86 2e e3 a5 |k.$..p.....o....| | |
| |00000060| 83 9e 4d bb a8 ee f4 45 2d 19 d4 98 88 e6 ce c6 |..M....E-.......| | |
| |00000070| 02 55 00 07 03 65 0c 58 67 46 33 8e 34 ee 76 a5 |.U...e.XgF3.4.v.| | |
| |00000080| aa 0c 8f e1 96 81 66 b0 56 6f |......f.Vo | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.791+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.791+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.791+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:47.791+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 187B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 6a 03 bc 6a e2 f4 ed d6 0e 33 fe 32 e6 |...j..j.....3.2.| | |
| |00000010| f1 ea 3a 92 fb 29 7d 4c a8 c7 bc 9e 30 96 01 26 |..:..)}L....0..&| | |
| |00000020| 2e 82 b0 d0 27 c5 cf 0b 51 cf 59 db 64 b3 34 c3 |....'...Q.Y.d.4.| | |
| |00000030| fb 3a 09 f5 d1 d2 36 e9 f5 e6 0d 73 47 83 d2 6f |.:....6....sG..o| | |
| |00000040| f1 c2 a4 86 a8 98 e4 d1 5b ae 1b 48 ec f4 a8 61 |........[..H...a| | |
| |00000050| 1d db ae d5 80 55 2f ae 44 38 43 ea a0 f4 cc f4 |.....U/.D8C.....| | |
| |00000060| 47 b2 d1 ac 90 cd 1c 19 42 a0 66 20 63 4f 00 00 |G.......B.f cO..| | |
| |00000070| 00 23 66 83 c4 6a ca f3 cd 91 ed d7 5f 80 5d b6 |.#f..j......_.].| | |
| |00000080| 49 3e b8 ea ff 3b 5b f8 73 af b6 d4 48 ef 75 f6 |I>...;[.s...H.u.| | |
| |00000090| 65 51 4d 9a 22 00 00 00 22 1a 0d 21 76 f7 60 51 |eQM."..."..!v.`Q| | |
| |000000a0| 2c 69 8f a4 68 2f 7a 9f be 49 f8 7e d5 76 de dd |,i..h/z..I.~.v..| | |
| |000000b0| 10 35 9c 8b c1 53 95 2a d9 ba d0 |.5...S.*... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.792+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 74B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 81 01 47 00 54 ff 06 00 00 73 4e 61 50 70 59 00 |..G.T....sNaPpY.| | |
| |00000010| 37 00 00 32 f7 76 ef 54 10 f6 77 5d 07 00 9a 01 |7..2.v.T..w]....| | |
| |00000020| 00 9c 19 aa 2d ea a0 2c ac 97 74 eb 89 48 a8 ea |....-..,..t..H..| | |
| |00000030| d1 eb e8 51 ba 95 90 87 8a 10 cd 57 67 09 2e 16 |...Q.......Wg...| | |
| |00000040| ba 12 00 00 00 00 00 00 00 00 |.......... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.792+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/16/true, flag=DATA (resp), data=0054ff060000734e615070590037000032f776ef5410f6775d07009a01009c19aa2deaa02cac9774eb8948a8ead1ebe851ba9590878a10cd5767092e16ba120000000000000000), 71B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 54 ff 06 00 00 73 4e 61 50 70 59 00 37 00 00 |.T....sNaPpY.7..| | |
| |00000010| 32 f7 76 ef 54 10 f6 77 5d 07 00 9a 01 00 9c 19 |2.v.T..w].......| | |
| |00000020| aa 2d ea a0 2c ac 97 74 eb 89 48 a8 ea d1 eb e8 |.-..,..t..H.....| | |
| |00000030| 51 ba 95 90 87 8a 10 cd 57 67 09 2e 16 ba 12 00 |Q.......Wg......| | |
| |00000040| 00 00 00 00 00 00 00 |....... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.793+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 3B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 83 01 00 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.793+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ, MplexFrame(id=89db27ee/16/true, flag=CLOSE (resp), data=), 0B | |
| 2020-05-28 14:48:47.794+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 2B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 0c 00 |.. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:47.794+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ, MplexFrame(id=89db27ee/1/false, flag=CLOSE (init), data=), 0B | |
| 2020-05-28 14:48:47.794+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:47.794+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:47.794+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:47.799+10:00 | LibP2PNetwork-1 | TRACE | AsyncResponseProcessor | Queue response for processing: StatusMessage{forkDigest=0xf6775d07, finalizedRoot=0x0000000000000000000000000000000000000000000000000000000000000000, finalizedEpoch=0, headRoot=0x19aa2deaa02cac9774eb8948a8ead1ebe851ba9590878a10cd5767092e16ba12, headSlot=0} | |
| 2020-05-28 14:48:47.800+10:00 | LibP2PNetwork-1 | TRACE | AsyncResponseProcessor | Process response: StatusMessage{forkDigest=0xf6775d07, finalizedRoot=0x0000000000000000000000000000000000000000000000000000000000000000, finalizedEpoch=0, headRoot=0x19aa2deaa02cac9774eb8948a8ead1ebe851ba9590878a10cd5767092e16ba12, headSlot=0} | |
| 2020-05-28 14:48:47.801+10:00 | ForkJoinPool.commonPool-worker-19 | TRACE | AsyncResponseProcessor | Send response to response stream: StatusMessage{forkDigest=0xf6775d07, finalizedRoot=0x0000000000000000000000000000000000000000000000000000000000000000, finalizedEpoch=0, headRoot=0x19aa2deaa02cac9774eb8948a8ead1ebe851ba9590878a10cd5767092e16ba12, headSlot=0} | |
| 2020-05-28 14:48:47.801+10:00 | LibP2PNetwork-1 | TRACE | AsyncResponseProcessor | Finish processing: StatusMessage{forkDigest=0xf6775d07, finalizedRoot=0x0000000000000000000000000000000000000000000000000000000000000000, finalizedEpoch=0, headRoot=0x19aa2deaa02cac9774eb8948a8ead1ebe851ba9590878a10cd5767092e16ba12, headSlot=0} | |
| 2020-05-28 14:48:47.802+10:00 | LibP2PNetwork-1 | TRACE | AsyncResponseProcessor | Finished processing responses. | |
| 2020-05-28 14:48:47.803+10:00 | LibP2PNetwork-1 | TRACE | PeerChainValidator | Validate chain of peer: Eth2Peer{id=16Uiu2HAmEh2HHJSBdsP5hs3wkcquzR6vMGyq4gdTWz2pUJ81KgHn, remoteStatus=Optional[PeerStatus{forkDigest=0xf6775d07, finalizedRoot=0x0000000000000000000000000000000000000000000000000000000000000000, finalizedEpoch=0, headRoot=0x19aa2deaa02cac9774eb8948a8ead1ebe851ba9590878a10cd5767092e16ba12, headSlot=0}]} | |
| 2020-05-28 14:48:47.804+10:00 | LibP2PNetwork-1 | TRACE | PeerChainValidator | Validated peer's chain: Eth2Peer{id=16Uiu2HAmEh2HHJSBdsP5hs3wkcquzR6vMGyq4gdTWz2pUJ81KgHn, remoteStatus=Optional[PeerStatus{forkDigest=0xf6775d07, finalizedRoot=0x0000000000000000000000000000000000000000000000000000000000000000, finalizedEpoch=0, headRoot=0x19aa2deaa02cac9774eb8948a8ead1ebe851ba9590878a10cd5767092e16ba12, headSlot=0}]} | |
| 2020-05-28 14:48:47.808+10:00 | LibP2PNetwork-1 | TRACE | Eth2PeerManager | Sent status to 16Uiu2HAmEh2HHJSBdsP5hs3wkcquzR6vMGyq4gdTWz2pUJ81KgHn | |
| 2020-05-28 14:48:47.808+10:00 | LibP2PNetwork-1 | TRACE | Eth2OutgoingRequestHandler | Complete request | |
| 2020-05-28 14:48:48.728+10:00 | nioEventLoopGroup-3-1 | DEBUG | gossip | [id: 0x89db27ee/17/true, L:Mux[/127.0.0.1:64154-89db27ee/17/true] - R:Mux[/127.0.0.1:9001-89db27ee/17/true]] WRITE: control { | |
| graft { | |
| topicID: "/eth2/f6775d07/beacon_block/ssz_snappy" | |
| } | |
| graft { | |
| topicID: "/eth2/f6775d07/beacon_aggregate_and_proof/ssz_snappy" | |
| } | |
| } | |
| 2020-05-28 14:48:48.728+10:00 | nioEventLoopGroup-3-1 | DEBUG | gossip | [id: 0x89db27ee/17/true, L:Mux[/127.0.0.1:64154-89db27ee/17/true] - R:Mux[/127.0.0.1:9001-89db27ee/17/true]] FLUSH | |
| 2020-05-28 14:48:48.729+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/17/true, flag=DATA, data=641a621a280a262f657468322f66363737356430372f626561636f6e5f626c6f636b2f73737a5f736e617070791a360a342f657468322f66363737356430372f626561636f6e5f6167677265676174655f616e645f70726f6f662f73737a5f736e61707079), 101B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 64 1a 62 1a 28 0a 26 2f 65 74 68 32 2f 66 36 37 |d.b.(.&/eth2/f67| | |
| |00000010| 37 35 64 30 37 2f 62 65 61 63 6f 6e 5f 62 6c 6f |75d07/beacon_blo| | |
| |00000020| 63 6b 2f 73 73 7a 5f 73 6e 61 70 70 79 1a 36 0a |ck/ssz_snappy.6.| | |
| |00000030| 34 2f 65 74 68 32 2f 66 36 37 37 35 64 30 37 2f |4/eth2/f6775d07/| | |
| |00000040| 62 65 61 63 6f 6e 5f 61 67 67 72 65 67 61 74 65 |beacon_aggregate| | |
| |00000050| 5f 61 6e 64 5f 70 72 6f 6f 66 2f 73 73 7a 5f 73 |_and_proof/ssz_s| | |
| |00000060| 6e 61 70 70 79 |nappy | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:48.729+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 104B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 8a 01 65 64 1a 62 1a 28 0a 26 2f 65 74 68 32 2f |..ed.b.(.&/eth2/| | |
| |00000010| 66 36 37 37 35 64 30 37 2f 62 65 61 63 6f 6e 5f |f6775d07/beacon_| | |
| |00000020| 62 6c 6f 63 6b 2f 73 73 7a 5f 73 6e 61 70 70 79 |block/ssz_snappy| | |
| |00000030| 1a 36 0a 34 2f 65 74 68 32 2f 66 36 37 37 35 64 |.6.4/eth2/f6775d| | |
| |00000040| 30 37 2f 62 65 61 63 6f 6e 5f 61 67 67 72 65 67 |07/beacon_aggreg| | |
| |00000050| 61 74 65 5f 61 6e 64 5f 70 72 6f 6f 66 2f 73 73 |ate_and_proof/ss| | |
| |00000060| 7a 5f 73 6e 61 70 70 79 |z_snappy | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:48.729+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 88 |.... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:48.729+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 136B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 01 b6 b4 ee e0 d4 17 2e a6 e2 6b 13 d1 e1 d8 e4 |..........k.....| | |
| |00000010| f4 a0 6d a1 d0 eb 9d 5d 3a 91 42 db 1c 38 04 4e |..m....]:.B..8.N| | |
| |00000020| 80 ee 83 04 3a f4 88 f3 30 77 19 b2 35 83 8e f4 |....:...0w..5...| | |
| |00000030| 7a f6 fa e7 62 1f 57 b0 c2 f7 4d 46 01 72 45 57 |z...b.W...MF.rEW| | |
| |00000040| 0e 78 91 5b 50 98 f5 2a e5 41 9f 3f 6e a7 aa f9 |.x.[P..*.A.?n...| | |
| |00000050| 3e 72 21 7b 3c ae 43 c9 f2 68 dd 3f f3 5c 67 aa |>r!{<.C..h.?.\g.| | |
| |00000060| 46 77 0d d6 61 a4 64 7a 31 4b 4b 7e f1 16 28 40 |Fw..a.dz1KK~..(@| | |
| |00000070| a3 8e 3e e2 e7 6a 26 a2 0c 70 29 82 9e 76 47 66 |..>..j&..p)..vGf| | |
| |00000080| 36 7e fe 4a 3f a0 54 59 |6~.J?.TY | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:48.730+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:48.730+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:48.730+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:51.458+10:00 | TimeTickChannel-0 | INFO | teku-event-log | Slot Event *** Slot: 8643, Block: ... empty, Epoch: 270, Finalized checkpoint: 0, Finalized root: 0x19aa..ba12, Peers: 1 | |
| 2020-05-28 14:48:52.463+10:00 | ForkJoinPool.commonPool-worker-19 | TRACE | ValidatorApiDutyLoader | Requesting duties for epoch 270 | |
| 2020-05-28 14:48:52.463+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | ValidatorApiDutyLoader | Requesting duties for epoch 271 | |
| 2020-05-28 14:48:52.463+10:00 | ValidatorApiChannel-0 | DEBUG | RetryingDutyLoader | Unable to schedule duties for epoch 270 because node was syncing. Retrying. | |
| 2020-05-28 14:48:52.463+10:00 | ValidatorApiChannel-0 | DEBUG | RetryingDutyLoader | Unable to schedule duties for epoch 271 because node was syncing. Retrying. | |
| 2020-05-28 14:48:57.466+10:00 | ForkJoinPool.commonPool-worker-19 | TRACE | ValidatorApiDutyLoader | Requesting duties for epoch 271 | |
| 2020-05-28 14:48:57.466+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | ValidatorApiDutyLoader | Requesting duties for epoch 270 | |
| 2020-05-28 14:48:57.467+10:00 | ValidatorApiChannel-0 | DEBUG | RetryingDutyLoader | Unable to schedule duties for epoch 271 because node was syncing. Retrying. | |
| 2020-05-28 14:48:57.467+10:00 | ValidatorApiChannel-0 | DEBUG | RetryingDutyLoader | Unable to schedule duties for epoch 270 because node was syncing. Retrying. | |
| 2020-05-28 14:48:57.810+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE, MuxFrame(id=89db27ee/18/true, flag=OPEN, data=null), 0B | |
| 2020-05-28 14:48:57.811+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 3B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 90 01 00 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.811+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 23 |...# | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.811+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 35B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 0d a9 99 d1 a2 62 e0 42 cb 4e 87 67 37 7e d2 78 |.....b.B.N.g7~.x| | |
| |00000010| 28 e1 a7 c0 b4 10 de 28 96 8e da a4 cb 43 e3 e1 |(......(.....C..| | |
| |00000020| cc fc 7e |..~ | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.811+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.811+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.811+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.812+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/18/true, flag=DATA, data=132f6d756c746973747265616d2f312e302e300a), 20B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.812+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 23B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 92 01 14 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d |..../multistream| | |
| |00000010| 2f 31 2e 30 2e 30 0a |/1.0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.812+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 37 |...7 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.813+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 55B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 1a 6c 82 9a 1f 37 d5 50 26 5a f2 3d 89 d2 50 52 |.l...7.P&Z.=..PR| | |
| |00000010| 88 d3 c3 9d 2c 64 82 47 0f dd ea d0 13 a2 02 b8 |....,d.G........| | |
| |00000020| b8 66 3e 3a 5c eb dd d2 34 5c eb 53 75 06 cf cd |.f>:\...4\.Su...| | |
| |00000030| 3f 83 5e 84 cd a5 db |?.^.... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.813+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.813+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.813+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.813+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/18/true, flag=DATA, data=292f657468322f626561636f6e5f636861696e2f7265712f70696e672f312f73737a5f736e617070790a), 42B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 29 2f 65 74 68 32 2f 62 65 61 63 6f 6e 5f 63 68 |)/eth2/beacon_ch| | |
| |00000010| 61 69 6e 2f 72 65 71 2f 70 69 6e 67 2f 31 2f 73 |ain/req/ping/1/s| | |
| |00000020| 73 7a 5f 73 6e 61 70 70 79 0a |sz_snappy. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.813+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 45B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 92 01 2a 29 2f 65 74 68 32 2f 62 65 61 63 6f 6e |..*)/eth2/beacon| | |
| |00000010| 5f 63 68 61 69 6e 2f 72 65 71 2f 70 69 6e 67 2f |_chain/req/ping/| | |
| |00000020| 31 2f 73 73 7a 5f 73 6e 61 70 70 79 0a |1/ssz_snappy. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.813+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 4d |...M | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.814+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 77B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 6d 47 4c f2 cf 2f fa f5 70 e3 15 35 58 6b 80 43 |mGL../..p..5Xk.C| | |
| |00000010| 40 6b 0c a7 0d ec 62 50 c1 15 29 22 89 5b 63 39 |@k....bP..)".[c9| | |
| |00000020| 29 8e 1e 66 c5 07 af 0e f4 2f 45 53 4f ec 77 58 |)..f...../ESO.wX| | |
| |00000030| ee 0e 00 da 91 ca 2e 50 ab da e8 51 f4 8f c6 a6 |.......P...Q....| | |
| |00000040| 76 0d d2 2b f6 4c d2 4d d3 11 11 c6 ba |v..+.L.M..... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.814+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.814+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.814+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.814+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 140B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 37 8c 9f 4b 62 fc 6c b0 52 64 36 71 da |...7..Kb.l.Rd6q.| | |
| |00000010| f3 40 ac 65 8e d4 7d 69 4d dd c5 29 db 3b 47 04 |[email protected]..}iM..).;G.| | |
| |00000020| 60 49 2a 30 13 1c 60 32 96 ef fa 06 65 ff d9 63 |`I*0..`2....e..c| | |
| |00000030| 1e af 9c 10 00 53 53 c7 6e ab b8 00 00 00 4d 44 |.....SS.n.....MD| | |
| |00000040| b4 ad 3a 9d b9 69 47 6c 4a f6 70 79 8b 5d 0f 19 |..:..iGlJ.py.]..| | |
| |00000050| 6d 2a 65 d1 c3 46 66 92 62 52 df 95 da f0 8f cf |m*e..Ff.bR......| | |
| |00000060| 7d f4 2f da f5 b6 62 ff 6d 74 7f ee c3 7f 4d 00 |}./...b.mt....M.| | |
| |00000070| ee aa 37 df 1e 68 b6 d7 79 5c 1c 0f 67 cd d5 65 |..7..h..y\..g..e| | |
| |00000080| 7d a8 0a ec 87 41 b5 f4 e9 d7 e6 89 |}....A...... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.815+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 23B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 91 01 14 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d |..../multistream| | |
| |00000010| 2f 31 2e 30 2e 30 0a |/1.0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.815+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/18/true, flag=DATA (resp), data=132f6d756c746973747265616d2f312e302e300a), 20B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.815+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 45B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 91 01 2a 29 2f 65 74 68 32 2f 62 65 61 63 6f 6e |..*)/eth2/beacon| | |
| |00000010| 5f 63 68 61 69 6e 2f 72 65 71 2f 70 69 6e 67 2f |_chain/req/ping/| | |
| |00000020| 31 2f 73 73 7a 5f 73 6e 61 70 70 79 0a |1/ssz_snappy. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.815+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/18/true, flag=DATA (resp), data=292f657468322f626561636f6e5f636861696e2f7265712f70696e672f312f73737a5f736e617070790a), 42B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 29 2f 65 74 68 32 2f 62 65 61 63 6f 6e 5f 63 68 |)/eth2/beacon_ch| | |
| |00000010| 61 69 6e 2f 72 65 71 2f 70 69 6e 67 2f 31 2f 73 |ain/req/ping/1/s| | |
| |00000020| 73 7a 5f 73 6e 61 70 70 79 0a |sz_snappy. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.816+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/18/true, flag=DATA, data=08ff060000734e61507059010c0000290398070000000000000000), 27B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 08 ff 06 00 00 73 4e 61 50 70 59 01 0c 00 00 29 |.....sNaPpY....)| | |
| |00000010| 03 98 07 00 00 00 00 00 00 00 00 |........... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.816+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 30B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 92 01 1b 08 ff 06 00 00 73 4e 61 50 70 59 01 0c |........sNaPpY..| | |
| |00000010| 00 00 29 03 98 07 00 00 00 00 00 00 00 00 |..)........... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.816+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 3e |...> | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.816+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 62B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| a8 15 93 e4 d5 f0 60 38 5a 55 ce e3 e7 b4 fc 51 |......`8ZU.....Q| | |
| |00000010| c1 62 8a 3d f6 c7 a1 b0 f4 21 2c 7c 8b bc 5d d8 |.b.=.....!,|..].| | |
| |00000020| 64 0e 31 ee af cf 17 0a 23 da 77 0d fb d9 52 61 |d.1.....#.w...Ra| | |
| |00000030| 00 da 56 34 b2 5a 75 1e 52 c4 30 39 75 0c |..V4.Zu.R.09u. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.816+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.816+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.816+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.816+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE, MuxFrame(id=89db27ee/18/true, flag=CLOSE, data=null), 0B | |
| 2020-05-28 14:48:57.817+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 3B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 94 01 00 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.817+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 23 |...# | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.817+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 35B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 9b 33 2e 26 cd ed 2e 62 32 ee c1 72 d7 5d 32 e2 |.3.&...b2..r.]2.| | |
| |00000010| 0c 4e 9d 02 c6 83 05 c2 68 7f f4 c7 4a 52 b7 bf |.N......h...JR..| | |
| |00000020| 30 97 b0 |0.. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.817+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.817+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.817+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.817+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:57.817+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:57.817+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:57.818+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 67B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 3f c7 37 85 db 9c 68 06 4e 26 48 2c ce |...?.7...h.N&H,.| | |
| |00000010| 69 98 58 3b 69 ad 4b 71 c0 5f 5e 3a e8 f9 c1 dd |i.X;i.Kq._^:....| | |
| |00000020| 7d 6e ee 4a 6b 28 87 a0 31 3d 75 c9 f2 38 51 81 |}n.Jk(..1=u..8Q.| | |
| |00000030| f1 7b 1d d5 c1 fd 8a 7e fc 35 5b c7 4a f4 22 58 |.{.....~.5[.J."X| | |
| |00000040| 16 94 cc |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.818+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 31B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 91 01 1c 00 08 ff 06 00 00 73 4e 61 50 70 59 01 |.........sNaPpY.| | |
| |00000010| 0c 00 00 01 75 de 41 01 00 00 00 00 00 00 00 |....u.A........ | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.818+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/18/true, flag=DATA (resp), data=0008ff060000734e61507059010c00000175de410100000000000000), 28B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 08 ff 06 00 00 73 4e 61 50 70 59 01 0c 00 00 |......sNaPpY....| | |
| |00000010| 01 75 de 41 01 00 00 00 00 00 00 00 |.u.A........ | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.818+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:57.818+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:57.818+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:57.818+10:00 | LibP2PNetwork-1 | TRACE | AsyncResponseProcessor | Queue response for processing: PingMessage{seqNumber=1} | |
| 2020-05-28 14:48:57.819+10:00 | LibP2PNetwork-1 | TRACE | AsyncResponseProcessor | Process response: PingMessage{seqNumber=1} | |
| 2020-05-28 14:48:57.819+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | AsyncResponseProcessor | Send response to response stream: PingMessage{seqNumber=1} | |
| 2020-05-28 14:48:57.819+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE, MuxFrame(id=89db27ee/18/true, flag=RESET, data=null), 0B | |
| 2020-05-28 14:48:57.819+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | AsyncResponseProcessor | Finish processing: PingMessage{seqNumber=1} | |
| 2020-05-28 14:48:57.819+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 3B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 96 01 00 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.819+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | AsyncResponseProcessor | Finished processing responses. | |
| 2020-05-28 14:48:57.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 23 |...# | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.820+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | RpcHandler | In RpcHandler.sendRequest initiating metadata request | |
| 2020-05-28 14:48:57.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 35B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 69 c2 4a ed 15 ab 95 6e ae ec 56 4d 2f dd de 48 |i.J....n..VM/..H| | |
| |00000010| ee ca b4 92 09 eb 01 4d bb 2a 0e 30 5d 19 dd 0f |.......M.*.0]...| | |
| |00000020| 62 42 c6 |bB. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE, MuxFrame(id=89db27ee/19/true, flag=OPEN, data=null), 0B | |
| 2020-05-28 14:48:57.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 3B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 98 01 00 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.820+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | Eth2PeerManager | Periodic ping returned 1 from 16Uiu2HAmEh2HHJSBdsP5hs3wkcquzR6vMGyq4gdTWz2pUJ81KgHn | |
| 2020-05-28 14:48:57.820+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | Eth2OutgoingRequestHandler | Complete request | |
| 2020-05-28 14:48:57.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 23 |...# | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 35B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 6d 7a bc 36 ed 59 c3 b4 a0 01 71 de 82 d5 1d 25 |mz.6.Y....q....%| | |
| |00000010| 4f 90 ee f0 61 65 6f 7e 8c e4 d0 45 89 1d ce ca |O...aeo~...E....| | |
| |00000020| 59 c1 e1 |Y.. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.821+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.821+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.821+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.822+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/19/true, flag=DATA, data=132f6d756c746973747265616d2f312e302e300a), 20B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.822+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 23B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 9a 01 14 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d |..../multistream| | |
| |00000010| 2f 31 2e 30 2e 30 0a |/1.0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.822+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 37 |...7 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.822+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 55B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 54 ae 5d 82 68 73 ca 05 24 1e e4 d2 0d 87 2f d4 |T.].hs..$...../.| | |
| |00000010| 70 da fe c4 4b 49 4b f6 ce 37 6e 8f e0 f6 e2 77 |p...KIK..7n....w| | |
| |00000020| 20 6f 3d 6e 47 54 f3 42 6f 37 f0 b7 2c 2e 8d 18 | o=nGT.Bo7..,...| | |
| |00000030| 02 c1 d0 dc b8 b3 84 |....... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.822+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.822+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.822+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.822+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/19/true, flag=DATA, data=2d2f657468322f626561636f6e5f636861696e2f7265712f6d657461646174612f312f73737a5f736e617070790a), 46B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 2d 2f 65 74 68 32 2f 62 65 61 63 6f 6e 5f 63 68 |-/eth2/beacon_ch| | |
| |00000010| 61 69 6e 2f 72 65 71 2f 6d 65 74 61 64 61 74 61 |ain/req/metadata| | |
| |00000020| 2f 31 2f 73 73 7a 5f 73 6e 61 70 70 79 0a |/1/ssz_snappy. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.822+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 49B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 9a 01 2e 2d 2f 65 74 68 32 2f 62 65 61 63 6f 6e |...-/eth2/beacon| | |
| |00000010| 5f 63 68 61 69 6e 2f 72 65 71 2f 6d 65 74 61 64 |_chain/req/metad| | |
| |00000020| 61 74 61 2f 31 2f 73 73 7a 5f 73 6e 61 70 70 79 |ata/1/ssz_snappy| | |
| |00000030| 0a |. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 51 |...Q | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 81B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| ce 26 37 ca c4 e6 82 f7 89 fc 63 1a 72 14 92 15 |.&7.......c.r...| | |
| |00000010| 00 f6 4a cf 36 03 d2 4a f3 f9 ae 70 69 77 6f cb |..J.6..J...piwo.| | |
| |00000020| f5 01 11 13 eb c0 3f 27 35 e9 99 f6 a3 64 95 0c |......?'5....d..| | |
| |00000030| f1 ba 06 1e 01 9e 74 e2 d4 e0 c4 91 ba d3 f2 9a |......t.........| | |
| |00000040| 13 e4 4f 66 56 bc 38 50 f5 30 58 28 a7 7e cd bf |..OfV.8P.0X(.~..| | |
| |00000050| ef |. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:48:57.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 98B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 23 69 b1 76 0d 6e dd 8c 01 f4 98 62 b0 |...#i.v.n.....b.| | |
| |00000010| c0 41 14 cd 67 75 6a 99 33 cd 66 65 0c c9 58 1c |.A..guj.3.fe..X.| | |
| |00000020| 76 4d 11 9f ee 89 f9 00 00 00 37 96 ca 56 90 6b |vM........7..V.k| | |
| |00000030| 37 5c 73 ab 4c fa 6c a9 d8 96 ff 06 22 58 2d 22 |7\s.L.l....."X-"| | |
| |00000040| e1 91 b5 62 56 cb 05 3c d3 71 4a 9a 7b a1 7b f7 |...bV..<.qJ.{.{.| | |
| |00000050| 8b 00 f1 a7 f9 96 60 12 14 ff 45 b0 b2 63 fc 77 |......`...E..c.w| | |
| |00000060| 7c 1a ||. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 3B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 93 01 00 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.824+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ, MplexFrame(id=89db27ee/18/true, flag=CLOSE (resp), data=), 0B | |
| 2020-05-28 14:48:57.824+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 23B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 99 01 14 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d |..../multistream| | |
| |00000010| 2f 31 2e 30 2e 30 0a |/1.0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.824+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/19/true, flag=DATA (resp), data=132f6d756c746973747265616d2f312e302e300a), 20B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:48:57.824+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:57.824+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:57.824+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:48:59.477+10:00 | TimeTickChannel-0 | INFO | teku-event-log | Slot Event *** Slot: 8644, Block: ... empty, Epoch: 270, Finalized checkpoint: 0, Finalized root: 0x19aa..ba12, Peers: 1 | |
| 2020-05-28 14:49:02.468+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | ValidatorApiDutyLoader | Requesting duties for epoch 271 | |
| 2020-05-28 14:49:02.468+10:00 | ForkJoinPool.commonPool-worker-19 | TRACE | ValidatorApiDutyLoader | Requesting duties for epoch 270 | |
| 2020-05-28 14:49:02.468+10:00 | ValidatorApiChannel-0 | DEBUG | RetryingDutyLoader | Unable to schedule duties for epoch 271 because node was syncing. Retrying. | |
| 2020-05-28 14:49:02.468+10:00 | ValidatorApiChannel-0 | DEBUG | RetryingDutyLoader | Unable to schedule duties for epoch 270 because node was syncing. Retrying. | |
| 2020-05-28 14:49:02.823+10:00 | LibP2PNetwork-1 | TRACE | RpcHandler | In RpcHandler.sendRequest - metadata request would normally be timed out | |
| 2020-05-28 14:49:07.470+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | ValidatorApiDutyLoader | Requesting duties for epoch 271 | |
| 2020-05-28 14:49:07.470+10:00 | ForkJoinPool.commonPool-worker-19 | TRACE | ValidatorApiDutyLoader | Requesting duties for epoch 270 | |
| 2020-05-28 14:49:07.487+10:00 | TimeTickChannel-0 | INFO | teku-event-log | Slot Event *** Slot: 8645, Block: ... empty, Epoch: 270, Finalized checkpoint: 0, Finalized root: 0x19aa..ba12, Peers: 1 | |
| 2020-05-28 14:49:07.815+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE, MuxFrame(id=89db27ee/20/true, flag=OPEN, data=null), 0B | |
| 2020-05-28 14:49:07.815+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 3B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| a0 01 00 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.816+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 23 |...# | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.816+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 35B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 65 89 c4 6b 17 fe 27 21 ce a6 e8 7d 8a 93 e6 39 |e..k..'!...}...9| | |
| |00000010| f9 75 d5 13 ee ee 17 25 7f 99 3c f1 11 0f f1 5f |.u.....%..<...._| | |
| |00000020| 74 e5 12 |t.. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.816+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.816+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.816+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.817+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/20/true, flag=DATA, data=132f6d756c746973747265616d2f312e302e300a), 20B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.817+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 23B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| a2 01 14 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d |..../multistream| | |
| |00000010| 2f 31 2e 30 2e 30 0a |/1.0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.817+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 37 |...7 | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.817+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 55B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| dd 68 ac e0 79 c6 c8 14 78 76 39 09 58 71 54 d1 |.h..y...xv9.XqT.| | |
| |00000010| e9 4b 01 7c ad 2b 8c f6 46 09 57 b6 bb 8b 51 8c |.K.|.+..F.W...Q.| | |
| |00000020| 43 9a d1 dd f0 14 57 9e 5f e4 0f c7 04 4b c2 50 |C.....W._....K.P| | |
| |00000030| 6a d9 ee 86 71 f0 02 |j...q.. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.817+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.817+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.817+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.818+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/20/true, flag=DATA, data=292f657468322f626561636f6e5f636861696e2f7265712f70696e672f312f73737a5f736e617070790a), 42B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 29 2f 65 74 68 32 2f 62 65 61 63 6f 6e 5f 63 68 |)/eth2/beacon_ch| | |
| |00000010| 61 69 6e 2f 72 65 71 2f 70 69 6e 67 2f 31 2f 73 |ain/req/ping/1/s| | |
| |00000020| 73 7a 5f 73 6e 61 70 70 79 0a |sz_snappy. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.818+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 45B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| a2 01 2a 29 2f 65 74 68 32 2f 62 65 61 63 6f 6e |..*)/eth2/beacon| | |
| |00000010| 5f 63 68 61 69 6e 2f 72 65 71 2f 70 69 6e 67 2f |_chain/req/ping/| | |
| |00000020| 31 2f 73 73 7a 5f 73 6e 61 70 70 79 0a |1/ssz_snappy. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.818+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 4d |...M | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.818+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 77B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 91 2e d1 17 38 e5 ca cd 63 b9 24 6d d1 a3 bb 4e |....8...c.$m...N| | |
| |00000010| 94 3d cb 5a ea 24 d8 46 3c 96 21 34 30 70 db 2a |.=.Z.$.F<.!40p.*| | |
| |00000020| 39 c0 21 a6 22 91 86 40 89 77 d1 9a c2 36 3c f1 |9.!."[email protected]<.| | |
| |00000030| 60 c8 54 b3 2e 7a 04 67 70 79 19 3a 98 72 64 99 |`.T..z.gpy.:.rd.| | |
| |00000040| 08 0e 19 68 d4 1c 04 af 72 bf b1 4f 0e |...h....r..O. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.818+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.818+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.818+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.819+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 303B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 78 c7 2c e6 12 ae 4a 05 22 54 25 e1 70 |...x.,...J."T%.p| | |
| |00000010| 92 ac ad e5 0f 48 b5 d3 63 b8 aa 6f 4c b0 d6 83 |.....H..c..oL...| | |
| |00000020| 64 83 cd 57 25 ac 75 60 97 29 9b 95 bd a6 18 ae |d..W%.u`.)......| | |
| |00000030| f6 11 58 fb 6a b7 4b 71 d5 8f 9a c2 20 e7 56 7e |..X.j.Kq.... .V~| | |
| |00000040| b3 93 fa 3f 0e 51 61 49 2e 4d 36 5d 5f aa b0 dc |...?.QaI.M6]_...| | |
| |00000050| e1 7f 35 c5 96 7d 8c 44 8c 9e b0 ab 55 72 08 54 |..5..}.D....Ur.T| | |
| |00000060| 56 87 e4 ca 03 35 76 ae b3 e2 58 89 cb 08 67 1c |V....5v...X...g.| | |
| |00000070| 51 72 1d e5 87 3e 59 c8 ad f9 ac 8c 00 00 00 23 |Qr...>Y........#| | |
| |00000080| 69 46 a7 dd 90 90 26 e3 da 1c a6 3c 50 fb 09 15 |iF....&....<P...| | |
| |00000090| f6 64 3d 23 c4 0c 61 64 e1 eb 94 58 e6 d9 58 22 |.d=#..ad...X..X"| | |
| |000000a0| d1 4d af 00 00 00 37 1f 4f 4c 62 69 17 54 a6 62 |.M....7.OLbi.T.b| | |
| |000000b0| 6c f5 11 62 c0 2d c5 b6 57 c6 97 29 94 01 92 76 |l..b.-..W..)...v| | |
| |000000c0| d2 15 dc c3 a5 42 31 8c 5c 6d 8c d7 6a 5d b8 0f |.....B1.\m..j]..| | |
| |000000d0| 7d b0 37 95 d2 fd 07 66 f5 00 71 a0 7c 53 00 00 |}.7....f..q.|S..| | |
| |000000e0| 00 4d 86 86 51 9c fa 79 70 4f cc 8b ee c4 79 71 |.M..Q..ypO....yq| | |
| |000000f0| 51 92 ca 97 c6 89 da cb 59 38 7b d5 7e 38 ec 38 |Q.......Y8{.~8.8| | |
| |00000100| 53 fa 1d 7f 36 ed bd 39 d1 90 5c da d8 c8 3a 78 |S...6..9..\...:x| | |
| |00000110| 9f e0 27 05 5b fe f4 19 05 a9 1e 7b 6c b5 c6 ae |..'.[......{l...| | |
| |00000120| 8d 8a 44 3e 6d 0f 95 47 af 7b fe 8a e5 c5 97 |..D>m..G.{..... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.819+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 88B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 99 01 2e 2d 2f 65 74 68 32 2f 62 65 61 63 6f 6e |...-/eth2/beacon| | |
| |00000010| 5f 63 68 61 69 6e 2f 72 65 71 2f 6d 65 74 61 64 |_chain/req/metad| | |
| |00000020| 61 74 61 2f 31 2f 73 73 7a 5f 73 6e 61 70 70 79 |ata/1/ssz_snappy| | |
| |00000030| 0a 99 01 24 00 10 ff 06 00 00 73 4e 61 50 70 59 |...$......sNaPpY| | |
| |00000040| 01 14 00 00 d1 4b ac d0 01 00 00 00 00 00 00 00 |.....K..........| | |
| |00000050| 00 00 00 00 00 00 00 00 |........ | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.819+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/19/true, flag=DATA (resp), data=2d2f657468322f626561636f6e5f636861696e2f7265712f6d657461646174612f312f73737a5f736e617070790a), 46B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 2d 2f 65 74 68 32 2f 62 65 61 63 6f 6e 5f 63 68 |-/eth2/beacon_ch| | |
| |00000010| 61 69 6e 2f 72 65 71 2f 6d 65 74 61 64 61 74 61 |ain/req/metadata| | |
| |00000020| 2f 31 2f 73 73 7a 5f 73 6e 61 70 70 79 0a |/1/ssz_snappy. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE, MuxFrame(id=89db27ee/19/true, flag=DATA, data=), 0B | |
| 2020-05-28 14:49:07.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 3B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 9a 01 00 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 23 |...# | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 35B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 45 d8 75 f3 04 e2 f7 37 5f df de 60 61 61 da 03 |E.u....7_..`aa..| | |
| |00000010| 43 d4 1b 8c 05 cc 4d 33 6e 6d e9 1e f9 fb 3d eb |C.....M3nm....=.| | |
| |00000020| 1a b4 b6 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE, MuxFrame(id=89db27ee/19/true, flag=CLOSE, data=null), 0B | |
| 2020-05-28 14:49:07.820+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 3B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 9c 01 00 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.821+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 23 |...# | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.821+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 35B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 04 a5 20 0a 5f 7e a7 c3 c0 77 f6 ab fe 6f 96 43 |.. ._~...w...o.C| | |
| |00000010| 26 b5 91 0b 14 dc 70 85 f2 ff 59 56 2b 52 fa 6f |&.....p...YV+R.o| | |
| |00000020| 8b 35 fa |.5. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.821+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.821+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.821+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.821+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/19/true, flag=DATA (resp), data=0010ff060000734e6150705901140000d14bacd001000000000000000000000000000000), 36B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 10 ff 06 00 00 73 4e 61 50 70 59 01 14 00 00 |......sNaPpY....| | |
| |00000010| d1 4b ac d0 01 00 00 00 00 00 00 00 00 00 00 00 |.K..............| | |
| |00000020| 00 00 00 00 |.... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.821+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 3B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 9b 01 00 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.821+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ, MplexFrame(id=89db27ee/19/true, flag=CLOSE (resp), data=), 0B | |
| 2020-05-28 14:49:07.822+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 23B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| a1 01 14 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d |..../multistream| | |
| |00000010| 2f 31 2e 30 2e 30 0a |/1.0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.822+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/20/true, flag=DATA (resp), data=132f6d756c746973747265616d2f312e302e300a), 20B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 13 2f 6d 75 6c 74 69 73 74 72 65 61 6d 2f 31 2e |./multistream/1.| | |
| |00000010| 30 2e 30 0a |0.0. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.822+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 45B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| a1 01 2a 29 2f 65 74 68 32 2f 62 65 61 63 6f 6e |..*)/eth2/beacon| | |
| |00000010| 5f 63 68 61 69 6e 2f 72 65 71 2f 70 69 6e 67 2f |_chain/req/ping/| | |
| |00000020| 31 2f 73 73 7a 5f 73 6e 61 70 70 79 0a |1/ssz_snappy. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.822+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/20/true, flag=DATA (resp), data=292f657468322f626561636f6e5f636861696e2f7265712f70696e672f312f73737a5f736e617070790a), 42B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 29 2f 65 74 68 32 2f 62 65 61 63 6f 6e 5f 63 68 |)/eth2/beacon_ch| | |
| |00000010| 61 69 6e 2f 72 65 71 2f 70 69 6e 67 2f 31 2f 73 |ain/req/ping/1/s| | |
| |00000020| 73 7a 5f 73 6e 61 70 70 79 0a |sz_snappy. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.822+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: MuxFrame(id=89db27ee/20/true, flag=DATA, data=08ff060000734e61507059010c0000290398070000000000000000), 27B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 08 ff 06 00 00 73 4e 61 50 70 59 01 0c 00 00 29 |.....sNaPpY....)| | |
| |00000010| 03 98 07 00 00 00 00 00 00 00 00 |........... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.822+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 30B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| a2 01 1b 08 ff 06 00 00 73 4e 61 50 70 59 01 0c |........sNaPpY..| | |
| |00000010| 00 00 29 03 98 07 00 00 00 00 00 00 00 00 |..)........... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 3e |...> | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 62B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 1a d4 bc 65 f1 b2 1f 5c aa 4d 1c 6a 5f 66 85 6f |...e...\.M.j_f.o| | |
| |00000010| 01 7f fe 48 bc 03 02 42 97 7a dc 15 0f 19 27 8b |...H...B.z....'.| | |
| |00000020| 59 92 70 e9 95 db cf 5e 26 c1 44 03 a7 99 75 a0 |Y.p....^&.D...u.| | |
| |00000030| 49 89 43 f5 32 29 77 ba 4f 13 d0 f5 4e 7a |I.C.2)w.O...Nz | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE, MuxFrame(id=89db27ee/20/true, flag=CLOSE, data=null), 0B | |
| 2020-05-28 14:49:07.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 3B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| a4 01 00 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 4B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 23 |...# | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] WRITE: 35B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 96 7e 3f b6 09 79 99 33 4d 8f e7 69 da 6f 4f 41 |.~?..y.3M..i.oOA| | |
| |00000010| ad 73 2c 1c a4 89 6b d9 d6 75 d1 ca f8 90 3a ad |.s,...k..u....:.| | |
| |00000020| eb 32 99 |.2. | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.823+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.824+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] FLUSH | |
| 2020-05-28 14:49:07.824+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:49:07.824+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:49:07.824+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:49:07.824+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 106B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 00 00 3f 57 02 a9 d0 ef e7 75 b8 ea d6 f9 57 |...?W.....u....W| | |
| |00000010| cf a4 13 02 c0 e2 cf b4 68 a7 73 e0 72 91 85 20 |........h.s.r.. | | |
| |00000020| fb 2a 5b c2 14 13 5c da bb 96 41 c7 ed e7 1f 02 |.*[...\...A.....| | |
| |00000030| bf ba 47 ac 6e e9 37 d8 90 ab 86 85 de 4d c0 6a |..G.n.7......M.j| | |
| |00000040| 5e d4 e8 00 00 00 23 51 66 86 85 57 0f 77 31 57 |^.....#Qf..W.w1W| | |
| |00000050| a0 26 35 8a 26 98 10 93 5d f0 21 62 85 41 f5 04 |.&5.&...].!b.A..| | |
| |00000060| 1b e1 90 18 b0 32 85 14 09 4b |.....2...K | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.824+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 31B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| a1 01 1c 00 08 ff 06 00 00 73 4e 61 50 70 59 01 |.........sNaPpY.| | |
| |00000010| 0c 00 00 01 75 de 41 01 00 00 00 00 00 00 00 |....u.A........ | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.824+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: MplexFrame(id=89db27ee/20/true, flag=DATA (resp), data=0008ff060000734e61507059010c00000175de410100000000000000), 28B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| 00 08 ff 06 00 00 73 4e 61 50 70 59 01 0c 00 00 |......sNaPpY....| | |
| |00000010| 01 75 de 41 01 00 00 00 00 00 00 00 |.u.A........ | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.824+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ: 3B | |
| +-------------------------------------------------+ | |
| | 0 1 2 3 4 5 6 7 8 9 a b c d e f | | |
| +--------+-------------------------------------------------+----------------+ | |
| |00000000| a3 01 00 |... | | |
| +--------+-------------------------------------------------+----------------+ | |
| 2020-05-28 14:49:07.824+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ, MplexFrame(id=89db27ee/20/true, flag=CLOSE (resp), data=), 0B | |
| 2020-05-28 14:49:07.825+10:00 | nioEventLoopGroup-3-1 | DEBUG | ciphered | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:49:07.825+10:00 | nioEventLoopGroup-3-1 | DEBUG | plain | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:49:07.825+10:00 | nioEventLoopGroup-3-1 | DEBUG | mux | [id: 0x89db27ee, L:/127.0.0.1:64154 - R:/127.0.0.1:9001] READ COMPLETE | |
| 2020-05-28 14:49:07.825+10:00 | LibP2PNetwork-0 | TRACE | AsyncResponseProcessor | Queue response for processing: PingMessage{seqNumber=1} | |
| 2020-05-28 14:49:07.825+10:00 | LibP2PNetwork-0 | TRACE | AsyncResponseProcessor | Process response: PingMessage{seqNumber=1} | |
| 2020-05-28 14:49:07.825+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | AsyncResponseProcessor | Send response to response stream: PingMessage{seqNumber=1} | |
| 2020-05-28 14:49:07.825+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | AsyncResponseProcessor | Finish processing: PingMessage{seqNumber=1} | |
| 2020-05-28 14:49:07.825+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | AsyncResponseProcessor | Finished processing responses. | |
| 2020-05-28 14:49:07.825+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | Eth2PeerManager | Periodic ping returned 1 from 16Uiu2HAmEh2HHJSBdsP5hs3wkcquzR6vMGyq4gdTWz2pUJ81KgHn | |
| 2020-05-28 14:49:07.825+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | Eth2OutgoingRequestHandler | Complete request | |
| 2020-05-28 14:49:07.822+10:00 | LibP2PNetwork-1 | TRACE | AsyncResponseProcessor | Queue response for processing: MetadataMessage{seqNumber=1, attnets=Bitvector{data={}, size=64}} | |
| 2020-05-28 14:49:07.832+10:00 | LibP2PNetwork-1 | TRACE | AsyncResponseProcessor | Process response: MetadataMessage{seqNumber=1, attnets=Bitvector{data={}, size=64}} | |
| 2020-05-28 14:49:07.833+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | AsyncResponseProcessor | Send response to response stream: MetadataMessage{seqNumber=1, attnets=Bitvector{data={}, size=64}} | |
| 2020-05-28 14:49:07.833+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | AsyncResponseProcessor | Finish processing: MetadataMessage{seqNumber=1, attnets=Bitvector{data={}, size=64}} | |
| 2020-05-28 14:49:07.833+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | AsyncResponseProcessor | Finished processing responses. | |
| 2020-05-28 14:49:07.833+10:00 | ForkJoinPool.commonPool-worker-5 | TRACE | Eth2OutgoingRequestHandler | Complete request |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment