From 7697a6c5aed119053155e5f2a5398d0ffd383305 Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Wed, 23 Jul 2025 15:06:38 -0400 Subject: [PATCH 01/32] rewrite test retry logic --- scripts/build_test.sh | 68 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 56 insertions(+), 12 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index b2390e53ea..05a7f1e52b 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -24,35 +24,79 @@ fi # MAX_RUNS bounds the attempts to retry the tests before giving up # This is useful for flaky tests MAX_RUNS=4 + +# Function to get all test names from packages +get_all_tests() { + local packages="$1" + go test -list=".*" ${race:-} "$@" $packages 2>/dev/null | grep "^Test" | sort +} + +# Get all packages to test +PACKAGES=$(go list ./... | grep -v github.com/ava-labs/coreth/tests) + for ((i = 1; i <= MAX_RUNS; i++)); do - # shellcheck disable=SC2046 - go test -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" $(go list ./... | grep -v github.com/ava-labs/coreth/tests) | tee test.out || command_status=$? + echo "Test run $i of $MAX_RUNS" + + # Get expected tests (for comparison) on first run + if [[ $i -eq 1 ]]; then + echo "Getting expected test list..." + EXPECTED_TESTS=$(get_all_tests "$PACKAGES") + echo "Expected tests: $(echo "$EXPECTED_TESTS" | wc -l | tr -d ' ') tests" + fi + + # Run tests with JSON output for better tracking + echo "Running tests..." + test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" $PACKAGES 2>&1) || command_status=$? + + # Extract test results for analysis + echo "$test_output" > test.json + + # Get tests that actually ran and failed + RAN_TESTS=$(echo "$test_output" | jq -r 'select(.Action == "pass" or .Action == "fail") | .Test' | sort) + FAILED_TESTS=$(echo "$test_output" | jq -r 'select(.Action == "fail") | .Test' | sort) + + # Check if all expected tests ran + MISSING_TESTS=$(comm -23 <(echo "$EXPECTED_TESTS") <(echo "$RAN_TESTS")) + + if [[ -n "$MISSING_TESTS" ]]; then + echo "WARNING: Some tests did not run due to panics or other issues:" + echo "$MISSING_TESTS" + fi # If the test passed, exit if [[ ${command_status:-0} == 0 ]]; then - rm test.out + echo "All tests passed!" + rm -f test.json test.out exit 0 else unset command_status # Clear the error code for the next run fi - # If the test failed, print the output - unexpected_failures=$( - # First grep pattern corresponds to test failures, second pattern corresponds to test panics due to timeouts - (grep "^--- FAIL" test.out | awk '{print $3}' || grep -E '^\s+Test.+ \(' test.out | awk '{print $1}') | - sort -u | comm -23 - <(sed 's/\r$//' ./scripts/known_flakes.txt) - ) + # Check for unexpected failures + unexpected_failures=$(comm -23 <(echo "$FAILED_TESTS") <(sed 's/\r$//' ./scripts/known_flakes.txt)) if [ -n "${unexpected_failures}" ]; then echo "Unexpected test failures: ${unexpected_failures}" exit 1 fi - # Note the absence of unexpected failures cannot be indicative that we only need to run the tests that failed, - # for example a test may panic and cause subsequent tests in that package to not run. - # So we loop here. + # If only known flakes failed and no tests were missing, we can be more efficient + if [[ -z "$MISSING_TESTS" ]]; then + echo "Only known flakes failed and all tests ran. Retrying only failed tests..." + # Run only the failed tests for efficiency + for test in $FAILED_TESTS; do + package=$(echo "$test" | cut -d'/' -f1) + test_name=$(echo "$test" | cut -d'/' -f2) + echo "Retrying $test_name in $package" + go test -run "^${test_name}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" $package + done + else + echo "Some tests did not run, retrying entire suite..." + fi + echo "Test run $i failed with known flakes, retrying..." done # If we reach here, we have failed all retries +echo "All retry attempts failed" exit 1 From 0f1e686840220a5344ade9330218f6a7b2c7748b Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Wed, 23 Jul 2025 15:17:14 -0400 Subject: [PATCH 02/32] only rerun failed + non-run tests --- scripts/build_test.sh | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 05a7f1e52b..327ebd8f18 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -80,18 +80,28 @@ do exit 1 fi - # If only known flakes failed and no tests were missing, we can be more efficient + # Determine which tests to retry based on what happened + TESTS_TO_RETRY="" + if [[ -z "$MISSING_TESTS" ]]; then - echo "Only known flakes failed and all tests ran. Retrying only failed tests..." - # Run only the failed tests for efficiency - for test in $FAILED_TESTS; do + # All tests ran, only retry the failed ones + echo "All tests ran successfully. Retrying only failed tests..." + TESTS_TO_RETRY="$FAILED_TESTS" + else + # Some tests didn't run due to panics, retry missing + failed tests + echo "Some tests did not run due to panics. Retrying missing and failed tests..." + TESTS_TO_RETRY=$(echo -e "$MISSING_TESTS\n$FAILED_TESTS" | sort -u) + fi + + # Retry the specific tests that need it + if [[ -n "$TESTS_TO_RETRY" ]]; then + echo "Retrying tests: $TESTS_TO_RETRY" + for test in $TESTS_TO_RETRY; do package=$(echo "$test" | cut -d'/' -f1) test_name=$(echo "$test" | cut -d'/' -f2) echo "Retrying $test_name in $package" go test -run "^${test_name}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" $package done - else - echo "Some tests did not run, retrying entire suite..." fi echo "Test run $i failed with known flakes, retrying..." From d5f0d87367784f954ad4b3b1df561902a97b92fd Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Wed, 23 Jul 2025 15:28:40 -0400 Subject: [PATCH 03/32] rewrite get all tests for package level --- scripts/build_test.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 327ebd8f18..768c4771a0 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -28,7 +28,16 @@ MAX_RUNS=4 # Function to get all test names from packages get_all_tests() { local packages="$1" - go test -list=".*" ${race:-} "$@" $packages 2>/dev/null | grep "^Test" | sort + # Process packages individually since go test -list only works with single packages, not ./... patterns + local all_tests="" + while IFS= read -r package; do + [[ -z "$package" ]] && continue + package_tests=$(go test -list=".*" ${race:-} "$@" "$package" 2>/dev/null | grep "^Test" || true) + if [[ -n "$package_tests" ]]; then + all_tests="${all_tests}${all_tests:+$'\n'}${package_tests}" + fi + done <<< "$(echo "$packages" | tr ' ' '\n')" + echo "$all_tests" | sort -u } # Get all packages to test From 43f77e0e829bdcfb4c12e201a7c6c856dee04fa7 Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Wed, 23 Jul 2025 16:07:17 -0400 Subject: [PATCH 04/32] try retry at individual package level --- logs_42241282643/0_Lint.txt | 278 ++ logs_42241282643/1_AvalancheGo E2E Tests.txt | 1250 +++++++ logs_42241282643/2_e2e warp tests.txt | 1819 ++++++++++ .../3_Golang Unit Tests (ubuntu-22.04).txt | 3210 +++++++++++++++++ .../4_Golang Unit Tests (macos-latest).txt | 258 ++ .../5_Golang Unit Tests (ubuntu-latest).txt | 3206 ++++++++++++++++ .../11_Post Run actions_setup-go@v5.txt | 6 + .../12_Post Run actions_checkout@v4.txt | 12 + .../AvalancheGo E2E Tests/13_Complete job.txt | 1 + .../AvalancheGo E2E Tests/1_Set up job.txt | 58 + .../2_Run actions_checkout@v4.txt | 85 + .../4_Run actions_setup-go@v5.txt | 79 + ...alancheGo and update Coreth dependency.txt | 46 + .../AvalancheGo E2E Tests/6_Run e2e tests.txt | 963 +++++ ...0_Run ._scripts_run_task.sh build-test.txt | 16 + .../1_Set up job.txt | 47 + .../22_Post Run actions_checkout@v4.txt | 13 + .../23_Complete job.txt | 1 + .../2_Run actions_checkout@v4.txt | 69 + .../4_Run actions_setup-go@v5.txt | 81 + .../6_Run go mod download.txt | 4 + ...k generated codec files are up to date.txt | 10 + ...8_Check generated mocks are up to date.txt | 10 + .../9_Run ._scripts_run_task.sh build.txt | 7 + ...0_Run ._scripts_run_task.sh build-test.txt | 13 + .../11_Run ._scripts_run_task.sh coverage.txt | 2929 +++++++++++++++ .../1_Set up job.txt | 50 + .../21_Post Run actions_setup-go@v5.txt | 6 + .../22_Post Run actions_checkout@v4.txt | 12 + .../23_Complete job.txt | 1 + .../2_Run actions_checkout@v4.txt | 85 + .../4_Run actions_setup-go@v5.txt | 83 + .../6_Run go mod download.txt | 4 + ...k generated codec files are up to date.txt | 10 + ...8_Check generated mocks are up to date.txt | 10 + .../9_Run ._scripts_run_task.sh build.txt | 7 + ...0_Run ._scripts_run_task.sh build-test.txt | 13 + .../11_Run ._scripts_run_task.sh coverage.txt | 2929 +++++++++++++++ .../1_Set up job.txt | 50 + .../21_Post Run actions_setup-go@v5.txt | 6 + .../22_Post Run actions_checkout@v4.txt | 12 + .../23_Complete job.txt | 1 + .../2_Run actions_checkout@v4.txt | 85 + .../4_Run actions_setup-go@v5.txt | 79 + .../6_Run go mod download.txt | 4 + ...k generated codec files are up to date.txt | 10 + ...8_Check generated mocks are up to date.txt | 10 + .../9_Run ._scripts_run_task.sh build.txt | 7 + .../Lint/16_Post Run actions_checkout@v4.txt | 12 + logs_42241282643/Lint/17_Complete job.txt | 1 + logs_42241282643/Lint/1_Set up job.txt | 50 + .../Lint/2_Run actions_checkout@v4.txt | 85 + .../Lint/4_Run actions_setup-go@v5.txt | 79 + .../Lint/6_Run all lint checks.txt | 51 + .../e2e warp tests/13_Post Set up Go.txt | 6 + .../e2e warp tests/14_Post Git checkout.txt | 12 + .../e2e warp tests/15_Complete job.txt | 1 + .../e2e warp tests/1_Set up job.txt | 58 + .../e2e warp tests/2_Git checkout.txt | 789 ++++ .../e2e warp tests/3_Set up Go.txt | 79 + ...alancheGo and update Coreth dependency.txt | 48 + .../e2e warp tests/7_Run Warp E2E Tests.txt | 826 +++++ scripts/build_test.sh | 68 +- 63 files changed, 20076 insertions(+), 34 deletions(-) create mode 100644 logs_42241282643/0_Lint.txt create mode 100644 logs_42241282643/1_AvalancheGo E2E Tests.txt create mode 100644 logs_42241282643/2_e2e warp tests.txt create mode 100644 logs_42241282643/3_Golang Unit Tests (ubuntu-22.04).txt create mode 100644 logs_42241282643/4_Golang Unit Tests (macos-latest).txt create mode 100644 logs_42241282643/5_Golang Unit Tests (ubuntu-latest).txt create mode 100644 logs_42241282643/AvalancheGo E2E Tests/11_Post Run actions_setup-go@v5.txt create mode 100644 logs_42241282643/AvalancheGo E2E Tests/12_Post Run actions_checkout@v4.txt create mode 100644 logs_42241282643/AvalancheGo E2E Tests/13_Complete job.txt create mode 100644 logs_42241282643/AvalancheGo E2E Tests/1_Set up job.txt create mode 100644 logs_42241282643/AvalancheGo E2E Tests/2_Run actions_checkout@v4.txt create mode 100644 logs_42241282643/AvalancheGo E2E Tests/4_Run actions_setup-go@v5.txt create mode 100644 logs_42241282643/AvalancheGo E2E Tests/5_Build AvalancheGo and update Coreth dependency.txt create mode 100644 logs_42241282643/AvalancheGo E2E Tests/6_Run e2e tests.txt create mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/10_Run ._scripts_run_task.sh build-test.txt create mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/1_Set up job.txt create mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/22_Post Run actions_checkout@v4.txt create mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/23_Complete job.txt create mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/2_Run actions_checkout@v4.txt create mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/4_Run actions_setup-go@v5.txt create mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/6_Run go mod download.txt create mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/7_Check generated codec files are up to date.txt create mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/8_Check generated mocks are up to date.txt create mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/9_Run ._scripts_run_task.sh build.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/10_Run ._scripts_run_task.sh build-test.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/11_Run ._scripts_run_task.sh coverage.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/1_Set up job.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/21_Post Run actions_setup-go@v5.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/22_Post Run actions_checkout@v4.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/23_Complete job.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/2_Run actions_checkout@v4.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/4_Run actions_setup-go@v5.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/6_Run go mod download.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/7_Check generated codec files are up to date.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/8_Check generated mocks are up to date.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/9_Run ._scripts_run_task.sh build.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/10_Run ._scripts_run_task.sh build-test.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/11_Run ._scripts_run_task.sh coverage.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/1_Set up job.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/21_Post Run actions_setup-go@v5.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/22_Post Run actions_checkout@v4.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/23_Complete job.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/2_Run actions_checkout@v4.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/4_Run actions_setup-go@v5.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/6_Run go mod download.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/7_Check generated codec files are up to date.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/8_Check generated mocks are up to date.txt create mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/9_Run ._scripts_run_task.sh build.txt create mode 100644 logs_42241282643/Lint/16_Post Run actions_checkout@v4.txt create mode 100644 logs_42241282643/Lint/17_Complete job.txt create mode 100644 logs_42241282643/Lint/1_Set up job.txt create mode 100644 logs_42241282643/Lint/2_Run actions_checkout@v4.txt create mode 100644 logs_42241282643/Lint/4_Run actions_setup-go@v5.txt create mode 100644 logs_42241282643/Lint/6_Run all lint checks.txt create mode 100644 logs_42241282643/e2e warp tests/13_Post Set up Go.txt create mode 100644 logs_42241282643/e2e warp tests/14_Post Git checkout.txt create mode 100644 logs_42241282643/e2e warp tests/15_Complete job.txt create mode 100644 logs_42241282643/e2e warp tests/1_Set up job.txt create mode 100644 logs_42241282643/e2e warp tests/2_Git checkout.txt create mode 100644 logs_42241282643/e2e warp tests/3_Set up Go.txt create mode 100644 logs_42241282643/e2e warp tests/6_Build AvalancheGo and update Coreth dependency.txt create mode 100644 logs_42241282643/e2e warp tests/7_Run Warp E2E Tests.txt diff --git a/logs_42241282643/0_Lint.txt b/logs_42241282643/0_Lint.txt new file mode 100644 index 0000000000..e734e7b149 --- /dev/null +++ b/logs_42241282643/0_Lint.txt @@ -0,0 +1,278 @@ +2025-07-23T19:28:54.7286861Z Current runner version: '2.326.0' +2025-07-23T19:28:54.7311385Z ##[group]Runner Image Provisioner +2025-07-23T19:28:54.7312156Z Hosted Compute Agent +2025-07-23T19:28:54.7312775Z Version: 20250711.363 +2025-07-23T19:28:54.7313350Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c +2025-07-23T19:28:54.7314021Z Build Date: 2025-07-11T20:04:25Z +2025-07-23T19:28:54.7314647Z ##[endgroup] +2025-07-23T19:28:54.7315184Z ##[group]Operating System +2025-07-23T19:28:54.7315748Z Ubuntu +2025-07-23T19:28:54.7316175Z 24.04.2 +2025-07-23T19:28:54.7317080Z LTS +2025-07-23T19:28:54.7317527Z ##[endgroup] +2025-07-23T19:28:54.7318003Z ##[group]Runner Image +2025-07-23T19:28:54.7318636Z Image: ubuntu-24.04 +2025-07-23T19:28:54.7319143Z Version: 20250720.1.0 +2025-07-23T19:28:54.7320115Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md +2025-07-23T19:28:54.7321576Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 +2025-07-23T19:28:54.7322549Z ##[endgroup] +2025-07-23T19:28:54.7324925Z ##[group]GITHUB_TOKEN Permissions +2025-07-23T19:28:54.7327018Z Actions: write +2025-07-23T19:28:54.7327694Z Attestations: write +2025-07-23T19:28:54.7328188Z Checks: write +2025-07-23T19:28:54.7328657Z Contents: write +2025-07-23T19:28:54.7329261Z Deployments: write +2025-07-23T19:28:54.7329736Z Discussions: write +2025-07-23T19:28:54.7330212Z Issues: write +2025-07-23T19:28:54.7330724Z Metadata: read +2025-07-23T19:28:54.7331211Z Models: read +2025-07-23T19:28:54.7331689Z Packages: write +2025-07-23T19:28:54.7332302Z Pages: write +2025-07-23T19:28:54.7332760Z PullRequests: write +2025-07-23T19:28:54.7333276Z RepositoryProjects: write +2025-07-23T19:28:54.7333898Z SecurityEvents: write +2025-07-23T19:28:54.7334465Z Statuses: write +2025-07-23T19:28:54.7334949Z ##[endgroup] +2025-07-23T19:28:54.7337353Z Secret source: Actions +2025-07-23T19:28:54.7338106Z Prepare workflow directory +2025-07-23T19:28:54.7662675Z Prepare all required actions +2025-07-23T19:28:54.7701053Z Getting action download info +2025-07-23T19:28:55.1589668Z ##[group]Download immutable action package 'actions/checkout@v4' +2025-07-23T19:28:55.1590793Z Version: 4.2.2 +2025-07-23T19:28:55.1591890Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 +2025-07-23T19:28:55.1593206Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 +2025-07-23T19:28:55.1594013Z ##[endgroup] +2025-07-23T19:28:55.2611703Z ##[group]Download immutable action package 'actions/setup-go@v5' +2025-07-23T19:28:55.2612653Z Version: 5.5.0 +2025-07-23T19:28:55.2613456Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb +2025-07-23T19:28:55.2614418Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 +2025-07-23T19:28:55.2615244Z ##[endgroup] +2025-07-23T19:28:55.5639398Z Complete job name: Lint +2025-07-23T19:28:55.6281617Z ##[group]Run actions/checkout@v4 +2025-07-23T19:28:55.6282508Z with: +2025-07-23T19:28:55.6282964Z repository: ava-labs/coreth +2025-07-23T19:28:55.6283658Z token: *** +2025-07-23T19:28:55.6284114Z ssh-strict: true +2025-07-23T19:28:55.6284545Z ssh-user: git +2025-07-23T19:28:55.6284982Z persist-credentials: true +2025-07-23T19:28:55.6285492Z clean: true +2025-07-23T19:28:55.6285938Z sparse-checkout-cone-mode: true +2025-07-23T19:28:55.6286685Z fetch-depth: 1 +2025-07-23T19:28:55.6287136Z fetch-tags: false +2025-07-23T19:28:55.6287578Z show-progress: true +2025-07-23T19:28:55.6288017Z lfs: false +2025-07-23T19:28:55.6288425Z submodules: false +2025-07-23T19:28:55.6288865Z set-safe-directory: true +2025-07-23T19:28:55.6289672Z ##[endgroup] +2025-07-23T19:28:55.7412180Z Syncing repository: ava-labs/coreth +2025-07-23T19:28:55.7415350Z ##[group]Getting Git version info +2025-07-23T19:28:55.7416891Z Working directory is '/home/runner/work/coreth/coreth' +2025-07-23T19:28:55.7418874Z [command]/usr/bin/git version +2025-07-23T19:28:55.7454473Z git version 2.50.1 +2025-07-23T19:28:55.7481481Z ##[endgroup] +2025-07-23T19:28:55.7498743Z Temporarily overriding HOME='/home/runner/work/_temp/7f4d34e6-b629-46b0-b54a-489047ff8aac' before making global git config changes +2025-07-23T19:28:55.7501901Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:28:55.7504329Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:28:55.7542638Z Deleting the contents of '/home/runner/work/coreth/coreth' +2025-07-23T19:28:55.7546576Z ##[group]Initializing the repository +2025-07-23T19:28:55.7550423Z [command]/usr/bin/git init /home/runner/work/coreth/coreth +2025-07-23T19:28:55.7669044Z hint: Using 'master' as the name for the initial branch. This default branch name +2025-07-23T19:28:55.7671043Z hint: is subject to change. To configure the initial branch name to use in all +2025-07-23T19:28:55.7672872Z hint: of your new repositories, which will suppress this warning, call: +2025-07-23T19:28:55.7674232Z hint: +2025-07-23T19:28:55.7675066Z hint: git config --global init.defaultBranch +2025-07-23T19:28:55.7675837Z hint: +2025-07-23T19:28:55.7676712Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2025-07-23T19:28:55.7677800Z hint: 'development'. The just-created branch can be renamed via this command: +2025-07-23T19:28:55.7678627Z hint: +2025-07-23T19:28:55.7679044Z hint: git branch -m +2025-07-23T19:28:55.7679526Z hint: +2025-07-23T19:28:55.7680138Z hint: Disable this message with "git config set advice.defaultBranchName false" +2025-07-23T19:28:55.7681207Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ +2025-07-23T19:28:55.7690593Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth +2025-07-23T19:28:55.7734097Z ##[endgroup] +2025-07-23T19:28:55.7735365Z ##[group]Disabling automatic garbage collection +2025-07-23T19:28:55.7738443Z [command]/usr/bin/git config --local gc.auto 0 +2025-07-23T19:28:55.7772653Z ##[endgroup] +2025-07-23T19:28:55.7773406Z ##[group]Setting up auth +2025-07-23T19:28:55.7784127Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:28:55.7824444Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:28:55.8134259Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:28:55.8164028Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:28:55.8401672Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2025-07-23T19:28:55.8442982Z ##[endgroup] +2025-07-23T19:28:55.8444102Z ##[group]Fetching the repository +2025-07-23T19:28:55.8451678Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge +2025-07-23T19:28:56.3796810Z From https://github.com/ava-labs/coreth +2025-07-23T19:28:56.3798619Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge +2025-07-23T19:28:56.3822566Z ##[endgroup] +2025-07-23T19:28:56.3824104Z ##[group]Determining the checkout info +2025-07-23T19:28:56.3825301Z ##[endgroup] +2025-07-23T19:28:56.3828928Z [command]/usr/bin/git sparse-checkout disable +2025-07-23T19:28:56.3866096Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig +2025-07-23T19:28:56.3893820Z ##[group]Checking out the ref +2025-07-23T19:28:56.3897127Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge +2025-07-23T19:28:56.5008734Z Note: switching to 'refs/remotes/pull/1065/merge'. +2025-07-23T19:28:56.5009663Z +2025-07-23T19:28:56.5010325Z You are in 'detached HEAD' state. You can look around, make experimental +2025-07-23T19:28:56.5011933Z changes and commit them, and you can discard any commits you make in this +2025-07-23T19:28:56.5014132Z state without impacting any branches by switching back to a branch. +2025-07-23T19:28:56.5015684Z +2025-07-23T19:28:56.5016948Z If you want to create a new branch to retain commits you create, you may +2025-07-23T19:28:56.5019232Z do so (now or later) by using -c with the switch command. Example: +2025-07-23T19:28:56.5020556Z +2025-07-23T19:28:56.5021226Z git switch -c +2025-07-23T19:28:56.5022295Z +2025-07-23T19:28:56.5022895Z Or undo this operation with: +2025-07-23T19:28:56.5023768Z +2025-07-23T19:28:56.5024221Z git switch - +2025-07-23T19:28:56.5024905Z +2025-07-23T19:28:56.5026038Z Turn off this advice by setting config variable advice.detachedHead to false +2025-07-23T19:28:56.5028050Z +2025-07-23T19:28:56.5029902Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 +2025-07-23T19:28:56.5035358Z ##[endgroup] +2025-07-23T19:28:56.5062860Z [command]/usr/bin/git log -1 --format=%H +2025-07-23T19:28:56.5085739Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 +2025-07-23T19:28:56.5403362Z ##[group]Run actions/setup-go@v5 +2025-07-23T19:28:56.5404508Z with: +2025-07-23T19:28:56.5405353Z go-version-file: go.mod +2025-07-23T19:28:56.5406532Z check-latest: false +2025-07-23T19:28:56.5407779Z token: *** +2025-07-23T19:28:56.5408621Z cache: true +2025-07-23T19:28:56.5409495Z ##[endgroup] +2025-07-23T19:28:56.7220131Z Setup go version spec 1.23.9 +2025-07-23T19:28:56.7236206Z Attempting to download 1.23.9... +2025-07-23T19:28:57.0090265Z matching 1.23.9... +2025-07-23T19:28:57.0130560Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz +2025-07-23T19:28:57.5881206Z Extracting Go... +2025-07-23T19:28:57.5979283Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/6a2ca727-1390-4aa5-890a-80b94a46f362 -f /home/runner/work/_temp/a8b54835-6227-4553-a3c0-533eed767c9f +2025-07-23T19:28:59.2811390Z Successfully extracted go to /home/runner/work/_temp/6a2ca727-1390-4aa5-890a-80b94a46f362 +2025-07-23T19:28:59.2812090Z Adding to the cache ... +2025-07-23T19:29:03.6671541Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 +2025-07-23T19:29:03.6675331Z Added go to the path +2025-07-23T19:29:03.6676197Z Successfully set up Go version 1.23.9 +2025-07-23T19:29:03.6869934Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:29:03.6900820Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:29:03.6937197Z /home/runner/go/pkg/mod +2025-07-23T19:29:03.6957934Z /home/runner/.cache/go-build +2025-07-23T19:29:03.7653140Z Cache hit for: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:04.8324815Z Received 176160768 of 743127682 (23.7%), 166.5 MBs/sec +2025-07-23T19:29:05.8404647Z Received 402653184 of 743127682 (54.2%), 190.4 MBs/sec +2025-07-23T19:29:06.8401734Z Received 641728512 of 743127682 (86.4%), 202.9 MBs/sec +2025-07-23T19:29:07.4514619Z Received 743127682 of 743127682 (100.0%), 195.3 MBs/sec +2025-07-23T19:29:07.4515470Z Cache Size: ~709 MB (743127682 B) +2025-07-23T19:29:07.4627060Z [command]/usr/bin/tar -xf /home/runner/work/_temp/d536043f-5a09-4e50-8110-ac5952001aec/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd +2025-07-23T19:29:14.3057547Z Cache restored successfully +2025-07-23T19:29:14.4415827Z Cache restored from key: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:14.4443240Z go version go1.23.9 linux/amd64 +2025-07-23T19:29:14.4443446Z +2025-07-23T19:29:14.4443716Z ##[group]go env +2025-07-23T19:29:14.6216572Z GO111MODULE='' +2025-07-23T19:29:14.6217295Z GOARCH='amd64' +2025-07-23T19:29:14.6218802Z GOBIN='' +2025-07-23T19:29:14.6219203Z GOCACHE='/home/runner/.cache/go-build' +2025-07-23T19:29:14.6219711Z GOENV='/home/runner/.config/go/env' +2025-07-23T19:29:14.6220131Z GOEXE='' +2025-07-23T19:29:14.6220806Z GOEXPERIMENT='' +2025-07-23T19:29:14.6221138Z GOFLAGS='' +2025-07-23T19:29:14.6221494Z GOHOSTARCH='amd64' +2025-07-23T19:29:14.6221823Z GOHOSTOS='linux' +2025-07-23T19:29:14.6222127Z GOINSECURE='' +2025-07-23T19:29:14.6222460Z GOMODCACHE='/home/runner/go/pkg/mod' +2025-07-23T19:29:14.6222856Z GONOPROXY='' +2025-07-23T19:29:14.6223140Z GONOSUMDB='' +2025-07-23T19:29:14.6223417Z GOOS='linux' +2025-07-23T19:29:14.6223717Z GOPATH='/home/runner/go' +2025-07-23T19:29:14.6224062Z GOPRIVATE='' +2025-07-23T19:29:14.6224639Z GOPROXY='https://proxy.golang.org,direct' +2025-07-23T19:29:14.6225142Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' +2025-07-23T19:29:14.6225582Z GOSUMDB='sum.golang.org' +2025-07-23T19:29:14.6225916Z GOTMPDIR='' +2025-07-23T19:29:14.6226208Z GOTOOLCHAIN='auto' +2025-07-23T19:29:14.6226912Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' +2025-07-23T19:29:14.6227449Z GOVCS='' +2025-07-23T19:29:14.6227737Z GOVERSION='go1.23.9' +2025-07-23T19:29:14.6228056Z GODEBUG='' +2025-07-23T19:29:14.6228349Z GOTELEMETRY='local' +2025-07-23T19:29:14.6229015Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' +2025-07-23T19:29:14.6229495Z GCCGO='gccgo' +2025-07-23T19:29:14.6229782Z GOAMD64='v1' +2025-07-23T19:29:14.6230055Z AR='ar' +2025-07-23T19:29:14.6230345Z CC='gcc' +2025-07-23T19:29:14.6230609Z CXX='g++' +2025-07-23T19:29:14.6230878Z CGO_ENABLED='1' +2025-07-23T19:29:14.6231260Z GOMOD='/home/runner/work/coreth/coreth/go.mod' +2025-07-23T19:29:14.6231689Z GOWORK='' +2025-07-23T19:29:14.6231971Z CGO_CFLAGS='-O2 -g' +2025-07-23T19:29:14.6232271Z CGO_CPPFLAGS='' +2025-07-23T19:29:14.6232591Z CGO_CXXFLAGS='-O2 -g' +2025-07-23T19:29:14.6232901Z CGO_FFLAGS='-O2 -g' +2025-07-23T19:29:14.6233211Z CGO_LDFLAGS='-O2 -g' +2025-07-23T19:29:14.6233551Z PKG_CONFIG='pkg-config' +2025-07-23T19:29:14.6234551Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build2870971817=/tmp/go-build -gno-record-gcc-switches' +2025-07-23T19:29:14.6235428Z +2025-07-23T19:29:14.6235856Z ##[endgroup] +2025-07-23T19:29:14.6408275Z ##[group]Run ./scripts/run_task.sh lint-all-ci +2025-07-23T19:29:14.6408678Z ./scripts/run_task.sh lint-all-ci +2025-07-23T19:29:14.6442895Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:14.6443214Z ##[endgroup] +2025-07-23T19:29:15.4094688Z task: [lint] ./scripts/lint.sh +2025-07-23T19:29:15.4166912Z Running 'golangci_lint license_header require_error_is_no_funcs_as_params single_import interface_compliance_nil require_no_error_inline_func import_testing_only_in_tests' at: Wed Jul 23 19:29:15 UTC 2025 +2025-07-23T19:29:15.4192530Z find: warning: -path ./ will not match anything because it ends with /. +2025-07-23T19:29:15.4494210Z START: 'golangci_lint' at Wed Jul 23 19:29:15 UTC 2025 +2025-07-23T19:30:03.0594151Z SUCCESS: 'golangci_lint' completed at Wed Jul 23 19:30:03 UTC 2025 +2025-07-23T19:30:03.0614525Z START: 'license_header' at Wed Jul 23 19:30:03 UTC 2025 +2025-07-23T19:30:03.0618959Z Running license tool on upstream files with header for upstream... +2025-07-23T19:30:03.6289884Z 1 file does not have the correct license header: +2025-07-23T19:30:03.6290276Z ./core/state/database_test.go +2025-07-23T19:30:03.6294308Z exit status 1 +2025-07-23T19:30:03.6316106Z Running license tool on remaining files with default header... +2025-07-23T19:30:04.0109911Z SUCCESS: 'license_header' completed at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0131148Z START: 'require_error_is_no_funcs_as_params' at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0237548Z SUCCESS: 'require_error_is_no_funcs_as_params' completed at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0259089Z START: 'single_import' at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0358266Z SUCCESS: 'single_import' completed at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0378173Z START: 'interface_compliance_nil' at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0514162Z SUCCESS: 'interface_compliance_nil' completed at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0533914Z START: 'require_no_error_inline_func' at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0651827Z SUCCESS: 'require_no_error_inline_func' completed at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0671756Z START: 'import_testing_only_in_tests' at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.1045718Z SUCCESS: 'import_testing_only_in_tests' completed at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.1046567Z ALL SUCCESS! +2025-07-23T19:30:04.1091065Z task: [actionlint] ./scripts/actionlint.sh +2025-07-23T19:30:07.1235382Z Checking use of scripts/* in GitHub Actions workflows... +2025-07-23T19:30:07.1334252Z task: [shellcheck] ./scripts/shellcheck.sh +2025-07-23T19:30:07.4978715Z +2025-07-23T19:30:07.4979263Z In /home/runner/work/coreth/coreth/scripts/build_test.sh line 59: +2025-07-23T19:30:07.4980336Z test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" $PACKAGES 2>&1) || command_status=$? +2025-07-23T19:30:07.4985740Z ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting. +2025-07-23T19:30:07.4986096Z +2025-07-23T19:30:07.4986194Z Did you mean: +2025-07-23T19:30:07.4987320Z test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" "$PACKAGES" 2>&1) || command_status=$? +2025-07-23T19:30:07.4987918Z +2025-07-23T19:30:07.4987923Z +2025-07-23T19:30:07.4988138Z In /home/runner/work/coreth/coreth/scripts/build_test.sh line 112: +2025-07-23T19:30:07.4988888Z go test -run "^${test_name}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" $package +2025-07-23T19:30:07.4991777Z ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. +2025-07-23T19:30:07.4992094Z +2025-07-23T19:30:07.4992190Z Did you mean: +2025-07-23T19:30:07.4993137Z go test -run "^${test_name}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" "$package" +2025-07-23T19:30:07.4993451Z +2025-07-23T19:30:07.4993548Z For more information: +2025-07-23T19:30:07.4993977Z https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ... +2025-07-23T19:30:07.5008113Z task: Failed to run task "lint-all-ci": exit status 123 +2025-07-23T19:30:07.5017725Z exit status 201 +2025-07-23T19:30:07.5072550Z ##[error]Process completed with exit code 1. +2025-07-23T19:30:07.5175437Z Post job cleanup. +2025-07-23T19:30:07.6108879Z [command]/usr/bin/git version +2025-07-23T19:30:07.6143838Z git version 2.50.1 +2025-07-23T19:30:07.6190929Z Temporarily overriding HOME='/home/runner/work/_temp/9677b321-d7be-49b4-8b47-75fbc3723d01' before making global git config changes +2025-07-23T19:30:07.6192031Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:30:07.6195778Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:30:07.6228602Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:30:07.6259168Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:30:07.6478699Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:30:07.6497829Z http.https://github.com/.extraheader +2025-07-23T19:30:07.6509598Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +2025-07-23T19:30:07.6538391Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:30:07.6858656Z Cleaning up orphan processes diff --git a/logs_42241282643/1_AvalancheGo E2E Tests.txt b/logs_42241282643/1_AvalancheGo E2E Tests.txt new file mode 100644 index 0000000000..66e1740812 --- /dev/null +++ b/logs_42241282643/1_AvalancheGo E2E Tests.txt @@ -0,0 +1,1250 @@ +2025-07-23T19:28:54.4431617Z Current runner version: '2.326.0' +2025-07-23T19:28:54.4462814Z ##[group]Runner Image Provisioner +2025-07-23T19:28:54.4464409Z Hosted Compute Agent +2025-07-23T19:28:54.4465210Z Version: 20250711.363 +2025-07-23T19:28:54.4466172Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c +2025-07-23T19:28:54.4467454Z Build Date: 2025-07-11T20:04:25Z +2025-07-23T19:28:54.4468323Z ##[endgroup] +2025-07-23T19:28:54.4469152Z ##[group]Operating System +2025-07-23T19:28:54.4470063Z Ubuntu +2025-07-23T19:28:54.4470817Z 24.04.2 +2025-07-23T19:28:54.4471453Z LTS +2025-07-23T19:28:54.4472337Z ##[endgroup] +2025-07-23T19:28:54.4473129Z ##[group]Runner Image +2025-07-23T19:28:54.4474202Z Image: ubuntu-24.04 +2025-07-23T19:28:54.4475134Z Version: 20250720.1.0 +2025-07-23T19:28:54.4476800Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md +2025-07-23T19:28:54.4479492Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 +2025-07-23T19:28:54.4481089Z ##[endgroup] +2025-07-23T19:28:54.4485470Z ##[group]GITHUB_TOKEN Permissions +2025-07-23T19:28:54.4488115Z Actions: write +2025-07-23T19:28:54.4489063Z Attestations: write +2025-07-23T19:28:54.4490008Z Checks: write +2025-07-23T19:28:54.4490735Z Contents: write +2025-07-23T19:28:54.4491566Z Deployments: write +2025-07-23T19:28:54.4492451Z Discussions: write +2025-07-23T19:28:54.4493231Z Issues: write +2025-07-23T19:28:54.4494326Z Metadata: read +2025-07-23T19:28:54.4495156Z Models: read +2025-07-23T19:28:54.4496010Z Packages: write +2025-07-23T19:28:54.4496850Z Pages: write +2025-07-23T19:28:54.4497643Z PullRequests: write +2025-07-23T19:28:54.4498449Z RepositoryProjects: write +2025-07-23T19:28:54.4499465Z SecurityEvents: write +2025-07-23T19:28:54.4500515Z Statuses: write +2025-07-23T19:28:54.4501254Z ##[endgroup] +2025-07-23T19:28:54.4504794Z Secret source: Actions +2025-07-23T19:28:54.4505850Z Prepare workflow directory +2025-07-23T19:28:54.4966817Z Prepare all required actions +2025-07-23T19:28:54.5021058Z Getting action download info +2025-07-23T19:28:54.8461177Z ##[group]Download immutable action package 'actions/checkout@v4' +2025-07-23T19:28:54.8462345Z Version: 4.2.2 +2025-07-23T19:28:54.8463436Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 +2025-07-23T19:28:54.8464916Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 +2025-07-23T19:28:54.8465675Z ##[endgroup] +2025-07-23T19:28:54.9311925Z ##[group]Download immutable action package 'actions/setup-go@v5' +2025-07-23T19:28:54.9312826Z Version: 5.5.0 +2025-07-23T19:28:54.9313666Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb +2025-07-23T19:28:54.9314934Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 +2025-07-23T19:28:54.9315691Z ##[endgroup] +2025-07-23T19:28:55.2881118Z Download action repository 'ava-labs/avalanchego@66ce7a7701db0c4b370f97b339478d5b5ebe919a' (SHA:66ce7a7701db0c4b370f97b339478d5b5ebe919a) +2025-07-23T19:28:56.0641084Z Getting action download info +2025-07-23T19:28:56.2208655Z Download action repository 'cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f' (SHA:02a151ada4993995686f9ed4f1be7cfbb229e56f) +2025-07-23T19:28:56.4586025Z ##[group]Download immutable action package 'actions/upload-artifact@v4' +2025-07-23T19:28:56.4587607Z Version: 4.6.2 +2025-07-23T19:28:56.4588986Z Digest: sha256:290722aa3281d5caf23d0acdc3dbeb3424786a1a01a9cc97e72f147225e37c38 +2025-07-23T19:28:56.4590837Z Source commit SHA: ea165f8d65b6e75b540449e92b4886f43607fa02 +2025-07-23T19:28:56.4592117Z ##[endgroup] +2025-07-23T19:28:56.6324582Z Complete job name: AvalancheGo E2E Tests +2025-07-23T19:28:56.7103821Z ##[group]Run actions/checkout@v4 +2025-07-23T19:28:56.7105269Z with: +2025-07-23T19:28:56.7106010Z repository: ava-labs/coreth +2025-07-23T19:28:56.7107143Z token: *** +2025-07-23T19:28:56.7107863Z ssh-strict: true +2025-07-23T19:28:56.7108591Z ssh-user: git +2025-07-23T19:28:56.7109353Z persist-credentials: true +2025-07-23T19:28:56.7110197Z clean: true +2025-07-23T19:28:56.7110964Z sparse-checkout-cone-mode: true +2025-07-23T19:28:56.7112136Z fetch-depth: 1 +2025-07-23T19:28:56.7112885Z fetch-tags: false +2025-07-23T19:28:56.7113679Z show-progress: true +2025-07-23T19:28:56.7114597Z lfs: false +2025-07-23T19:28:56.7115309Z submodules: false +2025-07-23T19:28:56.7116081Z set-safe-directory: true +2025-07-23T19:28:56.7117191Z ##[endgroup] +2025-07-23T19:28:56.8200551Z Syncing repository: ava-labs/coreth +2025-07-23T19:28:56.8204364Z ##[group]Getting Git version info +2025-07-23T19:28:56.8206045Z Working directory is '/home/runner/work/coreth/coreth' +2025-07-23T19:28:56.8207880Z [command]/usr/bin/git version +2025-07-23T19:28:56.8228739Z git version 2.50.1 +2025-07-23T19:28:56.8255230Z ##[endgroup] +2025-07-23T19:28:56.8270106Z Temporarily overriding HOME='/home/runner/work/_temp/e6e1d5ba-725b-4693-bf98-a6df7228bb99' before making global git config changes +2025-07-23T19:28:56.8272700Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:28:56.8276040Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:28:56.8311986Z Deleting the contents of '/home/runner/work/coreth/coreth' +2025-07-23T19:28:56.8315860Z ##[group]Initializing the repository +2025-07-23T19:28:56.8320682Z [command]/usr/bin/git init /home/runner/work/coreth/coreth +2025-07-23T19:28:56.8379520Z hint: Using 'master' as the name for the initial branch. This default branch name +2025-07-23T19:28:56.8382136Z hint: is subject to change. To configure the initial branch name to use in all +2025-07-23T19:28:56.8384498Z hint: of your new repositories, which will suppress this warning, call: +2025-07-23T19:28:56.8386062Z hint: +2025-07-23T19:28:56.8387254Z hint: git config --global init.defaultBranch +2025-07-23T19:28:56.8388620Z hint: +2025-07-23T19:28:56.8389874Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2025-07-23T19:28:56.8392172Z hint: 'development'. The just-created branch can be renamed via this command: +2025-07-23T19:28:56.8393607Z hint: +2025-07-23T19:28:56.8394605Z hint: git branch -m +2025-07-23T19:28:56.8395451Z hint: +2025-07-23T19:28:56.8396555Z hint: Disable this message with "git config set advice.defaultBranchName false" +2025-07-23T19:28:56.8398339Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ +2025-07-23T19:28:56.8401065Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth +2025-07-23T19:28:56.8426242Z ##[endgroup] +2025-07-23T19:28:56.8427563Z ##[group]Disabling automatic garbage collection +2025-07-23T19:28:56.8429653Z [command]/usr/bin/git config --local gc.auto 0 +2025-07-23T19:28:56.8457953Z ##[endgroup] +2025-07-23T19:28:56.8459198Z ##[group]Setting up auth +2025-07-23T19:28:56.8464325Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:28:56.8494014Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:28:56.8746133Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:28:56.8778627Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:28:56.8995454Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2025-07-23T19:28:56.9030207Z ##[endgroup] +2025-07-23T19:28:56.9031776Z ##[group]Fetching the repository +2025-07-23T19:28:56.9039783Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge +2025-07-23T19:28:57.4567125Z From https://github.com/ava-labs/coreth +2025-07-23T19:28:57.4570772Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge +2025-07-23T19:28:57.4597198Z ##[endgroup] +2025-07-23T19:28:57.4599328Z ##[group]Determining the checkout info +2025-07-23T19:28:57.4601670Z ##[endgroup] +2025-07-23T19:28:57.4603112Z [command]/usr/bin/git sparse-checkout disable +2025-07-23T19:28:57.4641103Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig +2025-07-23T19:28:57.4670669Z ##[group]Checking out the ref +2025-07-23T19:28:57.4673140Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge +2025-07-23T19:28:57.5786245Z Note: switching to 'refs/remotes/pull/1065/merge'. +2025-07-23T19:28:57.5787985Z +2025-07-23T19:28:57.5789044Z You are in 'detached HEAD' state. You can look around, make experimental +2025-07-23T19:28:57.5791564Z changes and commit them, and you can discard any commits you make in this +2025-07-23T19:28:57.5795037Z state without impacting any branches by switching back to a branch. +2025-07-23T19:28:57.5796380Z +2025-07-23T19:28:57.5797277Z If you want to create a new branch to retain commits you create, you may +2025-07-23T19:28:57.5799837Z do so (now or later) by using -c with the switch command. Example: +2025-07-23T19:28:57.5801124Z +2025-07-23T19:28:57.5801715Z git switch -c +2025-07-23T19:28:57.5802702Z +2025-07-23T19:28:57.5803382Z Or undo this operation with: +2025-07-23T19:28:57.5804513Z +2025-07-23T19:28:57.5805067Z git switch - +2025-07-23T19:28:57.5805739Z +2025-07-23T19:28:57.5806722Z Turn off this advice by setting config variable advice.detachedHead to false +2025-07-23T19:28:57.5808150Z +2025-07-23T19:28:57.5809711Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 +2025-07-23T19:28:57.5813342Z ##[endgroup] +2025-07-23T19:28:57.5838918Z [command]/usr/bin/git log -1 --format=%H +2025-07-23T19:28:57.5860779Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 +2025-07-23T19:28:57.6130293Z ##[group]Run actions/setup-go@v5 +2025-07-23T19:28:57.6131150Z with: +2025-07-23T19:28:57.6131830Z go-version-file: go.mod +2025-07-23T19:28:57.6132627Z check-latest: false +2025-07-23T19:28:57.6133585Z token: *** +2025-07-23T19:28:57.6134596Z cache: true +2025-07-23T19:28:57.6135299Z ##[endgroup] +2025-07-23T19:28:57.7711747Z Setup go version spec 1.23.9 +2025-07-23T19:28:57.7723803Z Attempting to download 1.23.9... +2025-07-23T19:28:58.0689978Z matching 1.23.9... +2025-07-23T19:28:58.0730175Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz +2025-07-23T19:28:58.6556548Z Extracting Go... +2025-07-23T19:28:58.6663483Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/e1b386e0-cf78-4423-a894-16dd3b169dd8 -f /home/runner/work/_temp/e9bce400-3df8-4e37-853e-84874916e6d1 +2025-07-23T19:29:00.3591529Z Successfully extracted go to /home/runner/work/_temp/e1b386e0-cf78-4423-a894-16dd3b169dd8 +2025-07-23T19:29:00.3592293Z Adding to the cache ... +2025-07-23T19:29:04.5969390Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 +2025-07-23T19:29:04.5970263Z Added go to the path +2025-07-23T19:29:04.5971383Z Successfully set up Go version 1.23.9 +2025-07-23T19:29:04.6158282Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:29:04.6188103Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:29:04.6219834Z /home/runner/go/pkg/mod +2025-07-23T19:29:04.6235379Z /home/runner/.cache/go-build +2025-07-23T19:29:04.6856393Z Cache hit for: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:05.7180271Z Received 209715200 of 743127682 (28.2%), 199.8 MBs/sec +2025-07-23T19:29:06.7285615Z Received 415236096 of 743127682 (55.9%), 197.0 MBs/sec +2025-07-23T19:29:07.7904532Z Received 671088640 of 743127682 (90.3%), 208.2 MBs/sec +2025-07-23T19:29:08.1520136Z Received 743127682 of 743127682 (100.0%), 206.3 MBs/sec +2025-07-23T19:29:08.1521203Z Cache Size: ~709 MB (743127682 B) +2025-07-23T19:29:08.1557834Z [command]/usr/bin/tar -xf /home/runner/work/_temp/33e68bb1-dff2-424c-a5b6-4cbc0ab6eb76/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd +2025-07-23T19:29:16.0199246Z Cache restored successfully +2025-07-23T19:29:16.1618795Z Cache restored from key: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:16.1642154Z go version go1.23.9 linux/amd64 +2025-07-23T19:29:16.1642392Z +2025-07-23T19:29:16.1642728Z ##[group]go env +2025-07-23T19:29:16.3334712Z GO111MODULE='' +2025-07-23T19:29:16.3335263Z GOARCH='amd64' +2025-07-23T19:29:16.3335695Z GOBIN='' +2025-07-23T19:29:16.3336132Z GOCACHE='/home/runner/.cache/go-build' +2025-07-23T19:29:16.3336613Z GOENV='/home/runner/.config/go/env' +2025-07-23T19:29:16.3336988Z GOEXE='' +2025-07-23T19:29:16.3337287Z GOEXPERIMENT='' +2025-07-23T19:29:16.3337588Z GOFLAGS='' +2025-07-23T19:29:16.3338037Z GOHOSTARCH='amd64' +2025-07-23T19:29:16.3338478Z GOHOSTOS='linux' +2025-07-23T19:29:16.3338861Z GOINSECURE='' +2025-07-23T19:29:16.3339277Z GOMODCACHE='/home/runner/go/pkg/mod' +2025-07-23T19:29:16.3339968Z GONOPROXY='' +2025-07-23T19:29:16.3340305Z GONOSUMDB='' +2025-07-23T19:29:16.3340577Z GOOS='linux' +2025-07-23T19:29:16.3340868Z GOPATH='/home/runner/go' +2025-07-23T19:29:16.3341194Z GOPRIVATE='' +2025-07-23T19:29:16.3341589Z GOPROXY='https://proxy.golang.org,direct' +2025-07-23T19:29:16.3342125Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' +2025-07-23T19:29:16.3342560Z GOSUMDB='sum.golang.org' +2025-07-23T19:29:16.3342892Z GOTMPDIR='' +2025-07-23T19:29:16.3343180Z GOTOOLCHAIN='auto' +2025-07-23T19:29:16.3343665Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' +2025-07-23T19:29:16.3344396Z GOVCS='' +2025-07-23T19:29:16.3344678Z GOVERSION='go1.23.9' +2025-07-23T19:29:16.3344980Z GODEBUG='' +2025-07-23T19:29:16.3345250Z GOTELEMETRY='local' +2025-07-23T19:29:16.3345946Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' +2025-07-23T19:29:16.3346402Z GCCGO='gccgo' +2025-07-23T19:29:16.3346673Z GOAMD64='v1' +2025-07-23T19:29:16.3346946Z AR='ar' +2025-07-23T19:29:16.3347196Z CC='gcc' +2025-07-23T19:29:16.3347455Z CXX='g++' +2025-07-23T19:29:16.3347719Z CGO_ENABLED='1' +2025-07-23T19:29:16.3348075Z GOMOD='/home/runner/work/coreth/coreth/go.mod' +2025-07-23T19:29:16.3348480Z GOWORK='' +2025-07-23T19:29:16.3348756Z CGO_CFLAGS='-O2 -g' +2025-07-23T19:29:16.3349059Z CGO_CPPFLAGS='' +2025-07-23T19:29:16.3349351Z CGO_CXXFLAGS='-O2 -g' +2025-07-23T19:29:16.3349672Z CGO_FFLAGS='-O2 -g' +2025-07-23T19:29:16.3349990Z CGO_LDFLAGS='-O2 -g' +2025-07-23T19:29:16.3350322Z PKG_CONFIG='pkg-config' +2025-07-23T19:29:16.3351259Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build3893342323=/tmp/go-build -gno-record-gcc-switches' +2025-07-23T19:29:16.3351909Z +2025-07-23T19:29:16.3352274Z ##[endgroup] +2025-07-23T19:29:16.3514523Z ##[group]Run ./scripts/run_task.sh build-avalanchego-with-coreth +2025-07-23T19:29:16.3515069Z ./scripts/run_task.sh build-avalanchego-with-coreth +2025-07-23T19:29:16.3548475Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:16.3548762Z ##[endgroup] +2025-07-23T19:29:17.2237094Z task: [build-avalanchego-with-coreth] ./scripts/build_avalanchego_with_coreth.sh +2025-07-23T19:29:17.2365773Z checking out target AvalancheGo version v1.13.3-rc.1 +2025-07-23T19:29:17.2366353Z creating new clone +2025-07-23T19:29:17.2378435Z Cloning into 'avalanchego'... +2025-07-23T19:29:24.4778748Z Switched to a new branch 'test-v1.13.3-rc.1' +2025-07-23T19:29:24.4793318Z updating coreth dependency to point to /home/runner/work/coreth/coreth +2025-07-23T19:29:24.5306708Z go: downloading connectrpc.com/connect v1.18.1 +2025-07-23T19:29:24.5409425Z go: downloading github.com/prometheus/client_golang v1.16.0 +2025-07-23T19:29:24.5414577Z go: downloading github.com/prometheus/client_model v0.3.0 +2025-07-23T19:29:24.5415645Z go: downloading github.com/prometheus/common v0.42.0 +2025-07-23T19:29:24.6036919Z go: downloading google.golang.org/protobuf v1.35.2 +2025-07-23T19:29:24.7943132Z go: downloading github.com/jackpal/gateway v1.0.6 +2025-07-23T19:29:24.7989056Z go: downloading github.com/ava-labs/simplex v0.0.0-20250626192006-220e6aeacdc1 +2025-07-23T19:29:24.8131442Z go: downloading github.com/antithesishq/antithesis-sdk-go v0.3.8 +2025-07-23T19:29:24.8247875Z go: downloading github.com/compose-spec/compose-go v1.20.2 +2025-07-23T19:29:24.8338462Z go: downloading github.com/ava-labs/ledger-avalanche/go v0.0.0-20241009183145-e6f90a8a1a60 +2025-07-23T19:29:24.8349479Z go: downloading github.com/tyler-smith/go-bip32 v1.0.0 +2025-07-23T19:29:24.8491149Z go: downloading github.com/nbutton23/zxcvbn-go v0.0.0-20180912185939-ae427f1e4c1d +2025-07-23T19:29:24.8588193Z go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.4 +2025-07-23T19:29:24.8670663Z go: downloading connectrpc.com/grpcreflect v1.3.0 +2025-07-23T19:29:24.8758244Z go: downloading github.com/prometheus/procfs v0.10.1 +2025-07-23T19:29:24.9214133Z go: downloading github.com/inconshreveable/mousetrap v1.1.0 +2025-07-23T19:29:24.9311067Z go: downloading github.com/zondax/ledger-go v1.0.0 +2025-07-23T19:29:24.9321254Z go: downloading github.com/FactomProject/basen v0.0.0-20150613233007-fe3947df716e +2025-07-23T19:29:24.9359224Z go: downloading github.com/FactomProject/btcutilecc v0.0.0-20130527213604-d3a63a5752ec +2025-07-23T19:29:24.9439257Z go: downloading github.com/distribution/reference v0.5.0 +2025-07-23T19:29:24.9442940Z go: downloading github.com/docker/go-connections v0.4.0 +2025-07-23T19:29:24.9462421Z go: downloading github.com/docker/go-units v0.5.0 +2025-07-23T19:29:24.9469911Z go: downloading github.com/mattn/go-shellwords v1.0.12 +2025-07-23T19:29:24.9653294Z go: downloading github.com/opencontainers/go-digest v1.0.0 +2025-07-23T19:29:24.9663153Z go: downloading gotest.tools/v3 v3.4.0 +2025-07-23T19:29:24.9753336Z go: downloading github.com/klauspost/compress v1.15.15 +2025-07-23T19:29:25.0043290Z go: downloading github.com/ava-labs/firewood-go-ethhash/ffi v0.0.8 +2025-07-23T19:29:25.0078278Z go: downloading golang.org/x/oauth2 v0.21.0 +2025-07-23T19:29:25.0106262Z go: downloading github.com/golang-jwt/jwt/v4 v4.5.0 +2025-07-23T19:29:25.0297367Z go: downloading github.com/golang-jwt/jwt v3.2.2+incompatible +2025-07-23T19:29:25.0444226Z go: downloading github.com/cmars/basen v0.0.0-20150613233007-fe3947df716e +2025-07-23T19:29:25.0530063Z go: downloading launchpad.net/gocheck v0.0.0-20140225173054-000000000087 +2025-07-23T19:29:25.0538638Z go: downloading github.com/zondax/hid v0.9.2 +2025-07-23T19:29:25.0886237Z go: downloading github.com/sirupsen/logrus v1.9.0 +2025-07-23T19:29:27.1622857Z building avalanchego +2025-07-23T19:29:27.1741538Z Building AvalancheGo with [go version go1.23.9 linux/amd64]... +2025-07-23T19:30:43.7222446Z ##[group]Run ava-labs/avalanchego/.github/actions/run-monitored-tmpnet-cmd@66ce7a7701db0c4b370f97b339478d5b5ebe919a +2025-07-23T19:30:43.7222951Z with: +2025-07-23T19:30:43.7223137Z run: ./scripts/run_task.sh test-e2e +2025-07-23T19:30:43.7223397Z run_env: AVALANCHEGO_CLONE_PATH=avalanchego +2025-07-23T19:30:43.7223638Z runtime: process +2025-07-23T19:30:43.7223850Z repository_owner: ava-labs +2025-07-23T19:30:43.7224310Z repository_name: coreth +2025-07-23T19:30:43.7224501Z workflow: CI +2025-07-23T19:30:43.7224677Z run_id: 16480013789 +2025-07-23T19:30:43.7224854Z run_number: 5026 +2025-07-23T19:30:43.7225019Z run_attempt: 1 +2025-07-23T19:30:43.7225190Z job: avalanchego_e2e +2025-07-23T19:30:43.7225386Z ##[endgroup] +2025-07-23T19:30:43.7329529Z ##[group]Run cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f +2025-07-23T19:30:43.7329902Z with: +2025-07-23T19:30:43.7330071Z enable_kvm: true +2025-07-23T19:30:43.7330253Z ##[endgroup] +2025-07-23T19:30:43.7351905Z ##[group]Run ${GITHUB_ACTION_PATH}/install-nix.sh +2025-07-23T19:30:43.7352250Z ${GITHUB_ACTION_PATH}/install-nix.sh +2025-07-23T19:30:43.7381171Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-07-23T19:30:43.7381479Z env: +2025-07-23T19:30:43.7381662Z INPUT_EXTRA_NIX_CONFIG: +2025-07-23T19:30:43.7381878Z INPUT_GITHUB_ACCESS_TOKEN: +2025-07-23T19:30:43.7382281Z INPUT_INSTALL_OPTIONS: +2025-07-23T19:30:43.7382486Z INPUT_INSTALL_URL: +2025-07-23T19:30:43.7382672Z INPUT_NIX_PATH: +2025-07-23T19:30:43.7382856Z INPUT_ENABLE_KVM: true +2025-07-23T19:30:43.7383449Z GITHUB_TOKEN: *** +2025-07-23T19:30:43.7383644Z ##[endgroup] +2025-07-23T19:30:43.7459306Z ##[group]Enabling KVM support +2025-07-23T19:30:43.7528616Z KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm" +2025-07-23T19:30:43.7825726Z Enabled KVM +2025-07-23T19:30:43.7826308Z ##[endgroup] +2025-07-23T19:30:43.7828413Z ##[group]Installing Nix +2025-07-23T19:30:43.8115756Z installer options: --no-channel-add --darwin-use-unencrypted-nix-store-volume --nix-extra-conf-file /tmp/tmp.ms8QZXhwC8/nix.conf --daemon --daemon-user-count 8 +2025-07-23T19:30:44.0860346Z * Host releases.nixos.org:443 was resolved. +2025-07-23T19:30:44.0860965Z * IPv6: 2a04:4e42:77::729 +2025-07-23T19:30:44.0861369Z * IPv4: 146.75.30.217 +2025-07-23T19:30:44.0861748Z * Trying 146.75.30.217:443... +2025-07-23T19:30:44.0911809Z * Connected to releases.nixos.org (146.75.30.217) port 443 +2025-07-23T19:30:44.0930246Z * ALPN: curl offers h2,http/1.1 +2025-07-23T19:30:44.0932437Z } [5 bytes data] +2025-07-23T19:30:44.0932907Z * TLSv1.3 (OUT), TLS handshake, Client hello (1): +2025-07-23T19:30:44.0933429Z } [512 bytes data] +2025-07-23T19:30:44.1142945Z * CAfile: /etc/ssl/certs/ca-certificates.crt +2025-07-23T19:30:44.1143504Z * CApath: /etc/ssl/certs +2025-07-23T19:30:44.1144216Z { [5 bytes data] +2025-07-23T19:30:44.1144676Z * TLSv1.3 (IN), TLS handshake, Server hello (2): +2025-07-23T19:30:44.1145198Z { [104 bytes data] +2025-07-23T19:30:44.1145645Z * TLSv1.2 (IN), TLS handshake, Certificate (11): +2025-07-23T19:30:44.1146152Z { [2827 bytes data] +2025-07-23T19:30:44.1150453Z * TLSv1.2 (IN), TLS handshake, Server key exchange (12): +2025-07-23T19:30:44.1151031Z { [300 bytes data] +2025-07-23T19:30:44.1154428Z * TLSv1.2 (IN), TLS handshake, Server finished (14): +2025-07-23T19:30:44.1154973Z { [4 bytes data] +2025-07-23T19:30:44.1155433Z * TLSv1.2 (OUT), TLS handshake, Client key exchange (16): +2025-07-23T19:30:44.1155988Z } [37 bytes data] +2025-07-23T19:30:44.1156455Z * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1): +2025-07-23T19:30:44.1157042Z } [1 bytes data] +2025-07-23T19:30:44.1157467Z * TLSv1.2 (OUT), TLS handshake, Finished (20): +2025-07-23T19:30:44.1157947Z } [16 bytes data] +2025-07-23T19:30:44.1205647Z * TLSv1.2 (IN), TLS handshake, Finished (20): +2025-07-23T19:30:44.1206119Z { [16 bytes data] +2025-07-23T19:30:44.1206739Z * SSL connection using TLSv1.2 / ECDHE-RSA-CHACHA20-POLY1305 / X25519 / RSASSA-PSS +2025-07-23T19:30:44.1208085Z * ALPN: server accepted h2 +2025-07-23T19:30:44.1208669Z * Server certificate: +2025-07-23T19:30:44.1209100Z * subject: CN=releases.nixos.org +2025-07-23T19:30:44.1209527Z * start date: Oct 11 20:56:16 2024 GMT +2025-07-23T19:30:44.1209953Z * expire date: Nov 12 20:56:15 2025 GMT +2025-07-23T19:30:44.1210641Z * subjectAltName: host "releases.nixos.org" matched cert's "releases.nixos.org" +2025-07-23T19:30:44.1211561Z * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2024 Q4 +2025-07-23T19:30:44.1212183Z * SSL certificate verify ok. +2025-07-23T19:30:44.1212926Z * Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption +2025-07-23T19:30:44.1214208Z * Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption +2025-07-23T19:30:44.1214855Z * Certificate level 2: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption +2025-07-23T19:30:44.1215295Z } [5 bytes data] +2025-07-23T19:30:44.1215486Z * using HTTP/2 +2025-07-23T19:30:44.1215813Z * [HTTP/2] [1] OPENED stream for https://releases.nixos.org/nix/nix-2.26.3/install +2025-07-23T19:30:44.1216183Z * [HTTP/2] [1] [:method: GET] +2025-07-23T19:30:44.1216409Z * [HTTP/2] [1] [:scheme: https] +2025-07-23T19:30:44.1216679Z * [HTTP/2] [1] [:authority: releases.nixos.org] +2025-07-23T19:30:44.1216975Z * [HTTP/2] [1] [:path: /nix/nix-2.26.3/install] +2025-07-23T19:30:44.1217463Z * [HTTP/2] [1] [user-agent: curl/8.5.0] +2025-07-23T19:30:44.1217714Z * [HTTP/2] [1] [accept: */*] +2025-07-23T19:30:44.1217927Z } [5 bytes data] +2025-07-23T19:30:44.1218129Z > GET /nix/nix-2.26.3/install HTTP/2 +2025-07-23T19:30:44.1218378Z > Host: releases.nixos.org +2025-07-23T19:30:44.1218599Z > User-Agent: curl/8.5.0 +2025-07-23T19:30:44.1218801Z > Accept: */* +2025-07-23T19:30:44.1218967Z > +2025-07-23T19:30:44.1255801Z { [5 bytes data] +2025-07-23T19:30:44.1273038Z < HTTP/2 200 +2025-07-23T19:30:44.1273498Z < last-modified: Wed, 05 Mar 2025 18:21:15 GMT +2025-07-23T19:30:44.1274235Z < etag: "c6753896884bce9b95ec3ca7be157ef6" +2025-07-23T19:30:44.1274715Z < x-amz-server-side-encryption: AES256 +2025-07-23T19:30:44.1275160Z < content-type: text/plain +2025-07-23T19:30:44.1275428Z < server: AmazonS3 +2025-07-23T19:30:44.1275643Z < via: 1.1 varnish, 1.1 varnish +2025-07-23T19:30:44.1275895Z < access-control-allow-origin: * +2025-07-23T19:30:44.1276143Z < accept-ranges: bytes +2025-07-23T19:30:44.1276362Z < date: Wed, 23 Jul 2025 19:30:44 GMT +2025-07-23T19:30:44.1276591Z < age: 9620 +2025-07-23T19:30:44.1276849Z < x-served-by: cache-dub4357-DUB, cache-iad-kiad7000128-IAD +2025-07-23T19:30:44.1277152Z < x-cache: HIT, HIT +2025-07-23T19:30:44.1277342Z < x-cache-hits: 3, 1 +2025-07-23T19:30:44.1277542Z < content-length: 4267 +2025-07-23T19:30:44.1277725Z < +2025-07-23T19:30:44.1277882Z { [4267 bytes data] +2025-07-23T19:30:44.1278127Z * Connection #0 to host releases.nixos.org left intact +2025-07-23T19:30:44.1353075Z downloading Nix 2.26.3 binary tarball for x86_64-linux from 'https://releases.nixos.org/nix/nix-2.26.3/nix-2.26.3-x86_64-linux.tar.xz' to '/tmp/nix-binary-tarball-unpack.APbj8s7Zdj'... +2025-07-23T19:30:44.1402887Z % Total % Received % Xferd Average Speed Time Time Time Current +2025-07-23T19:30:44.1404412Z Dload Upload Total Spent Left Speed +2025-07-23T19:30:44.1404787Z +2025-07-23T19:30:44.3121397Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 +2025-07-23T19:30:44.3122100Z 100 22.6M 100 22.6M 0 0 131M 0 --:--:-- --:--:-- --:--:-- 132M +2025-07-23T19:30:45.8649099Z Note: a multi-user installation is possible. See https://nixos.org/manual/nix/stable/installation/installing-binary.html#multi-user-installation +2025-07-23T19:30:45.8658618Z Warning: the flag --darwin-use-unencrypted-nix-store-volume +2025-07-23T19:30:45.8659513Z is no longer needed and will be removed in the future. +2025-07-23T19:30:45.8659793Z +2025-07-23T19:30:45.8669608Z Switching to the Multi-user Installer +2025-07-23T19:30:45.8770473Z Welcome to the Multi-User Nix Installation +2025-07-23T19:30:45.8780338Z  +2025-07-23T19:30:45.8780949Z This installation tool will set up your computer with the Nix package +2025-07-23T19:30:45.8781547Z manager. This will happen in a few stages: +2025-07-23T19:30:45.8781803Z +2025-07-23T19:30:45.8782029Z 1. Make sure your computer doesn't already have Nix. If it does, I +2025-07-23T19:30:45.8782791Z will show you instructions on how to clean up your old install. +2025-07-23T19:30:45.8783288Z +2025-07-23T19:30:45.8783618Z 2. Show you what I am going to install and where. Then I will ask +2025-07-23T19:30:45.8784297Z if you are ready to continue. +2025-07-23T19:30:45.8784503Z +2025-07-23T19:30:45.8784896Z 3. Create the system users (uids [30001..30008]) and groups (gid 30000) +2025-07-23T19:30:45.8785540Z that the Nix daemon uses to run builds. To create system users +2025-07-23T19:30:45.8786068Z in a different range, exit and run this tool again with +2025-07-23T19:30:45.8786481Z NIX_FIRST_BUILD_UID set. +2025-07-23T19:30:45.8786662Z +2025-07-23T19:30:45.8786854Z 4. Perform the basic installation of the Nix files daemon. +2025-07-23T19:30:45.8787147Z +2025-07-23T19:30:45.8787386Z 5. Configure your shell to import special Nix Profile files, so you +2025-07-23T19:30:45.8787815Z can use Nix. +2025-07-23T19:30:45.8787958Z +2025-07-23T19:30:45.8788267Z 6. Start the Nix daemon. +2025-07-23T19:30:45.8788443Z +2025-07-23T19:30:45.8788760Z Would you like to see a more detailed list of what I will do? +2025-07-23T19:30:45.8789276Z No TTY, assuming you would say yes :) +2025-07-23T19:30:45.8792599Z +2025-07-23T19:30:45.8792755Z I will: +2025-07-23T19:30:45.8792948Z +2025-07-23T19:30:45.8793273Z - make sure your computer doesn't already have Nix files +2025-07-23T19:30:45.8794074Z (if it does, I will tell you how to clean them up.) +2025-07-23T19:30:45.8794611Z - create local users (see the list above for the users I'll make) +2025-07-23T19:30:45.8795064Z - create a local group (nixbld) +2025-07-23T19:30:45.8795375Z - install Nix in /nix +2025-07-23T19:30:45.8795679Z - create a configuration file in /etc/nix +2025-07-23T19:30:45.8796085Z - set up the "default profile" by creating some Nix-related files in +2025-07-23T19:30:45.8796446Z /root +2025-07-23T19:30:45.8807888Z - back up /etc/bash.bashrc to /etc/bash.bashrc.backup-before-nix +2025-07-23T19:30:45.8808744Z - update /etc/bash.bashrc to include some Nix configuration +2025-07-23T19:30:45.8819559Z - load and start a service (at /etc/systemd/system/nix-daemon.service +2025-07-23T19:30:45.8820429Z and /etc/systemd/system/nix-daemon.socket) for nix-daemon +2025-07-23T19:30:45.8820710Z +2025-07-23T19:30:45.8821573Z Ready to continue? +2025-07-23T19:30:45.8822098Z No TTY, assuming you would say yes :) +2025-07-23T19:30:45.8844858Z +2025-07-23T19:30:45.8845471Z ---- let's talk about sudo ----------------------------------------------------- +2025-07-23T19:30:45.8855868Z This script is going to call sudo a lot. Normally, it would show you +2025-07-23T19:30:45.8856631Z exactly what commands it is running and why. However, the script is +2025-07-23T19:30:45.8857099Z run in a headless fashion, like this: +2025-07-23T19:30:45.8857316Z +2025-07-23T19:30:45.8857536Z $ curl -L https://nixos.org/nix/install | sh +2025-07-23T19:30:45.8857937Z +2025-07-23T19:30:45.8858276Z or maybe in a CI pipeline. Because of that, I'm going to skip the +2025-07-23T19:30:45.8858945Z verbose output in the interest of brevity. +2025-07-23T19:30:45.8859178Z +2025-07-23T19:30:45.8859284Z If you would like to +2025-07-23T19:30:45.8859554Z see the output, try like this: +2025-07-23T19:30:45.8859745Z +2025-07-23T19:30:45.8859973Z $ curl -L -o install-nix https://nixos.org/nix/install +2025-07-23T19:30:45.8860381Z $ sh ./install-nix +2025-07-23T19:30:45.8860532Z +2025-07-23T19:30:45.8860537Z +2025-07-23T19:30:45.8860759Z ~~> Checking for artifacts of previous installs +2025-07-23T19:30:45.8868250Z Before I try to install, I'll check for signs Nix already is or has +2025-07-23T19:30:45.8868845Z been installed on this system. +2025-07-23T19:30:45.8900884Z +2025-07-23T19:30:45.8901989Z ---- Nix config report --------------------------------------------------------- +2025-07-23T19:30:45.8902871Z  Temp Dir: /tmp/tmp.CUrud6LmxM +2025-07-23T19:30:45.8903478Z  Nix Root: /nix +2025-07-23T19:30:45.8904163Z  Build Users: 8 +2025-07-23T19:30:45.8904638Z  Build Group ID: 30000 +2025-07-23T19:30:45.8904980Z Build Group Name: nixbld +2025-07-23T19:30:45.8905180Z +2025-07-23T19:30:45.8905305Z build users: +2025-07-23T19:30:45.8905591Z  Username: UID +2025-07-23T19:30:45.8931947Z  nixbld1: 30001 +2025-07-23T19:30:45.8942337Z  nixbld2: 30002 +2025-07-23T19:30:45.8952660Z  nixbld3: 30003 +2025-07-23T19:30:45.8963238Z  nixbld4: 30004 +2025-07-23T19:30:45.8973719Z  nixbld5: 30005 +2025-07-23T19:30:45.8984446Z  nixbld6: 30006 +2025-07-23T19:30:45.8994856Z  nixbld7: 30007 +2025-07-23T19:30:45.9005457Z  nixbld8: 30008 +2025-07-23T19:30:45.9005822Z +2025-07-23T19:30:45.9006133Z Ready to continue? +2025-07-23T19:30:45.9006872Z No TTY, assuming you would say yes :) +2025-07-23T19:30:45.9007337Z +2025-07-23T19:30:45.9007712Z ~~> Setting up the build group nixbld +2025-07-23T19:30:45.9627490Z  Created: Yes +2025-07-23T19:30:45.9661227Z +2025-07-23T19:30:45.9661882Z ~~> Setting up the build user nixbld1 +2025-07-23T19:30:45.9839504Z useradd warning: nixbld1's uid 30001 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:45.9937939Z  Created: Yes +2025-07-23T19:30:45.9945823Z  Hidden: Yes +2025-07-23T19:30:45.9967831Z  Home Directory: /var/empty +2025-07-23T19:30:45.9990208Z  Note: Nix build user 1 +2025-07-23T19:30:46.0010633Z  Logins Disabled: Yes +2025-07-23T19:30:46.0038305Z  Member of nixbld: Yes +2025-07-23T19:30:46.0063136Z  PrimaryGroupID: 30000 +2025-07-23T19:30:46.0076031Z +2025-07-23T19:30:46.0077421Z ~~> Setting up the build user nixbld2 +2025-07-23T19:30:46.0214624Z useradd warning: nixbld2's uid 30002 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:46.0312894Z  Created: Yes +2025-07-23T19:30:46.0320440Z  Hidden: Yes +2025-07-23T19:30:46.0347799Z  Home Directory: /var/empty +2025-07-23T19:30:46.0373239Z  Note: Nix build user 2 +2025-07-23T19:30:46.0394667Z  Logins Disabled: Yes +2025-07-23T19:30:46.0417378Z  Member of nixbld: Yes +2025-07-23T19:30:46.0435729Z  PrimaryGroupID: 30000 +2025-07-23T19:30:46.0446936Z +2025-07-23T19:30:46.0447286Z ~~> Setting up the build user nixbld3 +2025-07-23T19:30:46.0580737Z useradd warning: nixbld3's uid 30003 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:46.0679681Z  Created: Yes +2025-07-23T19:30:46.0685507Z  Hidden: Yes +2025-07-23T19:30:46.0704076Z  Home Directory: /var/empty +2025-07-23T19:30:46.0724930Z  Note: Nix build user 3 +2025-07-23T19:30:46.0742820Z  Logins Disabled: Yes +2025-07-23T19:30:46.0761923Z  Member of nixbld: Yes +2025-07-23T19:30:46.0780081Z  PrimaryGroupID: 30000 +2025-07-23T19:30:46.0791246Z +2025-07-23T19:30:46.0791692Z ~~> Setting up the build user nixbld4 +2025-07-23T19:30:46.0924331Z useradd warning: nixbld4's uid 30004 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:46.1013393Z  Created: Yes +2025-07-23T19:30:46.1019271Z  Hidden: Yes +2025-07-23T19:30:46.1037807Z  Home Directory: /var/empty +2025-07-23T19:30:46.1058465Z  Note: Nix build user 4 +2025-07-23T19:30:46.1076815Z  Logins Disabled: Yes +2025-07-23T19:30:46.1095677Z  Member of nixbld: Yes +2025-07-23T19:30:46.1114554Z  PrimaryGroupID: 30000 +2025-07-23T19:30:46.1125626Z +2025-07-23T19:30:46.1126046Z ~~> Setting up the build user nixbld5 +2025-07-23T19:30:46.1259143Z useradd warning: nixbld5's uid 30005 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:46.1351126Z  Created: Yes +2025-07-23T19:30:46.1357197Z  Hidden: Yes +2025-07-23T19:30:46.1377377Z  Home Directory: /var/empty +2025-07-23T19:30:46.1398635Z  Note: Nix build user 5 +2025-07-23T19:30:46.1416582Z  Logins Disabled: Yes +2025-07-23T19:30:46.1435747Z  Member of nixbld: Yes +2025-07-23T19:30:46.1454102Z  PrimaryGroupID: 30000 +2025-07-23T19:30:46.1464994Z +2025-07-23T19:30:46.1465422Z ~~> Setting up the build user nixbld6 +2025-07-23T19:30:46.1597862Z useradd warning: nixbld6's uid 30006 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:46.1681543Z  Created: Yes +2025-07-23T19:30:46.1687429Z  Hidden: Yes +2025-07-23T19:30:46.1705796Z  Home Directory: /var/empty +2025-07-23T19:30:46.1726451Z  Note: Nix build user 6 +2025-07-23T19:30:46.1745322Z  Logins Disabled: Yes +2025-07-23T19:30:46.1763229Z  Member of nixbld: Yes +2025-07-23T19:30:46.1781353Z  PrimaryGroupID: 30000 +2025-07-23T19:30:46.1791895Z +2025-07-23T19:30:46.1792333Z ~~> Setting up the build user nixbld7 +2025-07-23T19:30:46.1923173Z useradd warning: nixbld7's uid 30007 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:46.2013685Z  Created: Yes +2025-07-23T19:30:46.2019928Z  Hidden: Yes +2025-07-23T19:30:46.2038375Z  Home Directory: /var/empty +2025-07-23T19:30:46.2059091Z  Note: Nix build user 7 +2025-07-23T19:30:46.2077054Z  Logins Disabled: Yes +2025-07-23T19:30:46.2095652Z  Member of nixbld: Yes +2025-07-23T19:30:46.2113399Z  PrimaryGroupID: 30000 +2025-07-23T19:30:46.2124186Z +2025-07-23T19:30:46.2124735Z ~~> Setting up the build user nixbld8 +2025-07-23T19:30:46.2258195Z useradd warning: nixbld8's uid 30008 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:46.2347351Z  Created: Yes +2025-07-23T19:30:46.2353464Z  Hidden: Yes +2025-07-23T19:30:46.2374264Z  Home Directory: /var/empty +2025-07-23T19:30:46.2394862Z  Note: Nix build user 8 +2025-07-23T19:30:46.2412459Z  Logins Disabled: Yes +2025-07-23T19:30:46.2431782Z  Member of nixbld: Yes +2025-07-23T19:30:46.2450222Z  PrimaryGroupID: 30000 +2025-07-23T19:30:46.2450583Z +2025-07-23T19:30:46.2451179Z ~~> Setting up the basic directory structure +2025-07-23T19:30:46.2587155Z install: creating directory '/nix' +2025-07-23T19:30:46.2587816Z install: creating directory '/nix/var' +2025-07-23T19:30:46.2588426Z install: creating directory '/nix/var/log' +2025-07-23T19:30:46.2589121Z install: creating directory '/nix/var/log/nix' +2025-07-23T19:30:46.2589859Z install: creating directory '/nix/var/log/nix/drvs' +2025-07-23T19:30:46.2590611Z install: creating directory '/nix/var/nix' +2025-07-23T19:30:46.2591316Z install: creating directory '/nix/var/nix/db' +2025-07-23T19:30:46.2592076Z install: creating directory '/nix/var/nix/gcroots' +2025-07-23T19:30:46.2593005Z install: creating directory '/nix/var/nix/profiles' +2025-07-23T19:30:46.2594096Z install: creating directory '/nix/var/nix/temproots' +2025-07-23T19:30:46.2595117Z install: creating directory '/nix/var/nix/userpool' +2025-07-23T19:30:46.2596177Z install: creating directory '/nix/var/nix/daemon-socket' +2025-07-23T19:30:46.2597322Z install: creating directory '/nix/var/nix/gcroots/per-user' +2025-07-23T19:30:46.2598511Z install: creating directory '/nix/var/nix/profiles/per-user' +2025-07-23T19:30:46.2671544Z install: creating directory '/nix/store' +2025-07-23T19:30:46.2750149Z install: creating directory '/etc/nix' +2025-07-23T19:30:46.2760013Z +2025-07-23T19:30:46.2760317Z ~~> Installing Nix +2025-07-23T19:30:46.4754991Z  Alright! We have our first nix at /nix/store/x3235311q3n51rppm2y2ycwd7nb3mgpn-nix-2.26.3 +2025-07-23T19:30:46.5189019Z Just finished getting the nix database ready. +2025-07-23T19:30:46.5191782Z +2025-07-23T19:30:46.5193006Z ~~> Setting up shell profiles: /etc/bashrc /etc/profile.d/nix.sh /etc/zshrc /etc/bash.bashrc /etc/zsh/zshrc +2025-07-23T19:30:46.5367157Z  +2025-07-23T19:30:46.5367519Z # Nix +2025-07-23T19:30:46.5368121Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-07-23T19:30:46.5369110Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-07-23T19:30:46.5369719Z fi +2025-07-23T19:30:46.5370010Z # End Nix +2025-07-23T19:30:46.5370192Z +2025-07-23T19:30:46.5543116Z +2025-07-23T19:30:46.5543380Z # Nix +2025-07-23T19:30:46.5544198Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-07-23T19:30:46.5545087Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-07-23T19:30:46.5545469Z fi +2025-07-23T19:30:46.5545672Z # End Nix +2025-07-23T19:30:46.5545791Z +2025-07-23T19:30:46.5715280Z +2025-07-23T19:30:46.5715451Z # Nix +2025-07-23T19:30:46.5716079Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-07-23T19:30:46.5716818Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-07-23T19:30:46.5717189Z fi +2025-07-23T19:30:46.5717395Z # End Nix +2025-07-23T19:30:46.5717850Z +2025-07-23T19:30:46.5876946Z +2025-07-23T19:30:46.5877113Z # Nix +2025-07-23T19:30:46.5877710Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-07-23T19:30:46.5878623Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-07-23T19:30:46.5879248Z fi +2025-07-23T19:30:46.5879533Z # End Nix +2025-07-23T19:30:46.5879741Z +2025-07-23T19:30:46.5902088Z +2025-07-23T19:30:46.5903109Z ~~> Setting up shell profiles for Fish with conf.d/nix.fish inside /etc/fish /usr/local/etc/fish /opt/homebrew/etc/fish /opt/local/etc/fish +2025-07-23T19:30:46.5970381Z  +2025-07-23T19:30:46.5971999Z ~~> Setting up the default profile +2025-07-23T19:30:46.6275394Z installing 'nix-2.26.3' +2025-07-23T19:30:46.6410110Z building '/nix/store/5afca9ydks0pp5szkwwhi7a6m2zmgk9g-user-environment.drv'... +2025-07-23T19:30:46.6820334Z installing 'nss-cacert-3.107' +2025-07-23T19:30:46.6953218Z building '/nix/store/ilxzpc39hcw5jr229rmajjkyz1a0fym1-user-environment.drv'... +2025-07-23T19:30:46.7165995Z  +2025-07-23T19:30:46.7166536Z ~~> Setting up the nix-daemon systemd service +2025-07-23T19:30:46.7549899Z Created symlink /etc/systemd/system/nix-daemon.service → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.service. +2025-07-23T19:30:47.0366350Z Created symlink /etc/systemd/system/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. +2025-07-23T19:30:47.0368210Z Created symlink /etc/systemd/system/sockets.target.wants/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. +2025-07-23T19:30:47.6339508Z Alright! We're done! +2025-07-23T19:30:47.6363458Z Try it! Open a new terminal, and type: +2025-07-23T19:30:47.6364138Z +2025-07-23T19:30:47.6365005Z $ nix-shell -p nix-info --run "nix-info -m" +2025-07-23T19:30:47.6365487Z +2025-07-23T19:30:47.6366026Z Thank you for using this installer. If you have any feedback or need +2025-07-23T19:30:47.6366654Z help, don't hesitate: +2025-07-23T19:30:47.6366906Z +2025-07-23T19:30:47.6367073Z You can open an issue at +2025-07-23T19:30:47.6367733Z https://github.com/NixOS/nix/issues/new?labels=installer&template=installer.md +2025-07-23T19:30:47.6368213Z +2025-07-23T19:30:47.6368487Z Or get in touch with the community: https://nixos.org/community +2025-07-23T19:30:47.6386426Z +2025-07-23T19:30:47.6387366Z ---- Reminders ----------------------------------------------------------------- +2025-07-23T19:30:47.6388109Z [ 1 ] +2025-07-23T19:30:47.6388671Z Nix won't work in active shell sessions until you restart them. +2025-07-23T19:30:47.6389146Z +2025-07-23T19:30:47.7091094Z ##[endgroup] +2025-07-23T19:30:47.7168811Z ##[group]Run /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --command echo "dependencies installed" +2025-07-23T19:30:47.7170406Z /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --command echo "dependencies installed" +2025-07-23T19:30:47.7204371Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-07-23T19:30:47.7204746Z env: +2025-07-23T19:30:47.7204959Z TMPDIR: /home/runner/work/_temp +2025-07-23T19:30:47.7205230Z ##[endgroup] +2025-07-23T19:30:47.7276828Z No local flake found, will attempt to use avalanchego flake +2025-07-23T19:30:47.7364495Z Starting nix shell for github:ava-labs/avalanchego?ref=v1.13.3-rc.1 +2025-07-23T19:30:47.9648420Z unpacking 'github:ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a' into the Git cache... +2025-07-23T19:30:49.6609417Z copying path '/nix/store/i99indk3y6pc3sm0k1xx3nakm193lqzb-source' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4888780Z copying path '/nix/store/899rx4l5zz1za8nx7ijp7swv5ibc8wx2-git-2.47.2-doc' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4894828Z copying path '/nix/store/zpab59ialz19x6f65jbjf5xb8waa54av-iana-etc-20240318' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4920231Z copying path '/nix/store/dgzz9k53hz1qgklnj9667xzliyidj9cs-mailcap-2.1.54' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4926699Z copying path '/nix/store/hnpph37w6p5jfspwf5pksljpf0wqwjg3-perl5.40.0-Digest-HMAC-1.04' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4929956Z copying path '/nix/store/cnb01qfmg8c3irp630nplhwa201d7xsr-perl5.40.0-FCGI-ProcManager-0.28' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4933224Z copying path '/nix/store/v657ak4hdkixvq99rk3qvyh28in945dv-perl5.40.0-HTML-TagCloud-0.38' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4947855Z copying path '/nix/store/9qrv0d0yd9wss610gjzv3507ry6v9mzw-perl5.40.0-URI-5.21' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4951277Z copying path '/nix/store/pz7y4qd8lyhg9y6wmb9hynivx36f53zp-perl5.40.0-libnet-3.15' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4956797Z copying path '/nix/store/l6mypzy4rvkxd5kwzs18d88syirislib-tzdata-2024b' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4969891Z copying path '/nix/store/czlhi3r9b6ip4xyynwibfhm458ljwsir-gcc-13.3.0-libgcc' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4974521Z copying path '/nix/store/d8qbcrirc6jidfacy0qa50zy07i15xcz-gnu-config-2024-01-01' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4997659Z copying path '/nix/store/rscnjwdmhya0wcdmbygr3jpz6p39kvhr-perl5.40.0-Encode-Locale-1.05' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4999893Z copying path '/nix/store/74bbxwiamv62d2l089f1r8apv295vsry-perl5.40.0-HTML-Tagset-3.20' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5003837Z copying path '/nix/store/krx6xw6wxakapdkviirq57yh3nl3227h-perl5.40.0-IO-HTML-1.004' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5008470Z copying path '/nix/store/w9yrswzdifcjhg0righ76aqb6bpslhkb-perl5.40.0-Mozilla-CA-20230821' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5010635Z copying path '/nix/store/3r0pprxsd9n52nb2yqq3idwb75d0spzd-perl5.40.0-LWP-MediaTypes-6.04' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5216423Z copying path '/nix/store/swnhrfysvmwjvibcafm0im377pcfs80v-curl-8.12.1-man' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5279906Z copying path '/nix/store/x6i8jiz3yv3h209xfbz9a3ch1sm16167-dns-root-data-2024-06-20' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5286597Z copying path '/nix/store/maxa3xhmxggrc5v2vc0c3pjb79hjlkp9-glibc-2.40-66' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5306811Z copying path '/nix/store/dvsai0ym9czjl5mcsarcdwccb70615n4-linux-headers-6.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5318298Z copying path '/nix/store/vlfgix8rcbj3l9yk0rna1damxkafbq18-perl5.40.0-Net-HTTP-6.23' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5321827Z copying path '/nix/store/5ahjfkydg49xvbr3vghhv317prgspnf3-mirrors-list' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5325303Z copying path '/nix/store/970fk2m63qra4ybkpp99rw7mld9fphlv-nghttp2-1.64.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5338895Z copying path '/nix/store/frpqzb3223826xq72s0fcjmjmj50wpyn-perl5.40.0-Authen-SASL-2.1700' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5341838Z copying path '/nix/store/ldlsmrf2rrq28s08mzjk245vr26dwwhi-perl5.40.0-Test-RequiresInternet-0.05' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5343534Z copying path '/nix/store/5xvxvpl9armf0p6y9m4g1zl1mypvr9m7-perl5.40.0-TimeDate-2.33' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5348183Z copying path '/nix/store/hz5m52dx8x6vvi5pp0yikxb3b05bmi2j-perl5.40.0-Test-Needs-0.002010' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5386080Z copying path '/nix/store/6aqxgf5ygcscqsh4p9krd0dz2hc1cn0w-perl5.40.0-WWW-RobotRules-6.02' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5388398Z copying path '/nix/store/vvjpgyk6jgd6k74pgpjrln6m6aqyiaig-perl5.40.0-Try-Tiny-0.31' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5410512Z copying path '/nix/store/lj7p9q5kgmdcq768rvsgvjndi42mjcn8-publicsuffix-list-0-unstable-2024-10-25' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5492083Z copying path '/nix/store/i9ymkbklv1q9yzl7wwx7300wbkqdln0r-update-autotools-gnu-config-scripts-hook' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5614625Z copying path '/nix/store/2h648f4xlzszyc01yf67xd2rgira65js-perl5.40.0-Test-Fatal-0.017' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5675747Z copying path '/nix/store/shx8jax9b662cd9nlml731hh9wks24v1-perl5.40.0-HTTP-Date-6.06' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.6090400Z copying path '/nix/store/0m34prvcx3d3vd9f4djbaqji7yb9swsh-perl5.40.0-HTTP-CookieJar-0.014' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.6098485Z copying path '/nix/store/i9hiqc4dfksm9cpqvff39smfpn49zbj6-perl5.40.0-File-Listing-6.16' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.6241395Z copying path '/nix/store/19402vwa1rndilww6fpbviz0lza8846p-kind-0.24.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.6248065Z copying path '/nix/store/i7r45jjmvfxiw8j7ihjx51jachylq1si-protoc-gen-go-1.35.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.6251351Z copying path '/nix/store/1fqgvq0i498w4ynywyj224i49izzzqrk-protoc-gen-go-grpc-1.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.6255178Z copying path '/nix/store/as8g73awbgrhpf5p6qjnrd5v9anw74ix-go-task-3.39.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.6261757Z copying path '/nix/store/23cshhh8k7z46gadr86krv15xphggawm-kubectl-1.31.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1072245Z copying path '/nix/store/vlgwyb076hkz7yv96sjnj9msb1jn1ggz-attr-2.5.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1078632Z copying path '/nix/store/c9z2sp8dyx1k0zk374v1142hmphashd0-buf-1.47.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1080239Z copying path '/nix/store/wg9gg3zkwcqhyycj0vkfnhgk5a4z9faq-ed-1.20.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1081809Z copying path '/nix/store/qiisx6c7qpyzq522j3icsfhj8ayw6ah4-bzip2-1.0.8' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1084419Z copying path '/nix/store/83s1wqvrx7yvy3g6dmdr2icgg3qqbjcp-brotli-1.1.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1086275Z copying path '/nix/store/3p3fwczck2yn1wwfjnymzkz8w11vbvg7-gawk-5.3.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1092231Z copying path '/nix/store/mhd0rk497xm0xnip7262xdw9bylvzh99-gcc-13.3.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1094227Z copying path '/nix/store/7zv1sq1k25gk2rvgxnm262vp5hydkv1a-gdbm-1.24-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1099031Z copying path '/nix/store/fcqfyri9kljs5jd7h556f004qmci1qin-expand-response-params' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1100612Z copying path '/nix/store/2kiskq24j06g4qw3xs8zsy2dkawh4gxk-glibc-2.40-66-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1102000Z copying path '/nix/store/8vpg72ik2kgxfj05lc56hkqrdrfl8xi9-bash-5.2p37' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1103355Z copying path '/nix/store/8k19h07hh2g1w5kp5yglzddswnvdmxpy-gmp-6.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1104940Z copying path '/nix/store/m3da56j3r7h4hp0kr8v1xsnk16x900yf-gnumake-4.4.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1106360Z copying path '/nix/store/0hv5ymwkczx3ak8h3yldfbwbab33jnrw-expat-2.6.4' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1107608Z copying path '/nix/store/cfb4pxnfh2sf4csk8xh7abfqv96k66nh-glibc-2.40-66-getent' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1319355Z copying path '/nix/store/3ks7b6p43dpvnlnxgvlcy2jaf1np37p2-gnused-4.9' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1323319Z copying path '/nix/store/yyfzan4mn874v885jy6fs598gjb31c4l-bzip2-1.0.8-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1357919Z copying path '/nix/store/dyizbk50iglbibrbwbgw2mhgskwb6ham-acl-2.3.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1402412Z copying path '/nix/store/1fby1pxf0z16lgl728i2sqwqr2hrw2h8-json-c-0.17' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1405912Z copying path '/nix/store/r4p475lxvaklr9rj8l2a4sahkx5c0209-getent-glibc-2.40-66' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1471066Z copying path '/nix/store/mwwpv4k7skbx4vr2qjc89pvs7mhmgapb-k9s-0.32.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1516104Z copying path '/nix/store/79kh226vw8rrk62jbs27hdad1clwy447-keyutils-1.6.3-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1851207Z copying path '/nix/store/wnsn67xb3i072b6i496y002byvc3ipa3-kubernetes-helm-3.16.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1937221Z copying path '/nix/store/q57zi48njdcgxy4n8d5lm5pf746drc8f-isl-0.20' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2027280Z copying path '/nix/store/bpzy7snv1xr7s1z2xi7bw0q5z9j6g1gg-libantlr3c-3.4' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2073601Z copying path '/nix/store/ky06iawcwsvxmx8yw66y2a7iy7b14yii-libapparmor-4.0.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2241389Z copying path '/nix/store/0iabf1jhsfrrxkdi599kb8m37p82yr1z-audit-4.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2246256Z copying path '/nix/store/nc394xps4al1r99ziabqvajbkrhxr5b7-gzip-1.13' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2363857Z copying path '/nix/store/81awch8mhqanda1vy0c09bflgra4cxh0-glibc-2.40-66-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2370027Z copying path '/nix/store/fx6mfndjsbb0dqn9jzf1ksz9wf1dlrq7-libcap-2.70-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2409299Z copying path '/nix/store/pmg7hw4ar16dhx5hk6jswvxy349wzsm7-gnutar-1.35' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2473121Z copying path '/nix/store/7yf5ijcl2lh90xs5nkrdpfdvcmc9fnc5-libcbor-0.11.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2597934Z copying path '/nix/store/bldybfhh9v9dvpms8kh87v1a6jp6i28p-libevent-2.1.12' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2721633Z copying path '/nix/store/wxgvd9mivxdbahxidq751gxyz7x7jb8n-libffi-3.4.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2859166Z copying path '/nix/store/p0c3g3dxr818lggbk6ms3nhm97g0pir9-libgpg-error-1.50' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2893370Z copying path '/nix/store/2w8a5z0rcs4fk3ds3fnd03x6syjjl1hb-libmnl-1.0.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.3141691Z copying path '/nix/store/ywvi2y4yv3qyh0phw9y2ji17smh8nawj-libnfnetlink-1.0.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.3270686Z copying path '/nix/store/dg6d7zs1bwnhwb3sd3xdbldvpa163a5z-libnl-3.10.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.3355167Z copying path '/nix/store/xxc6rkndd68cq1225asn380bbj0512dg-libpsl-0.21.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.3441726Z copying path '/nix/store/qhs6zflzhdr11j6byf1c1j52z39hnaaw-db-4.8.30' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.3618313Z copying path '/nix/store/8g8wdqid20924fbppbljsl6l7gr0p21j-gettext-0.21.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.3688931Z copying path '/nix/store/dsxb6qvi21bzy21c98kb71wfbdj4lmz7-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.3948911Z copying path '/nix/store/nn7nj7xq8gdfyxqhchphzia7i34rwb0v-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.4119714Z copying path '/nix/store/96m2mjx55syyky6zymjnbl3pvgxlwchb-libnftnl-1.2.8' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.4124953Z copying path '/nix/store/rq8lq7r8vjqrbn2bgfglm9dxfi83gdg9-icu4c-74.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.4458695Z copying path '/nix/store/17195j62sjxjn0xwnmj3icr01n3d678r-libnetfilter_conntrack-1.1.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.4501101Z copying path '/nix/store/68vmpyiabh89l7hbp9z2hmwci74vnfi4-libseccomp-2.5.5-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.4723291Z copying path '/nix/store/wr7w1x0x1j4qli60wm22q3bc02dga08c-libtasn1-4.20.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.4886405Z copying path '/nix/store/hnh6ivl105y4sw0ifv4kbihrvbddmlkm-libxcrypt-4.4.36' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.5065339Z copying path '/nix/store/9yh47sg27z9263ll65d414rgcyrclk57-libxml2-2.13.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.5555193Z copying path '/nix/store/99jfkvhck3c2675n2cy71g40km6m0pf9-libassuan-2.5.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.5616530Z copying path '/nix/store/h9c111ckc8wg3ksxb7kj8cwhgaj52118-libgcrypt-1.10.3-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.5646816Z copying path '/nix/store/p9k3wzaw6d3wjgcbrfv2g1chj0mj2inb-lz4-1.10.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.5907632Z copying path '/nix/store/yh2c9f04q1vcfhpkamidrg3sdnwk5bvy-mpdecimal-4.0.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.5909220Z copying path '/nix/store/1h2yigiwy6bgpyzlywj36s5nqkgca8bv-libpcap-1.10.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.6077491Z copying path '/nix/store/9m68vvhnsq5cpkskphgw84ikl9m6wjwp-coreutils-9.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.6080505Z copying path '/nix/store/b75dbfz0gria25kn2qlfpnmp39h31spw-mpfr-4.2.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.6357259Z copying path '/nix/store/qvrp85i3yc9vw5x1vyx714m03jsf60rc-cvc4-1.8' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.6365675Z copying path '/nix/store/mgpn83jmnf37ky77a8qy6m466qqmlyqk-cln-1.3.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.7113441Z copying path '/nix/store/6s0zzvp9in28jkmzwh5p69v1zwpi5mi4-linux-pam-1.6.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.7438798Z copying path '/nix/store/z7ndn3k8zfjrf713gq443q7a2ixzaab5-ncurses-6.4.20221231' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.7917213Z copying path '/nix/store/q95qgxy40rx1ifa13j8l38sx3myvkhb9-nettle-3.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.7963189Z copying path '/nix/store/1w5jm9zaxwr5b8nvh41c7iz236my185m-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.8275063Z copying path '/nix/store/j4377imdqpm27h5hspds1skgsazyj0d9-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.8427330Z copying path '/nix/store/n9ya3i584zvcw6696326sdlg61d6lamf-npth-1.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.8541896Z copying path '/nix/store/isk8l71r4d1nl39mpv92ank2rs4cx3w9-openssl-3.3.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.8726292Z copying path '/nix/store/mqvgaq2bnb1701l7zcn0d6vd7w8b0z7l-openssl-3.3.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.8785796Z copying path '/nix/store/pbjp09wrnbklrfy7n2h5qix15fl5ylhj-libmpc-1.3.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.9293863Z copying path '/nix/store/kavgc464axad77kj4x4bza7s345nrhin-iptables-1.8.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.9302777Z copying path '/nix/store/lr3cvmq5ahqcj29p8c6m0fdl1y8krc86-diffutils-3.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.9305895Z copying path '/nix/store/vc2d1bfy1a5y1195nq7k6p0zcm6q89nx-findutils-4.10.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.9361528Z copying path '/nix/store/smd33cbgm2pwwnwj9l4b4fk39bdxfsfv-p11-kit-0.25.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.9406718Z copying path '/nix/store/w8xb93nwhnhlkqd9kwahkzqvbg98qs74-nghttp2-1.64.0-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.9592631Z copying path '/nix/store/cjg4jmnnf26367irpagiiffrni9bk7z0-gnupg-2.4.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.9605163Z copying path '/nix/store/zfjv48ikkqn3yhi8zi7lvqvxyscbg87n-patch-2.7.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.0196105Z copying path '/nix/store/9wwkzvmrlv43y71rbw8sbh9bamc62a16-patchelf-0.15.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.0201827Z copying path '/nix/store/5md7gyz45fm4bmkg2kb9a1hnmg8ryk9j-pcre2-10.44' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.0549784Z copying path '/nix/store/pgq4agv5wpanzr9a8mqlkncdbick7mn2-pcsclite-2.3.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.0813518Z copying path '/nix/store/9sqpmkq9fcycsrldbsdxw93hvspy8pr9-perl5.40.0-Clone-0.46' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.0899243Z copying path '/nix/store/jpk7s673pli65raimpl43jbhbg6ja4kx-perl5.40.0-FCGI-0.82' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.0954479Z copying path '/nix/store/x4kgvzlrndlsc9mn2gyrx9dla0a5y7y3-perl5.40.0-TermReadKey-2.38' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.1029681Z copying path '/nix/store/gda0f0dw64h74i98vkk7b7jwzxbkigzs-prometheus-2.55.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.1179098Z copying path '/nix/store/6hrwqlqxzvn3lry7fjyz4i6dkdmg38m6-perl5.40.0-HTTP-Message-6.45' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.1292568Z copying path '/nix/store/mfj2pd4n7vbczdx381margrm9b9jkbpq-protoc-gen-connect-go-1.17.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.1459192Z copying path '/nix/store/zwh1q2r2a1prmw4xxfpqa06ic7dl31yd-qrencode-4.1.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.1525810Z copying path '/nix/store/flw2dwllbq50954bk1qm6xwdzp8ikacl-systemd-minimal-libs-256.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.1527906Z copying path '/nix/store/mcr5gqxgkknqxa2vhnhixzd97vdsnsxi-perl5.40.0-HTML-Parser-3.81' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.1568552Z copying path '/nix/store/q73n7qdcl9yvlwh6p4n414vkxgnjjryp-perl5.40.0-HTTP-Cookies-6.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.2089237Z copying path '/nix/store/qjsj5vnbfpbg6r7jhd7znfgmcy0arn8n-gnugrep-3.11' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.2607476Z copying path '/nix/store/qxp4rv76dpjbvs37c3sfq33ial7mxgb0-perl5.40.0-HTTP-Daemon-6.16' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.3015000Z copying path '/nix/store/dwyr8xvjby2l1zz92a5pfl6bq27jhrm6-krb5-1.21.3-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.3018792Z copying path '/nix/store/q0fgny8kpagi6blmzyw15n4cmfx647kn-perl5.40.0-HTTP-Negotiate-6.01' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.3036944Z copying path '/nix/store/7f8vg8z0q721jyahy1vjbg2x3irbk5az-unbound-1.22.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.3091393Z copying path '/nix/store/6k8v1ffagipraln3nn12h1n22d5l9dvr-perl5.40.0-Net-SSLeay-1.92' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.3389262Z copying path '/nix/store/0z09m6fwgmc2a0zazp6lhyadfig10fd6-perl5.40.0-CGI-4.59' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.3886778Z copying path '/nix/store/bhvah40258cfi5sj1wiy2zmdn5xgj4m1-krb5-1.21.3-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.4114610Z copying path '/nix/store/09pyjyjdr5mwmki9gb0yf809l54xr8p2-openssl-3.3.3-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.4461176Z copying path '/nix/store/53rkjnnkbgg8pfn6ffpcdx4xbrl98yh8-readline-8.2p13' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.4516313Z copying path '/nix/store/88x6dfa5gnls0pmbvp4b9ci3bqqfja0n-util-linux-minimal-2.39.4-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5119144Z copying path '/nix/store/fvm65iknlk5kx9938xsc5485s9wzz1ig-lvm2-2.03.27-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5461485Z copying path '/nix/store/xv2bvwf6zv1hhlm9w4x0f7n0idhbsjh7-perl5.40.0-CGI-Fast-2.16' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5483393Z copying path '/nix/store/j7k6mzbdydimzw4mf23ahq6a7rz2f7w2-util-linux-minimal-2.39.4-login' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5535094Z copying path '/nix/store/73pq792gn6i9qfywsnd347vg0152w8rw-perl5.40.0-IO-Socket-SSL-2.083' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5576440Z copying path '/nix/store/pa7plncc30fhm909bis9haakh7gi0qbl-bash-interactive-5.2p37' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5578066Z copying path '/nix/store/sf31nmjhlsdp2h26vbwbpa7gwfn4i4na-xz-5.6.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5755707Z copying path '/nix/store/xxssfwyz4l32wiadvsrcf259nkb91myn-z3-4.11.2-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5759321Z copying path '/nix/store/vpg96mfr1jw5arlqg831i69g29v0sdb3-zlib-1.3.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5778143Z copying path '/nix/store/hgq0ircylcm0mx6y7ml9chcbwgrz9xg7-openssl-3.3.3-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5908368Z copying path '/nix/store/6cf2yj12gf51jn5vdbdw01gmgvyj431s-zstd-1.5.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.6267107Z copying path '/nix/store/lmfya9by589b0qgc2pqps1zy4jhldkvq-cryptsetup-2.7.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.6279214Z copying path '/nix/store/a9vgxnafcgb1khpjgn87ixmyv4dsqlp0-util-linux-minimal-2.39.4-mount' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.6545958Z copying path '/nix/store/f2sjbvr2gbp1dl1fwak6b77j18wv2rm8-perl5.40.0-Net-SMTP-SSL-1.04' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.6796246Z copying path '/nix/store/23j515bg7lgis34f0jkm9j6g00dpp2sh-binutils-2.43.1-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.6847906Z copying path '/nix/store/yk246qv4bbmr0mmh9y3gnfdkra5nnjgi-cracklib-2.10.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.6864569Z copying path '/nix/store/p751fjd81h3926ivxsq0x20lz5j7yscc-file-5.45' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.7161720Z copying path '/nix/store/yg4ahy7gahx91nq80achmzilrjyv0scj-gcc-13.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.7588320Z copying path '/nix/store/nfdnparxrnv6sy627lw1c27pdqzpbfs2-kexec-tools-2.0.29' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.7605738Z copying path '/nix/store/1md58p5vm4dixcwwpwrs78a7kjf6nnqk-gnutls-3.8.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.7772720Z copying path '/nix/store/yr9xanc3bgp95fj9kvbrrq47zhzni2i6-kmod-31' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.8760391Z copying path '/nix/store/qdypipr8zp0nkyrwqnakn3q3xhpghsrb-kmod-31-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.8941611Z copying path '/nix/store/6m49g3aqk5d5vdxp7chpgim5l6cfm7d6-libarchive-3.7.7-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.8953587Z copying path '/nix/store/n6zw4496n0bd9r6gjwkjmf5ja6757q32-krb5-1.21.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.9909707Z copying path '/nix/store/22qnvg3zddkf7rbpckv676qpsc2najv9-binutils-2.43.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.9936393Z copying path '/nix/store/kc1sdzqnymjwy74chlnkq2xlxnmrg30x-libfido2-1.15.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.9978472Z copying path '/nix/store/pvyhn761hgn17fpr6fy168vcv1ciwsgl-libssh2-1.11.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.0678813Z copying path '/nix/store/qmz79v7x18zmi6g2iagxwazqfwbxzhra-libssh2-1.11.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.1305383Z copying path '/nix/store/q4j9jj8jw74216cw4chsqlwdnglwly6p-perl-5.40.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.1407835Z copying path '/nix/store/i7gfv740vcygvl9pgqwq29nkzmsp09ww-sqlite-3.46.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.1428830Z copying path '/nix/store/blkjagm7k01k9sghpyckw4y6dd6z0knl-util-linux-minimal-2.39.4-swap' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.1732331Z copying path '/nix/store/17rp2wzkp8xfhxcd5zihx6qmnbaadlhs-libmicrohttpd-1.0.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.2275280Z copying path '/nix/store/zfk4v9lxal3ch98qnf7zlciwgmk4w1ij-krb5-1.21.3-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.2408013Z copying path '/nix/store/w2m5p0fb6pmqq6dz2jqlvnyw7n4vcbpx-curl-8.12.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.2450082Z copying path '/nix/store/sh26c2jcz7w2gii2px77bqy64fd026jd-boost-1.81.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.2957291Z copying path '/nix/store/rbns8mzghhqxih4hj2js4mb4s6ivy5d1-xz-5.6.3-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.3241512Z copying path '/nix/store/ccrjbcfl5zcdp0n5mh69f4airrb9g8m4-zlib-1.3.1-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.3562109Z copying path '/nix/store/lgfp6sl5hpykmld29rqvi9pam8ji8k24-curl-8.12.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.4958492Z copying path '/nix/store/gnnac2vpa466p2lpzskmbj5vjr6ikzhg-libpwquality-1.4.5-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.5028991Z copying path '/nix/store/0rg4nqym82ngd29dy8qm1bggm94dkry3-libssh2-1.11.1-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.5137128Z copying path '/nix/store/hsxp8g7zdr6wxk1mp812g8nbzvajzn4w-stdenv-linux' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.5422634Z copying path '/nix/store/xmmli2ijsz2br6573z3sqsgg0spnj7i9-zstd-1.5.6-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.5809085Z copying path '/nix/store/lhpwdis5hkyljz1d200bj1s6g51ljq9k-python3-3.12.8' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.6148233Z copying path '/nix/store/awbfciyq3cjvw6x8wd8wdjy8z2qxm98n-elfutils-0.191' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.6662035Z copying path '/nix/store/3hgwjb5hp0jm8fyi4vx9s4f3hjvp0n1r-tpm2-tss-4.1.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.7079199Z copying path '/nix/store/8qf68jid6rr2f4c8ppyp0ixdlv0axnpn-curl-8.12.1-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.7523360Z copying path '/nix/store/z9lnvmqymg80hk671fm2533ncczkf7z2-kbd-2.6.4' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.8224765Z copying path '/nix/store/04shrm4bvxw1yam87da7y9k872kqn777-curl-8.12.1-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.8917195Z copying path '/nix/store/007wiy8x5irdxzsdx3bdqx0k0a8hp6ji-shellcheck-0.10.0-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.8919044Z copying path '/nix/store/f95nqmgp2vaz1h68n36k605ay1ixnj0a-libbpf-1.4.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.9926702Z building '/nix/store/rkn5fk95kmnbxk65bxlyzqnmsmafh1f1-kind-with-registry.sh.drv'... +2025-07-23T19:31:09.2408568Z copying path '/nix/store/00x4qvjp4kcm932rv281v8n9y4xk9dv1-solc-0.8.21' from 'https://cache.nixos.org'... +2025-07-23T19:31:09.3243313Z copying path '/nix/store/w9qcpyhjrxsqrps91wkz8r4mqvg9zrxc-systemd-256.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:09.3953722Z copying path '/nix/store/1mv8pj4nxwnd9bbxshljc9p4cnl3rakj-binutils-wrapper-2.43.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:09.3972173Z copying path '/nix/store/ch1brsi5xwxgyv23csmvw1am9l40rf1c-shellcheck-0.10.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:10.2051363Z copying path '/nix/store/99accs107rzm78z74cj1wns59d0m1nh8-perl5.40.0-libwww-perl-6.72' from 'https://cache.nixos.org'... +2025-07-23T19:31:10.3335050Z copying path '/nix/store/7s649psqfmp6bf2ij6kba3nbwjp50z0w-promtail-3.2.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:11.2474266Z copying path '/nix/store/1fwh9nv8n93rjc7i7j9gcm3whdqpgy84-git-2.47.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:12.1380345Z copying path '/nix/store/gnd8f9h2ycxrfrvrga508c4n9cxy6720-gcc-wrapper-13.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:12.1522616Z copying path '/nix/store/szfi0xd0cwdaldhkp8vlgi7jfv662nmd-stdenv-linux' from 'https://cache.nixos.org'... +2025-07-23T19:31:12.2111974Z building '/nix/store/mbmxfdxryq3wr2wxm5brh42mcad1gvzy-kind-with-registry-1.0.0.drv'... +2025-07-23T19:31:12.3023632Z building '/nix/store/gvy0rwami6li8s64cb1q1hv75mnglnjn-nix-shell-env.drv'... +2025-07-23T19:31:12.7582022Z this path will be fetched (0.10 MiB download, 0.10 MiB unpacked): +2025-07-23T19:31:12.7583766Z /nix/store/hlv28jlwzk6kqj6vljm9cn8i7pw030nx-bash-interactive-5.2p37-man +2025-07-23T19:31:12.7594137Z copying path '/nix/store/hlv28jlwzk6kqj6vljm9cn8i7pw030nx-bash-interactive-5.2p37-man' from 'https://cache.nixos.org'... +2025-07-23T19:31:12.8902376Z dependencies installed +2025-07-23T19:31:12.8946315Z ##[group]Run echo "::warning::Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch?" +2025-07-23T19:31:12.8947060Z echo "::warning::Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch?" +2025-07-23T19:31:12.8975896Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-07-23T19:31:12.8976211Z env: +2025-07-23T19:31:12.8976400Z TMPDIR: /home/runner/work/_temp +2025-07-23T19:31:12.8976631Z ##[endgroup] +2025-07-23T19:31:12.9039788Z ##[warning]Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch? +2025-07-23T19:31:12.9060973Z ##[group]Run AVALANCHEGO_CLONE_PATH=avalanchego /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --impure --command bash -x ./scripts/run_task.sh test-e2e +2025-07-23T19:31:12.9062731Z AVALANCHEGO_CLONE_PATH=avalanchego /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --impure --command bash -x ./scripts/run_task.sh test-e2e +2025-07-23T19:31:12.9088994Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-07-23T19:31:12.9089306Z env: +2025-07-23T19:31:12.9089485Z TMPDIR: /home/runner/work/_temp +2025-07-23T19:31:12.9089738Z TMPNET_START_METRICS_COLLECTOR: false +2025-07-23T19:31:12.9089993Z TMPNET_START_LOGS_COLLECTOR: false +2025-07-23T19:31:12.9090234Z TMPNET_CHECK_METRICS_COLLECTED: false +2025-07-23T19:31:12.9090497Z TMPNET_CHECK_LOGS_COLLECTED: false +2025-07-23T19:31:12.9090728Z LOKI_USERNAME: +2025-07-23T19:31:12.9090900Z LOKI_PASSWORD: +2025-07-23T19:31:12.9091084Z PROMETHEUS_USERNAME: +2025-07-23T19:31:12.9091288Z PROMETHEUS_PASSWORD: +2025-07-23T19:31:12.9091483Z GH_REPO: ava-labs/coreth +2025-07-23T19:31:12.9091684Z GH_WORKFLOW: CI +2025-07-23T19:31:12.9091859Z GH_RUN_ID: 16480013789 +2025-07-23T19:31:12.9092051Z GH_RUN_NUMBER: 5026 +2025-07-23T19:31:12.9092230Z GH_RUN_ATTEMPT: 1 +2025-07-23T19:31:12.9092415Z GH_JOB_ID: avalanchego_e2e +2025-07-23T19:31:12.9092619Z ##[endgroup] +2025-07-23T19:31:12.9158384Z No local flake found, will attempt to use avalanchego flake +2025-07-23T19:31:12.9250918Z Starting nix shell for github:ava-labs/avalanchego?ref=v1.13.3-rc.1 +2025-07-23T19:31:15.2910799Z + set -euo pipefail +2025-07-23T19:31:15.2911143Z + command -v task +2025-07-23T19:31:15.2911434Z + exec task test-e2e +2025-07-23T19:31:15.3097863Z task: [test-e2e] ./scripts/tests.e2e.sh +2025-07-23T19:31:15.3162752Z running AvalancheGo e2e tests +2025-07-23T19:31:15.3392036Z task: [build-race] ./scripts/build.sh -r +2025-07-23T19:31:15.3431157Z Building with race detection enabled +2025-07-23T19:31:15.3540777Z Building AvalancheGo with [go version go1.23.9 linux/amd64]... +2025-07-23T19:32:40.6626243Z task: [build-xsvm] ./scripts/build_xsvm.sh +2025-07-23T19:32:40.6689451Z Building xsvm plugin... +2025-07-23T19:33:26.6501000Z Symlinking ./build/xsvm to /home/runner/.avalanchego/plugins/v3m4wPxaHpvGr8qfMeyK6PRW3idZrPHmYcMTt7oXdK47yurVH +2025-07-23T19:33:26.6531040Z Symlinking ./build/xsvm to /home/runner/work/coreth/coreth/avalanchego/build/plugins/v3m4wPxaHpvGr8qfMeyK6PRW3idZrPHmYcMTt7oXdK47yurVH +2025-07-23T19:33:26.6558013Z task: [test-e2e-ci] bash -x ./scripts/tests.e2e.sh '--ginkgo.label-filter=c || uses-c' +2025-07-23T19:33:26.6589347Z + set -euo pipefail +2025-07-23T19:33:26.6589830Z + [[ ./scripts/tests.e2e.sh =~ scripts/tests.e2e.sh ]] +2025-07-23T19:33:26.6590393Z + source ./scripts/constants.sh +2025-07-23T19:33:26.6590830Z ++ set -euo pipefail +2025-07-23T19:33:26.6595874Z ++++ dirname ./scripts/constants.sh +2025-07-23T19:33:26.6607915Z +++ cd ./scripts +2025-07-23T19:33:26.6608240Z +++ cd .. +2025-07-23T19:33:26.6608529Z +++ pwd +2025-07-23T19:33:26.6610674Z ++ AVALANCHE_PATH=/home/runner/work/coreth/coreth/avalanchego +2025-07-23T19:33:26.6611469Z ++ avalanchego_path=/home/runner/work/coreth/coreth/avalanchego/build/avalanchego +2025-07-23T19:33:26.6612162Z ++ static_ld_flags= +2025-07-23T19:33:26.6612478Z ++ '[' '' = 1 ']' +2025-07-23T19:33:26.6612983Z ++ export 'CGO_CFLAGS=-O2 -D__BLST_PORTABLE__' +2025-07-23T19:33:26.6613851Z ++ CGO_CFLAGS='-O2 -D__BLST_PORTABLE__' +2025-07-23T19:33:26.6614493Z ++ export CGO_ENABLED=1 +2025-07-23T19:33:26.6614835Z ++ CGO_ENABLED=1 +2025-07-23T19:33:26.6615240Z ++ export GOPROXY=https://proxy.golang.org +2025-07-23T19:33:26.6615757Z ++ GOPROXY=https://proxy.golang.org +2025-07-23T19:33:26.6616181Z + E2E_ARGS=("${@}") +2025-07-23T19:33:26.6618085Z + [[ --ginkgo.label-filter=c || uses-c =~ --runtime=kube ]] +2025-07-23T19:33:26.6619008Z ++ realpath ./build/avalanchego +2025-07-23T19:33:26.6631291Z + AVALANCHEGO_PATH=/home/runner/work/coreth/coreth/avalanchego/build/avalanchego +2025-07-23T19:33:26.6632338Z + E2E_ARGS+=("--avalanchego-path=${AVALANCHEGO_PATH}") +2025-07-23T19:33:26.6632906Z + GINKGO_ARGS= +2025-07-23T19:33:26.6633249Z + [[ -n 1 ]] +2025-07-23T19:33:26.6633672Z + echo 'tests will be executed serially to minimize resource requirements' +2025-07-23T19:33:26.6634322Z + [[ -n '' ]] +2025-07-23T19:33:26.6634561Z + GINKGO_ARGS+=' --randomize-all' +2025-07-23T19:33:26.6635383Z + ./bin/ginkgo --randomize-all -v ./tests/e2e -- '--ginkgo.label-filter=c || uses-c' --avalanchego-path=/home/runner/work/coreth/coreth/avalanchego/build/avalanchego +2025-07-23T19:33:26.6636272Z tests will be executed serially to minimize resource requirements +2025-07-23T19:33:47.7357896Z Running Suite: e2e test suites - /home/runner/work/coreth/coreth/avalanchego/tests/e2e +2025-07-23T19:33:47.7358654Z ====================================================================================== +2025-07-23T19:33:47.7359354Z Random Seed: 1753299207 - will randomize all specs +2025-07-23T19:33:47.7359607Z +2025-07-23T19:33:47.7359778Z Will run 4 of 14 specs +2025-07-23T19:33:47.7360131Z ------------------------------ +2025-07-23T19:33:47.7360491Z [SynchronizedBeforeSuite]  +2025-07-23T19:33:47.7361096Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/e2e_test.go:40 +2025-07-23T19:33:47.7449196Z [07-23|19:33:47.744] INFO e2e/e2e_test.go:56 setting upgrades {"upgrades": {"apricotPhase1Time":"2020-12-05T05:00:00Z","apricotPhase2Time":"2020-12-05T05:00:00Z","apricotPhase3Time":"2020-12-05T05:00:00Z","apricotPhase4Time":"2020-12-05T05:00:00Z","apricotPhase4MinPChainHeight":0,"apricotPhase5Time":"2020-12-05T05:00:00Z","apricotPhasePre6Time":"2020-12-05T05:00:00Z","apricotPhase6Time":"2020-12-05T05:00:00Z","apricotPhasePost6Time":"2020-12-05T05:00:00Z","banffTime":"2020-12-05T05:00:00Z","cortinaTime":"2020-12-05T05:00:00Z","cortinaXChainStopVertexID":"11111111111111111111111111111111LpoYY","durangoTime":"2020-12-05T05:00:00Z","etnaTime":"2020-12-05T05:00:00Z","fortunaTime":"2020-12-05T05:00:00Z","graniteTime":"9999-12-01T00:00:00Z"}} +2025-07-23T19:33:47.7454738Z [07-23|19:33:47.744] INFO e2e/helpers.go:287 waiting for network to start {"timeoutSeconds": 120} +2025-07-23T19:33:50.4809836Z [07-23|19:33:50.480] INFO tmpnet/network.go:238 preparing configuration for new network {"runtimeConfig": {"process":{"avalancheGoPath":"/home/runner/work/coreth/coreth/avalanchego/build/avalanchego","pluginDir":"/home/runner/.avalanchego/plugins"}}} +2025-07-23T19:33:50.4859426Z [07-23|19:33:50.485] INFO tmpnet/network.go:430 starting a single-node network with sybil protection disabled for quicker subnet creation +2025-07-23T19:33:50.4860965Z [07-23|19:33:50.485] INFO tmpnet/network.go:369 starting network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e", "uuid": "4a81e2e0-9ddd-4e4b-9042-64c43cc0602a"} +2025-07-23T19:33:55.0910561Z [07-23|19:33:55.090] INFO tmpnet/process_runtime.go:147 started local node {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "isEphemeral": false} +2025-07-23T19:33:55.0913702Z [07-23|19:33:55.091] INFO tmpnet/network.go:384 waiting for nodes to report healthy +2025-07-23T19:33:57.0932664Z [07-23|19:33:57.092] INFO tmpnet/network.go:955 node is healthy {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "uri": "http://127.0.0.1:41211"} +2025-07-23T19:33:57.0937459Z [07-23|19:33:57.092] INFO tmpnet/network.go:388 started network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e", "uuid": "4a81e2e0-9ddd-4e4b-9042-64c43cc0602a"} +2025-07-23T19:33:57.0944219Z [07-23|19:33:57.093] INFO tmpnet/network.go:402 metrics and logs available via grafana (collectors must be running) {"url": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299230485&to=now", "linkPath": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/metrics.txt"} +2025-07-23T19:33:57.0946637Z [07-23|19:33:57.093] INFO tmpnet/network.go:620 creating subnet {"name": "xsvm-a"} +2025-07-23T19:33:57.3579497Z [07-23|19:33:57.357] INFO tmpnet/network.go:639 created subnet {"name": "xsvm-a", "id": "azXA5XPTPqjPYN4pzBaHofqZLC3ZrEY13eM1iuYp3oVdRxV69"} +2025-07-23T19:33:57.3581544Z [07-23|19:33:57.357] INFO tmpnet/network.go:649 wrote subnet configuration {"name": "xsvm-a"} +2025-07-23T19:33:57.3582966Z [07-23|19:33:57.357] INFO tmpnet/network.go:620 creating subnet {"name": "xsvm-b"} +2025-07-23T19:33:57.4806216Z [07-23|19:33:57.480] INFO tmpnet/network.go:639 created subnet {"name": "xsvm-b", "id": "2DhzsRdU1B2qy2BZ4WgR2AKmHMfPSSmd8djFkH1y9edhMMrAD8"} +2025-07-23T19:33:57.4808266Z [07-23|19:33:57.480] INFO tmpnet/network.go:649 wrote subnet configuration {"name": "xsvm-b"} +2025-07-23T19:33:57.4817482Z [07-23|19:33:57.481] INFO tmpnet/network.go:697 adding validators for subnet {"name": "xsvm-a"} +2025-07-23T19:33:57.6071092Z [07-23|19:33:57.606] INFO tmpnet/subnet.go:196 added validator to subnet {"subnet": "xsvm-a", "nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi"} +2025-07-23T19:33:57.6072545Z [07-23|19:33:57.606] INFO tmpnet/network.go:697 adding validators for subnet {"name": "xsvm-b"} +2025-07-23T19:33:57.7309399Z [07-23|19:33:57.730] INFO tmpnet/subnet.go:196 added validator to subnet {"subnet": "xsvm-b", "nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y"} +2025-07-23T19:33:57.7311699Z [07-23|19:33:57.730] INFO tmpnet/subnet.go:261 waiting for subnet validators to become active {"subnet": "xsvm-a"} +2025-07-23T19:33:57.7319730Z [07-23|19:33:57.731] INFO tmpnet/subnet.go:281 saw the expected active validators of the subnet {"subnet": "xsvm-a"} +2025-07-23T19:33:57.7478819Z [07-23|19:33:57.747] INFO tmpnet/subnet.go:127 creating chains for subnet {"subnet": "xsvm-a"} +2025-07-23T19:33:57.8558516Z [07-23|19:33:57.855] INFO tmpnet/subnet.go:145 created chain {"chain": "SbBAb8nfj4xoTe6k1e7vhVWJ88bLNCtFEp1vPhCmKSjC9T1tc", "subnet": "xsvm-a", "vm": "v3m4wPxaHpvGr8qfMeyK6PRW3idZrPHmYcMTt7oXdK47yurVH"} +2025-07-23T19:33:57.8561003Z [07-23|19:33:57.855] INFO tmpnet/network.go:733 wrote subnet configuration {"name": "xsvm-a", "id": "azXA5XPTPqjPYN4pzBaHofqZLC3ZrEY13eM1iuYp3oVdRxV69"} +2025-07-23T19:33:57.8563015Z [07-23|19:33:57.855] INFO tmpnet/subnet.go:261 waiting for subnet validators to become active {"subnet": "xsvm-b"} +2025-07-23T19:33:57.8569719Z [07-23|19:33:57.856] INFO tmpnet/subnet.go:281 saw the expected active validators of the subnet {"subnet": "xsvm-b"} +2025-07-23T19:33:57.8749688Z [07-23|19:33:57.874] INFO tmpnet/subnet.go:127 creating chains for subnet {"subnet": "xsvm-b"} +2025-07-23T19:33:57.9852429Z [07-23|19:33:57.984] INFO tmpnet/subnet.go:145 created chain {"chain": "UtRoikpD9kByqTNfMq4xyERctyq8YyXg9nqQtmNzVRRyGbLzm", "subnet": "xsvm-b", "vm": "v3m4wPxaHpvGr8qfMeyK6PRW3idZrPHmYcMTt7oXdK47yurVH"} +2025-07-23T19:33:57.9855593Z [07-23|19:33:57.985] INFO tmpnet/network.go:733 wrote subnet configuration {"name": "xsvm-b", "id": "2DhzsRdU1B2qy2BZ4WgR2AKmHMfPSSmd8djFkH1y9edhMMrAD8"} +2025-07-23T19:33:57.9857396Z [07-23|19:33:57.985] INFO tmpnet/network.go:455 re-enabling sybil protection {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi"} +2025-07-23T19:33:57.9859294Z [07-23|19:33:57.985] INFO tmpnet/network.go:472 restarting bootstrap node {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi"} +2025-07-23T19:34:02.7079272Z [07-23|19:34:02.707] INFO tmpnet/process_runtime.go:147 started local node {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "isEphemeral": false} +2025-07-23T19:34:02.7085330Z [07-23|19:34:02.707] INFO tmpnet/network.go:483 starting remaining nodes +2025-07-23T19:34:07.3640559Z [07-23|19:34:07.363] INFO tmpnet/process_runtime.go:147 started local node {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "isEphemeral": false} +2025-07-23T19:34:07.3643740Z [07-23|19:34:07.363] INFO tmpnet/network.go:384 waiting for nodes to report healthy +2025-07-23T19:34:09.3683593Z [07-23|19:34:09.368] INFO tmpnet/network.go:955 node is healthy {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "uri": "http://127.0.0.1:34983"} +2025-07-23T19:34:12.7662878Z [07-23|19:34:12.765] INFO tmpnet/network.go:955 node is healthy {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "uri": "http://127.0.0.1:43559"} +2025-07-23T19:34:12.7665501Z [07-23|19:34:12.766] INFO tmpnet/network.go:388 started network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e", "uuid": "4a81e2e0-9ddd-4e4b-9042-64c43cc0602a"} +2025-07-23T19:34:12.7671173Z [07-23|19:34:12.766] INFO tmpnet/network.go:402 metrics and logs available via grafana (collectors must be running) {"url": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299242707&to=now", "linkPath": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/metrics.txt"} +2025-07-23T19:34:12.7674348Z [07-23|19:34:12.766] INFO e2e/helpers.go:308 network started successfully +2025-07-23T19:34:12.7680787Z [07-23|19:34:12.767] INFO e2e/env.go:229 network nodes are available {"uris": [{"NodeID":"NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y","URI":"http://127.0.0.1:34983"},{"NodeID":"NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi","URI":"http://127.0.0.1:43559"}]} +2025-07-23T19:34:12.7691595Z [SynchronizedBeforeSuite] PASSED [25.033 seconds] +2025-07-23T19:34:12.7692284Z ------------------------------ +2025-07-23T19:34:12.7692894Z SSSS +2025-07-23T19:34:12.7693482Z ------------------------------ +2025-07-23T19:34:12.7694895Z [C-Chain] [Interchain Workflow] should ensure that funds can be transferred from the C-Chain to the X-Chain and the P-Chain [c] +2025-07-23T19:34:12.7696433Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/c/interchain_workflow.go:28 +2025-07-23T19:34:12.7697663Z STEP: initializing a new eth client @ 07/23/25 19:34:12.769 +2025-07-23T19:34:12.7706391Z INFO targeting random node {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "uri": "http://127.0.0.1:34983"} +2025-07-23T19:34:12.7708064Z INFO initializing a new eth client {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "URI": "http://127.0.0.1:34983"} +2025-07-23T19:34:12.7713083Z STEP: allocating a pre-funded key to send from and a recipient key to deliver to @ 07/23/25 19:34:12.771 +2025-07-23T19:34:12.7714686Z STEP: sending funds from one address to another on the C-Chain @ 07/23/25 19:34:12.771 +2025-07-23T19:34:12.7730629Z INFO suggested gas price {"price": "2"} +2025-07-23T19:34:12.7737238Z INFO sending eth transaction {"txID": "0x5407ba46e9f63cc2fc094478fabd80fd54b68f233a34c02de7b93d529f3d42af"} +2025-07-23T19:34:13.2777054Z INFO eth transaction accepted {"txID": "0x5407ba46e9f63cc2fc094478fabd80fd54b68f233a34c02de7b93d529f3d42af", "gasUsed": 21000, "gasPrice": "4", "blockNumber": "1"} +2025-07-23T19:34:13.2780195Z STEP: waiting for the C-Chain recipient address to have received the sent funds @ 07/23/25 19:34:13.277 +2025-07-23T19:34:13.2783668Z STEP: initializing a keychain and associated wallet @ 07/23/25 19:34:13.278 +2025-07-23T19:34:13.2785776Z INFO initializing a new wallet {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "URI": "http://127.0.0.1:34983"} +2025-07-23T19:34:13.2958383Z INFO wallet balances in nAVAX {"xChain": 30000000000000000, "pChain": 20000000000000000} +2025-07-23T19:34:13.2959562Z STEP: defining common configuration @ 07/23/25 19:34:13.295 +2025-07-23T19:34:13.2960681Z STEP: exporting AVAX from the C-Chain to the X-Chain @ 07/23/25 19:34:13.295 +2025-07-23T19:34:13.2967449Z INFO suggested gas price {"price": "2"} +2025-07-23T19:34:13.4557575Z INFO issued transaction {"chainAlias": "C", "txID": "2uUxFDhG8ruqfKpxJuLq68HbAJtWgzUKMHMu9MeedJcKtT76d", "duration": "158.523888ms"} +2025-07-23T19:34:14.1777358Z INFO confirmed transaction {"chainAlias": "C", "txID": "2uUxFDhG8ruqfKpxJuLq68HbAJtWgzUKMHMu9MeedJcKtT76d", "totalDuration": "880.572225ms", "confirmationDuration": "722.048337ms"} +2025-07-23T19:34:14.1779592Z STEP: importing AVAX from the C-Chain to the X-Chain @ 07/23/25 19:34:14.177 +2025-07-23T19:34:14.1837202Z INFO issued transaction {"chainAlias": "X", "txID": "KgJHaeFk7kKLkS35bCEu4Yv5p6Ja6b34N8gKE1xDEvA396BHF", "duration": "5.767616ms"} +2025-07-23T19:34:14.2351649Z INFO confirmed transaction {"chainAlias": "X", "txID": "KgJHaeFk7kKLkS35bCEu4Yv5p6Ja6b34N8gKE1xDEvA396BHF", "totalDuration": "57.167164ms", "confirmationDuration": "51.399548ms"} +2025-07-23T19:34:14.2353005Z STEP: checking that the recipient address has received imported funds on the X-Chain @ 07/23/25 19:34:14.234 +2025-07-23T19:34:14.2353818Z STEP: exporting AVAX from the C-Chain to the P-Chain @ 07/23/25 19:34:14.234 +2025-07-23T19:34:14.2356929Z INFO suggested gas price {"price": "2"} +2025-07-23T19:34:14.2461690Z INFO issued transaction {"chainAlias": "C", "txID": "2HxdBSFBNJtEJcg2hquiwbF6z6uVzuWpGpnsKvTXvhabUP1WiQ", "duration": "10.113417ms"} +2025-07-23T19:34:16.1793052Z INFO confirmed transaction {"chainAlias": "C", "txID": "2HxdBSFBNJtEJcg2hquiwbF6z6uVzuWpGpnsKvTXvhabUP1WiQ", "totalDuration": "1.94258288s", "confirmationDuration": "1.932469463s"} +2025-07-23T19:34:16.1795415Z STEP: importing AVAX from the C-Chain to the P-Chain @ 07/23/25 19:34:16.178 +2025-07-23T19:34:16.1851393Z INFO issued transaction {"chainAlias": "P", "txID": "fBiCpBcpJ1oBL21CmxLb7bhksfYhAGtwwi8ek61qUQCtQK43R", "duration": "6.199959ms"} +2025-07-23T19:34:16.3467137Z INFO confirmed transaction {"chainAlias": "P", "txID": "fBiCpBcpJ1oBL21CmxLb7bhksfYhAGtwwi8ek61qUQCtQK43R", "totalDuration": "167.535408ms", "confirmationDuration": "161.335449ms"} +2025-07-23T19:34:16.3469714Z STEP: checking that the recipient address has received imported funds on the P-Chain @ 07/23/25 19:34:16.346 +2025-07-23T19:34:16.3478867Z STEP: checking if bootstrap is possible with the current network state @ 07/23/25 19:34:16.347 +2025-07-23T19:34:21.1577023Z INFO started local node {"nodeID": "NodeID-QAv9x5ptL42tbpP8ojrEcjYQNEEbpCB2B", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-QAv9x5ptL42tbpP8ojrEcjYQNEEbpCB2B", "isEphemeral": true} +2025-07-23T19:34:23.0636744Z INFO metrics and logs available via grafana (collectors must be running) {"uri": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299252769&to=1753299275062"} +2025-07-23T19:34:23.2756676Z • [10.506 seconds] +2025-07-23T19:34:23.2757645Z ------------------------------ +2025-07-23T19:34:23.2759924Z [P-Chain] [Interchain Workflow] should ensure that funds can be transferred from the P-Chain to the X-Chain and the C-Chain [uses-c, p] +2025-07-23T19:34:23.2762153Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/p/interchain_workflow.go:34 +2025-07-23T19:34:23.2772747Z STEP: checking that the network has a compatible minimum stake duration @ 07/23/25 19:34:23.277 +2025-07-23T19:34:23.2774540Z STEP: creating wallet with a funded key to send from and recipient key to deliver to @ 07/23/25 19:34:23.277 +2025-07-23T19:34:23.2789705Z INFO targeting random node {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "uri": "http://127.0.0.1:34983"} +2025-07-23T19:34:23.2791502Z INFO initializing a new wallet {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "URI": "http://127.0.0.1:34983"} +2025-07-23T19:34:23.2971737Z INFO wallet balances in nAVAX {"xChain": 30000000000000000, "pChain": 20000000000000000} +2025-07-23T19:34:23.2972952Z STEP: defining common configuration @ 07/23/25 19:34:23.296 +2025-07-23T19:34:23.2980391Z STEP: adding new node and waiting for it to report healthy @ 07/23/25 19:34:23.296 +2025-07-23T19:34:28.1179131Z INFO started local node {"nodeID": "NodeID-8zk2K7Bj2G9iZznu7zywcz1Z76x8bsmGj", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-8zk2K7Bj2G9iZznu7zywcz1Z76x8bsmGj", "isEphemeral": true} +2025-07-23T19:34:30.0190926Z STEP: retrieving new node's id and pop @ 07/23/25 19:34:30.018 +2025-07-23T19:34:30.0200277Z STEP: adding the new node as a validator @ 07/23/25 19:34:30.019 +2025-07-23T19:34:30.0296811Z INFO issued transaction {"chainAlias": "P", "txID": "2MsXTphp868AE3cYav2MjXuD2N6gFp3Z33Vjx5Pjit937aF9SN", "duration": "9.275622ms"} +2025-07-23T19:34:30.3536957Z INFO confirmed transaction {"chainAlias": "P", "txID": "2MsXTphp868AE3cYav2MjXuD2N6gFp3Z33Vjx5Pjit937aF9SN", "totalDuration": "331.877623ms", "confirmationDuration": "322.602001ms"} +2025-07-23T19:34:30.3539186Z STEP: adding a delegator to the new node @ 07/23/25 19:34:30.352 +2025-07-23T19:34:30.3647167Z INFO issued transaction {"chainAlias": "P", "txID": "cixyaagzkWQHbhMee9RGYAa4RKiyFCNbKYVnBvPzX3QQ81Hu7", "duration": "12.016242ms"} +2025-07-23T19:34:30.8463211Z INFO confirmed transaction {"chainAlias": "P", "txID": "cixyaagzkWQHbhMee9RGYAa4RKiyFCNbKYVnBvPzX3QQ81Hu7", "totalDuration": "493.497018ms", "confirmationDuration": "481.480776ms"} +2025-07-23T19:34:30.8464813Z STEP: exporting AVAX from the P-Chain to the X-Chain @ 07/23/25 19:34:30.846 +2025-07-23T19:34:30.8526253Z INFO issued transaction {"chainAlias": "P", "txID": "PvhrWKfrL49y26v9Lo6PNYLFbbauSig4fsyDwJx5jyVuzJXnx", "duration": "6.120529ms"} +2025-07-23T19:34:30.9161495Z INFO confirmed transaction {"chainAlias": "P", "txID": "PvhrWKfrL49y26v9Lo6PNYLFbbauSig4fsyDwJx5jyVuzJXnx", "totalDuration": "68.311332ms", "confirmationDuration": "62.190803ms"} +2025-07-23T19:34:30.9164082Z STEP: importing AVAX from the P-Chain to the X-Chain @ 07/23/25 19:34:30.914 +2025-07-23T19:34:30.9244925Z INFO issued transaction {"chainAlias": "X", "txID": "zJrgtN1tRQvWS4tC2wKvfoNJCvze4oZLbWLLWs8FFC9WdgdAS", "duration": "9.206996ms"} +2025-07-23T19:34:30.9969257Z INFO confirmed transaction {"chainAlias": "X", "txID": "zJrgtN1tRQvWS4tC2wKvfoNJCvze4oZLbWLLWs8FFC9WdgdAS", "totalDuration": "80.550747ms", "confirmationDuration": "71.343751ms"} +2025-07-23T19:34:30.9971643Z STEP: checking that the recipient address has received imported funds on the X-Chain @ 07/23/25 19:34:30.995 +2025-07-23T19:34:30.9973301Z STEP: exporting AVAX from the P-Chain to the C-Chain @ 07/23/25 19:34:30.995 +2025-07-23T19:34:31.0040095Z INFO issued transaction {"chainAlias": "P", "txID": "uk8oAgAT8VEvSmtEXhbjGyazLe8UC4vg7hFxYjYr6CvPYYZxu", "duration": "7.842388ms"} +2025-07-23T19:34:31.0883108Z INFO confirmed transaction {"chainAlias": "P", "txID": "uk8oAgAT8VEvSmtEXhbjGyazLe8UC4vg7hFxYjYr6CvPYYZxu", "totalDuration": "91.799036ms", "confirmationDuration": "83.956648ms"} +2025-07-23T19:34:31.0893654Z STEP: initializing a new eth client @ 07/23/25 19:34:31.087 +2025-07-23T19:34:31.0895862Z INFO initializing a new eth client {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "URI": "http://127.0.0.1:34983"} +2025-07-23T19:34:31.0897887Z STEP: importing AVAX from the P-Chain to the C-Chain @ 07/23/25 19:34:31.089 +2025-07-23T19:34:31.0930537Z INFO suggested gas price {"price": "2"} +2025-07-23T19:34:31.1016934Z INFO issued transaction {"chainAlias": "C", "txID": "22SdoY9fepXtuoW6Jbe8MF98iQcHpTQWHSTQAJ8AoF3yXxJoC3", "duration": "8.609553ms"} +2025-07-23T19:34:31.1656317Z INFO confirmed transaction {"chainAlias": "C", "txID": "22SdoY9fepXtuoW6Jbe8MF98iQcHpTQWHSTQAJ8AoF3yXxJoC3", "totalDuration": "70.189424ms", "confirmationDuration": "61.579871ms"} +2025-07-23T19:34:31.1659223Z STEP: checking that the recipient address has received imported funds on the C-Chain @ 07/23/25 19:34:31.163 +2025-07-23T19:34:31.1666886Z STEP: stopping validator node to free up resources for a bootstrap check @ 07/23/25 19:34:31.166 +2025-07-23T19:34:31.3460844Z STEP: checking if bootstrap is possible with the current network state @ 07/23/25 19:34:31.345 +2025-07-23T19:34:36.0866925Z INFO started local node {"nodeID": "NodeID-LTVxsGkZ8smzUCEVMEmaxQbE2g2SyWoY5", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-LTVxsGkZ8smzUCEVMEmaxQbE2g2SyWoY5", "isEphemeral": true} +2025-07-23T19:34:43.9932905Z INFO metrics and logs available via grafana (collectors must be running) {"uri": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299263275&to=1753299295990"} +2025-07-23T19:34:44.1868056Z INFO shutting down ephemeral node {"nodeID": "NodeID-8zk2K7Bj2G9iZznu7zywcz1Z76x8bsmGj"} +2025-07-23T19:34:44.1869430Z • [20.911 seconds] +2025-07-23T19:34:44.1870202Z ------------------------------ +2025-07-23T19:34:44.1871099Z SSS +2025-07-23T19:34:44.1872280Z ------------------------------ +2025-07-23T19:34:44.1873803Z [C-Chain] [Dynamic Fees] should ensure that the gas price is affected by load [c] +2025-07-23T19:34:44.1876206Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/c/dynamic_fees.go:58 +2025-07-23T19:34:44.1877819Z STEP: creating a new private network to ensure isolation from other tests @ 07/23/25 19:34:44.186 +2025-07-23T19:34:44.1906232Z INFO waiting for network to start {"timeoutSeconds": 120} +2025-07-23T19:34:44.1908631Z INFO preparing configuration for new network {"runtimeConfig": {"process":{"avalancheGoPath":"/home/runner/work/coreth/coreth/avalanchego/build/avalanchego","pluginDir":"/home/runner/.avalanchego/plugins"}}} +2025-07-23T19:34:44.1956740Z INFO starting network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees", "uuid": "bfb8e363-92fb-4e6b-a37c-4d53693fdcce"} +2025-07-23T19:34:46.1471772Z INFO started local node {"nodeID": "NodeID-JuB2rckCL8FLYwVy1N5fcwdUvEtCvzdNd", "dataDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees/NodeID-JuB2rckCL8FLYwVy1N5fcwdUvEtCvzdNd", "isEphemeral": false} +2025-07-23T19:34:48.0493626Z INFO started local node {"nodeID": "NodeID-Dz4rLAGba3Mnd9d7gUMvx8VxutZxXY5C4", "dataDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees/NodeID-Dz4rLAGba3Mnd9d7gUMvx8VxutZxXY5C4", "isEphemeral": false} +2025-07-23T19:34:48.0497236Z INFO waiting for nodes to report healthy +2025-07-23T19:34:50.0525180Z INFO node is healthy {"nodeID": "NodeID-Dz4rLAGba3Mnd9d7gUMvx8VxutZxXY5C4", "uri": "http://127.0.0.1:35543"} +2025-07-23T19:34:54.0519237Z INFO node is healthy {"nodeID": "NodeID-JuB2rckCL8FLYwVy1N5fcwdUvEtCvzdNd", "uri": "http://127.0.0.1:36927"} +2025-07-23T19:34:54.0522758Z INFO started network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees", "uuid": "bfb8e363-92fb-4e6b-a37c-4d53693fdcce"} +2025-07-23T19:34:54.0529979Z INFO metrics and logs available via grafana (collectors must be running) {"url": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7Cbfb8e363-92fb-4e6b-a37c-4d53693fdcce&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299284195&to=now", "linkPath": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees/metrics.txt"} +2025-07-23T19:34:54.0534176Z INFO network started successfully +2025-07-23T19:34:54.0535049Z STEP: allocating a pre-funded key @ 07/23/25 19:34:54.051 +2025-07-23T19:34:54.0536070Z STEP: initializing a coreth client @ 07/23/25 19:34:54.051 +2025-07-23T19:34:54.0537705Z INFO initializing a new eth client {"nodeID": "NodeID-JuB2rckCL8FLYwVy1N5fcwdUvEtCvzdNd", "URI": "http://127.0.0.1:36927"} +2025-07-23T19:34:54.0539010Z STEP: initializing a transaction signer @ 07/23/25 19:34:54.052 +2025-07-23T19:34:54.0540158Z STEP: checking if Fortuna is activated @ 07/23/25 19:34:54.053 +2025-07-23T19:34:54.0548083Z INFO set gas limit {"gasLimit": 10000000} +2025-07-23T19:34:54.0548943Z STEP: deploying an expensive contract @ 07/23/25 19:34:54.054 +2025-07-23T19:34:54.0558832Z INFO sending eth transaction {"txID": "0x3fecd6016dfff7e035adf798f9687c45aba5fa5a0254ccb2cf1f8e69474a8c82"} +2025-07-23T19:34:54.5598237Z INFO eth transaction accepted {"txID": "0x3fecd6016dfff7e035adf798f9687c45aba5fa5a0254ccb2cf1f8e69474a8c82", "gasUsed": 79365, "gasPrice": "2", "blockNumber": "1"} +2025-07-23T19:34:54.5601795Z INFO initializing gas prices {"initialPrice": "1", "targetPrice": "2"} +2025-07-23T19:34:54.5603394Z STEP: calling the contract repeatedly until a sufficient gas price increase is detected @ 07/23/25 19:34:54.56 +2025-07-23T19:34:54.5609098Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:34:54.5616745Z INFO sending eth transaction {"txID": "0x3dd9f7ff4dcbab12d2b65af8b7aaae3f1e410c53a1abb0122a86fc1a9252432c"} +2025-07-23T19:34:57.5656828Z INFO eth transaction accepted {"txID": "0x3dd9f7ff4dcbab12d2b65af8b7aaae3f1e410c53a1abb0122a86fc1a9252432c", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "2"} +2025-07-23T19:34:57.5659805Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:34:57.5668475Z INFO sending eth transaction {"txID": "0x0d407c5d1067a2139ad301731c6a62a93c0e8c800f1cb9818f736d226e12693a"} +2025-07-23T19:35:02.5709571Z INFO eth transaction accepted {"txID": "0x0d407c5d1067a2139ad301731c6a62a93c0e8c800f1cb9818f736d226e12693a", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "3"} +2025-07-23T19:35:02.5713764Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:02.5720937Z INFO sending eth transaction {"txID": "0xa4135274bdb8ebae625783f21673c746acfa8e4785d9646b7566f96aa92a6729"} +2025-07-23T19:35:07.5760174Z INFO eth transaction accepted {"txID": "0xa4135274bdb8ebae625783f21673c746acfa8e4785d9646b7566f96aa92a6729", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "4"} +2025-07-23T19:35:07.5764716Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:07.5772055Z INFO sending eth transaction {"txID": "0x22759d8e43ecbb528caeabf8131f99541bfe2c557df068a0fb670dd19c6a42bd"} +2025-07-23T19:35:12.5813012Z INFO eth transaction accepted {"txID": "0x22759d8e43ecbb528caeabf8131f99541bfe2c557df068a0fb670dd19c6a42bd", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "5"} +2025-07-23T19:35:12.5816590Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:12.5823149Z INFO sending eth transaction {"txID": "0xacd2073e0db59b33c9dcd24716a09257121fe4644e7acb2e2ba0a60c350141dc"} +2025-07-23T19:35:17.0887191Z INFO eth transaction accepted {"txID": "0xacd2073e0db59b33c9dcd24716a09257121fe4644e7acb2e2ba0a60c350141dc", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "6"} +2025-07-23T19:35:17.0897031Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:17.0906048Z INFO sending eth transaction {"txID": "0x2399d91a6ccf44e852b5bf752067910f02400363116ff702466c9e7fb7be1a8b"} +2025-07-23T19:35:22.5944475Z INFO eth transaction accepted {"txID": "0x2399d91a6ccf44e852b5bf752067910f02400363116ff702466c9e7fb7be1a8b", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "7"} +2025-07-23T19:35:22.5952958Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:22.5961670Z INFO sending eth transaction {"txID": "0xa5ad42c9657853d0306332feaf6b077f9b0f87bb7b15c9e4b709c299fb64d271"} +2025-07-23T19:35:27.5996107Z INFO eth transaction accepted {"txID": "0xa5ad42c9657853d0306332feaf6b077f9b0f87bb7b15c9e4b709c299fb64d271", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "8"} +2025-07-23T19:35:27.6000616Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:27.6008901Z INFO sending eth transaction {"txID": "0x873fbd4217601bc5f7f68668f2f963d76e432cf4b059af71e1cc693edfec9e15"} +2025-07-23T19:35:32.6041427Z INFO eth transaction accepted {"txID": "0x873fbd4217601bc5f7f68668f2f963d76e432cf4b059af71e1cc693edfec9e15", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "9"} +2025-07-23T19:35:32.6044421Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:32.6052156Z INFO sending eth transaction {"txID": "0x6528cb3bb120573c71b298b40003ee25fec891026b46b38273472825a1884e7f"} +2025-07-23T19:35:37.6084574Z INFO eth transaction accepted {"txID": "0x6528cb3bb120573c71b298b40003ee25fec891026b46b38273472825a1884e7f", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "10"} +2025-07-23T19:35:37.6088191Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:37.6094783Z INFO sending eth transaction {"txID": "0x106e6cb6e0ca075337548329e16b002658a1bd6d866af4676227227e6733e028"} +2025-07-23T19:35:42.1126624Z INFO eth transaction accepted {"txID": "0x106e6cb6e0ca075337548329e16b002658a1bd6d866af4676227227e6733e028", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "11"} +2025-07-23T19:35:42.1130024Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:42.1137134Z INFO sending eth transaction {"txID": "0xc8a4fdb11a27e1aafc69d48c7bba2c71ebc4ca2b2f8a258f1191bbb0466a6cc0"} +2025-07-23T19:35:47.6184090Z INFO eth transaction accepted {"txID": "0xc8a4fdb11a27e1aafc69d48c7bba2c71ebc4ca2b2f8a258f1191bbb0466a6cc0", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "12"} +2025-07-23T19:35:47.6189079Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:47.6195343Z INFO sending eth transaction {"txID": "0xdfefbf7ba237069e65f75c54fbdd9c8f1744fc543ff6c9f330d4da0f4a36b4ca"} +2025-07-23T19:35:52.6230902Z INFO eth transaction accepted {"txID": "0xdfefbf7ba237069e65f75c54fbdd9c8f1744fc543ff6c9f330d4da0f4a36b4ca", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "13"} +2025-07-23T19:35:52.6234361Z INFO gas price has increased {"initialPrice": "1", "targetPrice": "2", "newPrice": "2"} +2025-07-23T19:35:52.6236200Z STEP: sending small transactions until a sufficient gas price decrease is detected @ 07/23/25 19:35:52.623 +2025-07-23T19:35:52.6239828Z INFO gas price hasn't sufficiently decreased {"initialPrice": "1", "newPrice": "2"} +2025-07-23T19:35:52.6248007Z INFO sending eth transaction {"txID": "0x6ee6c0a4e194c46c958beff957b484edacb4e4cbb30ffa08a6609057b3bd73f3"} +2025-07-23T19:35:54.6288267Z INFO eth transaction accepted {"txID": "0x6ee6c0a4e194c46c958beff957b484edacb4e4cbb30ffa08a6609057b3bd73f3", "gasUsed": 21000, "gasPrice": "3", "blockNumber": "14"} +2025-07-23T19:35:54.6292211Z INFO gas price hasn't sufficiently decreased {"initialPrice": "1", "newPrice": "2"} +2025-07-23T19:35:54.6299531Z INFO sending eth transaction {"txID": "0x3c0ee96a4070a08e6f9722e1473d45f88ef93623181536112594404cb2f55df5"} +2025-07-23T19:35:56.6339869Z INFO eth transaction accepted {"txID": "0x3c0ee96a4070a08e6f9722e1473d45f88ef93623181536112594404cb2f55df5", "gasUsed": 21000, "gasPrice": "2", "blockNumber": "15"} +2025-07-23T19:35:56.6344304Z INFO gas price has decreased {"initialPrice": "1", "newPrice": "1"} +2025-07-23T19:35:56.6346635Z STEP: checking if bootstrap is possible with the current network state @ 07/23/25 19:35:56.634 +2025-07-23T19:35:58.6365871Z INFO started local node {"nodeID": "NodeID-L9kznVCrLKpnSNVGhs7Q9AjyxXnALFs1z", "dataDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees/NodeID-L9kznVCrLKpnSNVGhs7Q9AjyxXnALFs1z", "isEphemeral": true} +2025-07-23T19:36:06.7039457Z INFO shutting down network +2025-07-23T19:36:06.9767790Z • [82.790 seconds] +2025-07-23T19:36:06.9768914Z ------------------------------ +2025-07-23T19:36:06.9770720Z [X-Chain] [Interchain Workflow] should ensure that funds can be transferred from the X-Chain to the C-Chain and the P-Chain [uses-c, x] +2025-07-23T19:36:06.9773229Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/x/interchain_workflow.go:28 +2025-07-23T19:36:06.9790527Z INFO targeting random node {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "uri": "http://127.0.0.1:43559"} +2025-07-23T19:36:06.9792288Z STEP: creating wallet with a funded key to send from and recipient key to deliver to @ 07/23/25 19:36:06.978 +2025-07-23T19:36:06.9794382Z INFO initializing a new wallet {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "URI": "http://127.0.0.1:43559"} +2025-07-23T19:36:06.9981120Z INFO wallet balances in nAVAX {"xChain": 30000000000000000, "pChain": 19999979999918852} +2025-07-23T19:36:06.9982315Z STEP: defining common configuration @ 07/23/25 19:36:06.997 +2025-07-23T19:36:06.9983695Z STEP: sending funds from one address to another on the X-Chain @ 07/23/25 19:36:06.998 +2025-07-23T19:36:07.0036167Z INFO issued transaction {"chainAlias": "X", "txID": "2agMtTCCVt5pYgY86u1XAP4P9T6pQo7ByGaZMuJsPm2HC3oWiZ", "duration": "5.170109ms"} +2025-07-23T19:36:07.0450900Z INFO confirmed transaction {"chainAlias": "X", "txID": "2agMtTCCVt5pYgY86u1XAP4P9T6pQo7ByGaZMuJsPm2HC3oWiZ", "totalDuration": "46.549486ms", "confirmationDuration": "41.379377ms"} +2025-07-23T19:36:07.0454272Z STEP: checking that the X-Chain recipient address has received the sent funds @ 07/23/25 19:36:07.044 +2025-07-23T19:36:07.0456196Z STEP: exporting AVAX from the X-Chain to the C-Chain @ 07/23/25 19:36:07.044 +2025-07-23T19:36:07.0565012Z INFO issued transaction {"chainAlias": "X", "txID": "2MNiwCxtDiuWKPD8hVe6DazmMiJjMLn9z8A46B44nTJrW9MSdG", "duration": "10.870273ms"} +2025-07-23T19:36:07.1125133Z INFO confirmed transaction {"chainAlias": "X", "txID": "2MNiwCxtDiuWKPD8hVe6DazmMiJjMLn9z8A46B44nTJrW9MSdG", "totalDuration": "66.102652ms", "confirmationDuration": "55.232379ms"} +2025-07-23T19:36:07.1127123Z STEP: initializing a new eth client @ 07/23/25 19:36:07.111 +2025-07-23T19:36:07.1129151Z INFO initializing a new eth client {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "URI": "http://127.0.0.1:43559"} +2025-07-23T19:36:07.1130840Z STEP: importing AVAX from the X-Chain to the C-Chain @ 07/23/25 19:36:07.111 +2025-07-23T19:36:07.1133257Z INFO suggested gas price {"price": "2"} +2025-07-23T19:36:07.1204901Z INFO issued transaction {"chainAlias": "C", "txID": "2g4rUn1YRdmGyP5vcEEvVWyAuq3amXSgT675x1MxWQmpruVV3c", "duration": "6.980125ms"} +2025-07-23T19:36:07.1719392Z INFO confirmed transaction {"chainAlias": "C", "txID": "2g4rUn1YRdmGyP5vcEEvVWyAuq3amXSgT675x1MxWQmpruVV3c", "totalDuration": "58.376929ms", "confirmationDuration": "51.396804ms"} +2025-07-23T19:36:07.1721042Z STEP: checking that the recipient address has received imported funds on the C-Chain @ 07/23/25 19:36:07.171 +2025-07-23T19:36:07.1725363Z STEP: exporting AVAX from the X-Chain to the P-Chain @ 07/23/25 19:36:07.172 +2025-07-23T19:36:07.1787030Z INFO issued transaction {"chainAlias": "X", "txID": "UJdMohTjLmQnbGqSCLGDDkpzvECpDQDybUMnoBGWRKmautcmz", "duration": "5.908658ms"} +2025-07-23T19:36:07.7204459Z INFO confirmed transaction {"chainAlias": "X", "txID": "UJdMohTjLmQnbGqSCLGDDkpzvECpDQDybUMnoBGWRKmautcmz", "totalDuration": "547.497751ms", "confirmationDuration": "541.589093ms"} +2025-07-23T19:36:07.7205874Z STEP: importing AVAX from the X-Chain to the P-Chain @ 07/23/25 19:36:07.72 +2025-07-23T19:36:07.7290631Z INFO issued transaction {"chainAlias": "P", "txID": "gug3S9tdw2ZAFCBcNkD5dMrNCNd9gKNpdk8DKaF6sAC1zrkjD", "duration": "5.735355ms"} +2025-07-23T19:36:08.1603396Z INFO confirmed transaction {"chainAlias": "P", "txID": "gug3S9tdw2ZAFCBcNkD5dMrNCNd9gKNpdk8DKaF6sAC1zrkjD", "totalDuration": "439.524931ms", "confirmationDuration": "433.789576ms"} +2025-07-23T19:36:08.1606100Z STEP: checking that the recipient address has received imported funds on the P-Chain @ 07/23/25 19:36:08.159 +2025-07-23T19:36:08.1622565Z STEP: checking if bootstrap is possible with the current network state @ 07/23/25 19:36:08.162 +2025-07-23T19:36:12.9117373Z INFO started local node {"nodeID": "NodeID-Mrw4ywPLFpxivCZyoGELNcNnFqiyAbEhK", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-Mrw4ywPLFpxivCZyoGELNcNnFqiyAbEhK", "isEphemeral": true} +2025-07-23T19:36:14.8187764Z INFO metrics and logs available via grafana (collectors must be running) {"uri": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299366976&to=1753299386816"} +2025-07-23T19:36:15.0137348Z • [8.037 seconds] +2025-07-23T19:36:15.0138298Z ------------------------------ +2025-07-23T19:36:15.0139159Z SSS +2025-07-23T19:36:15.0140240Z ------------------------------ +2025-07-23T19:36:15.0140983Z [DeferCleanup (Suite)]  +2025-07-23T19:36:15.0142436Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:36:15.0145345Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:36:15.0146288Z ------------------------------ +2025-07-23T19:36:15.0146871Z [DeferCleanup (Suite)]  +2025-07-23T19:36:15.0148217Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:36:15.0149441Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:36:15.0150529Z ------------------------------ +2025-07-23T19:36:15.0151513Z [DeferCleanup (Suite)]  +2025-07-23T19:36:15.0153239Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:36:15.0154724Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:36:15.0155303Z ------------------------------ +2025-07-23T19:36:15.0155775Z [DeferCleanup (Suite)]  +2025-07-23T19:36:15.0156690Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:36:15.0157969Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:36:15.0158610Z ------------------------------ +2025-07-23T19:36:15.0159070Z [DeferCleanup (Suite)]  +2025-07-23T19:36:15.0159959Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:36:15.0161005Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:36:15.0161818Z ------------------------------ +2025-07-23T19:36:15.0162453Z [DeferCleanup (Suite)]  +2025-07-23T19:36:15.0163708Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:36:15.0165614Z [07-23|19:36:15.013] INFO e2e/helpers.go:346 shutting down network +2025-07-23T19:36:15.3482582Z [DeferCleanup (Suite)] PASSED [0.334 seconds] +2025-07-23T19:36:15.3483831Z ------------------------------ +2025-07-23T19:36:15.3484845Z [DeferCleanup (Suite)]  +2025-07-23T19:36:15.3486023Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:36:15.3487199Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:36:15.3488182Z ------------------------------ +2025-07-23T19:36:15.3488525Z +2025-07-23T19:36:15.3488857Z Ran 4 of 14 Specs in 147.613 seconds +2025-07-23T19:36:15.3490052Z SUCCESS! -- 4 Passed | 0 Failed | 0 Pending | 10 Skipped +2025-07-23T19:36:15.3490893Z PASS +2025-07-23T19:36:15.3648417Z +2025-07-23T19:36:15.3648758Z Ginkgo ran 1 suite in 2m47.789871904s +2025-07-23T19:36:15.3649251Z Test Suite Passed +2025-07-23T19:36:15.3730158Z ##[group]Run actions/upload-artifact@v4 +2025-07-23T19:36:15.3730424Z with: +2025-07-23T19:36:15.3730599Z name: -tmpnet-data +2025-07-23T19:36:15.3731005Z path: ~/.tmpnet/networks +~/.tmpnet/prometheus/prometheus.log +~/.tmpnet/promtail/promtail.log + +2025-07-23T19:36:15.3731466Z if-no-files-found: error +2025-07-23T19:36:15.3731680Z compression-level: 6 +2025-07-23T19:36:15.3731880Z overwrite: false +2025-07-23T19:36:15.3732096Z include-hidden-files: false +2025-07-23T19:36:15.3732314Z env: +2025-07-23T19:36:15.3732484Z TMPDIR: /home/runner/work/_temp +2025-07-23T19:36:15.3732713Z ##[endgroup] +2025-07-23T19:36:15.6468546Z Multiple search paths detected. Calculating the least common ancestor of all paths +2025-07-23T19:36:15.6471134Z The least common ancestor is /home/runner/.tmpnet. This will be the root directory of the artifact +2025-07-23T19:36:15.6472419Z With the provided path, there will be 139 files uploaded +2025-07-23T19:36:15.6478154Z Artifact name is valid! +2025-07-23T19:36:15.6479269Z Root directory input is valid! +2025-07-23T19:36:15.7712944Z Beginning upload of artifact content to blob storage +2025-07-23T19:36:16.4020105Z Uploaded bytes 2284192 +2025-07-23T19:36:16.4154930Z Finished uploading artifact content to blob storage! +2025-07-23T19:36:16.4158611Z SHA256 digest of uploaded artifact zip is adccef765d38c6f02b712eea815ea5cadf242aa659cc869ec5b99c6fca674942 +2025-07-23T19:36:16.4160716Z Finalizing artifact upload +2025-07-23T19:36:16.5300885Z Artifact -tmpnet-data.zip successfully finalized. Artifact ID 3600349177 +2025-07-23T19:36:16.5302557Z Artifact -tmpnet-data has been successfully uploaded! Final size is 2284192 bytes. Artifact ID is 3600349177 +2025-07-23T19:36:16.5309755Z Artifact download URL: https://github.com/ava-labs/coreth/actions/runs/16480013789/artifacts/3600349177 +2025-07-23T19:36:16.5502327Z Post job cleanup. +2025-07-23T19:36:16.7055443Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:36:16.7094764Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:36:16.7119404Z /home/runner/go/pkg/mod +2025-07-23T19:36:16.7148083Z /home/runner/.cache/go-build +2025-07-23T19:36:16.7153299Z Cache hit occurred on the primary key setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d, not saving cache. +2025-07-23T19:36:16.7264790Z Post job cleanup. +2025-07-23T19:36:16.8293502Z [command]/usr/bin/git version +2025-07-23T19:36:16.8331928Z git version 2.50.1 +2025-07-23T19:36:16.8384870Z Temporarily overriding HOME='/home/runner/work/_temp/f2e259d2-b225-4571-8771-c6ad4dd8d0d9' before making global git config changes +2025-07-23T19:36:16.8386242Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:36:16.8390984Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:36:16.8427243Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:36:16.8459503Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:36:16.8682898Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:36:16.8703684Z http.https://github.com/.extraheader +2025-07-23T19:36:16.8716617Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +2025-07-23T19:36:16.8746224Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:36:16.9075807Z Cleaning up orphan processes diff --git a/logs_42241282643/2_e2e warp tests.txt b/logs_42241282643/2_e2e warp tests.txt new file mode 100644 index 0000000000..24fafb8c5c --- /dev/null +++ b/logs_42241282643/2_e2e warp tests.txt @@ -0,0 +1,1819 @@ +2025-07-23T19:28:54.2430326Z Current runner version: '2.326.0' +2025-07-23T19:28:54.2462576Z ##[group]Runner Image Provisioner +2025-07-23T19:28:54.2463860Z Hosted Compute Agent +2025-07-23T19:28:54.2464909Z Version: 20250711.363 +2025-07-23T19:28:54.2466055Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c +2025-07-23T19:28:54.2467210Z Build Date: 2025-07-11T20:04:25Z +2025-07-23T19:28:54.2468244Z ##[endgroup] +2025-07-23T19:28:54.2469265Z ##[group]Operating System +2025-07-23T19:28:54.2470199Z Ubuntu +2025-07-23T19:28:54.2470910Z 24.04.2 +2025-07-23T19:28:54.2471747Z LTS +2025-07-23T19:28:54.2472472Z ##[endgroup] +2025-07-23T19:28:54.2473228Z ##[group]Runner Image +2025-07-23T19:28:54.2474611Z Image: ubuntu-24.04 +2025-07-23T19:28:54.2475476Z Version: 20250720.1.0 +2025-07-23T19:28:54.2477295Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md +2025-07-23T19:28:54.2480234Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 +2025-07-23T19:28:54.2482111Z ##[endgroup] +2025-07-23T19:28:54.2486588Z ##[group]GITHUB_TOKEN Permissions +2025-07-23T19:28:54.2489442Z Actions: write +2025-07-23T19:28:54.2490305Z Attestations: write +2025-07-23T19:28:54.2491124Z Checks: write +2025-07-23T19:28:54.2491982Z Contents: write +2025-07-23T19:28:54.2492844Z Deployments: write +2025-07-23T19:28:54.2493614Z Discussions: write +2025-07-23T19:28:54.2494784Z Issues: write +2025-07-23T19:28:54.2495689Z Metadata: read +2025-07-23T19:28:54.2496481Z Models: read +2025-07-23T19:28:54.2497490Z Packages: write +2025-07-23T19:28:54.2498313Z Pages: write +2025-07-23T19:28:54.2499099Z PullRequests: write +2025-07-23T19:28:54.2500049Z RepositoryProjects: write +2025-07-23T19:28:54.2501065Z SecurityEvents: write +2025-07-23T19:28:54.2502271Z Statuses: write +2025-07-23T19:28:54.2503160Z ##[endgroup] +2025-07-23T19:28:54.2506276Z Secret source: Actions +2025-07-23T19:28:54.2507636Z Prepare workflow directory +2025-07-23T19:28:54.2978824Z Prepare all required actions +2025-07-23T19:28:54.3034802Z Getting action download info +2025-07-23T19:28:54.5607983Z ##[group]Download immutable action package 'actions/checkout@v4' +2025-07-23T19:28:54.5609509Z Version: 4.2.2 +2025-07-23T19:28:54.5611150Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 +2025-07-23T19:28:54.5612918Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 +2025-07-23T19:28:54.5614373Z ##[endgroup] +2025-07-23T19:28:54.6722232Z ##[group]Download immutable action package 'actions/setup-go@v5' +2025-07-23T19:28:54.6723487Z Version: 5.5.0 +2025-07-23T19:28:54.6725111Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb +2025-07-23T19:28:54.6726851Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 +2025-07-23T19:28:54.6728069Z ##[endgroup] +2025-07-23T19:28:54.8999180Z Download action repository 'ava-labs/avalanchego@66ce7a7701db0c4b370f97b339478d5b5ebe919a' (SHA:66ce7a7701db0c4b370f97b339478d5b5ebe919a) +2025-07-23T19:28:55.9950232Z Getting action download info +2025-07-23T19:28:56.1465891Z Download action repository 'cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f' (SHA:02a151ada4993995686f9ed4f1be7cfbb229e56f) +2025-07-23T19:28:56.3752857Z ##[group]Download immutable action package 'actions/upload-artifact@v4' +2025-07-23T19:28:56.3753300Z Version: 4.6.2 +2025-07-23T19:28:56.3753680Z Digest: sha256:290722aa3281d5caf23d0acdc3dbeb3424786a1a01a9cc97e72f147225e37c38 +2025-07-23T19:28:56.3754426Z Source commit SHA: ea165f8d65b6e75b540449e92b4886f43607fa02 +2025-07-23T19:28:56.3754778Z ##[endgroup] +2025-07-23T19:28:56.5236765Z Complete job name: e2e warp tests +2025-07-23T19:28:56.6013125Z ##[group]Run actions/checkout@v4 +2025-07-23T19:28:56.6014251Z with: +2025-07-23T19:28:56.6014642Z fetch-depth: 0 +2025-07-23T19:28:56.6015277Z repository: ava-labs/coreth +2025-07-23T19:28:56.6016098Z token: *** +2025-07-23T19:28:56.6016497Z ssh-strict: true +2025-07-23T19:28:56.6016901Z ssh-user: git +2025-07-23T19:28:56.6017307Z persist-credentials: true +2025-07-23T19:28:56.6017751Z clean: true +2025-07-23T19:28:56.6018718Z sparse-checkout-cone-mode: true +2025-07-23T19:28:56.6019353Z fetch-tags: false +2025-07-23T19:28:56.6019910Z show-progress: true +2025-07-23T19:28:56.6020315Z lfs: false +2025-07-23T19:28:56.6020685Z submodules: false +2025-07-23T19:28:56.6021090Z set-safe-directory: true +2025-07-23T19:28:56.6022100Z ##[endgroup] +2025-07-23T19:28:56.7186829Z Syncing repository: ava-labs/coreth +2025-07-23T19:28:56.7188142Z ##[group]Getting Git version info +2025-07-23T19:28:56.7188555Z Working directory is '/home/runner/work/coreth/coreth' +2025-07-23T19:28:56.7189169Z [command]/usr/bin/git version +2025-07-23T19:28:56.7905588Z git version 2.50.1 +2025-07-23T19:28:56.7930746Z ##[endgroup] +2025-07-23T19:28:56.7943794Z Temporarily overriding HOME='/home/runner/work/_temp/d15459b7-157c-4910-bfea-980f7312e17a' before making global git config changes +2025-07-23T19:28:56.7945040Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:28:56.7949037Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:28:56.7982303Z Deleting the contents of '/home/runner/work/coreth/coreth' +2025-07-23T19:28:56.7986139Z ##[group]Initializing the repository +2025-07-23T19:28:56.7990037Z [command]/usr/bin/git init /home/runner/work/coreth/coreth +2025-07-23T19:28:56.8052116Z hint: Using 'master' as the name for the initial branch. This default branch name +2025-07-23T19:28:56.8053154Z hint: is subject to change. To configure the initial branch name to use in all +2025-07-23T19:28:56.8054336Z hint: of your new repositories, which will suppress this warning, call: +2025-07-23T19:28:56.8055095Z hint: +2025-07-23T19:28:56.8055631Z hint: git config --global init.defaultBranch +2025-07-23T19:28:56.8056280Z hint: +2025-07-23T19:28:56.8056941Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2025-07-23T19:28:56.8057927Z hint: 'development'. The just-created branch can be renamed via this command: +2025-07-23T19:28:56.8058733Z hint: +2025-07-23T19:28:56.8059207Z hint: git branch -m +2025-07-23T19:28:56.8059701Z hint: +2025-07-23T19:28:56.8060369Z hint: Disable this message with "git config set advice.defaultBranchName false" +2025-07-23T19:28:56.8061356Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ +2025-07-23T19:28:56.8066348Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth +2025-07-23T19:28:56.8096714Z ##[endgroup] +2025-07-23T19:28:56.8097470Z ##[group]Disabling automatic garbage collection +2025-07-23T19:28:56.8101611Z [command]/usr/bin/git config --local gc.auto 0 +2025-07-23T19:28:56.8129632Z ##[endgroup] +2025-07-23T19:28:56.8130396Z ##[group]Setting up auth +2025-07-23T19:28:56.8137277Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:28:56.8166746Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:28:56.8473063Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:28:56.8502266Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:28:56.8718253Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2025-07-23T19:28:56.8759143Z ##[endgroup] +2025-07-23T19:28:56.8760108Z ##[group]Fetching the repository +2025-07-23T19:28:56.8768257Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge +2025-07-23T19:29:08.4724106Z From https://github.com/ava-labs/coreth +2025-07-23T19:29:08.4726693Z * [new branch] 001-align-trie -> origin/001-align-trie +2025-07-23T19:29:08.4730141Z * [new branch] AddContexts -> origin/AddContexts +2025-07-23T19:29:08.4731158Z * [new branch] RodrigoVillar/initial-gas-target -> origin/RodrigoVillar/initial-gas-target +2025-07-23T19:29:08.4732494Z * [new branch] aaronbuchwald/detailed-import-tx-chainid-errs -> origin/aaronbuchwald/detailed-import-tx-chainid-errs +2025-07-23T19:29:08.4733824Z * [new branch] aaronbuchwald/prefetch-state -> origin/aaronbuchwald/prefetch-state +2025-07-23T19:29:08.4736991Z * [new branch] aaronbuchwald/prefetch-state-single-step-build -> origin/aaronbuchwald/prefetch-state-single-step-build +2025-07-23T19:29:08.4738238Z * [new branch] add-chaindb -> origin/add-chaindb +2025-07-23T19:29:08.4744607Z * [new branch] add-contracts-gitignore -> origin/add-contracts-gitignore +2025-07-23T19:29:08.4745687Z * [new branch] add-sig-get-metrics -> origin/add-sig-get-metrics +2025-07-23T19:29:08.4746655Z * [new branch] alarso16/firewood-bootstrap -> origin/alarso16/firewood-bootstrap +2025-07-23T19:29:08.4747759Z * [new branch] alarso16/firewood-error-apis -> origin/alarso16/firewood-error-apis +2025-07-23T19:29:08.4748903Z * [new branch] alarso16/firewood-integration-rv -> origin/alarso16/firewood-integration-rv +2025-07-23T19:29:08.4750053Z * [new branch] alarso16/libevm-upstream-sync -> origin/alarso16/libevm-upstream-sync +2025-07-23T19:29:08.4751804Z * [new branch] alarso16/parallelize-syncers -> origin/alarso16/parallelize-syncers +2025-07-23T19:29:08.4754240Z * [new branch] alarso16/show-flake-lines -> origin/alarso16/show-flake-lines +2025-07-23T19:29:08.4756242Z * [new branch] alarso16/state-syncer-interface -> origin/alarso16/state-syncer-interface +2025-07-23T19:29:08.4758198Z * [new branch] alarso16/static-snapsync -> origin/alarso16/static-snapsync +2025-07-23T19:29:08.4760480Z * [new branch] alt-fix-snapshot -> origin/alt-fix-snapshot +2025-07-23T19:29:08.4762680Z * [new branch] ap1-committed-gas -> origin/ap1-committed-gas +2025-07-23T19:29:08.4766282Z * [new branch] arr4n/abstract-customtypes-def-vs-access -> origin/arr4n/abstract-customtypes-def-vs-access +2025-07-23T19:29:08.4767992Z * [new branch] arr4n/libevm-clean-history -> origin/arr4n/libevm-clean-history +2025-07-23T19:29:08.4770325Z * [new branch] arr4n/libevm-dirty-history -> origin/arr4n/libevm-dirty-history +2025-07-23T19:29:08.4772297Z * [new branch] arr4n/libevm-upstream-types -> origin/arr4n/libevm-upstream-types +2025-07-23T19:29:08.4774839Z * [new branch] arr4n/metric-registration-order -> origin/arr4n/metric-registration-order +2025-07-23T19:29:08.4776858Z * [new branch] arr4n/min-gas-cap-sketch -> origin/arr4n/min-gas-cap-sketch +2025-07-23T19:29:08.4779111Z * [new branch] arr4n/test-only-build-tags -> origin/arr4n/test-only-build-tags +2025-07-23T19:29:08.4781117Z * [new branch] ast-drawing -> origin/ast-drawing +2025-07-23T19:29:08.4783330Z * [new branch] atomic-000 -> origin/atomic-000 +2025-07-23T19:29:08.4786001Z * [new branch] atomic-mempool-refactor -> origin/atomic-mempool-refactor +2025-07-23T19:29:08.4787709Z * [new branch] atomic-refactor -> origin/atomic-refactor +2025-07-23T19:29:08.4790070Z * [new branch] atomic-refactor-ctd -> origin/atomic-refactor-ctd +2025-07-23T19:29:08.4792558Z * [new branch] atomic-tx-verifier -> origin/atomic-tx-verifier +2025-07-23T19:29:08.4794325Z * [new branch] atomic-vm-api -> origin/atomic-vm-api +2025-07-23T19:29:08.4796809Z * [new branch] atomic-vm-backend -> origin/atomic-vm-backend +2025-07-23T19:29:08.4798841Z * [new branch] atomic-vm-finalize -> origin/atomic-vm-finalize +2025-07-23T19:29:08.4800816Z * [new branch] atomic-vm-mempool-gossip -> origin/atomic-vm-mempool-gossip +2025-07-23T19:29:08.4803280Z * [new branch] atomic-vm-pkg -> origin/atomic-vm-pkg +2025-07-23T19:29:08.4805688Z * [new branch] atomic-vm-refactor -> origin/atomic-vm-refactor +2025-07-23T19:29:08.4807928Z * [new branch] atomic-vm-refactor-finalize -> origin/atomic-vm-refactor-finalize +2025-07-23T19:29:08.4810072Z * [new branch] atomic-vm-syncers -> origin/atomic-vm-syncers +2025-07-23T19:29:08.4812247Z * [new branch] atomic-vm-wrapper -> origin/atomic-vm-wrapper +2025-07-23T19:29:08.4814713Z * [new branch] auto-pr-subnet-evm -> origin/auto-pr-subnet-evm +2025-07-23T19:29:08.4817077Z * [new branch] auto-pr-subnet-evm-test -> origin/auto-pr-subnet-evm-test +2025-07-23T19:29:08.4819080Z * [new branch] auto-sync-subnet-evm -> origin/auto-sync-subnet-evm +2025-07-23T19:29:08.4821567Z * [new branch] avoid-modifying-global-var-tests -> origin/avoid-modifying-global-var-tests +2025-07-23T19:29:08.4823605Z * [new branch] avoid-overriding-commit-interval -> origin/avoid-overriding-commit-interval +2025-07-23T19:29:08.4826022Z * [new branch] backfill_blocks -> origin/backfill_blocks +2025-07-23T19:29:08.4828364Z * [new branch] backfill_blocks_0 -> origin/backfill_blocks_0 +2025-07-23T19:29:08.4830396Z * [new branch] bench-nft -> origin/bench-nft +2025-07-23T19:29:08.4832826Z * [new branch] better-copy -> origin/better-copy +2025-07-23T19:29:08.4835114Z * [new branch] block-builder -> origin/block-builder +2025-07-23T19:29:08.4837794Z * [new branch] bloom-filter-gossip -> origin/bloom-filter-gossip +2025-07-23T19:29:08.4839911Z * [new branch] buf-modules -> origin/buf-modules +2025-07-23T19:29:08.4842370Z * [new branch] bump-avalanchego-master -> origin/bump-avalanchego-master +2025-07-23T19:29:08.4844369Z * [new branch] bump-compat-avago -> origin/bump-compat-avago +2025-07-23T19:29:08.4846790Z * [new branch] bump-pebble -> origin/bump-pebble +2025-07-23T19:29:08.4848993Z * [new branch] cancun-genesis -> origin/cancun-genesis +2025-07-23T19:29:08.4852041Z * [new branch] ceyonur/move-config -> origin/ceyonur/move-config +2025-07-23T19:29:08.4854456Z * [new branch] check-processing-blocks-for-atomic-txs -> origin/check-processing-blocks-for-atomic-txs +2025-07-23T19:29:08.4856437Z * [new branch] cleanup-wip -> origin/cleanup-wip +2025-07-23T19:29:08.4858876Z * [new branch] concrete-vm -> origin/concrete-vm +2025-07-23T19:29:08.4861113Z * [new branch] config-cleanup -> origin/config-cleanup +2025-07-23T19:29:08.4863346Z * [new branch] coreth-000 -> origin/coreth-000 +2025-07-23T19:29:08.4865966Z * [new branch] coreth-001 -> origin/coreth-001 +2025-07-23T19:29:08.4868147Z * [new branch] coreth-001-minimal -> origin/coreth-001-minimal +2025-07-23T19:29:08.4870632Z * [new branch] coreth-001-minimal-triedb-refcount -> origin/coreth-001-minimal-triedb-refcount +2025-07-23T19:29:08.4872834Z * [new branch] coreth-001-minimal-triedb-refcount-statedb-mod -> origin/coreth-001-minimal-triedb-refcount-statedb-mod +2025-07-23T19:29:08.4875325Z * [new branch] coreth-001-shared-statedb-triedb-backends -> origin/coreth-001-shared-statedb-triedb-backends +2025-07-23T19:29:08.4877153Z * [new branch] coreth-002 -> origin/coreth-002 +2025-07-23T19:29:08.4879741Z * [new branch] coreth-002-pathdb-mem -> origin/coreth-002-pathdb-mem +2025-07-23T19:29:08.4881940Z * [new branch] coreth-002-pathdb-mem-atomic -> origin/coreth-002-pathdb-mem-atomic +2025-07-23T19:29:08.4884115Z * [new branch] coreth-block-flex -> origin/coreth-block-flex +2025-07-23T19:29:08.4886794Z * [new branch] db-stats -> origin/db-stats +2025-07-23T19:29:08.4889176Z * [new branch] deferred-verification -> origin/deferred-verification +2025-07-23T19:29:08.4893847Z * [new branch] dependabot/github_actions/github/codeql-action-3.29.2 -> origin/dependabot/github_actions/github/codeql-action-3.29.2 +2025-07-23T19:29:08.4898159Z * [new branch] dependabot/go_modules/github.com/cespare/cp-1.1.1 -> origin/dependabot/go_modules/github.com/cespare/cp-1.1.1 +2025-07-23T19:29:08.4901331Z * [new branch] dependabot/go_modules/github.com/hashicorp/golang-lru-1.0.2 -> origin/dependabot/go_modules/github.com/hashicorp/golang-lru-1.0.2 +2025-07-23T19:29:08.4904675Z * [new branch] dependabot/go_modules/github.com/spf13/cast-1.9.2 -> origin/dependabot/go_modules/github.com/spf13/cast-1.9.2 +2025-07-23T19:29:08.4908531Z * [new branch] dependabot/go_modules/golang.org/x/crypto-0.40.0 -> origin/dependabot/go_modules/golang.org/x/crypto-0.40.0 +2025-07-23T19:29:08.4910452Z * [new branch] dependabot/go_modules/golang.org/x/oauth2-0.27.0 -> origin/dependabot/go_modules/golang.org/x/oauth2-0.27.0 +2025-07-23T19:29:08.4912804Z * [new branch] dependabot/go_modules/golang.org/x/tools-0.35.0 -> origin/dependabot/go_modules/golang.org/x/tools-0.35.0 +2025-07-23T19:29:08.4915046Z * [new branch] disable-gossip -> origin/disable-gossip +2025-07-23T19:29:08.4917667Z * [new branch] disable-new-gossip -> origin/disable-new-gossip +2025-07-23T19:29:08.4920008Z * [new branch] downgrade-bad-block-logs -> origin/downgrade-bad-block-logs +2025-07-23T19:29:08.4922326Z * [new branch] downgrade-logs -> origin/downgrade-logs +2025-07-23T19:29:08.4924998Z * [new branch] dynamic_state_sync_readiness_fix -> origin/dynamic_state_sync_readiness_fix +2025-07-23T19:29:08.4927708Z * [new branch] eth-call-depth-metrics -> origin/eth-call-depth-metrics +2025-07-23T19:29:08.4929940Z * [new branch] fastsync-all -> origin/fastsync-all +2025-07-23T19:29:08.4932348Z * [new branch] find-flake-add-logs -> origin/find-flake-add-logs +2025-07-23T19:29:08.4934865Z * [new branch] fix-derive-logs -> origin/fix-derive-logs +2025-07-23T19:29:08.4937281Z * [new branch] fix-error -> origin/fix-error +2025-07-23T19:29:08.4939804Z * [new branch] fix-setting-eth-upgrades-trace -> origin/fix-setting-eth-upgrades-trace +2025-07-23T19:29:08.4942045Z * [new branch] fix-upstream-licenses -> origin/fix-upstream-licenses +2025-07-23T19:29:08.4944483Z * [new branch] fork-refactor -> origin/fork-refactor +2025-07-23T19:29:08.4947090Z * [new branch] fupgrade-libevm-sync-upstream -> origin/fupgrade-libevm-sync-upstream +2025-07-23T19:29:08.4949088Z * [new branch] generic-cache -> origin/generic-cache +2025-07-23T19:29:08.4951582Z * [new branch] generic-set -> origin/generic-set +2025-07-23T19:29:08.4953796Z * [new branch] generic-sort -> origin/generic-sort +2025-07-23T19:29:08.4956466Z * [new branch] genericNodeID -> origin/genericNodeID +2025-07-23T19:29:08.4959582Z * [new branch] get-preference -> origin/get-preference +2025-07-23T19:29:08.4961506Z * [new branch] geth-compile-v1.14.7 -> origin/geth-compile-v1.14.7 +2025-07-23T19:29:08.4964198Z * [new branch] geth-migration -> origin/geth-migration +2025-07-23T19:29:08.4966581Z * [new branch] geth-v1.12.2-compile -> origin/geth-v1.12.2-compile +2025-07-23T19:29:08.4971033Z * [new branch] gh-readonly-queue/master/pr-1064-8fa714aa59bcec3f418c1cc8312789585993b1b1 -> origin/gh-readonly-queue/master/pr-1064-8fa714aa59bcec3f418c1cc8312789585993b1b1 +2025-07-23T19:29:08.4972864Z * [new branch] hyper-dep-with-commit-to-db -> origin/hyper-dep-with-commit-to-db +2025-07-23T19:29:08.4975280Z * [new branch] inspector -> origin/inspector +2025-07-23T19:29:08.4977753Z * [new branch] integration-testing -> origin/integration-testing +2025-07-23T19:29:08.4980103Z * [new branch] legacy-sdk -> origin/legacy-sdk +2025-07-23T19:29:08.4982605Z * [new branch] libevm -> origin/libevm +2025-07-23T19:29:08.4985163Z * [new branch] libevm-atomic-refactor -> origin/libevm-atomic-refactor +2025-07-23T19:29:08.4987770Z * [new branch] libevm-atomic-refactor-2 -> origin/libevm-atomic-refactor-2 +2025-07-23T19:29:08.4990241Z * [new branch] libevm-avalanchegov.1.12 -> origin/libevm-avalanchegov.1.12 +2025-07-23T19:29:08.4992743Z * [new branch] libevm-move-atomic-txs -> origin/libevm-move-atomic-txs +2025-07-23T19:29:08.4995260Z * [new branch] libevm-upstream-sync -> origin/libevm-upstream-sync +2025-07-23T19:29:08.4997602Z * [new branch] linter -> origin/linter +2025-07-23T19:29:08.5000210Z * [new branch] maru-update-ci -> origin/maru-update-ci +2025-07-23T19:29:08.5002489Z * [new branch] marun-bump-avalanchego -> origin/marun-bump-avalanchego +2025-07-23T19:29:08.5005081Z * [new branch] master -> origin/master +2025-07-23T19:29:08.5008250Z * [new branch] migrate-geth-v1.10.23 -> origin/migrate-geth-v1.10.23 +2025-07-23T19:29:08.5010722Z * [new branch] migrate-warp-precompile-warp-api-enabled -> origin/migrate-warp-precompile-warp-api-enabled +2025-07-23T19:29:08.5012282Z * [new branch] miner-upstream -> origin/miner-upstream +2025-07-23T19:29:08.5014642Z * [new branch] minimize-gossip-delays -> origin/minimize-gossip-delays +2025-07-23T19:29:08.5016654Z * [new branch] move-atomic-txs-config -> origin/move-atomic-txs-config +2025-07-23T19:29:08.5018533Z * [new branch] nativeassetcall-ut -> origin/nativeassetcall-ut +2025-07-23T19:29:08.5020804Z * [new branch] newevmblockcontext-refactor -> origin/newevmblockcontext-refactor +2025-07-23T19:29:08.5022599Z * [new branch] nit-network-upgrades -> origin/nit-network-upgrades +2025-07-23T19:29:08.5024769Z * [new branch] opentelemetry -> origin/opentelemetry +2025-07-23T19:29:08.5026865Z * [new branch] p2p-error -> origin/p2p-error +2025-07-23T19:29:08.5029071Z * [new branch] p2p-sampling -> origin/p2p-sampling +2025-07-23T19:29:08.5031235Z * [new branch] p2p-sender-ref -> origin/p2p-sender-ref +2025-07-23T19:29:08.5033470Z * [new branch] parallel-copy-based-prefetcher -> origin/parallel-copy-based-prefetcher +2025-07-23T19:29:08.5035778Z * [new branch] parallel-copy-based-prefetcher-no-abort -> origin/parallel-copy-based-prefetcher-no-abort +2025-07-23T19:29:08.5037525Z * [new branch] params-extra-refactor-0 -> origin/params-extra-refactor-0 +2025-07-23T19:29:08.5039652Z * [new branch] params-separation-attempt -> origin/params-separation-attempt +2025-07-23T19:29:08.5041498Z * [new branch] prefetch-state -> origin/prefetch-state +2025-07-23T19:29:08.5044152Z * [new branch] prefetch-tries-conservative -> origin/prefetch-tries-conservative +2025-07-23T19:29:08.5046222Z * [new branch] prefetch-tries-more-aggr -> origin/prefetch-tries-more-aggr +2025-07-23T19:29:08.5048612Z * [new branch] prestate-lookup-account-storage-update -> origin/prestate-lookup-account-storage-update +2025-07-23T19:29:08.5050534Z * [new branch] push-gossip-feature-branch -> origin/push-gossip-feature-branch +2025-07-23T19:29:08.5052462Z * [new branch] push-gossip-feature-branch-foobar -> origin/push-gossip-feature-branch-foobar +2025-07-23T19:29:08.5055998Z * [new branch] qdm12/acp176/min-target-per-second-var -> origin/qdm12/acp176/min-target-per-second-var +2025-07-23T19:29:08.5057708Z * [new branch] qdm12/blockchain-upstream -> origin/qdm12/blockchain-upstream +2025-07-23T19:29:08.5059341Z * [new branch] qdm12/miner-upstream -> origin/qdm12/miner-upstream +2025-07-23T19:29:08.5062640Z * [new branch] qdm12/params/add-missing-checkprecompilescompatible -> origin/qdm12/params/add-missing-checkprecompilescompatible +2025-07-23T19:29:08.5064204Z * [new branch] qdm12/upstream-params -> origin/qdm12/upstream-params +2025-07-23T19:29:08.5066862Z * [new branch] race-tests-ci-master -> origin/race-tests-ci-master +2025-07-23T19:29:08.5069045Z * [new branch] rebase-v1.12.0 -> origin/rebase-v1.12.0 +2025-07-23T19:29:08.5071404Z * [new branch] reduce-coreth-state-usage -> origin/reduce-coreth-state-usage +2025-07-23T19:29:08.5073639Z * [new branch] refactor-ap1-checks -> origin/refactor-ap1-checks +2025-07-23T19:29:08.5076427Z * [new branch] refactor-block-verification -> origin/refactor-block-verification +2025-07-23T19:29:08.5078550Z * [new branch] refactor-gas -> origin/refactor-gas +2025-07-23T19:29:08.5080826Z * [new branch] refactor-proposer-vm -> origin/refactor-proposer-vm +2025-07-23T19:29:08.5083057Z * [new branch] refactor-statedb -> origin/refactor-statedb +2025-07-23T19:29:08.5085597Z * [new branch] refactor-vm-conflicts -> origin/refactor-vm-conflicts +2025-07-23T19:29:08.5087968Z * [new branch] register-p256v-precompile -> origin/register-p256v-precompile +2025-07-23T19:29:08.5090265Z * [new branch] remove-async-accept -> origin/remove-async-accept +2025-07-23T19:29:08.5092527Z * [new branch] remove-atomic -> origin/remove-atomic +2025-07-23T19:29:08.5095046Z * [new branch] remove-cb58 -> origin/remove-cb58 +2025-07-23T19:29:08.5097417Z * [new branch] remove-db-manager -> origin/remove-db-manager +2025-07-23T19:29:08.5099799Z * [new branch] remove-fork-compat-check -> origin/remove-fork-compat-check +2025-07-23T19:29:08.5102075Z * [new branch] remove-gasSelfdestructAP1 -> origin/remove-gasSelfdestructAP1 +2025-07-23T19:29:08.5104409Z * [new branch] remove-old-rules -> origin/remove-old-rules +2025-07-23T19:29:08.5107054Z * [new branch] remove-semaphore -> origin/remove-semaphore +2025-07-23T19:29:08.5109515Z * [new branch] remove-set-preference-warn-log -> origin/remove-set-preference-warn-log +2025-07-23T19:29:08.5112455Z * [new branch] remove-unused-interface-definition -> origin/remove-unused-interface-definition +2025-07-23T19:29:08.5114437Z * [new branch] rename-chains -> origin/rename-chains +2025-07-23T19:29:08.5116739Z * [new branch] rename-choices -> origin/rename-choices +2025-07-23T19:29:08.5118824Z * [new branch] rename-constants -> origin/rename-constants +2025-07-23T19:29:08.5122116Z * [new branch] repair-atomic-trie-root-height-map-measure-synchronous -> origin/repair-atomic-trie-root-height-map-measure-synchronous +2025-07-23T19:29:08.5123585Z * [new branch] repro-522 -> origin/repro-522 +2025-07-23T19:29:08.5126476Z * [new branch] repro-bloom -> origin/repro-bloom +2025-07-23T19:29:08.5128606Z * [new branch] reprocess-atomics -> origin/reprocess-atomics +2025-07-23T19:29:08.5130960Z * [new branch] reprocess-block-refactor-callexpert -> origin/reprocess-block-refactor-callexpert +2025-07-23T19:29:08.5132925Z * [new branch] reprocess-blocks -> origin/reprocess-blocks +2025-07-23T19:29:08.5135675Z * [new branch] reprocess-blocks-ap1-committed-gas -> origin/reprocess-blocks-ap1-committed-gas +2025-07-23T19:29:08.5137755Z * [new branch] reprocess-blocks-refactor-gas -> origin/reprocess-blocks-refactor-gas +2025-07-23T19:29:08.5139897Z * [new branch] reprocess-blocks-use-libevm -> origin/reprocess-blocks-use-libevm +2025-07-23T19:29:08.5142181Z * [new branch] reprocess-blocks-use-libevm-trace -> origin/reprocess-blocks-use-libevm-trace +2025-07-23T19:29:08.5144393Z * [new branch] reprocess-checkroots -> origin/reprocess-checkroots +2025-07-23T19:29:08.5146734Z * [new branch] return-vm-type -> origin/return-vm-type +2025-07-23T19:29:08.5149128Z * [new branch] rewrite-test-retry-logic -> origin/rewrite-test-retry-logic +2025-07-23T19:29:08.5152279Z * [new branch] rkuris/firewood-bootstrap-suggestions -> origin/rkuris/firewood-bootstrap-suggestions +2025-07-23T19:29:08.5154594Z * [new branch] sae-poc -> origin/sae-poc +2025-07-23T19:29:08.5157173Z * [new branch] script-reprocess -> origin/script-reprocess +2025-07-23T19:29:08.5159585Z * [new branch] script-reprocess-x -> origin/script-reprocess-x +2025-07-23T19:29:08.5161836Z * [new branch] script-reprocess-y -> origin/script-reprocess-y +2025-07-23T19:29:08.5164452Z * [new branch] sdk-push-gossip-interfaces -> origin/sdk-push-gossip-interfaces +2025-07-23T19:29:08.5166995Z * [new branch] seperate-atomic-pkg-base -> origin/seperate-atomic-pkg-base +2025-07-23T19:29:08.5169339Z * [new branch] simulations -> origin/simulations +2025-07-23T19:29:08.5171802Z * [new branch] snapserve-frequent-commits -> origin/snapserve-frequent-commits +2025-07-23T19:29:08.5174507Z * [new branch] snyk-fix-2b08d3d44bb91dc52bab15989aa0a542 -> origin/snyk-fix-2b08d3d44bb91dc52bab15989aa0a542 +2025-07-23T19:29:08.5176826Z * [new branch] subnet-evm-000 -> origin/subnet-evm-000 +2025-07-23T19:29:08.5179345Z * [new branch] subscribeToEvents -> origin/subscribeToEvents +2025-07-23T19:29:08.5181850Z * [new branch] support-multiple-code-hashes -> origin/support-multiple-code-hashes +2025-07-23T19:29:08.5184398Z * [new branch] sync-enabled-updateFrequency -> origin/sync-enabled-updateFrequency +2025-07-23T19:29:08.5186872Z * [new branch] sync-hacks -> origin/sync-hacks +2025-07-23T19:29:08.5189364Z * [new branch] sync-subnet-evm-branch -> origin/sync-subnet-evm-branch +2025-07-23T19:29:08.5191812Z * [new branch] sync-subnet-evm-ccff8037 -> origin/sync-subnet-evm-ccff8037 +2025-07-23T19:29:08.5194303Z * [new branch] test-atomic-syncer -> origin/test-atomic-syncer +2025-07-23T19:29:08.5196958Z * [new branch] test-atomic-syncer-with-cmd -> origin/test-atomic-syncer-with-cmd +2025-07-23T19:29:08.5199295Z * [new branch] test-avago -> origin/test-avago +2025-07-23T19:29:08.5201681Z * [new branch] test-cleanup -> origin/test-cleanup +2025-07-23T19:29:08.5204521Z * [new branch] toEngine -> origin/toEngine +2025-07-23T19:29:08.5207094Z * [new branch] trie-benchmarks -> origin/trie-benchmarks +2025-07-23T19:29:08.5209550Z * [new branch] trie-prefetcher-alt -> origin/trie-prefetcher-alt +2025-07-23T19:29:08.5212683Z * [new branch] tsachi/acp118-nodeid -> origin/tsachi/acp118-nodeid +2025-07-23T19:29:08.5214890Z * [new branch] tsachi/gossip-mempool -> origin/tsachi/gossip-mempool +2025-07-23T19:29:08.5217278Z * [new branch] tx-lookup-skip -> origin/tx-lookup-skip +2025-07-23T19:29:08.5219799Z * [new branch] unexport-visitor -> origin/unexport-visitor +2025-07-23T19:29:08.5222227Z * [new branch] update-avago -> origin/update-avago +2025-07-23T19:29:08.5224868Z * [new branch] update-avago-telepoter -> origin/update-avago-telepoter +2025-07-23T19:29:08.5227214Z * [new branch] update-comment -> origin/update-comment +2025-07-23T19:29:08.5229752Z * [new branch] updated-version -> origin/updated-version +2025-07-23T19:29:08.5232202Z * [new branch] upgrade2 -> origin/upgrade2 +2025-07-23T19:29:08.5234877Z * [new branch] use-libevm-extra -> origin/use-libevm-extra +2025-07-23T19:29:08.5237349Z * [new branch] use-libevm-snapshot-blockhashes -> origin/use-libevm-snapshot-blockhashes +2025-07-23T19:29:08.5239914Z * [new branch] use-libevm-statedb-backends-optional-params -> origin/use-libevm-statedb-backends-optional-params +2025-07-23T19:29:08.5242167Z * [new branch] use-libevm-statedb-statedb -> origin/use-libevm-statedb-statedb +2025-07-23T19:29:08.5244900Z * [new branch] use-libevm-statedb-statedb-blockchain -> origin/use-libevm-statedb-statedb-blockchain +2025-07-23T19:29:08.5247359Z * [new branch] use-upstream-log -> origin/use-upstream-log +2025-07-23T19:29:08.5249811Z * [new branch] v0.11.7-release-notes -> origin/v0.11.7-release-notes +2025-07-23T19:29:08.5252402Z * [new branch] validator-gossiper -> origin/validator-gossiper +2025-07-23T19:29:08.5255027Z * [new branch] vm-integration-fixture -> origin/vm-integration-fixture +2025-07-23T19:29:08.5257577Z * [new branch] warp-test-test -> origin/warp-test-test +2025-07-23T19:29:08.5259998Z * [new branch] wip-branch -> origin/wip-branch +2025-07-23T19:29:08.5262493Z * [new branch] xxx-bench-storagetrie -> origin/xxx-bench-storagetrie +2025-07-23T19:29:08.5265041Z * [new branch] xxx-bench-storagetrie-2 -> origin/xxx-bench-storagetrie-2 +2025-07-23T19:29:08.5267987Z * [new branch] yacovm/subscriptions -> origin/yacovm/subscriptions +2025-07-23T19:29:08.5269701Z * [new tag] app-error-0.12.9 -> app-error-0.12.9 +2025-07-23T19:29:08.5271494Z * [new tag] remove-crosschain-coreth -> remove-crosschain-coreth +2025-07-23T19:29:08.5272740Z * [new tag] update-id -> update-id +2025-07-23T19:29:08.5274231Z * [new tag] v0.1.0 -> v0.1.0 +2025-07-23T19:29:08.5275486Z * [new tag] v0.10.0 -> v0.10.0 +2025-07-23T19:29:08.5276844Z * [new tag] v0.10.0-rc.0 -> v0.10.0-rc.0 +2025-07-23T19:29:08.5278365Z * [new tag] v0.10.0-rc.1 -> v0.10.0-rc.1 +2025-07-23T19:29:08.5279643Z * [new tag] v0.10.0-rc.2 -> v0.10.0-rc.2 +2025-07-23T19:29:08.5280956Z * [new tag] v0.10.1 -> v0.10.1 +2025-07-23T19:29:08.5282321Z * [new tag] v0.10.1-patch -> v0.10.1-patch +2025-07-23T19:29:08.5283717Z * [new tag] v0.10.1-rc.0 -> v0.10.1-rc.0 +2025-07-23T19:29:08.5285340Z * [new tag] v0.10.1-rc.0-patch -> v0.10.1-rc.0-patch +2025-07-23T19:29:08.5287026Z * [new tag] v0.11.0 -> v0.11.0 +2025-07-23T19:29:08.5288230Z * [new tag] v0.11.0-rc.0 -> v0.11.0-rc.0 +2025-07-23T19:29:08.5289618Z * [new tag] v0.11.0-rc.0-patch -> v0.11.0-rc.0-patch +2025-07-23T19:29:08.5291182Z * [new tag] v0.11.0-rc.1 -> v0.11.0-rc.1 +2025-07-23T19:29:08.5292396Z * [new tag] v0.11.0-rc.2 -> v0.11.0-rc.2 +2025-07-23T19:29:08.5293737Z * [new tag] v0.11.0-rc.3 -> v0.11.0-rc.3 +2025-07-23T19:29:08.5295742Z * [new tag] v0.11.0-rc.4 -> v0.11.0-rc.4 +2025-07-23T19:29:08.5296976Z * [new tag] v0.11.0-rc.4-patch -> v0.11.0-rc.4-patch +2025-07-23T19:29:08.5298282Z * [new tag] v0.11.1 -> v0.11.1 +2025-07-23T19:29:08.5299644Z * [new tag] v0.11.1-rc.0 -> v0.11.1-rc.0 +2025-07-23T19:29:08.5301028Z * [new tag] v0.11.1-rc.1 -> v0.11.1-rc.1 +2025-07-23T19:29:08.5302416Z * [new tag] v0.11.1-rc.2 -> v0.11.1-rc.2 +2025-07-23T19:29:08.5304075Z * [new tag] v0.11.1-rc.3 -> v0.11.1-rc.3 +2025-07-23T19:29:08.5305492Z * [new tag] v0.11.1-rc.4 -> v0.11.1-rc.4 +2025-07-23T19:29:08.5306705Z * [new tag] v0.11.1-rc.5 -> v0.11.1-rc.5 +2025-07-23T19:29:08.5307948Z * [new tag] v0.11.1-rc.6 -> v0.11.1-rc.6 +2025-07-23T19:29:08.5309485Z * [new tag] v0.11.1-rc.7 -> v0.11.1-rc.7 +2025-07-23T19:29:08.5310783Z * [new tag] v0.11.2 -> v0.11.2 +2025-07-23T19:29:08.5312029Z * [new tag] v0.11.2-rc.0 -> v0.11.2-rc.0 +2025-07-23T19:29:08.5313806Z * [new tag] v0.11.3 -> v0.11.3 +2025-07-23T19:29:08.5315194Z * [new tag] v0.11.3-rc.0 -> v0.11.3-rc.0 +2025-07-23T19:29:08.5316403Z * [new tag] v0.11.3-rc.1 -> v0.11.3-rc.1 +2025-07-23T19:29:08.5318055Z * [new tag] v0.11.4 -> v0.11.4 +2025-07-23T19:29:08.5319308Z * [new tag] v0.11.4-rc.0 -> v0.11.4-rc.0 +2025-07-23T19:29:08.5320839Z * [new tag] v0.11.5 -> v0.11.5 +2025-07-23T19:29:08.5321939Z * [new tag] v0.11.5-rc.0 -> v0.11.5-rc.0 +2025-07-23T19:29:08.5323667Z * [new tag] v0.11.6 -> v0.11.6 +2025-07-23T19:29:08.5324900Z * [new tag] v0.11.6-rc.0 -> v0.11.6-rc.0 +2025-07-23T19:29:08.5326649Z * [new tag] v0.11.7 -> v0.11.7 +2025-07-23T19:29:08.5328054Z * [new tag] v0.11.7-rc.0 -> v0.11.7-rc.0 +2025-07-23T19:29:08.5329618Z * [new tag] v0.11.7-rc.1 -> v0.11.7-rc.1 +2025-07-23T19:29:08.5330953Z * [new tag] v0.11.7-rc.2 -> v0.11.7-rc.2 +2025-07-23T19:29:08.5332159Z * [new tag] v0.11.7-rc.3 -> v0.11.7-rc.3 +2025-07-23T19:29:08.5333761Z * [new tag] v0.11.8 -> v0.11.8 +2025-07-23T19:29:08.5335292Z * [new tag] v0.11.8-rc.0 -> v0.11.8-rc.0 +2025-07-23T19:29:08.5336956Z * [new tag] v0.11.8-rc.1 -> v0.11.8-rc.1 +2025-07-23T19:29:08.5338217Z * [new tag] v0.11.8-rc.2 -> v0.11.8-rc.2 +2025-07-23T19:29:08.5339828Z * [new tag] v0.11.8-rc.3 -> v0.11.8-rc.3 +2025-07-23T19:29:08.5341153Z * [new tag] v0.11.9 -> v0.11.9 +2025-07-23T19:29:08.5342359Z * [new tag] v0.11.9-rc.0 -> v0.11.9-rc.0 +2025-07-23T19:29:08.5344152Z * [new tag] v0.12.0 -> v0.12.0 +2025-07-23T19:29:08.5345516Z * [new tag] v0.12.0-rc.0 -> v0.12.0-rc.0 +2025-07-23T19:29:08.5346915Z * [new tag] v0.12.0-rc.1 -> v0.12.0-rc.1 +2025-07-23T19:29:08.5348563Z * [new tag] v0.12.0-rc.2 -> v0.12.0-rc.2 +2025-07-23T19:29:08.5349820Z * [new tag] v0.12.1 -> v0.12.1 +2025-07-23T19:29:08.5351129Z * [new tag] v0.12.1-rc.0 -> v0.12.1-rc.0 +2025-07-23T19:29:08.5353026Z * [new tag] v0.12.10 -> v0.12.10 +2025-07-23T19:29:08.5354270Z * [new tag] v0.12.10-rc.0 -> v0.12.10-rc.0 +2025-07-23T19:29:08.5355995Z * [new tag] v0.12.10-rc.1 -> v0.12.10-rc.1 +2025-07-23T19:29:08.5357184Z * [new tag] v0.12.10-rc.2 -> v0.12.10-rc.2 +2025-07-23T19:29:08.5358940Z * [new tag] v0.12.10-rc.3 -> v0.12.10-rc.3 +2025-07-23T19:29:08.5360244Z * [new tag] v0.12.10-rc.4 -> v0.12.10-rc.4 +2025-07-23T19:29:08.5361432Z * [new tag] v0.12.10-rc.5 -> v0.12.10-rc.5 +2025-07-23T19:29:08.5363483Z * [new tag] v0.12.10-wip-bloom-metrics -> v0.12.10-wip-bloom-metrics +2025-07-23T19:29:08.5364774Z * [new tag] v0.12.11-rc.0 -> v0.12.11-rc.0 +2025-07-23T19:29:08.5366545Z * [new tag] v0.12.11-rc.1 -> v0.12.11-rc.1 +2025-07-23T19:29:08.5367898Z * [new tag] v0.12.11-rc.2 -> v0.12.11-rc.2 +2025-07-23T19:29:08.5369555Z * [new tag] v0.12.11-rc.3 -> v0.12.11-rc.3 +2025-07-23T19:29:08.5370855Z * [new tag] v0.12.2 -> v0.12.2 +2025-07-23T19:29:08.5372530Z * [new tag] v0.12.2-rc.0 -> v0.12.2-rc.0 +2025-07-23T19:29:08.5373804Z * [new tag] v0.12.3 -> v0.12.3 +2025-07-23T19:29:08.5375822Z * [new tag] v0.12.3-rc.0 -> v0.12.3-rc.0 +2025-07-23T19:29:08.5376940Z * [new tag] v0.12.3-rc.1 -> v0.12.3-rc.1 +2025-07-23T19:29:08.5378466Z * [new tag] v0.12.4 -> v0.12.4 +2025-07-23T19:29:08.5380108Z * [new tag] v0.12.4-rc.0 -> v0.12.4-rc.0 +2025-07-23T19:29:08.5381461Z * [new tag] v0.12.4-rc.1 -> v0.12.4-rc.1 +2025-07-23T19:29:08.5383157Z * [new tag] v0.12.4-rc.2 -> v0.12.4-rc.2 +2025-07-23T19:29:08.5384646Z * [new tag] v0.12.4-rc.3 -> v0.12.4-rc.3 +2025-07-23T19:29:08.5385899Z * [new tag] v0.12.4-rc.4 -> v0.12.4-rc.4 +2025-07-23T19:29:08.5387584Z * [new tag] v0.12.5 -> v0.12.5 +2025-07-23T19:29:08.5388938Z * [new tag] v0.12.5-rc.0 -> v0.12.5-rc.0 +2025-07-23T19:29:08.5390492Z * [new tag] v0.12.5-rc.1 -> v0.12.5-rc.1 +2025-07-23T19:29:08.5392029Z * [new tag] v0.12.5-rc.2 -> v0.12.5-rc.2 +2025-07-23T19:29:08.5393387Z * [new tag] v0.12.5-rc.3 -> v0.12.5-rc.3 +2025-07-23T19:29:08.5395218Z * [new tag] v0.12.5-rc.4 -> v0.12.5-rc.4 +2025-07-23T19:29:08.5396516Z * [new tag] v0.12.5-rc.5 -> v0.12.5-rc.5 +2025-07-23T19:29:08.5398161Z * [new tag] v0.12.5-rc.6 -> v0.12.5-rc.6 +2025-07-23T19:29:08.5399524Z * [new tag] v0.12.6 -> v0.12.6 +2025-07-23T19:29:08.5401136Z * [new tag] v0.12.6-rc.0 -> v0.12.6-rc.0 +2025-07-23T19:29:08.5402287Z * [new tag] v0.12.6-rc.1 -> v0.12.6-rc.1 +2025-07-23T19:29:08.5404045Z * [new tag] v0.12.6-rc.2 -> v0.12.6-rc.2 +2025-07-23T19:29:08.5405744Z * [new tag] v0.12.7 -> v0.12.7 +2025-07-23T19:29:08.5407137Z * [new tag] v0.12.7-rc.0 -> v0.12.7-rc.0 +2025-07-23T19:29:08.5408736Z * [new tag] v0.12.7-rc.1 -> v0.12.7-rc.1 +2025-07-23T19:29:08.5410269Z * [new tag] v0.12.8-rc.0 -> v0.12.8-rc.0 +2025-07-23T19:29:08.5411689Z * [new tag] v0.12.8-rc.1 -> v0.12.8-rc.1 +2025-07-23T19:29:08.5413334Z * [new tag] v0.12.9-rc.0 -> v0.12.9-rc.0 +2025-07-23T19:29:08.5414816Z * [new tag] v0.12.9-rc.1 -> v0.12.9-rc.1 +2025-07-23T19:29:08.5416017Z * [new tag] v0.12.9-rc.2 -> v0.12.9-rc.2 +2025-07-23T19:29:08.5417890Z * [new tag] v0.12.9-rc.3 -> v0.12.9-rc.3 +2025-07-23T19:29:08.5419242Z * [new tag] v0.12.9-rc.4 -> v0.12.9-rc.4 +2025-07-23T19:29:08.5420887Z * [new tag] v0.12.9-rc.5 -> v0.12.9-rc.5 +2025-07-23T19:29:08.5422563Z * [new tag] v0.12.9-rc.6 -> v0.12.9-rc.6 +2025-07-23T19:29:08.5424095Z * [new tag] v0.12.9-rc.7 -> v0.12.9-rc.7 +2025-07-23T19:29:08.5425836Z * [new tag] v0.12.9-rc.8 -> v0.12.9-rc.8 +2025-07-23T19:29:08.5427131Z * [new tag] v0.12.9-rc.9 -> v0.12.9-rc.9 +2025-07-23T19:29:08.5428872Z * [new tag] v0.13.0-rc.0 -> v0.13.0-rc.0 +2025-07-23T19:29:08.5430280Z * [new tag] v0.13.1 -> v0.13.1 +2025-07-23T19:29:08.5431945Z * [new tag] v0.13.1-rc.0 -> v0.13.1-rc.0 +2025-07-23T19:29:08.5433350Z * [new tag] v0.13.1-rc.1 -> v0.13.1-rc.1 +2025-07-23T19:29:08.5434972Z * [new tag] v0.13.1-rc.2 -> v0.13.1-rc.2 +2025-07-23T19:29:08.5436601Z * [new tag] v0.13.1-rc.3 -> v0.13.1-rc.3 +2025-07-23T19:29:08.5437951Z * [new tag] v0.13.1-rc.4 -> v0.13.1-rc.4 +2025-07-23T19:29:08.5439711Z * [new tag] v0.13.1-rc.5 -> v0.13.1-rc.5 +2025-07-23T19:29:08.5441300Z * [new tag] v0.13.2 -> v0.13.2 +2025-07-23T19:29:08.5442664Z * [new tag] v0.13.2-rc.0 -> v0.13.2-rc.0 +2025-07-23T19:29:08.5444302Z * [new tag] v0.13.2-rc.1 -> v0.13.2-rc.1 +2025-07-23T19:29:08.5445845Z * [new tag] v0.13.2-rc.2 -> v0.13.2-rc.2 +2025-07-23T19:29:08.5447679Z * [new tag] v0.13.2-stake-sampling -> v0.13.2-stake-sampling +2025-07-23T19:29:08.5449367Z * [new tag] v0.13.2-stake-sampling.2 -> v0.13.2-stake-sampling.2 +2025-07-23T19:29:08.5450771Z * [new tag] v0.13.3 -> v0.13.3 +2025-07-23T19:29:08.5452570Z * [new tag] v0.13.3-rc.0 -> v0.13.3-rc.0 +2025-07-23T19:29:08.5454347Z * [new tag] v0.13.3-rc.1 -> v0.13.3-rc.1 +2025-07-23T19:29:08.5456267Z * [new tag] v0.13.3-rc.2 -> v0.13.3-rc.2 +2025-07-23T19:29:08.5457923Z * [new tag] v0.13.4 -> v0.13.4 +2025-07-23T19:29:08.5459553Z * [new tag] v0.13.4-connect-self -> v0.13.4-connect-self +2025-07-23T19:29:08.5461251Z * [new tag] v0.13.4-geth-1.13.8 -> v0.13.4-geth-1.13.8 +2025-07-23T19:29:08.5462937Z * [new tag] v0.13.4-rc.0 -> v0.13.4-rc.0 +2025-07-23T19:29:08.5464737Z * [new tag] v0.13.5 -> v0.13.5 +2025-07-23T19:29:08.5466443Z * [new tag] v0.13.5-rc.0 -> v0.13.5-rc.0 +2025-07-23T19:29:08.5468153Z * [new tag] v0.13.5-remove-optional-gatherer -> v0.13.5-remove-optional-gatherer +2025-07-23T19:29:08.5469661Z * [new tag] v0.13.5-remove-optional-gatherer.2 -> v0.13.5-remove-optional-gatherer.2 +2025-07-23T19:29:08.5471194Z * [new tag] v0.13.6-rc.0 -> v0.13.6-rc.0 +2025-07-23T19:29:08.5472980Z * [new tag] v0.13.6-rc.1 -> v0.13.6-rc.1 +2025-07-23T19:29:08.5474854Z * [new tag] v0.13.6-remove-status -> v0.13.6-remove-status +2025-07-23T19:29:08.5476501Z * [new tag] v0.13.7 -> v0.13.7 +2025-07-23T19:29:08.5478214Z * [new tag] v0.13.7-acp-118-handlers -> v0.13.7-acp-118-handlers +2025-07-23T19:29:08.5479561Z * [new tag] v0.13.7-fixed-genesis-upgrade -> v0.13.7-fixed-genesis-upgrade +2025-07-23T19:29:08.5481517Z * [new tag] v0.13.7-rc.0 -> v0.13.7-rc.0 +2025-07-23T19:29:08.5482887Z * [new tag] v0.13.7-remove-status -> v0.13.7-remove-status +2025-07-23T19:29:08.5484796Z * [new tag] v0.13.8 -> v0.13.8 +2025-07-23T19:29:08.5486571Z * [new tag] v0.13.8-fix-genesis-upgrade -> v0.13.8-fix-genesis-upgrade +2025-07-23T19:29:08.5487998Z * [new tag] v0.13.8-fixed-genesis-upgrade -> v0.13.8-fixed-genesis-upgrade +2025-07-23T19:29:08.5489736Z * [new tag] v0.13.9-rc.0 -> v0.13.9-rc.0 +2025-07-23T19:29:08.5491131Z * [new tag] v0.13.9-rc.1 -> v0.13.9-rc.1 +2025-07-23T19:29:08.5493118Z * [new tag] v0.13.9-rc.2-encapsulate-signer -> v0.13.9-rc.2-encapsulate-signer +2025-07-23T19:29:08.5494861Z * [new tag] v0.13.9-rc.3-acp118-nodeid -> v0.13.9-rc.3-acp118-nodeid +2025-07-23T19:29:08.5496620Z * [new tag] v0.13.9-rc.3-acp118-nodeid2 -> v0.13.9-rc.3-acp118-nodeid2 +2025-07-23T19:29:08.5498018Z * [new tag] v0.13.9-rc.3-acp118-nodeid3 -> v0.13.9-rc.3-acp118-nodeid3 +2025-07-23T19:29:08.5500072Z * [new tag] v0.14.0 -> v0.14.0 +2025-07-23T19:29:08.5501744Z * [new tag] v0.14.1-acp-176.0 -> v0.14.1-acp-176.0 +2025-07-23T19:29:08.5503410Z * [new tag] v0.14.1-acp-176.1 -> v0.14.1-acp-176.1 +2025-07-23T19:29:08.5505516Z * [new tag] v0.14.1-libevm.rc.1 -> v0.14.1-libevm.rc.1 +2025-07-23T19:29:08.5507249Z * [new tag] v0.14.1-libevm.rc.2 -> v0.14.1-libevm.rc.2 +2025-07-23T19:29:08.5508921Z * [new tag] v0.14.1-rc.0 -> v0.14.1-rc.0 +2025-07-23T19:29:08.5510593Z * [new tag] v0.14.1-rc.1 -> v0.14.1-rc.1 +2025-07-23T19:29:08.5512275Z * [new tag] v0.14.1-rc.2 -> v0.14.1-rc.2 +2025-07-23T19:29:08.5514125Z * [new tag] v0.14.1-rc.3 -> v0.14.1-rc.3 +2025-07-23T19:29:08.5516282Z * [new tag] v0.14.1-rename-fortuna.0 -> v0.14.1-rename-fortuna.0 +2025-07-23T19:29:08.5517727Z * [new tag] v0.14.1-update-fee-api.0 -> v0.14.1-update-fee-api.0 +2025-07-23T19:29:08.5519584Z * [new tag] v0.14.2-verify-interface -> v0.14.2-verify-interface +2025-07-23T19:29:08.5521366Z * [new tag] v0.14.2-verify-interface2 -> v0.14.2-verify-interface2 +2025-07-23T19:29:08.5523104Z * [new tag] v0.14.2-verify-interface3 -> v0.14.2-verify-interface3 +2025-07-23T19:29:08.5524994Z * [new tag] v0.14.2-verify-interface4 -> v0.14.2-verify-interface4 +2025-07-23T19:29:08.5526807Z * [new tag] v0.14.2-verify-interface5 -> v0.14.2-verify-interface5 +2025-07-23T19:29:08.5528269Z * [new tag] v0.14.2-verify-interface6 -> v0.14.2-verify-interface6 +2025-07-23T19:29:08.5530023Z * [new tag] v0.15.0 -> v0.15.0 +2025-07-23T19:29:08.5531781Z * [new tag] v0.15.0-rc.0 -> v0.15.0-rc.0 +2025-07-23T19:29:08.5533161Z * [new tag] v0.15.0-rc.1 -> v0.15.0-rc.1 +2025-07-23T19:29:08.5535213Z * [new tag] v0.15.1 -> v0.15.1 +2025-07-23T19:29:08.5537042Z * [new tag] v0.15.1-rc.0 -> v0.15.1-rc.0 +2025-07-23T19:29:08.5538602Z * [new tag] v0.15.1-rc.1 -> v0.15.1-rc.1 +2025-07-23T19:29:08.5540455Z * [new tag] v0.15.2 -> v0.15.2 +2025-07-23T19:29:08.5542235Z * [new tag] v0.15.2-rc.0 -> v0.15.2-rc.0 +2025-07-23T19:29:08.5544131Z * [new tag] v0.15.3-rc.0 -> v0.15.3-rc.0 +2025-07-23T19:29:08.5545930Z * [new tag] v0.15.3-rc.1 -> v0.15.3-rc.1 +2025-07-23T19:29:08.5547561Z * [new tag] v0.2.0 -> v0.2.0 +2025-07-23T19:29:08.5549216Z * [new tag] v0.2.1 -> v0.2.1 +2025-07-23T19:29:08.5551075Z * [new tag] v0.2.10 -> v0.2.10 +2025-07-23T19:29:08.5552434Z * [new tag] v0.2.11 -> v0.2.11 +2025-07-23T19:29:08.5554330Z * [new tag] v0.2.12 -> v0.2.12 +2025-07-23T19:29:08.5556782Z * [new tag] v0.2.12-rc.1 -> v0.2.12-rc.1 +2025-07-23T19:29:08.5558318Z * [new tag] v0.2.13 -> v0.2.13 +2025-07-23T19:29:08.5559818Z * [new tag] v0.2.14 -> v0.2.14 +2025-07-23T19:29:08.5561554Z * [new tag] v0.2.14-rc.1 -> v0.2.14-rc.1 +2025-07-23T19:29:08.5562916Z * [new tag] v0.2.15 -> v0.2.15 +2025-07-23T19:29:08.5564804Z * [new tag] v0.2.15-rc.1 -> v0.2.15-rc.1 +2025-07-23T19:29:08.5566147Z * [new tag] v0.2.15-rc.2 -> v0.2.15-rc.2 +2025-07-23T19:29:08.5568040Z * [new tag] v0.2.15-rc.3 -> v0.2.15-rc.3 +2025-07-23T19:29:08.5569329Z * [new tag] v0.2.15-rc.4 -> v0.2.15-rc.4 +2025-07-23T19:29:08.5570638Z * [new tag] v0.2.2 -> v0.2.2 +2025-07-23T19:29:08.5572352Z * [new tag] v0.2.3 -> v0.2.3 +2025-07-23T19:29:08.5573700Z * [new tag] v0.2.4 -> v0.2.4 +2025-07-23T19:29:08.5575746Z * [new tag] v0.2.5 -> v0.2.5 +2025-07-23T19:29:08.5577068Z * [new tag] v0.2.6 -> v0.2.6 +2025-07-23T19:29:08.5578599Z * [new tag] v0.2.7-rc.1 -> v0.2.7-rc.1 +2025-07-23T19:29:08.5580153Z * [new tag] v0.2.7-rc.2 -> v0.2.7-rc.2 +2025-07-23T19:29:08.5581620Z * [new tag] v0.2.7-rc.3 -> v0.2.7-rc.3 +2025-07-23T19:29:08.5583239Z * [new tag] v0.2.7-rc.4 -> v0.2.7-rc.4 +2025-07-23T19:29:08.5584820Z * [new tag] v0.2.8 -> v0.2.8 +2025-07-23T19:29:08.5586513Z * [new tag] v0.2.8-rc.1 -> v0.2.8-rc.1 +2025-07-23T19:29:08.5588065Z * [new tag] v0.2.8-rc.2 -> v0.2.8-rc.2 +2025-07-23T19:29:08.5589420Z * [new tag] v0.2.8-rc.3 -> v0.2.8-rc.3 +2025-07-23T19:29:08.5591150Z * [new tag] v0.2.8-rc.4 -> v0.2.8-rc.4 +2025-07-23T19:29:08.5592476Z * [new tag] v0.2.8-rc.5 -> v0.2.8-rc.5 +2025-07-23T19:29:08.5594299Z * [new tag] v0.2.8-rc.6 -> v0.2.8-rc.6 +2025-07-23T19:29:08.5596072Z * [new tag] v0.3.0-rc.1 -> v0.3.0-rc.1 +2025-07-23T19:29:08.5597602Z * [new tag] v0.3.0-rc.2 -> v0.3.0-rc.2 +2025-07-23T19:29:08.5599305Z * [new tag] v0.3.0-rc.3 -> v0.3.0-rc.3 +2025-07-23T19:29:08.5600509Z * [new tag] v0.3.0-rc.4 -> v0.3.0-rc.4 +2025-07-23T19:29:08.5602272Z * [new tag] v0.3.0-rc.5 -> v0.3.0-rc.5 +2025-07-23T19:29:08.5604040Z * [new tag] v0.3.0-rc.6 -> v0.3.0-rc.6 +2025-07-23T19:29:08.5605691Z * [new tag] v0.3.1 -> v0.3.1 +2025-07-23T19:29:08.5607311Z * [new tag] v0.3.1-rc.1 -> v0.3.1-rc.1 +2025-07-23T19:29:08.5608711Z * [new tag] v0.3.1-rc.2 -> v0.3.1-rc.2 +2025-07-23T19:29:08.5610452Z * [new tag] v0.3.10 -> v0.3.10 +2025-07-23T19:29:08.5611825Z * [new tag] v0.3.11 -> v0.3.11 +2025-07-23T19:29:08.5613386Z * [new tag] v0.3.11-update-id -> v0.3.11-update-id +2025-07-23T19:29:08.5614844Z * [new tag] v0.3.11-update-id-2 -> v0.3.11-update-id-2 +2025-07-23T19:29:08.5616732Z * [new tag] v0.3.11-update-id-3 -> v0.3.11-update-id-3 +2025-07-23T19:29:08.5618078Z * [new tag] v0.3.12 -> v0.3.12 +2025-07-23T19:29:08.5620166Z * [new tag] v0.3.12-id-update -> v0.3.12-id-update +2025-07-23T19:29:08.5621279Z * [new tag] v0.3.13 -> v0.3.13 +2025-07-23T19:29:08.5623060Z * [new tag] v0.3.14 -> v0.3.14 +2025-07-23T19:29:08.5624893Z * [new tag] v0.3.15 -> v0.3.15 +2025-07-23T19:29:08.5626579Z * [new tag] v0.3.15-rc.1 -> v0.3.15-rc.1 +2025-07-23T19:29:08.5628155Z * [new tag] v0.3.15-rc.2 -> v0.3.15-rc.2 +2025-07-23T19:29:08.5629936Z * [new tag] v0.3.16 -> v0.3.16 +2025-07-23T19:29:08.5631594Z * [new tag] v0.3.17 -> v0.3.17 +2025-07-23T19:29:08.5633228Z * [new tag] v0.3.17-rc.1 -> v0.3.17-rc.1 +2025-07-23T19:29:08.5634736Z * [new tag] v0.3.18 -> v0.3.18 +2025-07-23T19:29:08.5636650Z * [new tag] v0.3.18-rc.1 -> v0.3.18-rc.1 +2025-07-23T19:29:08.5638343Z * [new tag] v0.3.18-rc.2 -> v0.3.18-rc.2 +2025-07-23T19:29:08.5639961Z * [new tag] v0.3.19 -> v0.3.19 +2025-07-23T19:29:08.5641598Z * [new tag] v0.3.19-rc.1 -> v0.3.19-rc.1 +2025-07-23T19:29:08.5643364Z * [new tag] v0.3.2 -> v0.3.2 +2025-07-23T19:29:08.5645341Z * [new tag] v0.3.20 -> v0.3.20 +2025-07-23T19:29:08.5647202Z * [new tag] v0.3.20-rc.1 -> v0.3.20-rc.1 +2025-07-23T19:29:08.5669159Z * [new tag] v0.3.20-rc.2 -> v0.3.20-rc.2 +2025-07-23T19:29:08.5675188Z * [new tag] v0.3.20-rc.3 -> v0.3.20-rc.3 +2025-07-23T19:29:08.5675943Z * [new tag] v0.3.20-rc.4 -> v0.3.20-rc.4 +2025-07-23T19:29:08.5676601Z * [new tag] v0.3.21 -> v0.3.21 +2025-07-23T19:29:08.5677264Z * [new tag] v0.3.21-rc.1 -> v0.3.21-rc.1 +2025-07-23T19:29:08.5677922Z * [new tag] v0.3.22 -> v0.3.22 +2025-07-23T19:29:08.5678550Z * [new tag] v0.3.23 -> v0.3.23 +2025-07-23T19:29:08.5679172Z * [new tag] v0.3.24 -> v0.3.24 +2025-07-23T19:29:08.5679806Z * [new tag] v0.3.24-rc.1 -> v0.3.24-rc.1 +2025-07-23T19:29:08.5680463Z * [new tag] v0.3.25 -> v0.3.25 +2025-07-23T19:29:08.5681103Z * [new tag] v0.3.25-rc.1 -> v0.3.25-rc.1 +2025-07-23T19:29:08.5681778Z * [new tag] v0.3.26 -> v0.3.26 +2025-07-23T19:29:08.5682440Z * [new tag] v0.3.27 -> v0.3.27 +2025-07-23T19:29:08.5683101Z * [new tag] v0.3.27-rc.1 -> v0.3.27-rc.1 +2025-07-23T19:29:08.5683756Z * [new tag] v0.3.3-rc.1 -> v0.3.3-rc.1 +2025-07-23T19:29:08.5684621Z * [new tag] v0.3.3-rc.2 -> v0.3.3-rc.2 +2025-07-23T19:29:08.5685294Z * [new tag] v0.3.3-rc.3 -> v0.3.3-rc.3 +2025-07-23T19:29:08.5685988Z * [new tag] v0.3.3-rc.4 -> v0.3.3-rc.4 +2025-07-23T19:29:08.5686626Z * [new tag] v0.3.3-rc.5 -> v0.3.3-rc.5 +2025-07-23T19:29:08.5687258Z * [new tag] v0.3.3-rc.6 -> v0.3.3-rc.6 +2025-07-23T19:29:08.5687900Z * [new tag] v0.3.3-rc.7 -> v0.3.3-rc.7 +2025-07-23T19:29:08.5688523Z * [new tag] v0.3.4 -> v0.3.4 +2025-07-23T19:29:08.5689156Z * [new tag] v0.3.5 -> v0.3.5 +2025-07-23T19:29:08.5689785Z * [new tag] v0.3.5-rc.1 -> v0.3.5-rc.1 +2025-07-23T19:29:08.5690449Z * [new tag] v0.3.5-rc.2 -> v0.3.5-rc.2 +2025-07-23T19:29:08.5691929Z * [new tag] v0.3.5-rc.3 -> v0.3.5-rc.3 +2025-07-23T19:29:08.5693327Z * [new tag] v0.3.6 -> v0.3.6 +2025-07-23T19:29:08.5695733Z * [new tag] v0.3.7 -> v0.3.7 +2025-07-23T19:29:08.5697064Z * [new tag] v0.3.8 -> v0.3.8 +2025-07-23T19:29:08.5698624Z * [new tag] v0.3.9 -> v0.3.9 +2025-07-23T19:29:08.5700641Z * [new tag] v0.4.0 -> v0.4.0 +2025-07-23T19:29:08.5702234Z * [new tag] v0.4.0-rc.1 -> v0.4.0-rc.1 +2025-07-23T19:29:08.5704266Z * [new tag] v0.4.0-rc.2 -> v0.4.0-rc.2 +2025-07-23T19:29:08.5705976Z * [new tag] v0.4.0-rc.3 -> v0.4.0-rc.3 +2025-07-23T19:29:08.5707840Z * [new tag] v0.4.0-rc.4 -> v0.4.0-rc.4 +2025-07-23T19:29:08.5709364Z * [new tag] v0.4.0-rc.5 -> v0.4.0-rc.5 +2025-07-23T19:29:08.5711357Z * [new tag] v0.4.0-rc.6 -> v0.4.0-rc.6 +2025-07-23T19:29:08.5712931Z * [new tag] v0.4.0-rc.7 -> v0.4.0-rc.7 +2025-07-23T19:29:08.5715099Z * [new tag] v0.4.0-rc.8 -> v0.4.0-rc.8 +2025-07-23T19:29:08.5716595Z * [new tag] v0.4.1 -> v0.4.1 +2025-07-23T19:29:08.5718231Z * [new tag] v0.4.1-rc.1 -> v0.4.1-rc.1 +2025-07-23T19:29:08.5719992Z * [new tag] v0.4.2 -> v0.4.2 +2025-07-23T19:29:08.5722042Z * [new tag] v0.4.2-rc.1 -> v0.4.2-rc.1 +2025-07-23T19:29:08.5723588Z * [new tag] v0.4.2-rc.2 -> v0.4.2-rc.2 +2025-07-23T19:29:08.5725794Z * [new tag] v0.4.2-rc.3 -> v0.4.2-rc.3 +2025-07-23T19:29:08.5727254Z * [new tag] v0.4.2-rc.4 -> v0.4.2-rc.4 +2025-07-23T19:29:08.5729329Z * [new tag] v0.4.3-rc.1 -> v0.4.3-rc.1 +2025-07-23T19:29:08.5730855Z * [new tag] v0.4.3-rc.2 -> v0.4.3-rc.2 +2025-07-23T19:29:08.5732707Z * [new tag] v0.4.3-rc.3 -> v0.4.3-rc.3 +2025-07-23T19:29:08.5734462Z * [new tag] v0.4.3-rc.4 -> v0.4.3-rc.4 +2025-07-23T19:29:08.5736429Z * [new tag] v0.5.0 -> v0.5.0 +2025-07-23T19:29:08.5738357Z * [new tag] v0.5.0-rc.1 -> v0.5.0-rc.1 +2025-07-23T19:29:08.5739965Z * [new tag] v0.5.0-rc.2 -> v0.5.0-rc.2 +2025-07-23T19:29:08.5741856Z * [new tag] v0.5.1 -> v0.5.1 +2025-07-23T19:29:08.5743465Z * [new tag] v0.5.1-metervm -> v0.5.1-metervm +2025-07-23T19:29:08.5745271Z * [new tag] v0.5.1-metervm2 -> v0.5.1-metervm2 +2025-07-23T19:29:08.5747259Z * [new tag] v0.5.1-rc.1 -> v0.5.1-rc.1 +2025-07-23T19:29:08.5748532Z * [new tag] v0.5.1-rc.2 -> v0.5.1-rc.2 +2025-07-23T19:29:08.5750472Z * [new tag] v0.5.2 -> v0.5.2 +2025-07-23T19:29:08.5752081Z * [new tag] v0.5.2-pre-upgrade.1 -> v0.5.2-pre-upgrade.1 +2025-07-23T19:29:08.5753625Z * [new tag] v0.5.2-rc.1 -> v0.5.2-rc.1 +2025-07-23T19:29:08.5755918Z * [new tag] v0.5.2-rc.2 -> v0.5.2-rc.2 +2025-07-23T19:29:08.5757699Z * [new tag] v0.5.2-rc.3 -> v0.5.2-rc.3 +2025-07-23T19:29:08.5759245Z * [new tag] v0.5.2-rc.4 -> v0.5.2-rc.4 +2025-07-23T19:29:08.5761293Z * [new tag] v0.5.2-rc.5 -> v0.5.2-rc.5 +2025-07-23T19:29:08.5762810Z * [new tag] v0.5.3 -> v0.5.3 +2025-07-23T19:29:08.5764522Z * [new tag] v0.5.3-metervm3 -> v0.5.3-metervm3 +2025-07-23T19:29:08.5766395Z * [new tag] v0.5.3-metervm4 -> v0.5.3-metervm4 +2025-07-23T19:29:08.5768188Z * [new tag] v0.5.3-rc.1 -> v0.5.3-rc.1 +2025-07-23T19:29:08.5769685Z * [new tag] v0.5.3-rc.2 -> v0.5.3-rc.2 +2025-07-23T19:29:08.5771688Z * [new tag] v0.5.4 -> v0.5.4 +2025-07-23T19:29:08.5773518Z * [new tag] v0.5.4-rc.1 -> v0.5.4-rc.1 +2025-07-23T19:29:08.5775617Z * [new tag] v0.5.4-rc.10 -> v0.5.4-rc.10 +2025-07-23T19:29:08.5777398Z * [new tag] v0.5.4-rc.11 -> v0.5.4-rc.11 +2025-07-23T19:29:08.5779453Z * [new tag] v0.5.4-rc.12 -> v0.5.4-rc.12 +2025-07-23T19:29:08.5780799Z * [new tag] v0.5.4-rc.13 -> v0.5.4-rc.13 +2025-07-23T19:29:08.5782903Z * [new tag] v0.5.4-rc.2 -> v0.5.4-rc.2 +2025-07-23T19:29:08.5785028Z * [new tag] v0.5.4-rc.3 -> v0.5.4-rc.3 +2025-07-23T19:29:08.5786980Z * [new tag] v0.5.4-rc.4 -> v0.5.4-rc.4 +2025-07-23T19:29:08.5788891Z * [new tag] v0.5.4-rc.5 -> v0.5.4-rc.5 +2025-07-23T19:29:08.5791007Z * [new tag] v0.5.4-rc.6 -> v0.5.4-rc.6 +2025-07-23T19:29:08.5792814Z * [new tag] v0.5.4-rc.7 -> v0.5.4-rc.7 +2025-07-23T19:29:08.5794491Z * [new tag] v0.5.4-rc.8 -> v0.5.4-rc.8 +2025-07-23T19:29:08.5796833Z * [new tag] v0.5.4-rc.9 -> v0.5.4-rc.9 +2025-07-23T19:29:08.5798219Z * [new tag] v0.5.5 -> v0.5.5 +2025-07-23T19:29:08.5800155Z * [new tag] v0.5.5-rc.0 -> v0.5.5-rc.0 +2025-07-23T19:29:08.5801942Z * [new tag] v0.5.5-rc.1 -> v0.5.5-rc.1 +2025-07-23T19:29:08.5804096Z * [new tag] v0.5.6 -> v0.5.6 +2025-07-23T19:29:08.5805938Z * [new tag] v0.5.6-rc.0 -> v0.5.6-rc.0 +2025-07-23T19:29:08.5807745Z * [new tag] v0.5.6-rc.1 -> v0.5.6-rc.1 +2025-07-23T19:29:08.5809592Z * [new tag] v0.5.6-rc.2 -> v0.5.6-rc.2 +2025-07-23T19:29:08.5811572Z * [new tag] v0.5.6-rc.3 -> v0.5.6-rc.3 +2025-07-23T19:29:08.5813365Z * [new tag] v0.5.6-rc.4 -> v0.5.6-rc.4 +2025-07-23T19:29:08.5815179Z * [new tag] v0.5.6-rc.5 -> v0.5.6-rc.5 +2025-07-23T19:29:08.5816652Z * [new tag] v0.5.6-rc.6 -> v0.5.6-rc.6 +2025-07-23T19:29:08.5818762Z * [new tag] v0.5.7 -> v0.5.7 +2025-07-23T19:29:08.5820582Z * [new tag] v0.5.7-rc.0 -> v0.5.7-rc.0 +2025-07-23T19:29:08.5822510Z * [new tag] v0.5.7-rc.1 -> v0.5.7-rc.1 +2025-07-23T19:29:08.5824835Z * [new tag] v0.6.0 -> v0.6.0 +2025-07-23T19:29:08.5826934Z * [new tag] v0.6.0-rc.0 -> v0.6.0-rc.0 +2025-07-23T19:29:08.5828305Z * [new tag] v0.6.0-rc.1 -> v0.6.0-rc.1 +2025-07-23T19:29:08.5830341Z * [new tag] v0.6.1 -> v0.6.1 +2025-07-23T19:29:08.5832061Z * [new tag] v0.6.1-rc.0 -> v0.6.1-rc.0 +2025-07-23T19:29:08.5834195Z * [new tag] v0.6.1-rc.1 -> v0.6.1-rc.1 +2025-07-23T19:29:08.5836267Z * [new tag] v0.6.1-rc.2 -> v0.6.1-rc.2 +2025-07-23T19:29:08.5837636Z * [new tag] v0.6.1-rc.3 -> v0.6.1-rc.3 +2025-07-23T19:29:08.5839742Z * [new tag] v0.6.2 -> v0.6.2 +2025-07-23T19:29:08.5841049Z * [new tag] v0.6.2-rc.0 -> v0.6.2-rc.0 +2025-07-23T19:29:08.5843061Z * [new tag] v0.6.3 -> v0.6.3 +2025-07-23T19:29:08.5844775Z * [new tag] v0.6.3-rc.0 -> v0.6.3-rc.0 +2025-07-23T19:29:08.5846760Z * [new tag] v0.6.3-rc.1 -> v0.6.3-rc.1 +2025-07-23T19:29:08.5848767Z * [new tag] v0.6.4-rc.0 -> v0.6.4-rc.0 +2025-07-23T19:29:08.5850681Z * [new tag] v0.7.0 -> v0.7.0 +2025-07-23T19:29:08.5853081Z * [new tag] v0.7.0-rc.0 -> v0.7.0-rc.0 +2025-07-23T19:29:08.5854490Z * [new tag] v0.7.0-rc.1 -> v0.7.0-rc.1 +2025-07-23T19:29:08.5856671Z * [new tag] v0.7.0-rc.10 -> v0.7.0-rc.10 +2025-07-23T19:29:08.5858177Z * [new tag] v0.7.0-rc.11 -> v0.7.0-rc.11 +2025-07-23T19:29:08.5859967Z * [new tag] v0.7.0-rc.12 -> v0.7.0-rc.12 +2025-07-23T19:29:08.5861707Z * [new tag] v0.7.0-rc.13 -> v0.7.0-rc.13 +2025-07-23T19:29:08.5863232Z * [new tag] v0.7.0-rc.14 -> v0.7.0-rc.14 +2025-07-23T19:29:08.5864823Z * [new tag] v0.7.0-rc.2 -> v0.7.0-rc.2 +2025-07-23T19:29:08.5866634Z * [new tag] v0.7.0-rc.3 -> v0.7.0-rc.3 +2025-07-23T19:29:08.5868276Z * [new tag] v0.7.0-rc.4 -> v0.7.0-rc.4 +2025-07-23T19:29:08.5869924Z * [new tag] v0.7.0-rc.5 -> v0.7.0-rc.5 +2025-07-23T19:29:08.5871741Z * [new tag] v0.7.0-rc.6 -> v0.7.0-rc.6 +2025-07-23T19:29:08.5873170Z * [new tag] v0.7.0-rc.8 -> v0.7.0-rc.8 +2025-07-23T19:29:08.5875094Z * [new tag] v0.7.0-rc.9 -> v0.7.0-rc.9 +2025-07-23T19:29:08.5876716Z * [new tag] v0.7.1 -> v0.7.1 +2025-07-23T19:29:08.5878440Z * [new tag] v0.7.1-rc.0 -> v0.7.1-rc.0 +2025-07-23T19:29:08.5879901Z * [new tag] v0.7.1-rc.1 -> v0.7.1-rc.1 +2025-07-23T19:29:08.5881147Z * [new tag] v0.7.1-rc.2 -> v0.7.1-rc.2 +2025-07-23T19:29:08.5882971Z * [new tag] v0.7.2 -> v0.7.2 +2025-07-23T19:29:08.5884306Z * [new tag] v0.7.2-rc.0 -> v0.7.2-rc.0 +2025-07-23T19:29:08.5885734Z * [new tag] v0.7.2-rc.1 -> v0.7.2-rc.1 +2025-07-23T19:29:08.5887322Z * [new tag] v0.7.3-rc.0 -> v0.7.3-rc.0 +2025-07-23T19:29:08.5888688Z * [new tag] v0.7.3-rc.1 -> v0.7.3-rc.1 +2025-07-23T19:29:08.5890462Z * [new tag] v0.7.3-rc.2 -> v0.7.3-rc.2 +2025-07-23T19:29:08.5891744Z * [new tag] v0.7.3-rc.3 -> v0.7.3-rc.3 +2025-07-23T19:29:08.5893621Z * [new tag] v0.7.4 -> v0.7.4 +2025-07-23T19:29:08.5894883Z * [new tag] v0.7.4-rc.0 -> v0.7.4-rc.0 +2025-07-23T19:29:08.5896309Z * [new tag] v0.7.4-rc.1 -> v0.7.4-rc.1 +2025-07-23T19:29:08.5897984Z * [new tag] v0.7.5 -> v0.7.5 +2025-07-23T19:29:08.5899239Z * [new tag] v0.7.5-rc.0 -> v0.7.5-rc.0 +2025-07-23T19:29:08.5900964Z * [new tag] v0.7.5-rc.1 -> v0.7.5-rc.1 +2025-07-23T19:29:08.5902066Z * [new tag] v0.7.5-rc.2 -> v0.7.5-rc.2 +2025-07-23T19:29:08.5903749Z * [new tag] v0.8.0 -> v0.8.0 +2025-07-23T19:29:08.5905587Z * [new tag] v0.8.0-rc.0 -> v0.8.0-rc.0 +2025-07-23T19:29:08.5907331Z * [new tag] v0.8.0-rc.1 -> v0.8.0-rc.1 +2025-07-23T19:29:08.5908777Z * [new tag] v0.8.0-rc.2 -> v0.8.0-rc.2 +2025-07-23T19:29:08.5910194Z * [new tag] v0.8.0-rc.3 -> v0.8.0-rc.3 +2025-07-23T19:29:08.5911940Z * [new tag] v0.8.1-rc.0 -> v0.8.1-rc.0 +2025-07-23T19:29:08.5913559Z * [new tag] v0.8.1-rc.1 -> v0.8.1-rc.1 +2025-07-23T19:29:08.5915119Z * [new tag] v0.8.1-rc.2 -> v0.8.1-rc.2 +2025-07-23T19:29:08.5917098Z * [new tag] v0.8.10 -> v0.8.10 +2025-07-23T19:29:08.5918273Z * [new tag] v0.8.10-rc.0 -> v0.8.10-rc.0 +2025-07-23T19:29:08.5928245Z * [new tag] v0.8.10-rc.1 -> v0.8.10-rc.1 +2025-07-23T19:29:08.5929883Z * [new tag] v0.8.10-rc.2 -> v0.8.10-rc.2 +2025-07-23T19:29:08.5931393Z * [new tag] v0.8.10-rc.3 -> v0.8.10-rc.3 +2025-07-23T19:29:08.5932761Z * [new tag] v0.8.10-rc.4 -> v0.8.10-rc.4 +2025-07-23T19:29:08.5934421Z * [new tag] v0.8.10-rc.5 -> v0.8.10-rc.5 +2025-07-23T19:29:08.5936309Z * [new tag] v0.8.10-rc.6 -> v0.8.10-rc.6 +2025-07-23T19:29:08.5937412Z * [new tag] v0.8.10-rc.7 -> v0.8.10-rc.7 +2025-07-23T19:29:08.5939132Z * [new tag] v0.8.11 -> v0.8.11 +2025-07-23T19:29:08.5940980Z * [new tag] v0.8.11-rc.0 -> v0.8.11-rc.0 +2025-07-23T19:29:08.5942014Z * [new tag] v0.8.11-rc.1 -> v0.8.11-rc.1 +2025-07-23T19:29:08.5943641Z * [new tag] v0.8.11-rc.10 -> v0.8.11-rc.10 +2025-07-23T19:29:08.5945103Z * [new tag] v0.8.11-rc.11 -> v0.8.11-rc.11 +2025-07-23T19:29:08.5946914Z * [new tag] v0.8.11-rc.2 -> v0.8.11-rc.2 +2025-07-23T19:29:08.5948371Z * [new tag] v0.8.11-rc.4 -> v0.8.11-rc.4 +2025-07-23T19:29:08.5950094Z * [new tag] v0.8.11-rc.5 -> v0.8.11-rc.5 +2025-07-23T19:29:08.5951152Z * [new tag] v0.8.11-rc.6 -> v0.8.11-rc.6 +2025-07-23T19:29:08.5952668Z * [new tag] v0.8.11-rc.7 -> v0.8.11-rc.7 +2025-07-23T19:29:08.5954784Z * [new tag] v0.8.11-rc.8 -> v0.8.11-rc.8 +2025-07-23T19:29:08.5957002Z * [new tag] v0.8.11-rc.9 -> v0.8.11-rc.9 +2025-07-23T19:29:08.5958638Z * [new tag] v0.8.12 -> v0.8.12 +2025-07-23T19:29:08.5961063Z * [new tag] v0.8.12-rc.0 -> v0.8.12-rc.0 +2025-07-23T19:29:08.5962524Z * [new tag] v0.8.12-rc.1 -> v0.8.12-rc.1 +2025-07-23T19:29:08.5964650Z * [new tag] v0.8.13 -> v0.8.13 +2025-07-23T19:29:08.5966628Z * [new tag] v0.8.13-rc.0 -> v0.8.13-rc.0 +2025-07-23T19:29:08.5968583Z * [new tag] v0.8.13-rc.1 -> v0.8.13-rc.1 +2025-07-23T19:29:08.5970175Z * [new tag] v0.8.13-rc.2 -> v0.8.13-rc.2 +2025-07-23T19:29:08.5971954Z * [new tag] v0.8.13-rc.3 -> v0.8.13-rc.3 +2025-07-23T19:29:08.5973676Z * [new tag] v0.8.13-rc.4 -> v0.8.13-rc.4 +2025-07-23T19:29:08.5975151Z * [new tag] v0.8.13-rc.5 -> v0.8.13-rc.5 +2025-07-23T19:29:08.5976868Z * [new tag] v0.8.14 -> v0.8.14 +2025-07-23T19:29:08.5978232Z * [new tag] v0.8.14-rc.0 -> v0.8.14-rc.0 +2025-07-23T19:29:08.5979621Z * [new tag] v0.8.15 -> v0.8.15 +2025-07-23T19:29:08.5981272Z * [new tag] v0.8.15-rc.0 -> v0.8.15-rc.0 +2025-07-23T19:29:08.5982527Z * [new tag] v0.8.15-rc.1 -> v0.8.15-rc.1 +2025-07-23T19:29:08.5983854Z * [new tag] v0.8.15-rc.2 -> v0.8.15-rc.2 +2025-07-23T19:29:08.5985783Z * [new tag] v0.8.16 -> v0.8.16 +2025-07-23T19:29:08.5987410Z * [new tag] v0.8.16-rc.0 -> v0.8.16-rc.0 +2025-07-23T19:29:08.5989165Z * [new tag] v0.8.16-rc.1 -> v0.8.16-rc.1 +2025-07-23T19:29:08.5990265Z * [new tag] v0.8.16-rc.2 -> v0.8.16-rc.2 +2025-07-23T19:29:08.5991963Z * [new tag] v0.8.2 -> v0.8.2 +2025-07-23T19:29:08.5993465Z * [new tag] v0.8.2-rc.0 -> v0.8.2-rc.0 +2025-07-23T19:29:08.5995074Z * [new tag] v0.8.3 -> v0.8.3 +2025-07-23T19:29:08.5997417Z * [new tag] v0.8.3-rc.0 -> v0.8.3-rc.0 +2025-07-23T19:29:08.5998837Z * [new tag] v0.8.3-rc.1 -> v0.8.3-rc.1 +2025-07-23T19:29:08.6000152Z * [new tag] v0.8.3-rc.2 -> v0.8.3-rc.2 +2025-07-23T19:29:08.6001933Z * [new tag] v0.8.3-rc.3 -> v0.8.3-rc.3 +2025-07-23T19:29:08.6003158Z * [new tag] v0.8.4 -> v0.8.4 +2025-07-23T19:29:08.6005011Z * [new tag] v0.8.4-rc.1 -> v0.8.4-rc.1 +2025-07-23T19:29:08.6006871Z * [new tag] v0.8.4-rc.2 -> v0.8.4-rc.2 +2025-07-23T19:29:08.6008255Z * [new tag] v0.8.4-rc.3 -> v0.8.4-rc.3 +2025-07-23T19:29:08.6010069Z * [new tag] v0.8.4-rc0 -> v0.8.4-rc0 +2025-07-23T19:29:08.6011297Z * [new tag] v0.8.5 -> v0.8.5 +2025-07-23T19:29:08.6012953Z * [new tag] v0.8.5-rc.0 -> v0.8.5-rc.0 +2025-07-23T19:29:08.6014421Z * [new tag] v0.8.5-rc.1 -> v0.8.5-rc.1 +2025-07-23T19:29:08.6015745Z * [new tag] v0.8.5-rc.2 -> v0.8.5-rc.2 +2025-07-23T19:29:08.6017912Z * [new tag] v0.8.6 -> v0.8.6 +2025-07-23T19:29:08.6018974Z * [new tag] v0.8.6-rc.0 -> v0.8.6-rc.0 +2025-07-23T19:29:08.6020356Z * [new tag] v0.8.6-rc.1 -> v0.8.6-rc.1 +2025-07-23T19:29:08.6021990Z * [new tag] v0.8.7 -> v0.8.7 +2025-07-23T19:29:08.6023391Z * [new tag] v0.8.7-rc.0 -> v0.8.7-rc.0 +2025-07-23T19:29:08.6025166Z * [new tag] v0.8.7-rc.1 -> v0.8.7-rc.1 +2025-07-23T19:29:08.6026373Z * [new tag] v0.8.7-rc.2 -> v0.8.7-rc.2 +2025-07-23T19:29:08.6028137Z * [new tag] v0.8.8 -> v0.8.8 +2025-07-23T19:29:08.6029270Z * [new tag] v0.8.8-rc.0 -> v0.8.8-rc.0 +2025-07-23T19:29:08.6031042Z * [new tag] v0.8.9 -> v0.8.9 +2025-07-23T19:29:08.6033463Z * [new tag] v0.8.9-rc.0 -> v0.8.9-rc.0 +2025-07-23T19:29:08.6036698Z * [new tag] v0.8.9-rc.1 -> v0.8.9-rc.1 +2025-07-23T19:29:08.6037344Z * [new tag] v0.9.0 -> v0.9.0 +2025-07-23T19:29:08.6037961Z * [new tag] v0.9.0-rc.0 -> v0.9.0-rc.0 +2025-07-23T19:29:08.6038604Z * [new tag] v0.9.0-rc.1 -> v0.9.0-rc.1 +2025-07-23T19:29:08.6039292Z * [new tag] v0.9.0-rc.11 -> v0.9.0-rc.11 +2025-07-23T19:29:08.6041164Z * [new tag] v0.9.0-rc.12 -> v0.9.0-rc.12 +2025-07-23T19:29:08.6042359Z * [new tag] v0.9.0-rc.13 -> v0.9.0-rc.13 +2025-07-23T19:29:08.6044326Z * [new tag] v0.9.0-rc.14 -> v0.9.0-rc.14 +2025-07-23T19:29:08.6046031Z * [new tag] v0.9.0-rc.2 -> v0.9.0-rc.2 +2025-07-23T19:29:08.6047378Z * [new tag] v0.9.0-rc.3 -> v0.9.0-rc.3 +2025-07-23T19:29:08.6049176Z * [new tag] v0.9.0-rc.4 -> v0.9.0-rc.4 +2025-07-23T19:29:08.6050604Z * [new tag] v0.9.0-rc.5 -> v0.9.0-rc.5 +2025-07-23T19:29:08.6052364Z * [new tag] v0.9.0-rc.6 -> v0.9.0-rc.6 +2025-07-23T19:29:08.6053618Z * [new tag] v0.9.0-rc.9 -> v0.9.0-rc.9 +2025-07-23T19:29:08.6056045Z * [new tag] with-avalanchego-test-pkg -> with-avalanchego-test-pkg +2025-07-23T19:29:08.6059198Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge +2025-07-23T19:29:08.6161530Z ##[endgroup] +2025-07-23T19:29:08.6162186Z ##[group]Determining the checkout info +2025-07-23T19:29:08.6162869Z ##[endgroup] +2025-07-23T19:29:08.6168732Z [command]/usr/bin/git sparse-checkout disable +2025-07-23T19:29:08.6210127Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig +2025-07-23T19:29:08.6236301Z ##[group]Checking out the ref +2025-07-23T19:29:08.6240655Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge +2025-07-23T19:29:08.7375146Z Note: switching to 'refs/remotes/pull/1065/merge'. +2025-07-23T19:29:08.7375897Z +2025-07-23T19:29:08.7376157Z You are in 'detached HEAD' state. You can look around, make experimental +2025-07-23T19:29:08.7376758Z changes and commit them, and you can discard any commits you make in this +2025-07-23T19:29:08.7377280Z state without impacting any branches by switching back to a branch. +2025-07-23T19:29:08.7377599Z +2025-07-23T19:29:08.7377805Z If you want to create a new branch to retain commits you create, you may +2025-07-23T19:29:08.7378317Z do so (now or later) by using -c with the switch command. Example: +2025-07-23T19:29:08.7378626Z +2025-07-23T19:29:08.7378753Z git switch -c +2025-07-23T19:29:08.7378986Z +2025-07-23T19:29:08.7379102Z Or undo this operation with: +2025-07-23T19:29:08.7379285Z +2025-07-23T19:29:08.7379390Z git switch - +2025-07-23T19:29:08.7379543Z +2025-07-23T19:29:08.7379794Z Turn off this advice by setting config variable advice.detachedHead to false +2025-07-23T19:29:08.7380128Z +2025-07-23T19:29:08.7380478Z HEAD is now at d85ec0364 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 +2025-07-23T19:29:08.7391905Z ##[endgroup] +2025-07-23T19:29:08.7433435Z [command]/usr/bin/git log -1 --format=%H +2025-07-23T19:29:08.7455300Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 +2025-07-23T19:29:08.7667418Z ##[group]Run actions/setup-go@v5 +2025-07-23T19:29:08.7667662Z with: +2025-07-23T19:29:08.7667840Z go-version-file: go.mod +2025-07-23T19:29:08.7668050Z check-latest: false +2025-07-23T19:29:08.7668364Z token: *** +2025-07-23T19:29:08.7668529Z cache: true +2025-07-23T19:29:08.7668698Z ##[endgroup] +2025-07-23T19:29:08.9269082Z Setup go version spec 1.23.9 +2025-07-23T19:29:08.9280263Z Attempting to download 1.23.9... +2025-07-23T19:29:09.2290878Z matching 1.23.9... +2025-07-23T19:29:09.2332586Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz +2025-07-23T19:29:09.7498168Z Extracting Go... +2025-07-23T19:29:09.7602027Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/37ec91b0-76a2-4903-b265-0c32d531296b -f /home/runner/work/_temp/76e90d44-c8d9-4477-a2a6-b1069342d5ff +2025-07-23T19:29:11.3968705Z Successfully extracted go to /home/runner/work/_temp/37ec91b0-76a2-4903-b265-0c32d531296b +2025-07-23T19:29:11.3969248Z Adding to the cache ... +2025-07-23T19:29:15.6448838Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 +2025-07-23T19:29:15.6449365Z Added go to the path +2025-07-23T19:29:15.6451826Z Successfully set up Go version 1.23.9 +2025-07-23T19:29:15.6642434Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:29:15.6670332Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:29:15.6701238Z /home/runner/go/pkg/mod +2025-07-23T19:29:15.6715943Z /home/runner/.cache/go-build +2025-07-23T19:29:15.7377776Z Cache hit for: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:16.7739823Z Received 226492416 of 743127682 (30.5%), 214.9 MBs/sec +2025-07-23T19:29:17.7730220Z Received 436207616 of 743127682 (58.7%), 207.5 MBs/sec +2025-07-23T19:29:18.7730408Z Received 671088640 of 743127682 (90.3%), 213.0 MBs/sec +2025-07-23T19:29:19.0758803Z Received 743127682 of 743127682 (100.0%), 214.2 MBs/sec +2025-07-23T19:29:19.0760033Z Cache Size: ~709 MB (743127682 B) +2025-07-23T19:29:19.0878232Z [command]/usr/bin/tar -xf /home/runner/work/_temp/d2a69ecc-e327-4505-a636-70e75d99984a/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd +2025-07-23T19:29:25.9750771Z Cache restored successfully +2025-07-23T19:29:26.1098554Z Cache restored from key: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:26.1119486Z go version go1.23.9 linux/amd64 +2025-07-23T19:29:26.1119673Z +2025-07-23T19:29:26.1119943Z ##[group]go env +2025-07-23T19:29:26.3282528Z GO111MODULE='' +2025-07-23T19:29:26.3284081Z GOARCH='amd64' +2025-07-23T19:29:26.3284705Z GOBIN='' +2025-07-23T19:29:26.3285080Z GOCACHE='/home/runner/.cache/go-build' +2025-07-23T19:29:26.3285557Z GOENV='/home/runner/.config/go/env' +2025-07-23T19:29:26.3285946Z GOEXE='' +2025-07-23T19:29:26.3286157Z GOEXPERIMENT='' +2025-07-23T19:29:26.3286423Z GOFLAGS='' +2025-07-23T19:29:26.3286726Z GOHOSTARCH='amd64' +2025-07-23T19:29:26.3287051Z GOHOSTOS='linux' +2025-07-23T19:29:26.3287621Z GOINSECURE='' +2025-07-23T19:29:26.3287979Z GOMODCACHE='/home/runner/go/pkg/mod' +2025-07-23T19:29:26.3288242Z GONOPROXY='' +2025-07-23T19:29:26.3288414Z GONOSUMDB='' +2025-07-23T19:29:26.3288573Z GOOS='linux' +2025-07-23T19:29:26.3288752Z GOPATH='/home/runner/go' +2025-07-23T19:29:26.3289247Z GOPRIVATE='' +2025-07-23T19:29:26.3289658Z GOPROXY='https://proxy.golang.org,direct' +2025-07-23T19:29:26.3290144Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' +2025-07-23T19:29:26.3290605Z GOSUMDB='sum.golang.org' +2025-07-23T19:29:26.3290974Z GOTMPDIR='' +2025-07-23T19:29:26.3291272Z GOTOOLCHAIN='auto' +2025-07-23T19:29:26.3291908Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' +2025-07-23T19:29:26.3292465Z GOVCS='' +2025-07-23T19:29:26.3292742Z GOVERSION='go1.23.9' +2025-07-23T19:29:26.3293056Z GODEBUG='' +2025-07-23T19:29:26.3293341Z GOTELEMETRY='local' +2025-07-23T19:29:26.3294241Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' +2025-07-23T19:29:26.3294750Z GCCGO='gccgo' +2025-07-23T19:29:26.3295045Z GOAMD64='v1' +2025-07-23T19:29:26.3295326Z AR='ar' +2025-07-23T19:29:26.3295579Z CC='gcc' +2025-07-23T19:29:26.3295840Z CXX='g++' +2025-07-23T19:29:26.3296111Z CGO_ENABLED='1' +2025-07-23T19:29:26.3296489Z GOMOD='/home/runner/work/coreth/coreth/go.mod' +2025-07-23T19:29:26.3296786Z GOWORK='' +2025-07-23T19:29:26.3296962Z CGO_CFLAGS='-O2 -g' +2025-07-23T19:29:26.3297154Z CGO_CPPFLAGS='' +2025-07-23T19:29:26.3297672Z CGO_CXXFLAGS='-O2 -g' +2025-07-23T19:29:26.3297958Z CGO_FFLAGS='-O2 -g' +2025-07-23T19:29:26.3298142Z CGO_LDFLAGS='-O2 -g' +2025-07-23T19:29:26.3298356Z PKG_CONFIG='pkg-config' +2025-07-23T19:29:26.3299577Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build906995900=/tmp/go-build -gno-record-gcc-switches' +2025-07-23T19:29:26.3300487Z +2025-07-23T19:29:26.3300950Z ##[endgroup] +2025-07-23T19:29:26.3468494Z ##[group]Run ./scripts/run_task.sh build-avalanchego-with-coreth +2025-07-23T19:29:26.3468990Z ./scripts/run_task.sh build-avalanchego-with-coreth +2025-07-23T19:29:26.3502635Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:26.3502972Z env: +2025-07-23T19:29:26.3503278Z AVALANCHEGO_CLONE_PATH: /tmp/e2e/warp/avalanchego +2025-07-23T19:29:26.3503706Z ##[endgroup] +2025-07-23T19:29:27.4620224Z task: [build-avalanchego-with-coreth] ./scripts/build_avalanchego_with_coreth.sh +2025-07-23T19:29:27.4745354Z checking out target AvalancheGo version v1.13.3-rc.1 +2025-07-23T19:29:27.4745706Z creating new clone +2025-07-23T19:29:27.4758645Z Cloning into '/tmp/e2e/warp/avalanchego'... +2025-07-23T19:29:34.6710814Z Switched to a new branch 'test-v1.13.3-rc.1' +2025-07-23T19:29:34.6722816Z updating coreth dependency to point to /home/runner/work/coreth/coreth +2025-07-23T19:29:34.7223108Z go: downloading connectrpc.com/connect v1.18.1 +2025-07-23T19:29:34.7244198Z go: downloading github.com/prometheus/client_golang v1.16.0 +2025-07-23T19:29:34.7283857Z go: downloading github.com/prometheus/client_model v0.3.0 +2025-07-23T19:29:34.7286003Z go: downloading github.com/prometheus/common v0.42.0 +2025-07-23T19:29:34.7957711Z go: downloading google.golang.org/protobuf v1.35.2 +2025-07-23T19:29:34.9971377Z go: downloading github.com/jackpal/gateway v1.0.6 +2025-07-23T19:29:35.0009824Z go: downloading github.com/ava-labs/simplex v0.0.0-20250626192006-220e6aeacdc1 +2025-07-23T19:29:35.0157351Z go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.4 +2025-07-23T19:29:35.0400977Z go: downloading github.com/compose-spec/compose-go v1.20.2 +2025-07-23T19:29:35.1168260Z go: downloading github.com/antithesishq/antithesis-sdk-go v0.3.8 +2025-07-23T19:29:35.2134241Z go: downloading github.com/prometheus/procfs v0.10.1 +2025-07-23T19:29:35.2732177Z go: downloading github.com/ava-labs/ledger-avalanche/go v0.0.0-20241009183145-e6f90a8a1a60 +2025-07-23T19:29:35.3187733Z go: downloading github.com/tyler-smith/go-bip32 v1.0.0 +2025-07-23T19:29:35.3529823Z go: downloading github.com/nbutton23/zxcvbn-go v0.0.0-20180912185939-ae427f1e4c1d +2025-07-23T19:29:35.3566313Z go: downloading connectrpc.com/grpcreflect v1.3.0 +2025-07-23T19:29:35.3793536Z go: downloading github.com/inconshreveable/mousetrap v1.1.0 +2025-07-23T19:29:35.3871352Z go: downloading github.com/distribution/reference v0.5.0 +2025-07-23T19:29:35.3872471Z go: downloading github.com/docker/go-connections v0.4.0 +2025-07-23T19:29:35.3885623Z go: downloading github.com/docker/go-units v0.5.0 +2025-07-23T19:29:35.4010904Z go: downloading github.com/mattn/go-shellwords v1.0.12 +2025-07-23T19:29:35.4032524Z go: downloading github.com/opencontainers/go-digest v1.0.0 +2025-07-23T19:29:35.4047785Z go: downloading gotest.tools/v3 v3.4.0 +2025-07-23T19:29:35.4192021Z go: downloading github.com/klauspost/compress v1.15.15 +2025-07-23T19:29:35.4386258Z go: downloading github.com/zondax/ledger-go v1.0.0 +2025-07-23T19:29:35.4532150Z go: downloading github.com/ava-labs/firewood-go-ethhash/ffi v0.0.8 +2025-07-23T19:29:35.4587776Z go: downloading github.com/FactomProject/basen v0.0.0-20150613233007-fe3947df716e +2025-07-23T19:29:35.5324099Z go: downloading github.com/FactomProject/btcutilecc v0.0.0-20130527213604-d3a63a5752ec +2025-07-23T19:29:35.6012903Z go: downloading golang.org/x/oauth2 v0.21.0 +2025-07-23T19:29:35.6432222Z go: downloading github.com/golang-jwt/jwt/v4 v4.5.0 +2025-07-23T19:29:35.6688160Z go: downloading github.com/zondax/hid v0.9.2 +2025-07-23T19:29:35.6771039Z go: downloading github.com/golang-jwt/jwt v3.2.2+incompatible +2025-07-23T19:29:35.7067987Z go: downloading github.com/cmars/basen v0.0.0-20150613233007-fe3947df716e +2025-07-23T19:29:35.7163233Z go: downloading launchpad.net/gocheck v0.0.0-20140225173054-000000000087 +2025-07-23T19:29:35.7269389Z go: downloading github.com/sirupsen/logrus v1.9.0 +2025-07-23T19:29:37.5539344Z building avalanchego +2025-07-23T19:29:37.5659547Z Building AvalancheGo with [go version go1.23.9 linux/amd64]... +2025-07-23T19:30:52.5253289Z ##[group]Run ava-labs/avalanchego/.github/actions/run-monitored-tmpnet-cmd@66ce7a7701db0c4b370f97b339478d5b5ebe919a +2025-07-23T19:30:52.5253808Z with: +2025-07-23T19:30:52.5254196Z run: ./scripts/run_task.sh test-e2e-warp-ci +2025-07-23T19:30:52.5254545Z run_env: AVALANCHEGO_BUILD_PATH=/tmp/e2e/warp/avalanchego/build +2025-07-23T19:30:52.5254856Z artifact_prefix: warp +2025-07-23T19:30:52.5255058Z runtime: process +2025-07-23T19:30:52.5255251Z repository_owner: ava-labs +2025-07-23T19:30:52.5255461Z repository_name: coreth +2025-07-23T19:30:52.5255658Z workflow: CI +2025-07-23T19:30:52.5255833Z run_id: 16480013789 +2025-07-23T19:30:52.5256007Z run_number: 5026 +2025-07-23T19:30:52.5256182Z run_attempt: 1 +2025-07-23T19:30:52.5256351Z job: e2e_warp +2025-07-23T19:30:52.5256542Z ##[endgroup] +2025-07-23T19:30:52.5351281Z ##[group]Run cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f +2025-07-23T19:30:52.5351653Z with: +2025-07-23T19:30:52.5351852Z enable_kvm: true +2025-07-23T19:30:52.5352028Z ##[endgroup] +2025-07-23T19:30:52.5367475Z ##[group]Run ${GITHUB_ACTION_PATH}/install-nix.sh +2025-07-23T19:30:52.5367829Z ${GITHUB_ACTION_PATH}/install-nix.sh +2025-07-23T19:30:52.5396780Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-07-23T19:30:52.5397089Z env: +2025-07-23T19:30:52.5397261Z INPUT_EXTRA_NIX_CONFIG: +2025-07-23T19:30:52.5397479Z INPUT_GITHUB_ACCESS_TOKEN: +2025-07-23T19:30:52.5397694Z INPUT_INSTALL_OPTIONS: +2025-07-23T19:30:52.5397888Z INPUT_INSTALL_URL: +2025-07-23T19:30:52.5398070Z INPUT_NIX_PATH: +2025-07-23T19:30:52.5398256Z INPUT_ENABLE_KVM: true +2025-07-23T19:30:52.5398665Z GITHUB_TOKEN: *** +2025-07-23T19:30:52.5398846Z ##[endgroup] +2025-07-23T19:30:52.5472686Z ##[group]Enabling KVM support +2025-07-23T19:30:52.5539671Z KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm" +2025-07-23T19:30:52.5842697Z Enabled KVM +2025-07-23T19:30:52.5843328Z ##[endgroup] +2025-07-23T19:30:52.5844295Z ##[group]Installing Nix +2025-07-23T19:30:52.6129696Z installer options: --no-channel-add --darwin-use-unencrypted-nix-store-volume --nix-extra-conf-file /tmp/tmp.W0ihg3Z3cO/nix.conf --daemon --daemon-user-count 8 +2025-07-23T19:30:52.9227146Z * Host releases.nixos.org:443 was resolved. +2025-07-23T19:30:52.9227702Z * IPv6: 2a04:4e42:77::729 +2025-07-23T19:30:52.9228051Z * IPv4: 146.75.30.217 +2025-07-23T19:30:52.9228381Z * Trying 146.75.30.217:443... +2025-07-23T19:30:52.9278031Z * Connected to releases.nixos.org (146.75.30.217) port 443 +2025-07-23T19:30:52.9292375Z * ALPN: curl offers h2,http/1.1 +2025-07-23T19:30:52.9294145Z } [5 bytes data] +2025-07-23T19:30:52.9294908Z * TLSv1.3 (OUT), TLS handshake, Client hello (1): +2025-07-23T19:30:52.9296396Z } [512 bytes data] +2025-07-23T19:30:52.9506193Z * CAfile: /etc/ssl/certs/ca-certificates.crt +2025-07-23T19:30:52.9506726Z * CApath: /etc/ssl/certs +2025-07-23T19:30:52.9510348Z { [5 bytes data] +2025-07-23T19:30:52.9511148Z * TLSv1.3 (IN), TLS handshake, Server hello (2): +2025-07-23T19:30:52.9511645Z { [104 bytes data] +2025-07-23T19:30:52.9512025Z * TLSv1.2 (IN), TLS handshake, Certificate (11): +2025-07-23T19:30:52.9512476Z { [2827 bytes data] +2025-07-23T19:30:52.9513040Z * TLSv1.2 (IN), TLS handshake, Server key exchange (12): +2025-07-23T19:30:52.9513522Z { [300 bytes data] +2025-07-23T19:30:52.9514282Z * TLSv1.2 (IN), TLS handshake, Server finished (14): +2025-07-23T19:30:52.9514742Z { [4 bytes data] +2025-07-23T19:30:52.9516400Z * TLSv1.2 (OUT), TLS handshake, Client key exchange (16): +2025-07-23T19:30:52.9516902Z } [37 bytes data] +2025-07-23T19:30:52.9517335Z * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1): +2025-07-23T19:30:52.9517841Z } [1 bytes data] +2025-07-23T19:30:52.9518142Z * TLSv1.2 (OUT), TLS handshake, Finished (20): +2025-07-23T19:30:52.9518408Z } [16 bytes data] +2025-07-23T19:30:52.9570162Z * TLSv1.2 (IN), TLS handshake, Finished (20): +2025-07-23T19:30:52.9570633Z { [16 bytes data] +2025-07-23T19:30:52.9571625Z * SSL connection using TLSv1.2 / ECDHE-RSA-CHACHA20-POLY1305 / X25519 / RSASSA-PSS +2025-07-23T19:30:52.9572187Z * ALPN: server accepted h2 +2025-07-23T19:30:52.9572412Z * Server certificate: +2025-07-23T19:30:52.9572631Z * subject: CN=releases.nixos.org +2025-07-23T19:30:52.9572878Z * start date: Oct 11 20:56:16 2024 GMT +2025-07-23T19:30:52.9573128Z * expire date: Nov 12 20:56:15 2025 GMT +2025-07-23T19:30:52.9573504Z * subjectAltName: host "releases.nixos.org" matched cert's "releases.nixos.org" +2025-07-23T19:30:52.9574218Z * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2024 Q4 +2025-07-23T19:30:52.9574581Z * SSL certificate verify ok. +2025-07-23T19:30:52.9575008Z * Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption +2025-07-23T19:30:52.9575623Z * Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption +2025-07-23T19:30:52.9576268Z * Certificate level 2: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption +2025-07-23T19:30:52.9576705Z } [5 bytes data] +2025-07-23T19:30:52.9576887Z * using HTTP/2 +2025-07-23T19:30:52.9577218Z * [HTTP/2] [1] OPENED stream for https://releases.nixos.org/nix/nix-2.26.3/install +2025-07-23T19:30:52.9577576Z * [HTTP/2] [1] [:method: GET] +2025-07-23T19:30:52.9577797Z * [HTTP/2] [1] [:scheme: https] +2025-07-23T19:30:52.9578055Z * [HTTP/2] [1] [:authority: releases.nixos.org] +2025-07-23T19:30:52.9578345Z * [HTTP/2] [1] [:path: /nix/nix-2.26.3/install] +2025-07-23T19:30:52.9578604Z * [HTTP/2] [1] [user-agent: curl/8.5.0] +2025-07-23T19:30:52.9578846Z * [HTTP/2] [1] [accept: */*] +2025-07-23T19:30:52.9579066Z } [5 bytes data] +2025-07-23T19:30:52.9579264Z > GET /nix/nix-2.26.3/install HTTP/2 +2025-07-23T19:30:52.9579505Z > Host: releases.nixos.org +2025-07-23T19:30:52.9579749Z > User-Agent: curl/8.5.0 +2025-07-23T19:30:52.9580131Z > Accept: */* +2025-07-23T19:30:52.9580291Z > +2025-07-23T19:30:52.9621323Z { [5 bytes data] +2025-07-23T19:30:52.9642738Z < HTTP/2 200 +2025-07-23T19:30:52.9643399Z < last-modified: Wed, 05 Mar 2025 18:21:15 GMT +2025-07-23T19:30:52.9644592Z < etag: "c6753896884bce9b95ec3ca7be157ef6" +2025-07-23T19:30:52.9645202Z < x-amz-server-side-encryption: AES256 +2025-07-23T19:30:52.9645744Z < content-type: text/plain +2025-07-23T19:30:52.9646195Z < server: AmazonS3 +2025-07-23T19:30:52.9646580Z < via: 1.1 varnish, 1.1 varnish +2025-07-23T19:30:52.9647058Z < access-control-allow-origin: * +2025-07-23T19:30:52.9647531Z < accept-ranges: bytes +2025-07-23T19:30:52.9647945Z < date: Wed, 23 Jul 2025 19:30:52 GMT +2025-07-23T19:30:52.9648405Z < age: 9629 +2025-07-23T19:30:52.9648907Z < x-served-by: cache-dub4357-DUB, cache-iad-kiad7000142-IAD +2025-07-23T19:30:52.9649476Z < x-cache: HIT, HIT +2025-07-23T19:30:52.9649777Z < x-cache-hits: 3, 1 +2025-07-23T19:30:52.9650097Z < content-length: 4267 +2025-07-23T19:30:52.9650400Z < +2025-07-23T19:30:52.9650655Z { [4267 bytes data] +2025-07-23T19:30:52.9651052Z * Connection #0 to host releases.nixos.org left intact +2025-07-23T19:30:52.9721204Z downloading Nix 2.26.3 binary tarball for x86_64-linux from 'https://releases.nixos.org/nix/nix-2.26.3/nix-2.26.3-x86_64-linux.tar.xz' to '/tmp/nix-binary-tarball-unpack.BFXbScEBNw'... +2025-07-23T19:30:52.9789527Z % Total % Received % Xferd Average Speed Time Time Time Current +2025-07-23T19:30:52.9791328Z Dload Upload Total Spent Left Speed +2025-07-23T19:30:52.9792614Z +2025-07-23T19:30:53.0430725Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 +2025-07-23T19:30:53.1646756Z 0 22.6M 0 143k 0 0 2232k 0 0:00:10 --:--:-- 0:00:10 2207k +2025-07-23T19:30:53.1647263Z 100 22.6M 100 22.6M 0 0 121M 0 --:--:-- --:--:-- --:--:-- 121M +2025-07-23T19:30:54.7498746Z Note: a multi-user installation is possible. See https://nixos.org/manual/nix/stable/installation/installing-binary.html#multi-user-installation +2025-07-23T19:30:54.7508677Z Warning: the flag --darwin-use-unencrypted-nix-store-volume +2025-07-23T19:30:54.7509827Z is no longer needed and will be removed in the future. +2025-07-23T19:30:54.7510220Z +2025-07-23T19:30:54.7520167Z Switching to the Multi-user Installer +2025-07-23T19:30:54.7620343Z Welcome to the Multi-User Nix Installation +2025-07-23T19:30:54.7629734Z  +2025-07-23T19:30:54.7630248Z This installation tool will set up your computer with the Nix package +2025-07-23T19:30:54.7630863Z manager. This will happen in a few stages: +2025-07-23T19:30:54.7631061Z +2025-07-23T19:30:54.7631246Z 1. Make sure your computer doesn't already have Nix. If it does, I +2025-07-23T19:30:54.7631734Z will show you instructions on how to clean up your old install. +2025-07-23T19:30:54.7632100Z +2025-07-23T19:30:54.7632382Z 2. Show you what I am going to install and where. Then I will ask +2025-07-23T19:30:54.7632976Z if you are ready to continue. +2025-07-23T19:30:54.7633209Z +2025-07-23T19:30:54.7633518Z 3. Create the system users (uids [30001..30008]) and groups (gid 30000) +2025-07-23T19:30:54.7634295Z that the Nix daemon uses to run builds. To create system users +2025-07-23T19:30:54.7634707Z in a different range, exit and run this tool again with +2025-07-23T19:30:54.7635024Z NIX_FIRST_BUILD_UID set. +2025-07-23T19:30:54.7635184Z +2025-07-23T19:30:54.7635333Z 4. Perform the basic installation of the Nix files daemon. +2025-07-23T19:30:54.7635546Z +2025-07-23T19:30:54.7635728Z 5. Configure your shell to import special Nix Profile files, so you +2025-07-23T19:30:54.7636047Z can use Nix. +2025-07-23T19:30:54.7636159Z +2025-07-23T19:30:54.7636241Z 6. Start the Nix daemon. +2025-07-23T19:30:54.7636373Z +2025-07-23T19:30:54.7636628Z Would you like to see a more detailed list of what I will do? +2025-07-23T19:30:54.7637021Z No TTY, assuming you would say yes :) +2025-07-23T19:30:54.7642161Z +2025-07-23T19:30:54.7642446Z I will: +2025-07-23T19:30:54.7642569Z +2025-07-23T19:30:54.7642744Z - make sure your computer doesn't already have Nix files +2025-07-23T19:30:54.7643173Z (if it does, I will tell you how to clean them up.) +2025-07-23T19:30:54.7643846Z - create local users (see the list above for the users I'll make) +2025-07-23T19:30:54.7644697Z - create a local group (nixbld) +2025-07-23T19:30:54.7645009Z - install Nix in /nix +2025-07-23T19:30:54.7645248Z - create a configuration file in /etc/nix +2025-07-23T19:30:54.7645608Z - set up the "default profile" by creating some Nix-related files in +2025-07-23T19:30:54.7645939Z /root +2025-07-23T19:30:54.7657339Z - back up /etc/bash.bashrc to /etc/bash.bashrc.backup-before-nix +2025-07-23T19:30:54.7657800Z - update /etc/bash.bashrc to include some Nix configuration +2025-07-23T19:30:54.7668881Z - load and start a service (at /etc/systemd/system/nix-daemon.service +2025-07-23T19:30:54.7669366Z and /etc/systemd/system/nix-daemon.socket) for nix-daemon +2025-07-23T19:30:54.7669625Z +2025-07-23T19:30:54.7671459Z Ready to continue? +2025-07-23T19:30:54.7671997Z No TTY, assuming you would say yes :) +2025-07-23T19:30:54.7692854Z +2025-07-23T19:30:54.7693422Z ---- let's talk about sudo ----------------------------------------------------- +2025-07-23T19:30:54.7704576Z This script is going to call sudo a lot. Normally, it would show you +2025-07-23T19:30:54.7705351Z exactly what commands it is running and why. However, the script is +2025-07-23T19:30:54.7705718Z run in a headless fashion, like this: +2025-07-23T19:30:54.7705882Z +2025-07-23T19:30:54.7706044Z $ curl -L https://nixos.org/nix/install | sh +2025-07-23T19:30:54.7706357Z +2025-07-23T19:30:54.7706634Z or maybe in a CI pipeline. Because of that, I'm going to skip the +2025-07-23T19:30:54.7707114Z verbose output in the interest of brevity. +2025-07-23T19:30:54.7707296Z +2025-07-23T19:30:54.7707378Z If you would like to +2025-07-23T19:30:54.7707612Z see the output, try like this: +2025-07-23T19:30:54.7707759Z +2025-07-23T19:30:54.7707937Z $ curl -L -o install-nix https://nixos.org/nix/install +2025-07-23T19:30:54.7708234Z $ sh ./install-nix +2025-07-23T19:30:54.7708559Z +2025-07-23T19:30:54.7708566Z +2025-07-23T19:30:54.7708772Z ~~> Checking for artifacts of previous installs +2025-07-23T19:30:54.7716889Z Before I try to install, I'll check for signs Nix already is or has +2025-07-23T19:30:54.7717483Z been installed on this system. +2025-07-23T19:30:54.7750360Z +2025-07-23T19:30:54.7751050Z ---- Nix config report --------------------------------------------------------- +2025-07-23T19:30:54.7751812Z  Temp Dir: /tmp/tmp.eIS0LfBP7g +2025-07-23T19:30:54.7752362Z  Nix Root: /nix +2025-07-23T19:30:54.7752731Z  Build Users: 8 +2025-07-23T19:30:54.7752997Z  Build Group ID: 30000 +2025-07-23T19:30:54.7753260Z Build Group Name: nixbld +2025-07-23T19:30:54.7753409Z +2025-07-23T19:30:54.7753519Z build users: +2025-07-23T19:30:54.7753743Z  Username: UID +2025-07-23T19:30:54.7780632Z  nixbld1: 30001 +2025-07-23T19:30:54.7790757Z  nixbld2: 30002 +2025-07-23T19:30:54.7800695Z  nixbld3: 30003 +2025-07-23T19:30:54.7810884Z  nixbld4: 30004 +2025-07-23T19:30:54.7820865Z  nixbld5: 30005 +2025-07-23T19:30:54.7830787Z  nixbld6: 30006 +2025-07-23T19:30:54.7840539Z  nixbld7: 30007 +2025-07-23T19:30:54.7850724Z  nixbld8: 30008 +2025-07-23T19:30:54.7851001Z +2025-07-23T19:30:54.7851237Z Ready to continue? +2025-07-23T19:30:54.7851832Z No TTY, assuming you would say yes :) +2025-07-23T19:30:54.7852317Z +2025-07-23T19:30:54.7852616Z ~~> Setting up the build group nixbld +2025-07-23T19:30:54.8255214Z  Created: Yes +2025-07-23T19:30:54.8278009Z +2025-07-23T19:30:54.8278412Z ~~> Setting up the build user nixbld1 +2025-07-23T19:30:54.8428505Z useradd warning: nixbld1's uid 30001 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:54.8513671Z  Created: Yes +2025-07-23T19:30:54.8519215Z  Hidden: Yes +2025-07-23T19:30:54.8537237Z  Home Directory: /var/empty +2025-07-23T19:30:54.8557228Z  Note: Nix build user 1 +2025-07-23T19:30:54.8574927Z  Logins Disabled: Yes +2025-07-23T19:30:54.8597506Z  Member of nixbld: Yes +2025-07-23T19:30:54.8615469Z  PrimaryGroupID: 30000 +2025-07-23T19:30:54.8626225Z +2025-07-23T19:30:54.8626547Z ~~> Setting up the build user nixbld2 +2025-07-23T19:30:54.8754882Z useradd warning: nixbld2's uid 30002 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:54.8834246Z  Created: Yes +2025-07-23T19:30:54.8839523Z  Hidden: Yes +2025-07-23T19:30:54.8857393Z  Home Directory: /var/empty +2025-07-23T19:30:54.8877611Z  Note: Nix build user 2 +2025-07-23T19:30:54.8895463Z  Logins Disabled: Yes +2025-07-23T19:30:54.8913583Z  Member of nixbld: Yes +2025-07-23T19:30:54.8931732Z  PrimaryGroupID: 30000 +2025-07-23T19:30:54.8942415Z +2025-07-23T19:30:54.8942735Z ~~> Setting up the build user nixbld3 +2025-07-23T19:30:54.9073046Z useradd warning: nixbld3's uid 30003 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:54.9156812Z  Created: Yes +2025-07-23T19:30:54.9162029Z  Hidden: Yes +2025-07-23T19:30:54.9180478Z  Home Directory: /var/empty +2025-07-23T19:30:54.9200301Z  Note: Nix build user 3 +2025-07-23T19:30:54.9217827Z  Logins Disabled: Yes +2025-07-23T19:30:54.9236144Z  Member of nixbld: Yes +2025-07-23T19:30:54.9259387Z  PrimaryGroupID: 30000 +2025-07-23T19:30:54.9271371Z +2025-07-23T19:30:54.9272815Z ~~> Setting up the build user nixbld4 +2025-07-23T19:30:54.9401909Z useradd warning: nixbld4's uid 30004 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:54.9483597Z  Created: Yes +2025-07-23T19:30:54.9489197Z  Hidden: Yes +2025-07-23T19:30:54.9507725Z  Home Directory: /var/empty +2025-07-23T19:30:54.9527573Z  Note: Nix build user 4 +2025-07-23T19:30:54.9545715Z  Logins Disabled: Yes +2025-07-23T19:30:54.9563817Z  Member of nixbld: Yes +2025-07-23T19:30:54.9582144Z  PrimaryGroupID: 30000 +2025-07-23T19:30:54.9592912Z +2025-07-23T19:30:54.9593509Z ~~> Setting up the build user nixbld5 +2025-07-23T19:30:54.9740614Z useradd warning: nixbld5's uid 30005 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:54.9826950Z  Created: Yes +2025-07-23T19:30:54.9832258Z  Hidden: Yes +2025-07-23T19:30:54.9850518Z  Home Directory: /var/empty +2025-07-23T19:30:54.9870507Z  Note: Nix build user 5 +2025-07-23T19:30:54.9888234Z  Logins Disabled: Yes +2025-07-23T19:30:54.9906381Z  Member of nixbld: Yes +2025-07-23T19:30:54.9924867Z  PrimaryGroupID: 30000 +2025-07-23T19:30:54.9935227Z +2025-07-23T19:30:54.9935598Z ~~> Setting up the build user nixbld6 +2025-07-23T19:30:55.0064905Z useradd warning: nixbld6's uid 30006 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:55.0148595Z  Created: Yes +2025-07-23T19:30:55.0154014Z  Hidden: Yes +2025-07-23T19:30:55.0171953Z  Home Directory: /var/empty +2025-07-23T19:30:55.0192132Z  Note: Nix build user 6 +2025-07-23T19:30:55.0210180Z  Logins Disabled: Yes +2025-07-23T19:30:55.0229043Z  Member of nixbld: Yes +2025-07-23T19:30:55.0246956Z  PrimaryGroupID: 30000 +2025-07-23T19:30:55.0257900Z +2025-07-23T19:30:55.0258312Z ~~> Setting up the build user nixbld7 +2025-07-23T19:30:55.0386703Z useradd warning: nixbld7's uid 30007 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:55.0482601Z  Created: Yes +2025-07-23T19:30:55.0488060Z  Hidden: Yes +2025-07-23T19:30:55.0507686Z  Home Directory: /var/empty +2025-07-23T19:30:55.0528272Z  Note: Nix build user 7 +2025-07-23T19:30:55.0546387Z  Logins Disabled: Yes +2025-07-23T19:30:55.0565166Z  Member of nixbld: Yes +2025-07-23T19:30:55.0582817Z  PrimaryGroupID: 30000 +2025-07-23T19:30:55.0593488Z +2025-07-23T19:30:55.0594085Z ~~> Setting up the build user nixbld8 +2025-07-23T19:30:55.0727641Z useradd warning: nixbld8's uid 30008 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:55.0813618Z  Created: Yes +2025-07-23T19:30:55.0819185Z  Hidden: Yes +2025-07-23T19:30:55.0838065Z  Home Directory: /var/empty +2025-07-23T19:30:55.0858050Z  Note: Nix build user 8 +2025-07-23T19:30:55.0876445Z  Logins Disabled: Yes +2025-07-23T19:30:55.0895169Z  Member of nixbld: Yes +2025-07-23T19:30:55.0913184Z  PrimaryGroupID: 30000 +2025-07-23T19:30:55.0913514Z +2025-07-23T19:30:55.0914067Z ~~> Setting up the basic directory structure +2025-07-23T19:30:55.1047013Z install: creating directory '/nix' +2025-07-23T19:30:55.1047539Z install: creating directory '/nix/var' +2025-07-23T19:30:55.1048019Z install: creating directory '/nix/var/log' +2025-07-23T19:30:55.1048338Z install: creating directory '/nix/var/log/nix' +2025-07-23T19:30:55.1048644Z install: creating directory '/nix/var/log/nix/drvs' +2025-07-23T19:30:55.1048944Z install: creating directory '/nix/var/nix' +2025-07-23T19:30:55.1049256Z install: creating directory '/nix/var/nix/db' +2025-07-23T19:30:55.1049786Z install: creating directory '/nix/var/nix/gcroots' +2025-07-23T19:30:55.1050141Z install: creating directory '/nix/var/nix/profiles' +2025-07-23T19:30:55.1050476Z install: creating directory '/nix/var/nix/temproots' +2025-07-23T19:30:55.1050818Z install: creating directory '/nix/var/nix/userpool' +2025-07-23T19:30:55.1051157Z install: creating directory '/nix/var/nix/daemon-socket' +2025-07-23T19:30:55.1051525Z install: creating directory '/nix/var/nix/gcroots/per-user' +2025-07-23T19:30:55.1051917Z install: creating directory '/nix/var/nix/profiles/per-user' +2025-07-23T19:30:55.1129251Z install: creating directory '/nix/store' +2025-07-23T19:30:55.1214319Z install: creating directory '/etc/nix' +2025-07-23T19:30:55.1224158Z +2025-07-23T19:30:55.1224687Z ~~> Installing Nix +2025-07-23T19:30:55.3190252Z  Alright! We have our first nix at /nix/store/x3235311q3n51rppm2y2ycwd7nb3mgpn-nix-2.26.3 +2025-07-23T19:30:55.3906066Z Just finished getting the nix database ready. +2025-07-23T19:30:55.3908889Z +2025-07-23T19:30:55.3910097Z ~~> Setting up shell profiles: /etc/bashrc /etc/profile.d/nix.sh /etc/zshrc /etc/bash.bashrc /etc/zsh/zshrc +2025-07-23T19:30:55.4075785Z  +2025-07-23T19:30:55.4076053Z # Nix +2025-07-23T19:30:55.4076495Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-07-23T19:30:55.4077365Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-07-23T19:30:55.4077951Z fi +2025-07-23T19:30:55.4078231Z # End Nix +2025-07-23T19:30:55.4078398Z +2025-07-23T19:30:55.4246708Z +2025-07-23T19:30:55.4246866Z # Nix +2025-07-23T19:30:55.4247333Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-07-23T19:30:55.4247947Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-07-23T19:30:55.4248492Z fi +2025-07-23T19:30:55.4248770Z # End Nix +2025-07-23T19:30:55.4248946Z +2025-07-23T19:30:55.4418574Z +2025-07-23T19:30:55.4418950Z # Nix +2025-07-23T19:30:55.4419640Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-07-23T19:30:55.4420527Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-07-23T19:30:55.4421084Z fi +2025-07-23T19:30:55.4421361Z # End Nix +2025-07-23T19:30:55.4421519Z +2025-07-23T19:30:55.4591696Z +2025-07-23T19:30:55.4592079Z # Nix +2025-07-23T19:30:55.4592638Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-07-23T19:30:55.4593542Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-07-23T19:30:55.4594761Z fi +2025-07-23T19:30:55.4595042Z # End Nix +2025-07-23T19:30:55.4595210Z +2025-07-23T19:30:55.4617698Z +2025-07-23T19:30:55.4618794Z ~~> Setting up shell profiles for Fish with conf.d/nix.fish inside /etc/fish /usr/local/etc/fish /opt/homebrew/etc/fish /opt/local/etc/fish +2025-07-23T19:30:55.4679396Z  +2025-07-23T19:30:55.4679812Z ~~> Setting up the default profile +2025-07-23T19:30:55.4970779Z installing 'nix-2.26.3' +2025-07-23T19:30:55.5101133Z building '/nix/store/5afca9ydks0pp5szkwwhi7a6m2zmgk9g-user-environment.drv'... +2025-07-23T19:30:55.5496267Z installing 'nss-cacert-3.107' +2025-07-23T19:30:55.5622645Z building '/nix/store/ilxzpc39hcw5jr229rmajjkyz1a0fym1-user-environment.drv'... +2025-07-23T19:30:55.5831307Z  +2025-07-23T19:30:55.5831798Z ~~> Setting up the nix-daemon systemd service +2025-07-23T19:30:55.6195297Z Created symlink /etc/systemd/system/nix-daemon.service → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.service. +2025-07-23T19:30:55.8843330Z Created symlink /etc/systemd/system/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. +2025-07-23T19:30:55.8845550Z Created symlink /etc/systemd/system/sockets.target.wants/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. +2025-07-23T19:30:56.4371599Z Alright! We're done! +2025-07-23T19:30:56.4392444Z Try it! Open a new terminal, and type: +2025-07-23T19:30:56.4392976Z +2025-07-23T19:30:56.4393238Z $ nix-shell -p nix-info --run "nix-info -m" +2025-07-23T19:30:56.4393576Z +2025-07-23T19:30:56.4394109Z Thank you for using this installer. If you have any feedback or need +2025-07-23T19:30:56.4394696Z help, don't hesitate: +2025-07-23T19:30:56.4394914Z +2025-07-23T19:30:56.4395063Z You can open an issue at +2025-07-23T19:30:56.4395683Z https://github.com/NixOS/nix/issues/new?labels=installer&template=installer.md +2025-07-23T19:30:56.4396200Z +2025-07-23T19:30:56.4396484Z Or get in touch with the community: https://nixos.org/community +2025-07-23T19:30:56.4412591Z +2025-07-23T19:30:56.4413304Z ---- Reminders ----------------------------------------------------------------- +2025-07-23T19:30:56.4414525Z [ 1 ] +2025-07-23T19:30:56.4415020Z Nix won't work in active shell sessions until you restart them. +2025-07-23T19:30:56.4415435Z +2025-07-23T19:30:56.5111193Z ##[endgroup] +2025-07-23T19:30:56.5169235Z ##[group]Run /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --command echo "dependencies installed" +2025-07-23T19:30:56.5170606Z /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --command echo "dependencies installed" +2025-07-23T19:30:56.5200327Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-07-23T19:30:56.5200629Z env: +2025-07-23T19:30:56.5200808Z TMPDIR: /home/runner/work/_temp +2025-07-23T19:30:56.5201048Z ##[endgroup] +2025-07-23T19:30:56.5267924Z No local flake found, will attempt to use avalanchego flake +2025-07-23T19:30:56.5350627Z Starting nix shell for github:ava-labs/avalanchego?ref=v1.13.3-rc.1 +2025-07-23T19:30:56.7350385Z unpacking 'github:ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a' into the Git cache... +2025-07-23T19:30:58.3945669Z copying path '/nix/store/i99indk3y6pc3sm0k1xx3nakm193lqzb-source' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7445211Z copying path '/nix/store/899rx4l5zz1za8nx7ijp7swv5ibc8wx2-git-2.47.2-doc' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7450953Z copying path '/nix/store/zpab59ialz19x6f65jbjf5xb8waa54av-iana-etc-20240318' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7474145Z copying path '/nix/store/dgzz9k53hz1qgklnj9667xzliyidj9cs-mailcap-2.1.54' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7480512Z copying path '/nix/store/hnpph37w6p5jfspwf5pksljpf0wqwjg3-perl5.40.0-Digest-HMAC-1.04' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7484853Z copying path '/nix/store/cnb01qfmg8c3irp630nplhwa201d7xsr-perl5.40.0-FCGI-ProcManager-0.28' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7486255Z copying path '/nix/store/v657ak4hdkixvq99rk3qvyh28in945dv-perl5.40.0-HTML-TagCloud-0.38' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7502222Z copying path '/nix/store/9qrv0d0yd9wss610gjzv3507ry6v9mzw-perl5.40.0-URI-5.21' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7506771Z copying path '/nix/store/pz7y4qd8lyhg9y6wmb9hynivx36f53zp-perl5.40.0-libnet-3.15' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7510229Z copying path '/nix/store/l6mypzy4rvkxd5kwzs18d88syirislib-tzdata-2024b' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7526301Z copying path '/nix/store/czlhi3r9b6ip4xyynwibfhm458ljwsir-gcc-13.3.0-libgcc' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7534066Z copying path '/nix/store/d8qbcrirc6jidfacy0qa50zy07i15xcz-gnu-config-2024-01-01' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7586517Z copying path '/nix/store/rscnjwdmhya0wcdmbygr3jpz6p39kvhr-perl5.40.0-Encode-Locale-1.05' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7590941Z copying path '/nix/store/w9yrswzdifcjhg0righ76aqb6bpslhkb-perl5.40.0-Mozilla-CA-20230821' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7593127Z copying path '/nix/store/74bbxwiamv62d2l089f1r8apv295vsry-perl5.40.0-HTML-Tagset-3.20' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7594830Z copying path '/nix/store/krx6xw6wxakapdkviirq57yh3nl3227h-perl5.40.0-IO-HTML-1.004' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7598049Z copying path '/nix/store/3r0pprxsd9n52nb2yqq3idwb75d0spzd-perl5.40.0-LWP-MediaTypes-6.04' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7690284Z copying path '/nix/store/maxa3xhmxggrc5v2vc0c3pjb79hjlkp9-glibc-2.40-66' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7694255Z copying path '/nix/store/dvsai0ym9czjl5mcsarcdwccb70615n4-linux-headers-6.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7705403Z copying path '/nix/store/x6i8jiz3yv3h209xfbz9a3ch1sm16167-dns-root-data-2024-06-20' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7708355Z copying path '/nix/store/5ahjfkydg49xvbr3vghhv317prgspnf3-mirrors-list' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7709753Z copying path '/nix/store/swnhrfysvmwjvibcafm0im377pcfs80v-curl-8.12.1-man' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7715303Z copying path '/nix/store/970fk2m63qra4ybkpp99rw7mld9fphlv-nghttp2-1.64.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7836662Z copying path '/nix/store/frpqzb3223826xq72s0fcjmjmj50wpyn-perl5.40.0-Authen-SASL-2.1700' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7886708Z copying path '/nix/store/ldlsmrf2rrq28s08mzjk245vr26dwwhi-perl5.40.0-Test-RequiresInternet-0.05' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7888412Z copying path '/nix/store/hz5m52dx8x6vvi5pp0yikxb3b05bmi2j-perl5.40.0-Test-Needs-0.002010' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7889976Z copying path '/nix/store/vlfgix8rcbj3l9yk0rna1damxkafbq18-perl5.40.0-Net-HTTP-6.23' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7901102Z copying path '/nix/store/vvjpgyk6jgd6k74pgpjrln6m6aqyiaig-perl5.40.0-Try-Tiny-0.31' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7905606Z copying path '/nix/store/6aqxgf5ygcscqsh4p9krd0dz2hc1cn0w-perl5.40.0-WWW-RobotRules-6.02' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7907325Z copying path '/nix/store/lj7p9q5kgmdcq768rvsgvjndi42mjcn8-publicsuffix-list-0-unstable-2024-10-25' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7908952Z copying path '/nix/store/5xvxvpl9armf0p6y9m4g1zl1mypvr9m7-perl5.40.0-TimeDate-2.33' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7925653Z copying path '/nix/store/i9ymkbklv1q9yzl7wwx7300wbkqdln0r-update-autotools-gnu-config-scripts-hook' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8170609Z copying path '/nix/store/2h648f4xlzszyc01yf67xd2rgira65js-perl5.40.0-Test-Fatal-0.017' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8283237Z copying path '/nix/store/shx8jax9b662cd9nlml731hh9wks24v1-perl5.40.0-HTTP-Date-6.06' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8484802Z copying path '/nix/store/0m34prvcx3d3vd9f4djbaqji7yb9swsh-perl5.40.0-HTTP-CookieJar-0.014' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8486464Z copying path '/nix/store/i9hiqc4dfksm9cpqvff39smfpn49zbj6-perl5.40.0-File-Listing-6.16' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8839068Z copying path '/nix/store/23cshhh8k7z46gadr86krv15xphggawm-kubectl-1.31.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8844924Z copying path '/nix/store/1fqgvq0i498w4ynywyj224i49izzzqrk-protoc-gen-go-grpc-1.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8846465Z copying path '/nix/store/as8g73awbgrhpf5p6qjnrd5v9anw74ix-go-task-3.39.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8847830Z copying path '/nix/store/19402vwa1rndilww6fpbviz0lza8846p-kind-0.24.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8849374Z copying path '/nix/store/i7r45jjmvfxiw8j7ihjx51jachylq1si-protoc-gen-go-1.35.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3492003Z copying path '/nix/store/vlgwyb076hkz7yv96sjnj9msb1jn1ggz-attr-2.5.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3494371Z copying path '/nix/store/8vpg72ik2kgxfj05lc56hkqrdrfl8xi9-bash-5.2p37' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3497669Z copying path '/nix/store/wg9gg3zkwcqhyycj0vkfnhgk5a4z9faq-ed-1.20.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3505659Z copying path '/nix/store/83s1wqvrx7yvy3g6dmdr2icgg3qqbjcp-brotli-1.1.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3507054Z copying path '/nix/store/c9z2sp8dyx1k0zk374v1142hmphashd0-buf-1.47.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3508471Z copying path '/nix/store/fcqfyri9kljs5jd7h556f004qmci1qin-expand-response-params' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3509898Z copying path '/nix/store/0hv5ymwkczx3ak8h3yldfbwbab33jnrw-expat-2.6.4' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3511468Z copying path '/nix/store/mhd0rk497xm0xnip7262xdw9bylvzh99-gcc-13.3.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3515312Z copying path '/nix/store/qiisx6c7qpyzq522j3icsfhj8ayw6ah4-bzip2-1.0.8' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3519558Z copying path '/nix/store/cfb4pxnfh2sf4csk8xh7abfqv96k66nh-glibc-2.40-66-getent' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3521197Z copying path '/nix/store/8k19h07hh2g1w5kp5yglzddswnvdmxpy-gmp-6.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3522594Z copying path '/nix/store/7zv1sq1k25gk2rvgxnm262vp5hydkv1a-gdbm-1.24-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3524132Z copying path '/nix/store/m3da56j3r7h4hp0kr8v1xsnk16x900yf-gnumake-4.4.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3527832Z copying path '/nix/store/2kiskq24j06g4qw3xs8zsy2dkawh4gxk-glibc-2.40-66-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3529342Z copying path '/nix/store/3p3fwczck2yn1wwfjnymzkz8w11vbvg7-gawk-5.3.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3648861Z copying path '/nix/store/3ks7b6p43dpvnlnxgvlcy2jaf1np37p2-gnused-4.9' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3738602Z copying path '/nix/store/1fby1pxf0z16lgl728i2sqwqr2hrw2h8-json-c-0.17' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3761551Z copying path '/nix/store/mwwpv4k7skbx4vr2qjc89pvs7mhmgapb-k9s-0.32.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3839671Z copying path '/nix/store/dyizbk50iglbibrbwbgw2mhgskwb6ham-acl-2.3.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3841856Z copying path '/nix/store/79kh226vw8rrk62jbs27hdad1clwy447-keyutils-1.6.3-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3935723Z copying path '/nix/store/r4p475lxvaklr9rj8l2a4sahkx5c0209-getent-glibc-2.40-66' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3998349Z copying path '/nix/store/yyfzan4mn874v885jy6fs598gjb31c4l-bzip2-1.0.8-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4000745Z copying path '/nix/store/wnsn67xb3i072b6i496y002byvc3ipa3-kubernetes-helm-3.16.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4282882Z copying path '/nix/store/q57zi48njdcgxy4n8d5lm5pf746drc8f-isl-0.20' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4285268Z copying path '/nix/store/bpzy7snv1xr7s1z2xi7bw0q5z9j6g1gg-libantlr3c-3.4' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4368975Z copying path '/nix/store/0iabf1jhsfrrxkdi599kb8m37p82yr1z-audit-4.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4611683Z copying path '/nix/store/nc394xps4al1r99ziabqvajbkrhxr5b7-gzip-1.13' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4646637Z copying path '/nix/store/ky06iawcwsvxmx8yw66y2a7iy7b14yii-libapparmor-4.0.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4652837Z copying path '/nix/store/pmg7hw4ar16dhx5hk6jswvxy349wzsm7-gnutar-1.35' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4743513Z copying path '/nix/store/fx6mfndjsbb0dqn9jzf1ksz9wf1dlrq7-libcap-2.70-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4794592Z copying path '/nix/store/81awch8mhqanda1vy0c09bflgra4cxh0-glibc-2.40-66-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4815742Z copying path '/nix/store/7yf5ijcl2lh90xs5nkrdpfdvcmc9fnc5-libcbor-0.11.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4859977Z copying path '/nix/store/bldybfhh9v9dvpms8kh87v1a6jp6i28p-libevent-2.1.12' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.5129201Z copying path '/nix/store/wxgvd9mivxdbahxidq751gxyz7x7jb8n-libffi-3.4.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.5295568Z copying path '/nix/store/p0c3g3dxr818lggbk6ms3nhm97g0pir9-libgpg-error-1.50' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.5435787Z copying path '/nix/store/2w8a5z0rcs4fk3ds3fnd03x6syjjl1hb-libmnl-1.0.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.5546338Z copying path '/nix/store/ywvi2y4yv3qyh0phw9y2ji17smh8nawj-libnfnetlink-1.0.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.5828337Z copying path '/nix/store/dg6d7zs1bwnhwb3sd3xdbldvpa163a5z-libnl-3.10.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.5903825Z copying path '/nix/store/xxc6rkndd68cq1225asn380bbj0512dg-libpsl-0.21.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.5996405Z copying path '/nix/store/qhs6zflzhdr11j6byf1c1j52z39hnaaw-db-4.8.30' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.6109392Z copying path '/nix/store/8g8wdqid20924fbppbljsl6l7gr0p21j-gettext-0.21.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.6219281Z copying path '/nix/store/dsxb6qvi21bzy21c98kb71wfbdj4lmz7-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.6509369Z copying path '/nix/store/nn7nj7xq8gdfyxqhchphzia7i34rwb0v-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.6516159Z copying path '/nix/store/rq8lq7r8vjqrbn2bgfglm9dxfi83gdg9-icu4c-74.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.6643454Z copying path '/nix/store/96m2mjx55syyky6zymjnbl3pvgxlwchb-libnftnl-1.2.8' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.6830367Z copying path '/nix/store/17195j62sjxjn0xwnmj3icr01n3d678r-libnetfilter_conntrack-1.1.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.6876039Z copying path '/nix/store/68vmpyiabh89l7hbp9z2hmwci74vnfi4-libseccomp-2.5.5-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.6997638Z copying path '/nix/store/wr7w1x0x1j4qli60wm22q3bc02dga08c-libtasn1-4.20.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.7196838Z copying path '/nix/store/hnh6ivl105y4sw0ifv4kbihrvbddmlkm-libxcrypt-4.4.36' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.7381741Z copying path '/nix/store/9yh47sg27z9263ll65d414rgcyrclk57-libxml2-2.13.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.7585652Z copying path '/nix/store/99jfkvhck3c2675n2cy71g40km6m0pf9-libassuan-2.5.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.7686202Z copying path '/nix/store/h9c111ckc8wg3ksxb7kj8cwhgaj52118-libgcrypt-1.10.3-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.7688169Z copying path '/nix/store/p9k3wzaw6d3wjgcbrfv2g1chj0mj2inb-lz4-1.10.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.7806552Z copying path '/nix/store/yh2c9f04q1vcfhpkamidrg3sdnwk5bvy-mpdecimal-4.0.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.7869284Z copying path '/nix/store/1h2yigiwy6bgpyzlywj36s5nqkgca8bv-libpcap-1.10.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.7978004Z copying path '/nix/store/9m68vvhnsq5cpkskphgw84ikl9m6wjwp-coreutils-9.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.8053066Z copying path '/nix/store/b75dbfz0gria25kn2qlfpnmp39h31spw-mpfr-4.2.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.8176514Z copying path '/nix/store/mgpn83jmnf37ky77a8qy6m466qqmlyqk-cln-1.3.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.8602844Z copying path '/nix/store/qvrp85i3yc9vw5x1vyx714m03jsf60rc-cvc4-1.8' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.8625533Z copying path '/nix/store/z7ndn3k8zfjrf713gq443q7a2ixzaab5-ncurses-6.4.20221231' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.9438561Z copying path '/nix/store/6s0zzvp9in28jkmzwh5p69v1zwpi5mi4-linux-pam-1.6.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.9568707Z copying path '/nix/store/q95qgxy40rx1ifa13j8l38sx3myvkhb9-nettle-3.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.9786629Z copying path '/nix/store/1w5jm9zaxwr5b8nvh41c7iz236my185m-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.9929811Z copying path '/nix/store/j4377imdqpm27h5hspds1skgsazyj0d9-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.0129640Z copying path '/nix/store/n9ya3i584zvcw6696326sdlg61d6lamf-npth-1.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.0142608Z copying path '/nix/store/kavgc464axad77kj4x4bza7s345nrhin-iptables-1.8.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.0323106Z copying path '/nix/store/pbjp09wrnbklrfy7n2h5qix15fl5ylhj-libmpc-1.3.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.0760262Z copying path '/nix/store/lr3cvmq5ahqcj29p8c6m0fdl1y8krc86-diffutils-3.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.0788443Z copying path '/nix/store/vc2d1bfy1a5y1195nq7k6p0zcm6q89nx-findutils-4.10.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.0861319Z copying path '/nix/store/isk8l71r4d1nl39mpv92ank2rs4cx3w9-openssl-3.3.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.1367276Z copying path '/nix/store/mqvgaq2bnb1701l7zcn0d6vd7w8b0z7l-openssl-3.3.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.2117607Z copying path '/nix/store/w8xb93nwhnhlkqd9kwahkzqvbg98qs74-nghttp2-1.64.0-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.2124209Z copying path '/nix/store/cjg4jmnnf26367irpagiiffrni9bk7z0-gnupg-2.4.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.2201170Z copying path '/nix/store/smd33cbgm2pwwnwj9l4b4fk39bdxfsfv-p11-kit-0.25.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.2327662Z copying path '/nix/store/zfjv48ikkqn3yhi8zi7lvqvxyscbg87n-patch-2.7.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.2815343Z copying path '/nix/store/9wwkzvmrlv43y71rbw8sbh9bamc62a16-patchelf-0.15.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3129419Z copying path '/nix/store/5md7gyz45fm4bmkg2kb9a1hnmg8ryk9j-pcre2-10.44' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3249516Z copying path '/nix/store/pgq4agv5wpanzr9a8mqlkncdbick7mn2-pcsclite-2.3.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3426542Z copying path '/nix/store/9sqpmkq9fcycsrldbsdxw93hvspy8pr9-perl5.40.0-Clone-0.46' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3439372Z copying path '/nix/store/jpk7s673pli65raimpl43jbhbg6ja4kx-perl5.40.0-FCGI-0.82' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3627092Z copying path '/nix/store/x4kgvzlrndlsc9mn2gyrx9dla0a5y7y3-perl5.40.0-TermReadKey-2.38' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3629486Z copying path '/nix/store/gda0f0dw64h74i98vkk7b7jwzxbkigzs-prometheus-2.55.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3669486Z copying path '/nix/store/mfj2pd4n7vbczdx381margrm9b9jkbpq-protoc-gen-connect-go-1.17.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3791079Z copying path '/nix/store/6hrwqlqxzvn3lry7fjyz4i6dkdmg38m6-perl5.40.0-HTTP-Message-6.45' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3806401Z copying path '/nix/store/zwh1q2r2a1prmw4xxfpqa06ic7dl31yd-qrencode-4.1.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.4059875Z copying path '/nix/store/flw2dwllbq50954bk1qm6xwdzp8ikacl-systemd-minimal-libs-256.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.4181365Z copying path '/nix/store/88x6dfa5gnls0pmbvp4b9ci3bqqfja0n-util-linux-minimal-2.39.4-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.4184691Z copying path '/nix/store/7f8vg8z0q721jyahy1vjbg2x3irbk5az-unbound-1.22.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.4262646Z copying path '/nix/store/53rkjnnkbgg8pfn6ffpcdx4xbrl98yh8-readline-8.2p13' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.4286509Z copying path '/nix/store/mcr5gqxgkknqxa2vhnhixzd97vdsnsxi-perl5.40.0-HTML-Parser-3.81' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.4509554Z copying path '/nix/store/q73n7qdcl9yvlwh6p4n414vkxgnjjryp-perl5.40.0-HTTP-Cookies-6.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.5235680Z copying path '/nix/store/qjsj5vnbfpbg6r7jhd7znfgmcy0arn8n-gnugrep-3.11' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.5814101Z copying path '/nix/store/0z09m6fwgmc2a0zazp6lhyadfig10fd6-perl5.40.0-CGI-4.59' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.5966133Z copying path '/nix/store/qxp4rv76dpjbvs37c3sfq33ial7mxgb0-perl5.40.0-HTTP-Daemon-6.16' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.6034212Z copying path '/nix/store/q0fgny8kpagi6blmzyw15n4cmfx647kn-perl5.40.0-HTTP-Negotiate-6.01' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.6528795Z copying path '/nix/store/bhvah40258cfi5sj1wiy2zmdn5xgj4m1-krb5-1.21.3-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.6637279Z copying path '/nix/store/fvm65iknlk5kx9938xsc5485s9wzz1ig-lvm2-2.03.27-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.6817212Z copying path '/nix/store/pa7plncc30fhm909bis9haakh7gi0qbl-bash-interactive-5.2p37' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.6942864Z copying path '/nix/store/09pyjyjdr5mwmki9gb0yf809l54xr8p2-openssl-3.3.3-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.6946829Z copying path '/nix/store/dwyr8xvjby2l1zz92a5pfl6bq27jhrm6-krb5-1.21.3-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7024856Z copying path '/nix/store/6k8v1ffagipraln3nn12h1n22d5l9dvr-perl5.40.0-Net-SSLeay-1.92' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7095037Z copying path '/nix/store/j7k6mzbdydimzw4mf23ahq6a7rz2f7w2-util-linux-minimal-2.39.4-login' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7244166Z copying path '/nix/store/a9vgxnafcgb1khpjgn87ixmyv4dsqlp0-util-linux-minimal-2.39.4-mount' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7286659Z copying path '/nix/store/blkjagm7k01k9sghpyckw4y6dd6z0knl-util-linux-minimal-2.39.4-swap' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7436711Z copying path '/nix/store/sf31nmjhlsdp2h26vbwbpa7gwfn4i4na-xz-5.6.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7456499Z copying path '/nix/store/xv2bvwf6zv1hhlm9w4x0f7n0idhbsjh7-perl5.40.0-CGI-Fast-2.16' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7717843Z copying path '/nix/store/lmfya9by589b0qgc2pqps1zy4jhldkvq-cryptsetup-2.7.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7856155Z copying path '/nix/store/hgq0ircylcm0mx6y7ml9chcbwgrz9xg7-openssl-3.3.3-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7858632Z copying path '/nix/store/xxssfwyz4l32wiadvsrcf259nkb91myn-z3-4.11.2-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7915925Z copying path '/nix/store/vpg96mfr1jw5arlqg831i69g29v0sdb3-zlib-1.3.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7922186Z copying path '/nix/store/73pq792gn6i9qfywsnd347vg0152w8rw-perl5.40.0-IO-Socket-SSL-2.083' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7956281Z copying path '/nix/store/6cf2yj12gf51jn5vdbdw01gmgvyj431s-zstd-1.5.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.8127632Z copying path '/nix/store/23j515bg7lgis34f0jkm9j6g00dpp2sh-binutils-2.43.1-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.8491938Z copying path '/nix/store/yk246qv4bbmr0mmh9y3gnfdkra5nnjgi-cracklib-2.10.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.8643507Z copying path '/nix/store/p751fjd81h3926ivxsq0x20lz5j7yscc-file-5.45' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.9017239Z copying path '/nix/store/yg4ahy7gahx91nq80achmzilrjyv0scj-gcc-13.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.9211505Z copying path '/nix/store/1md58p5vm4dixcwwpwrs78a7kjf6nnqk-gnutls-3.8.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.9484835Z copying path '/nix/store/nfdnparxrnv6sy627lw1c27pdqzpbfs2-kexec-tools-2.0.29' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.9551399Z copying path '/nix/store/n6zw4496n0bd9r6gjwkjmf5ja6757q32-krb5-1.21.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.9659827Z copying path '/nix/store/kc1sdzqnymjwy74chlnkq2xlxnmrg30x-libfido2-1.15.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.0294090Z copying path '/nix/store/yr9xanc3bgp95fj9kvbrrq47zhzni2i6-kmod-31' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.0490555Z copying path '/nix/store/qdypipr8zp0nkyrwqnakn3q3xhpghsrb-kmod-31-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.0804714Z copying path '/nix/store/6m49g3aqk5d5vdxp7chpgim5l6cfm7d6-libarchive-3.7.7-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.1055341Z copying path '/nix/store/pvyhn761hgn17fpr6fy168vcv1ciwsgl-libssh2-1.11.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.1181372Z copying path '/nix/store/22qnvg3zddkf7rbpckv676qpsc2najv9-binutils-2.43.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.1693466Z copying path '/nix/store/zfk4v9lxal3ch98qnf7zlciwgmk4w1ij-krb5-1.21.3-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.1877265Z copying path '/nix/store/17rp2wzkp8xfhxcd5zihx6qmnbaadlhs-libmicrohttpd-1.0.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.2304432Z copying path '/nix/store/qmz79v7x18zmi6g2iagxwazqfwbxzhra-libssh2-1.11.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.2735259Z copying path '/nix/store/q4j9jj8jw74216cw4chsqlwdnglwly6p-perl-5.40.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.2858070Z copying path '/nix/store/f2sjbvr2gbp1dl1fwak6b77j18wv2rm8-perl5.40.0-Net-SMTP-SSL-1.04' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.3207465Z copying path '/nix/store/w2m5p0fb6pmqq6dz2jqlvnyw7n4vcbpx-curl-8.12.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.3219929Z copying path '/nix/store/sh26c2jcz7w2gii2px77bqy64fd026jd-boost-1.81.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.3837116Z copying path '/nix/store/i7gfv740vcygvl9pgqwq29nkzmsp09ww-sqlite-3.46.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.4015839Z copying path '/nix/store/rbns8mzghhqxih4hj2js4mb4s6ivy5d1-xz-5.6.3-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.4017251Z copying path '/nix/store/ccrjbcfl5zcdp0n5mh69f4airrb9g8m4-zlib-1.3.1-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.4283528Z copying path '/nix/store/xmmli2ijsz2br6573z3sqsgg0spnj7i9-zstd-1.5.6-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.4822905Z copying path '/nix/store/lgfp6sl5hpykmld29rqvi9pam8ji8k24-curl-8.12.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.5038396Z copying path '/nix/store/0rg4nqym82ngd29dy8qm1bggm94dkry3-libssh2-1.11.1-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.5290238Z copying path '/nix/store/hsxp8g7zdr6wxk1mp812g8nbzvajzn4w-stdenv-linux' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.5876660Z copying path '/nix/store/gnnac2vpa466p2lpzskmbj5vjr6ikzhg-libpwquality-1.4.5-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.5976235Z copying path '/nix/store/awbfciyq3cjvw6x8wd8wdjy8z2qxm98n-elfutils-0.191' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.6228007Z copying path '/nix/store/3hgwjb5hp0jm8fyi4vx9s4f3hjvp0n1r-tpm2-tss-4.1.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.6366401Z copying path '/nix/store/lhpwdis5hkyljz1d200bj1s6g51ljq9k-python3-3.12.8' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.6701985Z copying path '/nix/store/z9lnvmqymg80hk671fm2533ncczkf7z2-kbd-2.6.4' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.7488221Z copying path '/nix/store/8qf68jid6rr2f4c8ppyp0ixdlv0axnpn-curl-8.12.1-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.9819159Z copying path '/nix/store/007wiy8x5irdxzsdx3bdqx0k0a8hp6ji-shellcheck-0.10.0-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.9820656Z copying path '/nix/store/f95nqmgp2vaz1h68n36k605ay1ixnj0a-libbpf-1.4.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:17.0428080Z copying path '/nix/store/04shrm4bvxw1yam87da7y9k872kqn777-curl-8.12.1-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:17.1735316Z building '/nix/store/rkn5fk95kmnbxk65bxlyzqnmsmafh1f1-kind-with-registry.sh.drv'... +2025-07-23T19:31:17.2480249Z copying path '/nix/store/w9qcpyhjrxsqrps91wkz8r4mqvg9zrxc-systemd-256.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:17.3458021Z copying path '/nix/store/00x4qvjp4kcm932rv281v8n9y4xk9dv1-solc-0.8.21' from 'https://cache.nixos.org'... +2025-07-23T19:31:17.3569628Z copying path '/nix/store/1mv8pj4nxwnd9bbxshljc9p4cnl3rakj-binutils-wrapper-2.43.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:17.3988135Z copying path '/nix/store/ch1brsi5xwxgyv23csmvw1am9l40rf1c-shellcheck-0.10.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:18.3928389Z copying path '/nix/store/99accs107rzm78z74cj1wns59d0m1nh8-perl5.40.0-libwww-perl-6.72' from 'https://cache.nixos.org'... +2025-07-23T19:31:18.4427035Z copying path '/nix/store/7s649psqfmp6bf2ij6kba3nbwjp50z0w-promtail-3.2.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:19.3718486Z copying path '/nix/store/1fwh9nv8n93rjc7i7j9gcm3whdqpgy84-git-2.47.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:20.3471201Z copying path '/nix/store/gnd8f9h2ycxrfrvrga508c4n9cxy6720-gcc-wrapper-13.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:20.3559088Z copying path '/nix/store/szfi0xd0cwdaldhkp8vlgi7jfv662nmd-stdenv-linux' from 'https://cache.nixos.org'... +2025-07-23T19:31:20.4069932Z building '/nix/store/mbmxfdxryq3wr2wxm5brh42mcad1gvzy-kind-with-registry-1.0.0.drv'... +2025-07-23T19:31:20.4979512Z building '/nix/store/gvy0rwami6li8s64cb1q1hv75mnglnjn-nix-shell-env.drv'... +2025-07-23T19:31:20.9272642Z this path will be fetched (0.10 MiB download, 0.10 MiB unpacked): +2025-07-23T19:31:20.9273346Z /nix/store/hlv28jlwzk6kqj6vljm9cn8i7pw030nx-bash-interactive-5.2p37-man +2025-07-23T19:31:20.9282862Z copying path '/nix/store/hlv28jlwzk6kqj6vljm9cn8i7pw030nx-bash-interactive-5.2p37-man' from 'https://cache.nixos.org'... +2025-07-23T19:31:21.0821474Z dependencies installed +2025-07-23T19:31:21.0886857Z ##[group]Run echo "::warning::Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch?" +2025-07-23T19:31:21.0888095Z echo "::warning::Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch?" +2025-07-23T19:31:21.0927472Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-07-23T19:31:21.0927973Z env: +2025-07-23T19:31:21.0928271Z TMPDIR: /home/runner/work/_temp +2025-07-23T19:31:21.0928613Z ##[endgroup] +2025-07-23T19:31:21.1011961Z ##[warning]Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch? +2025-07-23T19:31:21.1043326Z ##[group]Run AVALANCHEGO_BUILD_PATH=/tmp/e2e/warp/avalanchego/build /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --impure --command bash -x ./scripts/run_task.sh test-e2e-warp-ci +2025-07-23T19:31:21.1046911Z AVALANCHEGO_BUILD_PATH=/tmp/e2e/warp/avalanchego/build /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --impure --command bash -x ./scripts/run_task.sh test-e2e-warp-ci +2025-07-23T19:31:21.1083804Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-07-23T19:31:21.1084323Z env: +2025-07-23T19:31:21.1084502Z TMPDIR: /home/runner/work/_temp +2025-07-23T19:31:21.1084745Z TMPNET_START_METRICS_COLLECTOR: false +2025-07-23T19:31:21.1084990Z TMPNET_START_LOGS_COLLECTOR: false +2025-07-23T19:31:21.1085229Z TMPNET_CHECK_METRICS_COLLECTED: false +2025-07-23T19:31:21.1085467Z TMPNET_CHECK_LOGS_COLLECTED: false +2025-07-23T19:31:21.1085676Z LOKI_USERNAME: +2025-07-23T19:31:21.1085854Z LOKI_PASSWORD: +2025-07-23T19:31:21.1086041Z PROMETHEUS_USERNAME: +2025-07-23T19:31:21.1086237Z PROMETHEUS_PASSWORD: +2025-07-23T19:31:21.1086424Z GH_REPO: ava-labs/coreth +2025-07-23T19:31:21.1086620Z GH_WORKFLOW: CI +2025-07-23T19:31:21.1086800Z GH_RUN_ID: 16480013789 +2025-07-23T19:31:21.1086984Z GH_RUN_NUMBER: 5026 +2025-07-23T19:31:21.1087164Z GH_RUN_ATTEMPT: 1 +2025-07-23T19:31:21.1087340Z GH_JOB_ID: e2e_warp +2025-07-23T19:31:21.1087515Z ##[endgroup] +2025-07-23T19:31:21.1311811Z No local flake found, will attempt to use avalanchego flake +2025-07-23T19:31:21.1398056Z Starting nix shell for github:ava-labs/avalanchego?ref=v1.13.3-rc.1 +2025-07-23T19:31:23.4703813Z + set -euo pipefail +2025-07-23T19:31:23.4704416Z + command -v task +2025-07-23T19:31:23.4704759Z + exec task test-e2e-warp-ci +2025-07-23T19:31:23.4930442Z task: [build] ./scripts/build.sh +2025-07-23T19:31:23.5222417Z Using branch: d85ec0364 +2025-07-23T19:31:23.5239400Z Building Coreth @ GitCommit: d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 at /home/runner/.avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy +2025-07-23T19:31:54.0361820Z task: [test-e2e-warp] ./scripts/run_ginkgo_warp.sh +2025-07-23T19:31:54.0569940Z Using branch: d85ec0364 +2025-07-23T19:31:54.0587032Z Running with extra args: --avalanchego-path=/tmp/e2e/warp/avalanchego/build/avalanchego +2025-07-23T19:32:11.2865271Z Running Suite: coreth warp e2e test - /home/runner/work/coreth/coreth/tests/warp +2025-07-23T19:32:11.2865946Z ================================================================================ +2025-07-23T19:32:11.2866547Z Random Seed: 1753299114 +2025-07-23T19:32:11.2866746Z +2025-07-23T19:32:11.2866910Z Will run 1 of 1 specs +2025-07-23T19:32:11.2867285Z ------------------------------ +2025-07-23T19:32:11.2867662Z [SynchronizedBeforeSuite]  +2025-07-23T19:32:11.2868242Z /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 +2025-07-23T19:32:11.2869375Z > Enter [SynchronizedBeforeSuite] TOP-LEVEL - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 @ 07/23/25 19:32:11.286 +2025-07-23T19:32:11.2875280Z INFO waiting for network to start {"timeoutSeconds": 120} +2025-07-23T19:32:11.2876719Z INFO preparing configuration for new network {"runtimeConfig": {"process":{"avalancheGoPath":"/tmp/e2e/warp/avalanchego/build/avalanchego","pluginDir":"/home/runner/.avalanchego/plugins"}}} +2025-07-23T19:32:11.2998458Z INFO starting network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e", "uuid": "831b7731-4dd7-401a-a2aa-7d4d54bfac1b"} +2025-07-23T19:32:11.9026716Z INFO started local node {"nodeID": "NodeID-3wsBNScnZA9m17LzxpzCGvmzcKf67tPHk", "dataDir": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e/NodeID-3wsBNScnZA9m17LzxpzCGvmzcKf67tPHk", "isEphemeral": false} +2025-07-23T19:32:12.4551180Z INFO started local node {"nodeID": "NodeID-AjFCBTWUwfRZHTnySyCjdknRp12LaqFon", "dataDir": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e/NodeID-AjFCBTWUwfRZHTnySyCjdknRp12LaqFon", "isEphemeral": false} +2025-07-23T19:32:12.4553360Z INFO waiting for nodes to report healthy +2025-07-23T19:32:14.4565045Z INFO node is healthy {"nodeID": "NodeID-AjFCBTWUwfRZHTnySyCjdknRp12LaqFon", "uri": "http://127.0.0.1:35575"} +2025-07-23T19:32:17.8564267Z INFO node is healthy {"nodeID": "NodeID-3wsBNScnZA9m17LzxpzCGvmzcKf67tPHk", "uri": "http://127.0.0.1:43963"} +2025-07-23T19:32:17.8566373Z INFO started network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e", "uuid": "831b7731-4dd7-401a-a2aa-7d4d54bfac1b"} +2025-07-23T19:32:17.8570537Z INFO metrics and logs available via grafana (collectors must be running) {"url": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C831b7731-4dd7-401a-a2aa-7d4d54bfac1b&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299131299&to=now", "linkPath": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e/metrics.txt"} +2025-07-23T19:32:17.8573198Z INFO network started successfully +2025-07-23T19:32:17.8581214Z INFO network nodes are available {"uris": [{"NodeID":"NodeID-3wsBNScnZA9m17LzxpzCGvmzcKf67tPHk","URI":"http://127.0.0.1:43963"},{"NodeID":"NodeID-AjFCBTWUwfRZHTnySyCjdknRp12LaqFon","URI":"http://127.0.0.1:35575"}]} +2025-07-23T19:32:17.8583751Z < Exit [SynchronizedBeforeSuite] TOP-LEVEL - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 @ 07/23/25 19:32:17.857 (6.571s) +2025-07-23T19:32:17.8587797Z > Enter [SynchronizedBeforeSuite] TOP-LEVEL - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 @ 07/23/25 19:32:17.857 +2025-07-23T19:32:17.8606424Z < Exit [SynchronizedBeforeSuite] TOP-LEVEL - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 @ 07/23/25 19:32:17.86 (2ms) +2025-07-23T19:32:17.8607807Z [SynchronizedBeforeSuite] PASSED [6.574 seconds] +2025-07-23T19:32:17.8608489Z ------------------------------ +2025-07-23T19:32:17.8608942Z [Warp] +2025-07-23T19:32:17.8609847Z /home/runner/work/coreth/coreth/tests/warp/warp_test.go:127 +2025-07-23T19:32:17.8610665Z C-Chain -> C-Chain +2025-07-23T19:32:17.8611502Z /home/runner/work/coreth/coreth/tests/warp/warp_test.go:156 +2025-07-23T19:32:17.8613313Z > Enter [BeforeEach] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/metrics_link.go:27 @ 07/23/25 19:32:17.86 +2025-07-23T19:32:17.8615612Z < Exit [BeforeEach] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/metrics_link.go:27 @ 07/23/25 19:32:17.86 (0s) +2025-07-23T19:32:17.8617353Z > Enter [It] C-Chain -> C-Chain - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:156 @ 07/23/25 19:32:17.86 +2025-07-23T19:32:17.8618811Z "level"=0 "msg"="Creating ethclient for blockchain A" "blockchainID"="2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo" +2025-07-23T19:32:17.8620200Z "level"=0 "msg"="Creating ethclient for blockchain A" "blockchainID"="2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo" +2025-07-23T19:32:17.8621596Z "level"=0 "msg"="Creating ethclient for blockchain B" "blockchainID"="2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo" +2025-07-23T19:32:17.8625710Z "level"=0 "msg"="Creating ethclient for blockchain B" "blockchainID"="2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo" +2025-07-23T19:32:19.8672963Z "level"=0 "msg"="Sending message from A to B" +2025-07-23T19:32:19.8679852Z "level"=0 "msg"="Sending sendWarpMessage transaction" "txHash"="0xcdd2c3e614865c0a389544350f188695a106bdab5883f66ee56725b3528fc8df" +2025-07-23T19:32:19.8686344Z "level"=0 "msg"="Waiting for transaction to be accepted" +2025-07-23T19:32:20.8697354Z "level"=0 "msg"="Constructing warp block hash unsigned message" "blockHash"="0x5c7afdebbd10e93279441062b28e528c80b6853d395915f4f5fbdd6730c0a77d" +2025-07-23T19:32:20.8698298Z "level"=0 "msg"="Fetching relevant warp logs from the newly produced block" +2025-07-23T19:32:20.8701453Z "level"=0 "msg"="Parsing logData as unsigned warp message" +2025-07-23T19:32:20.8704190Z "level"=0 "msg"="Parsed unsignedWarpMsg" "unsignedWarpMessageID"="2dJXPKGac79ZmsoVeyTQ2v4ZVMTDedMyvvqKY3Jfgvk65i8kKG" "unsignedWarpMessage"="UnsignedMessage(NetworkID = 88888, SourceChainID = 2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo, Payload = 000000000001000000148db97c7cece249c2b98bdc0226cc4c2a57bf52fc00000003010203)" +2025-07-23T19:32:20.8706452Z "level"=0 "msg"="client accepted the block containing SendWarpMessage" "client"=0 "height"=3 +2025-07-23T19:32:20.8709019Z "level"=0 "msg"="client accepted the block containing SendWarpMessage" "client"=1 "height"=3 +2025-07-23T19:32:20.8709811Z "level"=0 "msg"="Aggregating signatures via API" +2025-07-23T19:32:20.8725776Z "level"=0 "msg"="Aggregating signatures from validator set" "numValidators"=2 "totalWeight"=2000000000000000 +2025-07-23T19:32:20.8775461Z "level"=0 "msg"="Aggregated signatures for warp messages" "addressedCallMessage"="000000015b38b5a4cf0874043005ee5ab1209c8edefd431257b7e6764199106d78747918698d00000025000000000001000000148db97c7cece249c2b98bdc0226cc4c2a57bf52fc00000003010203000000000000000103b28a349108202d40221da58363b9a8755547558dd59fb77399eb02252498c183cc8177ecaeec86374c981087acb3263e0aed71170f7493c1ad984c130d900eb157ec34e968ac4ef5ce4e9ab2e40983dfdff9032992815b5925648feb51540098" "blockPayloadMessage"="000000015b38b5a4cf0874043005ee5ab1209c8edefd431257b7e6764199106d78747918698d000000260000000000005c7afdebbd10e93279441062b28e528c80b6853d395915f4f5fbdd6730c0a77d000000000000000103b6de3a05d724fe7067ff3bd8d610c2417ac356327cce728126648600c597dc32e5f7c78fc326f914aeacae4840616f07139c390ee35c1aa059071140b39740dc2a94f71d5c161a91a13d9b1e8f4a647265d7410fafc4ca3cd808a8a9f84b1619" +2025-07-23T19:32:20.8782377Z "level"=0 "msg"="Aggregating signatures via p2p aggregator" +2025-07-23T19:32:20.8783129Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:20.8795195Z "level"=0 "msg"="Fetching block payload aggregate signature via p2p API" +2025-07-23T19:32:20.8818026Z "level"=0 "msg"="Delivering addressed call payload to receiving subnet" +2025-07-23T19:32:20.8827994Z "level"=0 "msg"="Sending getVerifiedWarpMessage transaction" "txHash"="0x2c84ac1a0bb1cb97d7c051142046368d4f828b9453583d497eb46195dfbc114c" "txBytes"="02f9017383015b3803843b9aca008534630b8a00834c4b4094020000000000000000000000000000000000000580a46f8253500000000000000000000000000000000000000000000000000000000000000000f8dff8dd940200000000000000000000000000000000000005f8c6a0000000015b38b5a4cf0874043005ee5ab1209c8edefd431257b7e6764199106da078747918698d00000025000000000001000000148db97c7cece249c2b98bdc02a026cc4c2a57bf52fc00000003010203000000000000000103b28a349108202d40a0221da58363b9a8755547558dd59fb77399eb02252498c183cc8177ecaeec8637a04c981087acb3263e0aed71170f7493c1ad984c130d900eb157ec34e968ac4ef5a0ce4e9ab2e40983dfdff9032992815b5925648feb51540098ff0000000000000001a0389ea93aa7de9afca4268aff0963288bc18581b29eb3b0163d441cea1520172ea0569686ef255a3df87c0edea9d8129a5e39c42e282b3e1ae62ddfde1822bfc099" +2025-07-23T19:32:20.8833774Z "level"=0 "msg"="Waiting for transaction to be accepted" +2025-07-23T19:32:21.8842352Z "level"=0 "msg"="Fetching relevant warp logs and receipts from new block" +2025-07-23T19:32:21.8845208Z "level"=0 "msg"="Delivering block hash payload to receiving subnet" +2025-07-23T19:32:21.8856726Z "level"=0 "msg"="Sending getVerifiedWarpBlockHash transaction" "txHash"="0x7232381eb0a29380f4cbc22793f6b6621bada7742612c6af889f805f22d74b06" "txBytes"="02f9017383015b3804843b9aca008534630b8a00834c4b4094020000000000000000000000000000000000000580a4ce7f59290000000000000000000000000000000000000000000000000000000000000000f8dff8dd940200000000000000000000000000000000000005f8c6a0000000015b38b5a4cf0874043005ee5ab1209c8edefd431257b7e6764199106da078747918698d000000260000000000005c7afdebbd10e93279441062b28e528ca080b6853d395915f4f5fbdd6730c0a77d000000000000000103b6de3a05d724fea07067ff3bd8d610c2417ac356327cce728126648600c597dc32e5f7c78fc326f9a014aeacae4840616f07139c390ee35c1aa059071140b39740dc2a94f71d5c161aa091a13d9b1e8f4a647265d7410fafc4ca3cd808a8a9f84b1619ff00000000000001a06b09e4593d91fbf3bdf3e6d2a3f91cf48322ecd89740f036eec6c8b269861b82a005128aeaf8540fe0ff729a244d8cd48aadfd9dd91b02d05815d9703c1c0e69d7" +2025-07-23T19:32:21.8862853Z "level"=0 "msg"="Waiting for transaction to be accepted" +2025-07-23T19:32:22.8867993Z "level"=0 "msg"="Fetching relevant warp logs and receipts from new block" +2025-07-23T19:32:22.8870547Z "level"=0 "msg"="Executing warp load test" +2025-07-23T19:32:22.8875455Z "level"=0 "msg"="Distributing funds on sending subnet" "numKeys"=2 +2025-07-23T19:32:27.4089323Z "level"=0 "msg"="Distributing funds on receiving subnet" "numKeys"=2 +2025-07-23T19:32:29.0097034Z "level"=0 "msg"="Creating workers for each subnet..." +2025-07-23T19:32:29.0105144Z "level"=0 "msg"="Subscribing to warp send events on sending subnet" +2025-07-23T19:32:29.0108148Z "level"=0 "msg"="Generating tx sequence to send warp messages..." +2025-07-23T19:32:29.0127180Z "level"=0 "msg"="Executing warp send loader..." +2025-07-23T19:32:30.0353767Z "level"=0 "msg"="Executing warp delivery sequences..." +2025-07-23T19:32:30.0354590Z "level"=0 "msg"="Executing warp delivery..." +2025-07-23T19:32:30.0357099Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0358894Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0382005Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0403670Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0427892Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0441408Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0460726Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0471324Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0495882Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0510451Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0529763Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0549396Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0570597Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0587869Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0602741Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0618749Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0636626Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0653129Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0671629Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0690989Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:33.0152425Z "level"=0 "msg"="Completed warp delivery successfully." +2025-07-23T19:32:33.0155002Z < Exit [It] C-Chain -> C-Chain - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:156 @ 07/23/25 19:32:33.015 (15.155s) +2025-07-23T19:32:33.0157354Z > Enter [AfterEach] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/metrics_link.go:33 @ 07/23/25 19:32:33.015 +2025-07-23T19:32:33.0168812Z INFO metrics and logs available via grafana (collectors must be running) {"uri": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C831b7731-4dd7-401a-a2aa-7d4d54bfac1b&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299137860&to=1753299165015"} +2025-07-23T19:32:33.0172236Z < Exit [AfterEach] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/metrics_link.go:33 @ 07/23/25 19:32:33.016 (1ms) +2025-07-23T19:32:33.0175006Z > Enter [DeferCleanup (Each)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0177600Z < Exit [DeferCleanup (Each)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0179659Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0181322Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0183249Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0185220Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0186785Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0188648Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0190441Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0192076Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0194380Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0196544Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0198204Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0200659Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0202313Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0204456Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0205856Z • [15.156 seconds] +2025-07-23T19:32:33.0206357Z ------------------------------ +2025-07-23T19:32:33.0206837Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0207837Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0209868Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0212314Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0213703Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:32:33.0214445Z ------------------------------ +2025-07-23T19:32:33.0214928Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0216033Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0218146Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0220606Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) +2025-07-23T19:32:33.0221970Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:32:33.0222534Z ------------------------------ +2025-07-23T19:32:33.0223015Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0224497Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0226653Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 +2025-07-23T19:32:33.0229142Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) +2025-07-23T19:32:33.0230524Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:32:33.0231074Z ------------------------------ +2025-07-23T19:32:33.0231559Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0232606Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0234920Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 +2025-07-23T19:32:33.0237465Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) +2025-07-23T19:32:33.0238888Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:32:33.0239481Z ------------------------------ +2025-07-23T19:32:33.0239989Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0241058Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0243306Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 +2025-07-23T19:32:33.0246323Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) +2025-07-23T19:32:33.0247561Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:32:33.0248164Z ------------------------------ +2025-07-23T19:32:33.0248666Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0249765Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0252018Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 +2025-07-23T19:32:33.0254823Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) +2025-07-23T19:32:33.0256273Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:32:33.0256875Z ------------------------------ +2025-07-23T19:32:33.0257381Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0258505Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0260759Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 +2025-07-23T19:32:33.0263285Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) +2025-07-23T19:32:33.0264317Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:32:33.0264669Z ------------------------------ +2025-07-23T19:32:33.0265147Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0265795Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0267029Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 +2025-07-23T19:32:33.0267800Z INFO shutting down network +2025-07-23T19:32:33.0971513Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.096 (80ms) +2025-07-23T19:32:33.0973096Z [DeferCleanup (Suite)] PASSED [0.080 seconds] +2025-07-23T19:32:33.0973736Z ------------------------------ +2025-07-23T19:32:33.0974446Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0975583Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0977884Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.096 +2025-07-23T19:32:33.0980269Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.096 (0s) +2025-07-23T19:32:33.0981707Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:32:33.0982296Z ------------------------------ +2025-07-23T19:32:33.0982597Z +2025-07-23T19:32:33.0983114Z Ran 1 of 1 Specs in 21.811 seconds +2025-07-23T19:32:33.0984270Z SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped +2025-07-23T19:32:33.0984976Z PASS +2025-07-23T19:32:33.1151659Z +2025-07-23T19:32:33.1152119Z Ginkgo ran 1 suite in 38.306979704s +2025-07-23T19:32:33.1152528Z Test Suite Passed +2025-07-23T19:32:33.1268509Z ##[group]Run actions/upload-artifact@v4 +2025-07-23T19:32:33.1268750Z with: +2025-07-23T19:32:33.1268918Z name: warp-tmpnet-data +2025-07-23T19:32:33.1269316Z path: ~/.tmpnet/networks +~/.tmpnet/prometheus/prometheus.log +~/.tmpnet/promtail/promtail.log + +2025-07-23T19:32:33.1269743Z if-no-files-found: error +2025-07-23T19:32:33.1269949Z compression-level: 6 +2025-07-23T19:32:33.1270137Z overwrite: false +2025-07-23T19:32:33.1270328Z include-hidden-files: false +2025-07-23T19:32:33.1270528Z env: +2025-07-23T19:32:33.1270698Z TMPDIR: /home/runner/work/_temp +2025-07-23T19:32:33.1270924Z ##[endgroup] +2025-07-23T19:32:33.3555565Z Multiple search paths detected. Calculating the least common ancestor of all paths +2025-07-23T19:32:33.3557792Z The least common ancestor is /home/runner/.tmpnet. This will be the root directory of the artifact +2025-07-23T19:32:33.3558418Z With the provided path, there will be 30 files uploaded +2025-07-23T19:32:33.3562850Z Artifact name is valid! +2025-07-23T19:32:33.3564395Z Root directory input is valid! +2025-07-23T19:32:33.4713342Z Beginning upload of artifact content to blob storage +2025-07-23T19:32:33.5880268Z Uploaded bytes 254232 +2025-07-23T19:32:33.6015142Z Finished uploading artifact content to blob storage! +2025-07-23T19:32:33.6018293Z SHA256 digest of uploaded artifact zip is 97986e70a9422e37f591caac4d5b55a84772901452c11682c77e38ac53246095 +2025-07-23T19:32:33.6020364Z Finalizing artifact upload +2025-07-23T19:32:33.6986967Z Artifact warp-tmpnet-data.zip successfully finalized. Artifact ID 3600323265 +2025-07-23T19:32:33.6988219Z Artifact warp-tmpnet-data has been successfully uploaded! Final size is 254232 bytes. Artifact ID is 3600323265 +2025-07-23T19:32:33.6994922Z Artifact download URL: https://github.com/ava-labs/coreth/actions/runs/16480013789/artifacts/3600323265 +2025-07-23T19:32:33.7147732Z Post job cleanup. +2025-07-23T19:32:33.8724144Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:32:33.8761838Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:32:33.8786518Z /home/runner/go/pkg/mod +2025-07-23T19:32:33.8814345Z /home/runner/.cache/go-build +2025-07-23T19:32:33.8819142Z Cache hit occurred on the primary key setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d, not saving cache. +2025-07-23T19:32:33.8917758Z Post job cleanup. +2025-07-23T19:32:33.9863814Z [command]/usr/bin/git version +2025-07-23T19:32:33.9904645Z git version 2.50.1 +2025-07-23T19:32:33.9956196Z Temporarily overriding HOME='/home/runner/work/_temp/9550696a-0377-4acd-a5e5-706ab8435ca6' before making global git config changes +2025-07-23T19:32:33.9957573Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:32:33.9961701Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:32:33.9997528Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:32:34.0030310Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:32:34.0251729Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:32:34.0272217Z http.https://github.com/.extraheader +2025-07-23T19:32:34.0285249Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +2025-07-23T19:32:34.0314571Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:32:34.0637208Z Cleaning up orphan processes diff --git a/logs_42241282643/3_Golang Unit Tests (ubuntu-22.04).txt b/logs_42241282643/3_Golang Unit Tests (ubuntu-22.04).txt new file mode 100644 index 0000000000..2b60a77dd1 --- /dev/null +++ b/logs_42241282643/3_Golang Unit Tests (ubuntu-22.04).txt @@ -0,0 +1,3210 @@ +2025-07-23T19:28:54.8331942Z Current runner version: '2.326.0' +2025-07-23T19:28:54.8354655Z ##[group]Runner Image Provisioner +2025-07-23T19:28:54.8355655Z Hosted Compute Agent +2025-07-23T19:28:54.8356172Z Version: 20250711.363 +2025-07-23T19:28:54.8356865Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c +2025-07-23T19:28:54.8357543Z Build Date: 2025-07-11T20:04:25Z +2025-07-23T19:28:54.8358081Z ##[endgroup] +2025-07-23T19:28:54.8358665Z ##[group]Operating System +2025-07-23T19:28:54.8359191Z Ubuntu +2025-07-23T19:28:54.8359680Z 22.04.5 +2025-07-23T19:28:54.8360126Z LTS +2025-07-23T19:28:54.8360590Z ##[endgroup] +2025-07-23T19:28:54.8361028Z ##[group]Runner Image +2025-07-23T19:28:54.8361588Z Image: ubuntu-22.04 +2025-07-23T19:28:54.8362095Z Version: 20250720.1.0 +2025-07-23T19:28:54.8363056Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20250720.1/images/ubuntu/Ubuntu2204-Readme.md +2025-07-23T19:28:54.8364554Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20250720.1 +2025-07-23T19:28:54.8365883Z ##[endgroup] +2025-07-23T19:28:54.8368347Z ##[group]GITHUB_TOKEN Permissions +2025-07-23T19:28:54.8370251Z Actions: write +2025-07-23T19:28:54.8370732Z Attestations: write +2025-07-23T19:28:54.8371348Z Checks: write +2025-07-23T19:28:54.8371847Z Contents: write +2025-07-23T19:28:54.8372373Z Deployments: write +2025-07-23T19:28:54.8372999Z Discussions: write +2025-07-23T19:28:54.8373512Z Issues: write +2025-07-23T19:28:54.8373982Z Metadata: read +2025-07-23T19:28:54.8374485Z Models: read +2025-07-23T19:28:54.8375218Z Packages: write +2025-07-23T19:28:54.8375681Z Pages: write +2025-07-23T19:28:54.8376224Z PullRequests: write +2025-07-23T19:28:54.8376722Z RepositoryProjects: write +2025-07-23T19:28:54.8377266Z SecurityEvents: write +2025-07-23T19:28:54.8377915Z Statuses: write +2025-07-23T19:28:54.8378390Z ##[endgroup] +2025-07-23T19:28:54.8380311Z Secret source: Actions +2025-07-23T19:28:54.8381029Z Prepare workflow directory +2025-07-23T19:28:54.8701229Z Prepare all required actions +2025-07-23T19:28:54.8737936Z Getting action download info +2025-07-23T19:28:55.3676152Z ##[group]Download immutable action package 'actions/checkout@v4' +2025-07-23T19:28:55.3677203Z Version: 4.2.2 +2025-07-23T19:28:55.3678223Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 +2025-07-23T19:28:55.3679357Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 +2025-07-23T19:28:55.3680082Z ##[endgroup] +2025-07-23T19:28:55.4736639Z ##[group]Download immutable action package 'actions/setup-go@v5' +2025-07-23T19:28:55.4737348Z Version: 5.5.0 +2025-07-23T19:28:55.4738187Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb +2025-07-23T19:28:55.4739084Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 +2025-07-23T19:28:55.4739734Z ##[endgroup] +2025-07-23T19:28:55.8319368Z Complete job name: Golang Unit Tests (ubuntu-22.04) +2025-07-23T19:28:55.8918240Z ##[group]Run actions/checkout@v4 +2025-07-23T19:28:55.8919261Z with: +2025-07-23T19:28:55.8919682Z repository: ava-labs/coreth +2025-07-23T19:28:55.8920314Z token: *** +2025-07-23T19:28:55.8920732Z ssh-strict: true +2025-07-23T19:28:55.8921111Z ssh-user: git +2025-07-23T19:28:55.8921494Z persist-credentials: true +2025-07-23T19:28:55.8921922Z clean: true +2025-07-23T19:28:55.8922301Z sparse-checkout-cone-mode: true +2025-07-23T19:28:55.8922765Z fetch-depth: 1 +2025-07-23T19:28:55.8923130Z fetch-tags: false +2025-07-23T19:28:55.8923501Z show-progress: true +2025-07-23T19:28:55.8923884Z lfs: false +2025-07-23T19:28:55.8924232Z submodules: false +2025-07-23T19:28:55.8924614Z set-safe-directory: true +2025-07-23T19:28:55.8925685Z ##[endgroup] +2025-07-23T19:28:55.9980547Z Syncing repository: ava-labs/coreth +2025-07-23T19:28:55.9982301Z ##[group]Getting Git version info +2025-07-23T19:28:55.9982944Z Working directory is '/home/runner/work/coreth/coreth' +2025-07-23T19:28:55.9983953Z [command]/usr/bin/git version +2025-07-23T19:28:56.0054693Z git version 2.50.1 +2025-07-23T19:28:56.0080264Z ##[endgroup] +2025-07-23T19:28:56.0093265Z Temporarily overriding HOME='/home/runner/work/_temp/54a04151-546b-430a-9f32-6573bafa504e' before making global git config changes +2025-07-23T19:28:56.0095218Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:28:56.0098195Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:28:56.0132514Z Deleting the contents of '/home/runner/work/coreth/coreth' +2025-07-23T19:28:56.0136198Z ##[group]Initializing the repository +2025-07-23T19:28:56.0139707Z [command]/usr/bin/git init /home/runner/work/coreth/coreth +2025-07-23T19:28:56.0228786Z hint: Using 'master' as the name for the initial branch. This default branch name +2025-07-23T19:28:56.0230236Z hint: is subject to change. To configure the initial branch name to use in all +2025-07-23T19:28:56.0231131Z hint: of your new repositories, which will suppress this warning, call: +2025-07-23T19:28:56.0231969Z hint: +2025-07-23T19:28:56.0232766Z hint: git config --global init.defaultBranch +2025-07-23T19:28:56.0233556Z hint: +2025-07-23T19:28:56.0234478Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2025-07-23T19:28:56.0236287Z hint: 'development'. The just-created branch can be renamed via this command: +2025-07-23T19:28:56.0237559Z hint: +2025-07-23T19:28:56.0238224Z hint: git branch -m +2025-07-23T19:28:56.0239018Z hint: +2025-07-23T19:28:56.0240065Z hint: Disable this message with "git config set advice.defaultBranchName false" +2025-07-23T19:28:56.0241729Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ +2025-07-23T19:28:56.0246826Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth +2025-07-23T19:28:56.0279554Z ##[endgroup] +2025-07-23T19:28:56.0280731Z ##[group]Disabling automatic garbage collection +2025-07-23T19:28:56.0284224Z [command]/usr/bin/git config --local gc.auto 0 +2025-07-23T19:28:56.0312203Z ##[endgroup] +2025-07-23T19:28:56.0313384Z ##[group]Setting up auth +2025-07-23T19:28:56.0319708Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:28:56.0349879Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:28:56.0661290Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:28:56.0691183Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:28:56.0913238Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2025-07-23T19:28:56.0948816Z ##[endgroup] +2025-07-23T19:28:56.0950381Z ##[group]Fetching the repository +2025-07-23T19:28:56.0958994Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge +2025-07-23T19:28:56.8801183Z From https://github.com/ava-labs/coreth +2025-07-23T19:28:56.8803255Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge +2025-07-23T19:28:56.8829103Z ##[endgroup] +2025-07-23T19:28:56.8830226Z ##[group]Determining the checkout info +2025-07-23T19:28:56.8831636Z ##[endgroup] +2025-07-23T19:28:56.8836051Z [command]/usr/bin/git sparse-checkout disable +2025-07-23T19:28:56.8875116Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig +2025-07-23T19:28:56.8901736Z ##[group]Checking out the ref +2025-07-23T19:28:56.8905239Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge +2025-07-23T19:28:57.0018441Z Note: switching to 'refs/remotes/pull/1065/merge'. +2025-07-23T19:28:57.0019456Z +2025-07-23T19:28:57.0020166Z You are in 'detached HEAD' state. You can look around, make experimental +2025-07-23T19:28:57.0021817Z changes and commit them, and you can discard any commits you make in this +2025-07-23T19:28:57.0024404Z state without impacting any branches by switching back to a branch. +2025-07-23T19:28:57.0026283Z +2025-07-23T19:28:57.0027291Z If you want to create a new branch to retain commits you create, you may +2025-07-23T19:28:57.0029635Z do so (now or later) by using -c with the switch command. Example: +2025-07-23T19:28:57.0031073Z +2025-07-23T19:28:57.0031593Z git switch -c +2025-07-23T19:28:57.0032538Z +2025-07-23T19:28:57.0033051Z Or undo this operation with: +2025-07-23T19:28:57.0034024Z +2025-07-23T19:28:57.0034487Z git switch - +2025-07-23T19:28:57.0035397Z +2025-07-23T19:28:57.0036632Z Turn off this advice by setting config variable advice.detachedHead to false +2025-07-23T19:28:57.0038453Z +2025-07-23T19:28:57.0040669Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 +2025-07-23T19:28:57.0045719Z ##[endgroup] +2025-07-23T19:28:57.0070010Z [command]/usr/bin/git log -1 --format=%H +2025-07-23T19:28:57.0092023Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 +2025-07-23T19:28:57.0393772Z ##[group]Run actions/setup-go@v5 +2025-07-23T19:28:57.0394937Z with: +2025-07-23T19:28:57.0395673Z go-version-file: go.mod +2025-07-23T19:28:57.0396571Z check-latest: false +2025-07-23T19:28:57.0397676Z token: *** +2025-07-23T19:28:57.0398395Z cache: true +2025-07-23T19:28:57.0399126Z ##[endgroup] +2025-07-23T19:28:57.2021335Z Setup go version spec 1.23.9 +2025-07-23T19:28:57.2034151Z Attempting to download 1.23.9... +2025-07-23T19:28:57.7649982Z matching 1.23.9... +2025-07-23T19:28:57.7691099Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz +2025-07-23T19:28:58.3892187Z Extracting Go... +2025-07-23T19:28:58.3994633Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/60b1434f-42a1-47fc-a10a-f4667a45a644 -f /home/runner/work/_temp/3e9464b8-4da0-4c4c-b6d4-38c95d686176 +2025-07-23T19:29:00.0426641Z Successfully extracted go to /home/runner/work/_temp/60b1434f-42a1-47fc-a10a-f4667a45a644 +2025-07-23T19:29:00.0427414Z Adding to the cache ... +2025-07-23T19:29:04.2892243Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 +2025-07-23T19:29:04.2893833Z Added go to the path +2025-07-23T19:29:04.2897070Z Successfully set up Go version 1.23.9 +2025-07-23T19:29:04.3081023Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:29:04.3107958Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:29:04.3135235Z /home/runner/go/pkg/mod +2025-07-23T19:29:04.3149659Z /home/runner/.cache/go-build +2025-07-23T19:29:04.5572327Z Cache hit for: setup-go-Linux-x64-ubuntu22-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:05.8480514Z Received 4194304 of 675091954 (0.6%), 4.0 MBs/sec +2025-07-23T19:29:06.8539342Z Received 130023424 of 675091954 (19.3%), 62.0 MBs/sec +2025-07-23T19:29:07.8497743Z Received 230686720 of 675091954 (34.2%), 73.3 MBs/sec +2025-07-23T19:29:08.8503070Z Received 331350016 of 675091954 (49.1%), 78.9 MBs/sec +2025-07-23T19:29:09.8556029Z Received 436207616 of 675091954 (64.6%), 83.2 MBs/sec +2025-07-23T19:29:10.8506513Z Received 536870912 of 675091954 (79.5%), 85.3 MBs/sec +2025-07-23T19:29:11.8510928Z Received 658505728 of 675091954 (97.5%), 89.7 MBs/sec +2025-07-23T19:29:12.4961613Z Received 675091954 of 675091954 (100.0%), 84.2 MBs/sec +2025-07-23T19:29:12.4962481Z Cache Size: ~644 MB (675091954 B) +2025-07-23T19:29:12.4997640Z [command]/usr/bin/tar -xf /home/runner/work/_temp/0e3892d4-ee3f-4459-97c3-5d56fc181423/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd +2025-07-23T19:29:18.2710234Z Cache restored successfully +2025-07-23T19:29:18.5678843Z Cache restored from key: setup-go-Linux-x64-ubuntu22-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:18.5704464Z go version go1.23.9 linux/amd64 +2025-07-23T19:29:18.5704671Z +2025-07-23T19:29:18.5705510Z ##[group]go env +2025-07-23T19:29:18.6225881Z GO111MODULE='' +2025-07-23T19:29:18.6226356Z GOARCH='amd64' +2025-07-23T19:29:18.6226760Z GOBIN='' +2025-07-23T19:29:18.6227090Z GOCACHE='/home/runner/.cache/go-build' +2025-07-23T19:29:18.6227667Z GOENV='/home/runner/.config/go/env' +2025-07-23T19:29:18.6228062Z GOEXE='' +2025-07-23T19:29:18.6228336Z GOEXPERIMENT='' +2025-07-23T19:29:18.6228655Z GOFLAGS='' +2025-07-23T19:29:18.6228950Z GOHOSTARCH='amd64' +2025-07-23T19:29:18.6229156Z GOHOSTOS='linux' +2025-07-23T19:29:18.6229341Z GOINSECURE='' +2025-07-23T19:29:18.6229553Z GOMODCACHE='/home/runner/go/pkg/mod' +2025-07-23T19:29:18.6229803Z GONOPROXY='' +2025-07-23T19:29:18.6229975Z GONOSUMDB='' +2025-07-23T19:29:18.6230147Z GOOS='linux' +2025-07-23T19:29:18.6230329Z GOPATH='/home/runner/go' +2025-07-23T19:29:18.6230539Z GOPRIVATE='' +2025-07-23T19:29:18.6230796Z GOPROXY='https://proxy.golang.org,direct' +2025-07-23T19:29:18.6231132Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' +2025-07-23T19:29:18.6231399Z GOSUMDB='sum.golang.org' +2025-07-23T19:29:18.6231632Z GOTMPDIR='' +2025-07-23T19:29:18.6232078Z GOTOOLCHAIN='auto' +2025-07-23T19:29:18.6232431Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' +2025-07-23T19:29:18.6232770Z GOVCS='' +2025-07-23T19:29:18.6232943Z GOVERSION='go1.23.9' +2025-07-23T19:29:18.6233132Z GODEBUG='' +2025-07-23T19:29:18.6233305Z GOTELEMETRY='local' +2025-07-23T19:29:18.6233564Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' +2025-07-23T19:29:18.6233839Z GCCGO='gccgo' +2025-07-23T19:29:18.6234014Z GOAMD64='v1' +2025-07-23T19:29:18.6234180Z AR='ar' +2025-07-23T19:29:18.6234344Z CC='gcc' +2025-07-23T19:29:18.6234501Z CXX='g++' +2025-07-23T19:29:18.6234659Z CGO_ENABLED='1' +2025-07-23T19:29:18.6235123Z GOMOD='/home/runner/work/coreth/coreth/go.mod' +2025-07-23T19:29:18.6235381Z GOWORK='' +2025-07-23T19:29:18.6235550Z CGO_CFLAGS='-O2 -g' +2025-07-23T19:29:18.6235738Z CGO_CPPFLAGS='' +2025-07-23T19:29:18.6235924Z CGO_CXXFLAGS='-O2 -g' +2025-07-23T19:29:18.6236114Z CGO_FFLAGS='-O2 -g' +2025-07-23T19:29:18.6236309Z CGO_LDFLAGS='-O2 -g' +2025-07-23T19:29:18.6236512Z PKG_CONFIG='pkg-config' +2025-07-23T19:29:18.6237177Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build2693634516=/tmp/go-build -gno-record-gcc-switches' +2025-07-23T19:29:18.6237697Z +2025-07-23T19:29:18.6238000Z ##[endgroup] +2025-07-23T19:29:18.6422933Z ##[group]Run go mod download +2025-07-23T19:29:18.6423288Z go mod download +2025-07-23T19:29:18.6461453Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:18.6461718Z ##[endgroup] +2025-07-23T19:29:18.7029704Z ##[group]Run ./scripts/run_task.sh check-generate-codec +2025-07-23T19:29:18.7030160Z ./scripts/run_task.sh check-generate-codec +2025-07-23T19:29:18.7063522Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:18.7063772Z ##[endgroup] +2025-07-23T19:29:19.2466833Z task: [generate-codec] grep -lr -E '^// Code generated by github\.com\/fjl\/gencodec\. DO NOT EDIT\.$' . | xargs -r rm +2025-07-23T19:29:19.2629499Z task: [generate-codec] go generate -run "github.com/fjl/gencodec" ./... +2025-07-23T19:29:27.5745159Z task: [check-clean-branch] git add --all +2025-07-23T19:29:27.5813021Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null +2025-07-23T19:29:27.5853256Z task: [check-clean-branch] git status --short +2025-07-23T19:29:27.5920033Z task: [check-clean-branch] git diff-index --quiet HEAD +2025-07-23T19:29:27.6041189Z ##[group]Run ./scripts/run_task.sh check-generate-mocks +2025-07-23T19:29:27.6041597Z ./scripts/run_task.sh check-generate-mocks +2025-07-23T19:29:27.6075421Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:27.6075659Z ##[endgroup] +2025-07-23T19:29:27.9946587Z task: [generate-mocks] grep -lr -E '^// Code generated by MockGen\. DO NOT EDIT\.$' . | xargs -r rm +2025-07-23T19:29:28.0095323Z task: [generate-mocks] go generate -run "go.uber.org/mock/mockgen" ./... +2025-07-23T19:29:35.7047602Z task: [check-clean-branch] git add --all +2025-07-23T19:29:35.7114218Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null +2025-07-23T19:29:35.7162767Z task: [check-clean-branch] git status --short +2025-07-23T19:29:35.7230162Z task: [check-clean-branch] git diff-index --quiet HEAD +2025-07-23T19:29:35.7358678Z ##[group]Run ./scripts/run_task.sh build +2025-07-23T19:29:35.7359005Z ./scripts/run_task.sh build +2025-07-23T19:29:35.7392117Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:35.7392355Z ##[endgroup] +2025-07-23T19:29:36.1297270Z task: [build] ./scripts/build.sh +2025-07-23T19:29:36.1494633Z Using branch: d85ec03 +2025-07-23T19:29:36.1512139Z Building Coreth @ GitCommit: d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 at /home/runner/.avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy +2025-07-23T19:29:42.1473120Z ##[group]Run ./scripts/run_task.sh build-test +2025-07-23T19:29:42.1473475Z ./scripts/run_task.sh build-test +2025-07-23T19:29:42.1505931Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:42.1506160Z env: +2025-07-23T19:29:42.1506321Z TIMEOUT: +2025-07-23T19:29:42.1506499Z ##[endgroup] +2025-07-23T19:29:42.5341234Z task: [build-test] ./scripts/build_test.sh +2025-07-23T19:29:42.5463578Z Using branch: d85ec03 +2025-07-23T19:29:42.9322542Z Test run 1 of 4 +2025-07-23T19:29:42.9322808Z Getting expected test list... +2025-07-23T19:29:51.3588552Z Expected tests: 1 tests +2025-07-23T19:29:51.3588937Z Running tests... +2025-07-23T19:36:52.7662718Z All tests passed! +2025-07-23T19:36:52.7808758Z ##[group]Run ./scripts/run_task.sh coverage +2025-07-23T19:36:52.7809339Z ./scripts/run_task.sh coverage +2025-07-23T19:36:52.7884647Z shell: /usr/bin/bash -e {0} +2025-07-23T19:36:52.7885241Z ##[endgroup] +2025-07-23T19:36:53.8544207Z task: [coverage] ./scripts/coverage.sh +2025-07-23T19:36:54.3320867Z Current test coverage : 0.0 +2025-07-23T19:36:54.3321303Z 60.0 % +2025-07-23T19:36:54.3321616Z ======================================== +2025-07-23T19:36:54.7656350Z github.com/ava-labs/coreth/accounts/abi/abi.go:59: JSON 100.0% +2025-07-23T19:36:54.7657423Z github.com/ava-labs/coreth/accounts/abi/abi.go:74: Pack 91.7% +2025-07-23T19:36:54.7658490Z github.com/ava-labs/coreth/accounts/abi/abi.go:103: PackEvent 81.8% +2025-07-23T19:36:54.7659579Z github.com/ava-labs/coreth/accounts/abi/abi.go:147: PackOutput 71.4% +2025-07-23T19:36:54.7660610Z github.com/ava-labs/coreth/accounts/abi/abi.go:162: getInputs 80.0% +2025-07-23T19:36:54.7661697Z github.com/ava-labs/coreth/accounts/abi/abi.go:182: getArguments 90.0% +2025-07-23T19:36:54.7662492Z github.com/ava-labs/coreth/accounts/abi/abi.go:205: UnpackInput 0.0% +2025-07-23T19:36:54.7663299Z github.com/ava-labs/coreth/accounts/abi/abi.go:214: Unpack 75.0% +2025-07-23T19:36:54.7664167Z github.com/ava-labs/coreth/accounts/abi/abi.go:228: UnpackInputIntoInterface 85.7% +2025-07-23T19:36:54.7665292Z github.com/ava-labs/coreth/accounts/abi/abi.go:243: UnpackIntoInterface 85.7% +2025-07-23T19:36:54.7666188Z github.com/ava-labs/coreth/accounts/abi/abi.go:256: UnpackIntoMap 100.0% +2025-07-23T19:36:54.7667045Z github.com/ava-labs/coreth/accounts/abi/abi.go:265: UnmarshalJSON 85.7% +2025-07-23T19:36:54.7667861Z github.com/ava-labs/coreth/accounts/abi/abi.go:330: MethodById 100.0% +2025-07-23T19:36:54.7668634Z github.com/ava-labs/coreth/accounts/abi/abi.go:344: EventByID 100.0% +2025-07-23T19:36:54.7669438Z github.com/ava-labs/coreth/accounts/abi/abi.go:355: ErrorByID 100.0% +2025-07-23T19:36:54.7670248Z github.com/ava-labs/coreth/accounts/abi/abi.go:365: HasFallback 100.0% +2025-07-23T19:36:54.7671056Z github.com/ava-labs/coreth/accounts/abi/abi.go:370: HasReceive 100.0% +2025-07-23T19:36:54.7671866Z github.com/ava-labs/coreth/accounts/abi/abi.go:402: UnpackRevert 81.8% +2025-07-23T19:36:54.7672719Z github.com/ava-labs/coreth/accounts/abi/argument.go:57: UnmarshalJSON 90.0% +2025-07-23T19:36:54.7673644Z github.com/ava-labs/coreth/accounts/abi/argument.go:75: NonIndexed 100.0% +2025-07-23T19:36:54.7674552Z github.com/ava-labs/coreth/accounts/abi/argument.go:86: isTuple 100.0% +2025-07-23T19:36:54.7676229Z github.com/ava-labs/coreth/accounts/abi/argument.go:91: Unpack 100.0% +2025-07-23T19:36:54.7677128Z github.com/ava-labs/coreth/accounts/abi/argument.go:102: UnpackIntoMap 58.3% +2025-07-23T19:36:54.7678008Z github.com/ava-labs/coreth/accounts/abi/argument.go:124: Copy 77.8% +2025-07-23T19:36:54.7678882Z github.com/ava-labs/coreth/accounts/abi/argument.go:142: copyAtomic 100.0% +2025-07-23T19:36:54.7679778Z github.com/ava-labs/coreth/accounts/abi/argument.go:153: copyTuple 95.7% +2025-07-23T19:36:54.7680598Z github.com/ava-labs/coreth/accounts/abi/argument.go:195: UnpackValues 100.0% +2025-07-23T19:36:54.7681454Z github.com/ava-labs/coreth/accounts/abi/argument.go:228: PackValues 0.0% +2025-07-23T19:36:54.7682554Z github.com/ava-labs/coreth/accounts/abi/argument.go:233: Pack 100.0% +2025-07-23T19:36:54.7683275Z github.com/ava-labs/coreth/accounts/abi/argument.go:276: ToCamelCase 100.0% +2025-07-23T19:36:54.7684245Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:56: NewTransactor 0.0% +2025-07-23T19:36:54.7685389Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:73: NewKeyStoreTransactor 0.0% +2025-07-23T19:36:54.7686349Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:96: NewKeyedTransactor 0.0% +2025-07-23T19:36:54.7687554Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:118: NewTransactorWithChainID 0.0% +2025-07-23T19:36:54.7688277Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:132: NewKeyStoreTransactorWithChainID 0.0% +2025-07-23T19:36:54.7688948Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:155: NewKeyedTransactorWithChainID 72.7% +2025-07-23T19:36:54.7689553Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:179: NewClefTransactor 0.0% +2025-07-23T19:36:54.7690118Z github.com/ava-labs/coreth/accounts/abi/bind/backends/simulated.go:67: Fork 0.0% +2025-07-23T19:36:54.7691128Z github.com/ava-labs/coreth/accounts/abi/bind/backends/simulated.go:78: NewSimulatedBackend 0.0% +2025-07-23T19:36:54.7692110Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:128: GetAbi 0.0% +2025-07-23T19:36:54.7692976Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:155: NewBoundContract 100.0% +2025-07-23T19:36:54.7693874Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:167: DeployContract 77.8% +2025-07-23T19:36:54.7694461Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:187: Call 100.0% +2025-07-23T19:36:54.7695447Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:265: Transact 75.0% +2025-07-23T19:36:54.7696255Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:278: RawTransact 0.0% +2025-07-23T19:36:54.7697039Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:286: Transfer 0.0% +2025-07-23T19:36:54.7697876Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:294: wrapNativeAssetCall 83.3% +2025-07-23T19:36:54.7698758Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:324: createDynamicTx 84.0% +2025-07-23T19:36:54.7699621Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:376: createLegacyTx 81.8% +2025-07-23T19:36:54.7700472Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:419: estimateGasLimit 71.4% +2025-07-23T19:36:54.7701289Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:440: getNonce 75.0% +2025-07-23T19:36:54.7702124Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:451: transact 66.7% +2025-07-23T19:36:54.7702907Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:502: FilterLogs 0.0% +2025-07-23T19:36:54.7703728Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:551: WatchLogs 0.0% +2025-07-23T19:36:54.7704523Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:581: UnpackLog 0.0% +2025-07-23T19:36:54.7705541Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:604: UnpackLogIntoMap 83.3% +2025-07-23T19:36:54.7706396Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:628: ensureContext 100.0% +2025-07-23T19:36:54.7707538Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:54: isKeyWord 100.0% +2025-07-23T19:36:54.7708376Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:95: Bind 92.2% +2025-07-23T19:36:54.7709247Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:323: bindBasicTypeGo 100.0% +2025-07-23T19:36:54.7710003Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:349: bindTypeGo 100.0% +2025-07-23T19:36:54.7710913Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:370: bindTopicTypeGo 100.0% +2025-07-23T19:36:54.7711994Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:394: bindStructTypeGo 100.0% +2025-07-23T19:36:54.7712874Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:445: alias 100.0% +2025-07-23T19:36:54.7713671Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:462: decapitalise 75.0% +2025-07-23T19:36:54.7714489Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:473: structured 100.0% +2025-07-23T19:36:54.7715537Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:496: hasStruct 100.0% +2025-07-23T19:36:54.7716415Z github.com/ava-labs/coreth/accounts/abi/bind/util.go:43: WaitMined 91.7% +2025-07-23T19:36:54.7717304Z github.com/ava-labs/coreth/accounts/abi/bind/util.go:71: WaitDeployed 90.9% +2025-07-23T19:36:54.7718425Z github.com/ava-labs/coreth/accounts/abi/error.go:54: NewError 92.9% +2025-07-23T19:36:54.7719232Z github.com/ava-labs/coreth/accounts/abi/error.go:91: String 100.0% +2025-07-23T19:36:54.7720017Z github.com/ava-labs/coreth/accounts/abi/error.go:95: Unpack 0.0% +2025-07-23T19:36:54.7720914Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:50: formatSliceString 66.7% +2025-07-23T19:36:54.7721904Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:59: sliceTypeCheck 90.0% +2025-07-23T19:36:54.7722850Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:82: typeCheck 100.0% +2025-07-23T19:36:54.7723771Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:98: typeErr 100.0% +2025-07-23T19:36:54.7724631Z github.com/ava-labs/coreth/accounts/abi/event.go:73: NewEvent 100.0% +2025-07-23T19:36:54.7725607Z github.com/ava-labs/coreth/accounts/abi/event.go:112: String 100.0% +2025-07-23T19:36:54.7726440Z github.com/ava-labs/coreth/accounts/abi/method.go:105: NewMethod 100.0% +2025-07-23T19:36:54.7727265Z github.com/ava-labs/coreth/accounts/abi/method.go:164: String 100.0% +2025-07-23T19:36:54.7728085Z github.com/ava-labs/coreth/accounts/abi/method.go:169: IsConstant 0.0% +2025-07-23T19:36:54.7728895Z github.com/ava-labs/coreth/accounts/abi/method.go:175: IsPayable 0.0% +2025-07-23T19:36:54.7729753Z github.com/ava-labs/coreth/accounts/abi/pack.go:42: packBytesSlice 100.0% +2025-07-23T19:36:54.7730602Z github.com/ava-labs/coreth/accounts/abi/pack.go:49: packElement 83.3% +2025-07-23T19:36:54.7731413Z github.com/ava-labs/coreth/accounts/abi/pack.go:85: packNum 80.0% +2025-07-23T19:36:54.7732295Z github.com/ava-labs/coreth/accounts/abi/reflect.go:52: ConvertType 83.3% +2025-07-23T19:36:54.7733142Z github.com/ava-labs/coreth/accounts/abi/reflect.go:66: indirect 100.0% +2025-07-23T19:36:54.7734026Z github.com/ava-labs/coreth/accounts/abi/reflect.go:75: reflectIntType 100.0% +2025-07-23T19:36:54.7735110Z github.com/ava-labs/coreth/accounts/abi/reflect.go:103: mustArrayToByteSlice 100.0% +2025-07-23T19:36:54.7736018Z github.com/ava-labs/coreth/accounts/abi/reflect.go:113: set 100.0% +2025-07-23T19:36:54.7736830Z github.com/ava-labs/coreth/accounts/abi/reflect.go:137: setSlice 75.0% +2025-07-23T19:36:54.7737650Z github.com/ava-labs/coreth/accounts/abi/reflect.go:151: setArray 84.6% +2025-07-23T19:36:54.7738484Z github.com/ava-labs/coreth/accounts/abi/reflect.go:172: setStruct 75.0% +2025-07-23T19:36:54.7739420Z github.com/ava-labs/coreth/accounts/abi/reflect.go:195: mapArgNamesToStructFields 100.0% +2025-07-23T19:36:54.7740467Z github.com/ava-labs/coreth/accounts/abi/topics.go:45: packTopic 96.4% +2025-07-23T19:36:54.7741205Z github.com/ava-labs/coreth/accounts/abi/topics.go:111: PackTopics 85.7% +2025-07-23T19:36:54.7742001Z github.com/ava-labs/coreth/accounts/abi/topics.go:125: MakeTopics 87.5% +2025-07-23T19:36:54.7742865Z github.com/ava-labs/coreth/accounts/abi/topics.go:139: genIntType 100.0% +2025-07-23T19:36:54.7743731Z github.com/ava-labs/coreth/accounts/abi/topics.go:153: ParseTopics 100.0% +2025-07-23T19:36:54.7744642Z github.com/ava-labs/coreth/accounts/abi/topics.go:162: ParseTopicsIntoMap 100.0% +2025-07-23T19:36:54.7745757Z github.com/ava-labs/coreth/accounts/abi/topics.go:174: parseTopicWithSetter 95.0% +2025-07-23T19:36:54.7746643Z github.com/ava-labs/coreth/accounts/abi/type.go:81: NewType 93.1% +2025-07-23T19:36:54.7747432Z github.com/ava-labs/coreth/accounts/abi/type.go:239: GetType 80.0% +2025-07-23T19:36:54.7748229Z github.com/ava-labs/coreth/accounts/abi/type.go:275: String 100.0% +2025-07-23T19:36:54.7749011Z github.com/ava-labs/coreth/accounts/abi/type.go:279: pack 90.9% +2025-07-23T19:36:54.7749871Z github.com/ava-labs/coreth/accounts/abi/type.go:362: requiresLengthPrefix 100.0% +2025-07-23T19:36:54.7750945Z github.com/ava-labs/coreth/accounts/abi/type.go:373: isDynamicType 100.0% +2025-07-23T19:36:54.7751818Z github.com/ava-labs/coreth/accounts/abi/type.go:393: getTypeSize 100.0% +2025-07-23T19:36:54.7752648Z github.com/ava-labs/coreth/accounts/abi/type.go:412: isLetter 100.0% +2025-07-23T19:36:54.7753489Z github.com/ava-labs/coreth/accounts/abi/type.go:423: isValidFieldName 66.7% +2025-07-23T19:36:54.7754351Z github.com/ava-labs/coreth/accounts/abi/unpack.go:49: ReadInteger 100.0% +2025-07-23T19:36:54.7755387Z github.com/ava-labs/coreth/accounts/abi/unpack.go:119: readBool 100.0% +2025-07-23T19:36:54.7756315Z github.com/ava-labs/coreth/accounts/abi/unpack.go:138: readFunctionType 66.7% +2025-07-23T19:36:54.7757270Z github.com/ava-labs/coreth/accounts/abi/unpack.go:151: ReadFixedBytes 80.0% +2025-07-23T19:36:54.7757929Z github.com/ava-labs/coreth/accounts/abi/unpack.go:163: forEachUnpack 81.2% +2025-07-23T19:36:54.7758471Z github.com/ava-labs/coreth/accounts/abi/unpack.go:203: forTupleUnpack 83.3% +2025-07-23T19:36:54.7759000Z github.com/ava-labs/coreth/accounts/abi/unpack.go:235: toGoType 83.9% +2025-07-23T19:36:54.7759549Z github.com/ava-labs/coreth/accounts/abi/unpack.go:299: lengthPrefixPointsTo 94.1% +2025-07-23T19:36:54.7760101Z github.com/ava-labs/coreth/accounts/abi/unpack.go:329: tuplePointsTo 71.4% +2025-07-23T19:36:54.7760644Z github.com/ava-labs/coreth/accounts/abi/utils.go:43: ResolveNameConflict 100.0% +2025-07-23T19:36:54.7761139Z github.com/ava-labs/coreth/cmd/abigen/main.go:90: init 100.0% +2025-07-23T19:36:54.7761574Z github.com/ava-labs/coreth/cmd/abigen/main.go:106: abigen 0.0% +2025-07-23T19:36:54.7762009Z github.com/ava-labs/coreth/cmd/abigen/main.go:245: main 0.0% +2025-07-23T19:36:54.7762498Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:24: newNameFilter 100.0% +2025-07-23T19:36:54.7763000Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:38: add 100.0% +2025-07-23T19:36:54.7763488Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:57: Matches 100.0% +2025-07-23T19:36:54.7764009Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:53: BuildConfig 0.0% +2025-07-23T19:36:54.7764556Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:86: BuildViper 0.0% +2025-07-23T19:36:54.7765436Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:109: BuildFlagSet 0.0% +2025-07-23T19:36:54.7766019Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:115: addSimulatorFlags 0.0% +2025-07-23T19:36:54.7766565Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:22: CreateKey 0.0% +2025-07-23T19:36:54.7767230Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:27: Load 0.0% +2025-07-23T19:36:54.7767700Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:36: LoadAll 0.0% +2025-07-23T19:36:54.7768171Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:73: Save 0.0% +2025-07-23T19:36:54.7768646Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:79: Generate 0.0% +2025-07-23T19:36:54.7769168Z github.com/ava-labs/coreth/cmd/simulator/load/funder.go:25: DistributeFunds 0.0% +2025-07-23T19:36:54.7769695Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:46: New 0.0% +2025-07-23T19:36:54.7770186Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:60: Execute 0.0% +2025-07-23T19:36:54.7770726Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:89: ConfirmReachedTip 0.0% +2025-07-23T19:36:54.7771283Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:125: ExecuteLoader 0.0% +2025-07-23T19:36:54.7771890Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:30: NewSingleAddressTxWorker 0.0% +2025-07-23T19:36:54.7772495Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:50: NewTxReceiptWorker 0.0% +2025-07-23T19:36:54.7773041Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:67: IssueTx 0.0% +2025-07-23T19:36:54.7773665Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:71: ConfirmTx 0.0% +2025-07-23T19:36:54.7774410Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:78: confirmTxByNonce 0.0% +2025-07-23T19:36:54.7775471Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:103: confirmTxByReceipt 0.0% +2025-07-23T19:36:54.7776428Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:120: LatestHeight 0.0% +2025-07-23T19:36:54.7777312Z github.com/ava-labs/coreth/cmd/simulator/main/main.go:19: main 0.0% +2025-07-23T19:36:54.7777951Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:29: NewDefaultMetrics 0.0% +2025-07-23T19:36:54.7778551Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:35: NewMetrics 0.0% +2025-07-23T19:36:54.7779097Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:68: Serve 0.0% +2025-07-23T19:36:54.7779633Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:106: Shutdown 0.0% +2025-07-23T19:36:54.7780172Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:111: Print 0.0% +2025-07-23T19:36:54.7780702Z github.com/ava-labs/coreth/cmd/simulator/txs/agent.go:51: NewIssueNAgent 0.0% +2025-07-23T19:36:54.7781217Z github.com/ava-labs/coreth/cmd/simulator/txs/agent.go:61: Execute 0.0% +2025-07-23T19:36:54.7781786Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:20: GenerateTxSequence 0.0% +2025-07-23T19:36:54.7782402Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:43: GenerateTxSequences 0.0% +2025-07-23T19:36:54.7782982Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:55: addTxs 0.0% +2025-07-23T19:36:54.7783576Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:76: ConvertTxSliceToSequence 0.0% +2025-07-23T19:36:54.7784161Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:88: Chan 0.0% +2025-07-23T19:36:54.7784636Z github.com/ava-labs/coreth/cmd/utils/cmd.go:33: Fatalf 0.0% +2025-07-23T19:36:54.7785287Z github.com/ava-labs/coreth/cmd/utils/flags.go:33: CheckExclusive 0.0% +2025-07-23T19:36:54.7785812Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:81: NewDummyEngine 0.0% +2025-07-23T19:36:54.7786356Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:95: NewETHFaker 0.0% +2025-07-23T19:36:54.7786885Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:102: NewFaker 100.0% +2025-07-23T19:36:54.7787436Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:108: NewFakerWithClock 0.0% +2025-07-23T19:36:54.7788035Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:115: NewFakerWithCallbacks 0.0% +2025-07-23T19:36:54.7788790Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:122: NewFakerWithMode 0.0% +2025-07-23T19:36:54.7789400Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:130: NewFakerWithModeAndClock 0.0% +2025-07-23T19:36:54.7789997Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:137: NewCoinbaseFaker 0.0% +2025-07-23T19:36:54.7790560Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:144: NewFullFaker 0.0% +2025-07-23T19:36:54.7791144Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:151: verifyHeaderGasFields 0.0% +2025-07-23T19:36:54.7791716Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:203: verifyHeader 0.0% +2025-07-23T19:36:54.7792246Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:263: Author 0.0% +2025-07-23T19:36:54.7792772Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:267: VerifyHeader 0.0% +2025-07-23T19:36:54.7793309Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:285: VerifyUncles 0.0% +2025-07-23T19:36:54.7793838Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:292: Prepare 0.0% +2025-07-23T19:36:54.7794381Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:297: verifyBlockFee 81.0% +2025-07-23T19:36:54.7795309Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:367: Finalize 0.0% +2025-07-23T19:36:54.7795909Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:419: FinalizeAndAssemble 0.0% +2025-07-23T19:36:54.7796493Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:477: CalcDifficulty 0.0% +2025-07-23T19:36:54.7797030Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:481: Close 0.0% +2025-07-23T19:36:54.7797597Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:47: VerifyEIP4844Header 0.0% +2025-07-23T19:36:54.7798216Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:81: CalcExcessBlobGas 100.0% +2025-07-23T19:36:54.7798812Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:90: CalcBlobFee 100.0% +2025-07-23T19:36:54.7799399Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:96: fakeExponential 100.0% +2025-07-23T19:36:54.7799976Z github.com/ava-labs/coreth/core/block_validator.go:53: NewBlockValidator 100.0% +2025-07-23T19:36:54.7800507Z github.com/ava-labs/coreth/core/block_validator.go:65: ValidateBody 62.5% +2025-07-23T19:36:54.7801019Z github.com/ava-labs/coreth/core/block_validator.go:122: ValidateState 66.7% +2025-07-23T19:36:54.7801531Z github.com/ava-labs/coreth/core/block_validator.go:150: CalcGasLimit 85.7% +2025-07-23T19:36:54.7802058Z github.com/ava-labs/coreth/core/blockchain.go:210: triedbConfig 90.0% +2025-07-23T19:36:54.7802603Z github.com/ava-labs/coreth/core/blockchain.go:260: DefaultCacheConfigWithScheme 100.0% +2025-07-23T19:36:54.7803147Z github.com/ava-labs/coreth/core/blockchain.go:385: NewBlockChain 81.8% +2025-07-23T19:36:54.7803680Z github.com/ava-labs/coreth/core/blockchain.go:507: writeBlockAcceptedIndices 66.7% +2025-07-23T19:36:54.7804244Z github.com/ava-labs/coreth/core/blockchain.go:518: batchBlockAcceptedIndices 80.0% +2025-07-23T19:36:54.7804957Z github.com/ava-labs/coreth/core/blockchain.go:529: flattenSnapshot 87.5% +2025-07-23T19:36:54.7805852Z github.com/ava-labs/coreth/core/blockchain.go:558: warmAcceptedCaches 84.2% +2025-07-23T19:36:54.7806648Z github.com/ava-labs/coreth/core/blockchain.go:595: startAcceptor 92.0% +2025-07-23T19:36:54.7807521Z github.com/ava-labs/coreth/core/blockchain.go:646: addAcceptorQueue 100.0% +2025-07-23T19:36:54.7808337Z github.com/ava-labs/coreth/core/blockchain.go:663: DrainAcceptorQueue 80.0% +2025-07-23T19:36:54.7809258Z github.com/ava-labs/coreth/core/blockchain.go:677: stopAcceptor 100.0% +2025-07-23T19:36:54.7810182Z github.com/ava-labs/coreth/core/blockchain.go:699: InitializeSnapshots 0.0% +2025-07-23T19:36:54.7811353Z github.com/ava-labs/coreth/core/blockchain.go:708: SenderCacher 0.0% +2025-07-23T19:36:54.7812245Z github.com/ava-labs/coreth/core/blockchain.go:714: loadLastState 81.8% +2025-07-23T19:36:54.7813113Z github.com/ava-labs/coreth/core/blockchain.go:762: loadGenesisState 90.0% +2025-07-23T19:36:54.7813777Z github.com/ava-labs/coreth/core/blockchain.go:780: Export 0.0% +2025-07-23T19:36:54.7814245Z github.com/ava-labs/coreth/core/blockchain.go:785: ExportN 0.0% +2025-07-23T19:36:54.7814719Z github.com/ava-labs/coreth/core/blockchain.go:792: ExportCallback 0.0% +2025-07-23T19:36:54.7815552Z github.com/ava-labs/coreth/core/blockchain.go:828: writeHeadBlock 87.5% +2025-07-23T19:36:54.7816088Z github.com/ava-labs/coreth/core/blockchain.go:847: ValidateCanonicalChain 66.7% +2025-07-23T19:36:54.7816652Z github.com/ava-labs/coreth/core/blockchain.go:956: stopWithoutSaving 100.0% +2025-07-23T19:36:54.7817140Z github.com/ava-labs/coreth/core/blockchain.go:988: Stop 100.0% +2025-07-23T19:36:54.7817617Z github.com/ava-labs/coreth/core/blockchain.go:1022: SetPreference 100.0% +2025-07-23T19:36:54.7818126Z github.com/ava-labs/coreth/core/blockchain.go:1034: setPreference 87.5% +2025-07-23T19:36:54.7818673Z github.com/ava-labs/coreth/core/blockchain.go:1060: LastConsensusAcceptedBlock 100.0% +2025-07-23T19:36:54.7819418Z github.com/ava-labs/coreth/core/blockchain.go:1071: LastAcceptedBlock 100.0% +2025-07-23T19:36:54.7819961Z github.com/ava-labs/coreth/core/blockchain.go:1083: Accept 84.6% +2025-07-23T19:36:54.7820442Z github.com/ava-labs/coreth/core/blockchain.go:1132: Reject 76.9% +2025-07-23T19:36:54.7820951Z github.com/ava-labs/coreth/core/blockchain.go:1162: writeKnownBlock 83.3% +2025-07-23T19:36:54.7821521Z github.com/ava-labs/coreth/core/blockchain.go:1175: writeCanonicalBlockWithLogs 100.0% +2025-07-23T19:36:54.7822051Z github.com/ava-labs/coreth/core/blockchain.go:1186: newTip 100.0% +2025-07-23T19:36:54.7822560Z github.com/ava-labs/coreth/core/blockchain.go:1195: writeBlockAndSetHead 83.3% +2025-07-23T19:36:54.7823104Z github.com/ava-labs/coreth/core/blockchain.go:1213: writeBlockWithState 61.1% +2025-07-23T19:36:54.7823609Z github.com/ava-labs/coreth/core/blockchain.go:1260: InsertChain 86.7% +2025-07-23T19:36:54.7824098Z github.com/ava-labs/coreth/core/blockchain.go:1296: InsertBlock 100.0% +2025-07-23T19:36:54.7824609Z github.com/ava-labs/coreth/core/blockchain.go:1300: InsertBlockManual 100.0% +2025-07-23T19:36:54.7825377Z github.com/ava-labs/coreth/core/blockchain.go:1311: insertBlock 88.7% +2025-07-23T19:36:54.7825996Z github.com/ava-labs/coreth/core/blockchain.go:1448: collectUnflattenedLogs 81.2% +2025-07-23T19:36:54.7826519Z github.com/ava-labs/coreth/core/blockchain.go:1477: collectLogs 100.0% +2025-07-23T19:36:54.7826990Z github.com/ava-labs/coreth/core/blockchain.go:1485: reorg 67.2% +2025-07-23T19:36:54.7827441Z github.com/ava-labs/coreth/core/blockchain.go:1642: String 75.0% +2025-07-23T19:36:54.7827907Z github.com/ava-labs/coreth/core/blockchain.go:1668: BadBlocks 0.0% +2025-07-23T19:36:54.7828378Z github.com/ava-labs/coreth/core/blockchain.go:1681: addBadBlock 100.0% +2025-07-23T19:36:54.7828862Z github.com/ava-labs/coreth/core/blockchain.go:1689: reportBlock 100.0% +2025-07-23T19:36:54.7829359Z github.com/ava-labs/coreth/core/blockchain.go:1705: reprocessBlock 77.8% +2025-07-23T19:36:54.7829864Z github.com/ava-labs/coreth/core/blockchain.go:1747: commitWithSnap 75.0% +2025-07-23T19:36:54.7830355Z github.com/ava-labs/coreth/core/blockchain.go:1783: initSnapshot 90.0% +2025-07-23T19:36:54.7830848Z github.com/ava-labs/coreth/core/blockchain.go:1814: reprocessState 83.1% +2025-07-23T19:36:54.7831354Z github.com/ava-labs/coreth/core/blockchain.go:1956: protectTrieIndex 60.0% +2025-07-23T19:36:54.7831921Z github.com/ava-labs/coreth/core/blockchain.go:1978: populateMissingTries 74.3% +2025-07-23T19:36:54.7832708Z github.com/ava-labs/coreth/core/blockchain.go:2059: CleanBlockRootsAboveLastAccepted 85.7% +2025-07-23T19:36:54.7833338Z github.com/ava-labs/coreth/core/blockchain.go:2102: gatherBlockRootsAboveLastAccepted 90.9% +2025-07-23T19:36:54.7833928Z github.com/ava-labs/coreth/core/blockchain.go:2132: ResetToStateSyncedBlock 0.0% +2025-07-23T19:36:54.7834463Z github.com/ava-labs/coreth/core/blockchain.go:2187: CacheConfig 100.0% +2025-07-23T19:36:54.7835123Z github.com/ava-labs/coreth/core/blockchain.go:2191: repairTxIndexTail 100.0% +2025-07-23T19:36:54.7835711Z github.com/ava-labs/coreth/core/blockchain_ext.go:15: getOrOverrideAsRegisteredCounter 83.3% +2025-07-23T19:36:54.7836331Z github.com/ava-labs/coreth/core/blockchain_iterator.go:60: newBlockChainIterator 85.0% +2025-07-23T19:36:54.7836917Z github.com/ava-labs/coreth/core/blockchain_iterator.go:120: populateReaders 88.9% +2025-07-23T19:36:54.7837446Z github.com/ava-labs/coreth/core/blockchain_iterator.go:139: Next 75.0% +2025-07-23T19:36:54.7837940Z github.com/ava-labs/coreth/core/blockchain_iterator.go:180: Stop 100.0% +2025-07-23T19:36:54.7838460Z github.com/ava-labs/coreth/core/blockchain_reader.go:45: CurrentHeader 100.0% +2025-07-23T19:36:54.7838986Z github.com/ava-labs/coreth/core/blockchain_reader.go:51: CurrentBlock 100.0% +2025-07-23T19:36:54.7839637Z github.com/ava-labs/coreth/core/blockchain_reader.go:57: HasHeader 100.0% +2025-07-23T19:36:54.7840158Z github.com/ava-labs/coreth/core/blockchain_reader.go:63: GetHeader 100.0% +2025-07-23T19:36:54.7840684Z github.com/ava-labs/coreth/core/blockchain_reader.go:69: GetHeaderByHash 100.0% +2025-07-23T19:36:54.7841232Z github.com/ava-labs/coreth/core/blockchain_reader.go:75: GetHeaderByNumber 100.0% +2025-07-23T19:36:54.7841755Z github.com/ava-labs/coreth/core/blockchain_reader.go:81: GetBody 0.0% +2025-07-23T19:36:54.7842244Z github.com/ava-labs/coreth/core/blockchain_reader.go:100: HasBlock 60.0% +2025-07-23T19:36:54.7842759Z github.com/ava-labs/coreth/core/blockchain_reader.go:111: HasFastBlock 0.0% +2025-07-23T19:36:54.7843266Z github.com/ava-labs/coreth/core/blockchain_reader.go:123: GetBlock 100.0% +2025-07-23T19:36:54.7843781Z github.com/ava-labs/coreth/core/blockchain_reader.go:138: GetBlockByHash 75.0% +2025-07-23T19:36:54.7844327Z github.com/ava-labs/coreth/core/blockchain_reader.go:148: GetBlockByNumber 100.0% +2025-07-23T19:36:54.7845004Z github.com/ava-labs/coreth/core/blockchain_reader.go:158: GetBlocksFromHash 0.0% +2025-07-23T19:36:54.7845559Z github.com/ava-labs/coreth/core/blockchain_reader.go:176: GetReceiptsByHash 76.9% +2025-07-23T19:36:54.7846119Z github.com/ava-labs/coreth/core/blockchain_reader.go:197: GetCanonicalHash 100.0% +2025-07-23T19:36:54.7846702Z github.com/ava-labs/coreth/core/blockchain_reader.go:211: GetTransactionLookup 87.5% +2025-07-23T19:36:54.7847254Z github.com/ava-labs/coreth/core/blockchain_reader.go:235: HasState 100.0% +2025-07-23T19:36:54.7847787Z github.com/ava-labs/coreth/core/blockchain_reader.go:242: HasBlockAndState 100.0% +2025-07-23T19:36:54.7848306Z github.com/ava-labs/coreth/core/blockchain_reader.go:252: State 100.0% +2025-07-23T19:36:54.7848802Z github.com/ava-labs/coreth/core/blockchain_reader.go:257: StateAt 100.0% +2025-07-23T19:36:54.7849304Z github.com/ava-labs/coreth/core/blockchain_reader.go:262: Config 100.0% +2025-07-23T19:36:54.7849790Z github.com/ava-labs/coreth/core/blockchain_reader.go:265: Engine 100.0% +2025-07-23T19:36:54.7850283Z github.com/ava-labs/coreth/core/blockchain_reader.go:268: Snapshots 0.0% +2025-07-23T19:36:54.7850774Z github.com/ava-labs/coreth/core/blockchain_reader.go:273: Validator 0.0% +2025-07-23T19:36:54.7851267Z github.com/ava-labs/coreth/core/blockchain_reader.go:278: Processor 0.0% +2025-07-23T19:36:54.7851761Z github.com/ava-labs/coreth/core/blockchain_reader.go:283: StateCache 0.0% +2025-07-23T19:36:54.7852462Z github.com/ava-labs/coreth/core/blockchain_reader.go:288: GasLimit 0.0% +2025-07-23T19:36:54.7852958Z github.com/ava-labs/coreth/core/blockchain_reader.go:293: Genesis 100.0% +2025-07-23T19:36:54.7853460Z github.com/ava-labs/coreth/core/blockchain_reader.go:298: GetVMConfig 0.0% +2025-07-23T19:36:54.7853963Z github.com/ava-labs/coreth/core/blockchain_reader.go:303: TrieDB 100.0% +2025-07-23T19:36:54.7854465Z github.com/ava-labs/coreth/core/blockchain_reader.go:308: HeaderChain 0.0% +2025-07-23T19:36:54.7855131Z github.com/ava-labs/coreth/core/blockchain_reader.go:313: SubscribeRemovedLogsEvent 0.0% +2025-07-23T19:36:54.7855723Z github.com/ava-labs/coreth/core/blockchain_reader.go:318: SubscribeChainEvent 0.0% +2025-07-23T19:36:54.7856308Z github.com/ava-labs/coreth/core/blockchain_reader.go:323: SubscribeChainHeadEvent 0.0% +2025-07-23T19:36:54.7856900Z github.com/ava-labs/coreth/core/blockchain_reader.go:328: SubscribeChainSideEvent 0.0% +2025-07-23T19:36:54.7857480Z github.com/ava-labs/coreth/core/blockchain_reader.go:333: SubscribeLogsEvent 0.0% +2025-07-23T19:36:54.7858074Z github.com/ava-labs/coreth/core/blockchain_reader.go:339: SubscribeBlockProcessingEvent 0.0% +2025-07-23T19:36:54.7858708Z github.com/ava-labs/coreth/core/blockchain_reader.go:344: SubscribeChainAcceptedEvent 100.0% +2025-07-23T19:36:54.7859461Z github.com/ava-labs/coreth/core/blockchain_reader.go:349: SubscribeAcceptedLogsEvent 100.0% +2025-07-23T19:36:54.7860123Z github.com/ava-labs/coreth/core/blockchain_reader.go:354: SubscribeAcceptedTransactionEvent 0.0% +2025-07-23T19:36:54.7860696Z github.com/ava-labs/coreth/core/blockchain_reader.go:359: GetLogs 0.0% +2025-07-23T19:36:54.7861198Z github.com/ava-labs/coreth/core/bloom_indexer.go:60: NewBloomIndexer 0.0% +2025-07-23T19:36:54.7861678Z github.com/ava-labs/coreth/core/bloom_indexer.go:72: Reset 0.0% +2025-07-23T19:36:54.7862139Z github.com/ava-labs/coreth/core/bloom_indexer.go:80: Process 0.0% +2025-07-23T19:36:54.7862604Z github.com/ava-labs/coreth/core/bloom_indexer.go:88: Commit 0.0% +2025-07-23T19:36:54.7863055Z github.com/ava-labs/coreth/core/bloom_indexer.go:101: Prune 0.0% +2025-07-23T19:36:54.7863554Z github.com/ava-labs/coreth/core/bloombits/generator.go:56: NewGenerator 83.3% +2025-07-23T19:36:54.7864082Z github.com/ava-labs/coreth/core/bloombits/generator.go:69: AddBloom 90.5% +2025-07-23T19:36:54.7864591Z github.com/ava-labs/coreth/core/bloombits/generator.go:101: Bitset 60.0% +2025-07-23T19:36:54.7865391Z github.com/ava-labs/coreth/core/bloombits/matcher.go:49: calcBloomIndexes 100.0% +2025-07-23T19:36:54.7865930Z github.com/ava-labs/coreth/core/bloombits/matcher.go:103: NewMatcher 100.0% +2025-07-23T19:36:54.7866454Z github.com/ava-labs/coreth/core/bloombits/matcher.go:148: addScheduler 100.0% +2025-07-23T19:36:54.7866959Z github.com/ava-labs/coreth/core/bloombits/matcher.go:158: Start 97.0% +2025-07-23T19:36:54.7867445Z github.com/ava-labs/coreth/core/bloombits/matcher.go:235: run 100.0% +2025-07-23T19:36:54.7867931Z github.com/ava-labs/coreth/core/bloombits/matcher.go:270: subMatch 98.3% +2025-07-23T19:36:54.7868442Z github.com/ava-labs/coreth/core/bloombits/matcher.go:392: distributor 100.0% +2025-07-23T19:36:54.7868953Z github.com/ava-labs/coreth/core/bloombits/matcher.go:534: Close 100.0% +2025-07-23T19:36:54.7869435Z github.com/ava-labs/coreth/core/bloombits/matcher.go:543: Error 0.0% +2025-07-23T19:36:54.7869952Z github.com/ava-labs/coreth/core/bloombits/matcher.go:553: allocateRetrieval 100.0% +2025-07-23T19:36:54.7870515Z github.com/ava-labs/coreth/core/bloombits/matcher.go:567: pendingSections 100.0% +2025-07-23T19:36:54.7871074Z github.com/ava-labs/coreth/core/bloombits/matcher.go:581: allocateSections 100.0% +2025-07-23T19:36:54.7871615Z github.com/ava-labs/coreth/core/bloombits/matcher.go:599: deliverSections 100.0% +2025-07-23T19:36:54.7872309Z github.com/ava-labs/coreth/core/bloombits/matcher.go:609: Multiplex 81.8% +2025-07-23T19:36:54.7872841Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:60: newScheduler 100.0% +2025-07-23T19:36:54.7873355Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:70: run 100.0% +2025-07-23T19:36:54.7873843Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:84: reset 100.0% +2025-07-23T19:36:54.7874378Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:98: scheduleRequests 100.0% +2025-07-23T19:36:54.7875080Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:145: scheduleDeliveries 100.0% +2025-07-23T19:36:54.7875646Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:182: deliver 100.0% +2025-07-23T19:36:54.7876168Z github.com/ava-labs/coreth/core/bounded_buffer.go:21: NewBoundedBuffer 100.0% +2025-07-23T19:36:54.7876665Z github.com/ava-labs/coreth/core/bounded_buffer.go:32: Insert 90.0% +2025-07-23T19:36:54.7877134Z github.com/ava-labs/coreth/core/bounded_buffer.go:55: Last 100.0% +2025-07-23T19:36:54.7877624Z github.com/ava-labs/coreth/core/chain_indexer.go:115: NewChainIndexer 100.0% +2025-07-23T19:36:54.7878135Z github.com/ava-labs/coreth/core/chain_indexer.go:142: AddCheckpoint 0.0% +2025-07-23T19:36:54.7878727Z github.com/ava-labs/coreth/core/chain_indexer.go:160: Start 0.0% +2025-07-23T19:36:54.7879197Z github.com/ava-labs/coreth/core/chain_indexer.go:169: Close 58.8% +2025-07-23T19:36:54.7879654Z github.com/ava-labs/coreth/core/chain_indexer.go:209: eventLoop 0.0% +2025-07-23T19:36:54.7880121Z github.com/ava-labs/coreth/core/chain_indexer.go:255: newHead 78.1% +2025-07-23T19:36:54.7880599Z github.com/ava-labs/coreth/core/chain_indexer.go:316: updateLoop 95.2% +2025-07-23T19:36:54.7881100Z github.com/ava-labs/coreth/core/chain_indexer.go:400: processSection 68.4% +2025-07-23T19:36:54.7881602Z github.com/ava-labs/coreth/core/chain_indexer.go:434: verifyLastHead 75.0% +2025-07-23T19:36:54.7882097Z github.com/ava-labs/coreth/core/chain_indexer.go:446: Sections 100.0% +2025-07-23T19:36:54.7882592Z github.com/ava-labs/coreth/core/chain_indexer.go:455: AddChildIndexer 70.0% +2025-07-23T19:36:54.7883072Z github.com/ava-labs/coreth/core/chain_indexer.go:477: Prune 0.0% +2025-07-23T19:36:54.7883566Z github.com/ava-labs/coreth/core/chain_indexer.go:483: loadValidSections 66.7% +2025-07-23T19:36:54.7884091Z github.com/ava-labs/coreth/core/chain_indexer.go:491: setValidSections 100.0% +2025-07-23T19:36:54.7884596Z github.com/ava-labs/coreth/core/chain_indexer.go:507: SectionHead 100.0% +2025-07-23T19:36:54.7885200Z github.com/ava-labs/coreth/core/chain_indexer.go:520: setSectionHead 100.0% +2025-07-23T19:36:54.7885721Z github.com/ava-labs/coreth/core/chain_indexer.go:529: removeSectionHead 100.0% +2025-07-23T19:36:54.7886229Z github.com/ava-labs/coreth/core/chain_makers.go:68: SetCoinbase 50.0% +2025-07-23T19:36:54.7886696Z github.com/ava-labs/coreth/core/chain_makers.go:80: SetExtra 0.0% +2025-07-23T19:36:54.7887154Z github.com/ava-labs/coreth/core/chain_makers.go:85: AppendExtra 0.0% +2025-07-23T19:36:54.7887615Z github.com/ava-labs/coreth/core/chain_makers.go:90: SetNonce 0.0% +2025-07-23T19:36:54.7888090Z github.com/ava-labs/coreth/core/chain_makers.go:97: SetDifficulty 100.0% +2025-07-23T19:36:54.7888568Z github.com/ava-labs/coreth/core/chain_makers.go:102: Difficulty 0.0% +2025-07-23T19:36:54.7889068Z github.com/ava-labs/coreth/core/chain_makers.go:108: SetParentBeaconRoot 0.0% +2025-07-23T19:36:54.7889559Z github.com/ava-labs/coreth/core/chain_makers.go:124: addTx 90.9% +2025-07-23T19:36:54.7890008Z github.com/ava-labs/coreth/core/chain_makers.go:149: AddTx 100.0% +2025-07-23T19:36:54.7890479Z github.com/ava-labs/coreth/core/chain_makers.go:160: AddTxWithChain 0.0% +2025-07-23T19:36:54.7890987Z github.com/ava-labs/coreth/core/chain_makers.go:167: AddTxWithVMConfig 100.0% +2025-07-23T19:36:54.7891667Z github.com/ava-labs/coreth/core/chain_makers.go:172: GetBalance 0.0% +2025-07-23T19:36:54.7892152Z github.com/ava-labs/coreth/core/chain_makers.go:180: AddUncheckedTx 0.0% +2025-07-23T19:36:54.7892618Z github.com/ava-labs/coreth/core/chain_makers.go:185: Number 0.0% +2025-07-23T19:36:54.7893083Z github.com/ava-labs/coreth/core/chain_makers.go:190: Timestamp 100.0% +2025-07-23T19:36:54.7893553Z github.com/ava-labs/coreth/core/chain_makers.go:195: BaseFee 100.0% +2025-07-23T19:36:54.7893997Z github.com/ava-labs/coreth/core/chain_makers.go:200: Gas 0.0% +2025-07-23T19:36:54.7894436Z github.com/ava-labs/coreth/core/chain_makers.go:205: Signer 0.0% +2025-07-23T19:36:54.7895050Z github.com/ava-labs/coreth/core/chain_makers.go:214: AddUncheckedReceipt 0.0% +2025-07-23T19:36:54.7895557Z github.com/ava-labs/coreth/core/chain_makers.go:220: TxNonce 66.7% +2025-07-23T19:36:54.7896027Z github.com/ava-labs/coreth/core/chain_makers.go:228: AddUncle 100.0% +2025-07-23T19:36:54.7896495Z github.com/ava-labs/coreth/core/chain_makers.go:235: PrevBlock 60.0% +2025-07-23T19:36:54.7896960Z github.com/ava-labs/coreth/core/chain_makers.go:248: OffsetTime 0.0% +2025-07-23T19:36:54.7897574Z github.com/ava-labs/coreth/core/chain_makers.go:257: SetOnBlockGenerated 0.0% +2025-07-23T19:36:54.7898101Z github.com/ava-labs/coreth/core/chain_makers.go:273: GenerateChain 79.2% +2025-07-23T19:36:54.7898632Z github.com/ava-labs/coreth/core/chain_makers.go:362: GenerateChainWithGenesis 87.5% +2025-07-23T19:36:54.7899150Z github.com/ava-labs/coreth/core/chain_makers.go:374: makeHeader 89.5% +2025-07-23T19:36:54.7899636Z github.com/ava-labs/coreth/core/chain_makers.go:425: newChainMaker 100.0% +2025-07-23T19:36:54.7900115Z github.com/ava-labs/coreth/core/chain_makers.go:434: add 100.0% +2025-07-23T19:36:54.7900581Z github.com/ava-labs/coreth/core/chain_makers.go:440: blockByNumber 0.0% +2025-07-23T19:36:54.7901063Z github.com/ava-labs/coreth/core/chain_makers.go:455: Config 100.0% +2025-07-23T19:36:54.7901512Z github.com/ava-labs/coreth/core/chain_makers.go:460: Engine 0.0% +2025-07-23T19:36:54.7901979Z github.com/ava-labs/coreth/core/chain_makers.go:464: CurrentHeader 0.0% +2025-07-23T19:36:54.7902489Z github.com/ava-labs/coreth/core/chain_makers.go:471: GetHeaderByNumber 0.0% +2025-07-23T19:36:54.7902994Z github.com/ava-labs/coreth/core/chain_makers.go:479: GetHeaderByHash 0.0% +2025-07-23T19:36:54.7903477Z github.com/ava-labs/coreth/core/chain_makers.go:487: GetHeader 0.0% +2025-07-23T19:36:54.7903935Z github.com/ava-labs/coreth/core/chain_makers.go:491: GetBlock 0.0% +2025-07-23T19:36:54.7904450Z github.com/ava-labs/coreth/core/coretest/test_indices.go:21: CheckTxIndices 100.0% +2025-07-23T19:36:54.7905204Z github.com/ava-labs/coreth/core/evm.go:47: init 100.0% +2025-07-23T19:36:54.7905669Z github.com/ava-labs/coreth/core/evm.go:61: OverrideNewEVMArgs 100.0% +2025-07-23T19:36:54.7906167Z github.com/ava-labs/coreth/core/evm.go:74: OverrideEVMResetArgs 100.0% +2025-07-23T19:36:54.7906632Z github.com/ava-labs/coreth/core/evm.go:79: wrapStateDB 100.0% +2025-07-23T19:36:54.7907089Z github.com/ava-labs/coreth/core/evm.go:90: GetCommittedState 100.0% +2025-07-23T19:36:54.7907570Z github.com/ava-labs/coreth/core/evm.go:106: NewEVMBlockContext 100.0% +2025-07-23T19:36:54.7908111Z github.com/ava-labs/coreth/core/evm.go:147: NewEVMBlockContextWithPredicateResults 0.0% +2025-07-23T19:36:54.7908636Z github.com/ava-labs/coreth/core/evm.go:160: NewEVMTxContext 100.0% +2025-07-23T19:36:54.7909081Z github.com/ava-labs/coreth/core/evm.go:173: GetHashFn 10.0% +2025-07-23T19:36:54.7909511Z github.com/ava-labs/coreth/core/evm.go:213: CanTransfer 100.0% +2025-07-23T19:36:54.7909938Z github.com/ava-labs/coreth/core/evm.go:218: Transfer 100.0% +2025-07-23T19:36:54.7910530Z github.com/ava-labs/coreth/core/extstate/statedb.go:38: New 100.0% +2025-07-23T19:36:54.7911025Z github.com/ava-labs/coreth/core/extstate/statedb.go:45: Prepare 100.0% +2025-07-23T19:36:54.7911585Z github.com/ava-labs/coreth/core/extstate/statedb.go:61: GetPredicateStorageSlots 75.0% +2025-07-23T19:36:54.7912130Z github.com/ava-labs/coreth/core/fifo_cache.go:24: NewFIFOCache 100.0% +2025-07-23T19:36:54.7912585Z github.com/ava-labs/coreth/core/fifo_cache.go:43: Put 100.0% +2025-07-23T19:36:54.7913006Z github.com/ava-labs/coreth/core/fifo_cache.go:51: Get 100.0% +2025-07-23T19:36:54.7913429Z github.com/ava-labs/coreth/core/fifo_cache.go:61: remove 0.0% +2025-07-23T19:36:54.7913844Z github.com/ava-labs/coreth/core/fifo_cache.go:68: Put 0.0% +2025-07-23T19:36:54.7914256Z github.com/ava-labs/coreth/core/fifo_cache.go:69: Get 100.0% +2025-07-23T19:36:54.7914681Z github.com/ava-labs/coreth/core/gaspool.go:40: AddGas 75.0% +2025-07-23T19:36:54.7915223Z github.com/ava-labs/coreth/core/gaspool.go:50: SubGas 100.0% +2025-07-23T19:36:54.7915638Z github.com/ava-labs/coreth/core/gaspool.go:59: Gas 0.0% +2025-07-23T19:36:54.7916050Z github.com/ava-labs/coreth/core/gaspool.go:64: SetGas 0.0% +2025-07-23T19:36:54.7916589Z github.com/ava-labs/coreth/core/gaspool.go:68: String 0.0% +2025-07-23T19:36:54.7917037Z github.com/ava-labs/coreth/core/gen_genesis.go:20: MarshalJSON 0.0% +2025-07-23T19:36:54.7917514Z github.com/ava-labs/coreth/core/gen_genesis.go:63: UnmarshalJSON 0.0% +2025-07-23T19:36:54.7917967Z github.com/ava-labs/coreth/core/genesis.go:109: Error 0.0% +2025-07-23T19:36:54.7918425Z github.com/ava-labs/coreth/core/genesis.go:128: SetupGenesisBlock 77.8% +2025-07-23T19:36:54.7918902Z github.com/ava-labs/coreth/core/genesis.go:212: IsVerkle 100.0% +2025-07-23T19:36:54.7919348Z github.com/ava-labs/coreth/core/genesis.go:217: ToBlock 100.0% +2025-07-23T19:36:54.7919804Z github.com/ava-labs/coreth/core/genesis.go:222: trieConfig 100.0% +2025-07-23T19:36:54.7920245Z github.com/ava-labs/coreth/core/genesis.go:233: toBlock 90.5% +2025-07-23T19:36:54.7920675Z github.com/ava-labs/coreth/core/genesis.go:321: Commit 80.0% +2025-07-23T19:36:54.7921126Z github.com/ava-labs/coreth/core/genesis.go:344: MustCommit 75.0% +2025-07-23T19:36:54.7921623Z github.com/ava-labs/coreth/core/genesis.go:353: GenesisBlockForTesting 100.0% +2025-07-23T19:36:54.7922132Z github.com/ava-labs/coreth/core/genesis.go:363: ReadBlockByHash 75.0% +2025-07-23T19:36:54.7922632Z github.com/ava-labs/coreth/core/headerchain.go:84: NewHeaderChain 85.7% +2025-07-23T19:36:54.7923138Z github.com/ava-labs/coreth/core/headerchain.go:121: GetBlockNumber 100.0% +2025-07-23T19:36:54.7923629Z github.com/ava-labs/coreth/core/headerchain.go:134: GetHeader 100.0% +2025-07-23T19:36:54.7924118Z github.com/ava-labs/coreth/core/headerchain.go:150: GetHeaderByHash 75.0% +2025-07-23T19:36:54.7924613Z github.com/ava-labs/coreth/core/headerchain.go:161: HasHeader 66.7% +2025-07-23T19:36:54.7925242Z github.com/ava-labs/coreth/core/headerchain.go:170: GetHeaderByNumber 100.0% +2025-07-23T19:36:54.7925771Z github.com/ava-labs/coreth/core/headerchain.go:181: GetCanonicalHash 100.0% +2025-07-23T19:36:54.7926286Z github.com/ava-labs/coreth/core/headerchain.go:187: CurrentHeader 100.0% +2025-07-23T19:36:54.7926788Z github.com/ava-labs/coreth/core/headerchain.go:193: SetCurrentHeader 100.0% +2025-07-23T19:36:54.7927284Z github.com/ava-labs/coreth/core/headerchain.go:199: SetGenesis 100.0% +2025-07-23T19:36:54.7927745Z github.com/ava-labs/coreth/core/headerchain.go:204: Config 0.0% +2025-07-23T19:36:54.7928192Z github.com/ava-labs/coreth/core/headerchain.go:207: Engine 0.0% +2025-07-23T19:36:54.7928642Z github.com/ava-labs/coreth/core/headerchain.go:211: GetBlock 0.0% +2025-07-23T19:36:54.7929280Z github.com/ava-labs/coreth/core/predicate_check.go:22: CheckPredicates 100.0% +2025-07-23T19:36:54.7929821Z github.com/ava-labs/coreth/core/sender_cacher.go:61: NewTxSenderCacher 100.0% +2025-07-23T19:36:54.7930314Z github.com/ava-labs/coreth/core/sender_cacher.go:78: cache 100.0% +2025-07-23T19:36:54.7930780Z github.com/ava-labs/coreth/core/sender_cacher.go:89: Recover 90.9% +2025-07-23T19:36:54.7931246Z github.com/ava-labs/coreth/core/sender_cacher.go:119: Shutdown 100.0% +2025-07-23T19:36:54.7931767Z github.com/ava-labs/coreth/core/state/database.go:42: NewDatabase 100.0% +2025-07-23T19:36:54.7932311Z github.com/ava-labs/coreth/core/state/database.go:46: NewDatabaseWithConfig 100.0% +2025-07-23T19:36:54.7932887Z github.com/ava-labs/coreth/core/state/database.go:51: NewDatabaseWithNodeDB 0.0% +2025-07-23T19:36:54.7933433Z github.com/ava-labs/coreth/core/state/database.go:55: wrapIfFirewood 100.0% +2025-07-23T19:36:54.7933976Z github.com/ava-labs/coreth/core/state/firewood_database.go:25: OpenTrie 100.0% +2025-07-23T19:36:54.7934540Z github.com/ava-labs/coreth/core/state/firewood_database.go:30: OpenStorageTrie 75.0% +2025-07-23T19:36:54.7935192Z github.com/ava-labs/coreth/core/state/firewood_database.go:40: CopyTrie 0.0% +2025-07-23T19:36:54.7935855Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:42: stateBloomHash 100.0% +2025-07-23T19:36:54.7936454Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:69: newStateBloomWithSize 80.0% +2025-07-23T19:36:54.7937056Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:80: NewStateBloomFromDisk 0.0% +2025-07-23T19:36:54.7937594Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:90: Commit 63.6% +2025-07-23T19:36:54.7938089Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:112: Put 37.5% +2025-07-23T19:36:54.7938580Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:128: Delete 0.0% +2025-07-23T19:36:54.7939085Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:134: Contain 100.0% +2025-07-23T19:36:54.7939593Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:96: NewPruner 66.7% +2025-07-23T19:36:54.7940100Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:136: prune 38.2% +2025-07-23T19:36:54.7940601Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:261: Prune 66.7% +2025-07-23T19:36:54.7941128Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:315: RecoverPruning 26.7% +2025-07-23T19:36:54.7941685Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:344: extractGenesis 48.6% +2025-07-23T19:36:54.7942248Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:403: bloomFilterName 100.0% +2025-07-23T19:36:54.7942808Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:407: isBloomFilter 0.0% +2025-07-23T19:36:54.7943425Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:415: findBloomFilter 50.0% +2025-07-23T19:36:54.7943985Z github.com/ava-labs/coreth/core/state/snapshot/context.go:55: Info 100.0% +2025-07-23T19:36:54.7944510Z github.com/ava-labs/coreth/core/state/snapshot/context.go:61: Debug 100.0% +2025-07-23T19:36:54.7945134Z github.com/ava-labs/coreth/core/state/snapshot/context.go:67: log 45.0% +2025-07-23T19:36:54.7945724Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:65: GenerateAccountTrieRoot 0.0% +2025-07-23T19:36:54.7946395Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:70: GenerateStorageTrieRoot 0.0% +2025-07-23T19:36:54.7947010Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:77: GenerateTrie 0.0% +2025-07-23T19:36:54.7947606Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:134: newGenerateStats 100.0% +2025-07-23T19:36:54.7948229Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:143: progressAccounts 0.0% +2025-07-23T19:36:54.7948841Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:152: finishAccounts 100.0% +2025-07-23T19:36:54.7949596Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:160: progressContract 0.0% +2025-07-23T19:36:54.7950208Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:172: finishContract 100.0% +2025-07-23T19:36:54.7950792Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:182: report 42.9% +2025-07-23T19:36:54.7951359Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:222: reportDone 100.0% +2025-07-23T19:36:54.7951933Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:236: runReport 100.0% +2025-07-23T19:36:54.7952518Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:257: generateTrieRoot 79.4% +2025-07-23T19:36:54.7953130Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:375: stackTrieGenerate 75.0% +2025-07-23T19:36:54.7953703Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:92: init 80.0% +2025-07-23T19:36:54.7954287Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:140: destructBloomHash 100.0% +2025-07-23T19:36:54.7955005Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:145: accountBloomHash 100.0% +2025-07-23T19:36:54.7955616Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:150: storageBloomHash 100.0% +2025-07-23T19:36:54.7956335Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:157: newDiffLayer 83.3% +2025-07-23T19:36:54.7956914Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:201: rebloom 100.0% +2025-07-23T19:36:54.7957455Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:242: Root 100.0% +2025-07-23T19:36:54.7958003Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:247: BlockHash 100.0% +2025-07-23T19:36:54.7958562Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:252: Parent 100.0% +2025-07-23T19:36:54.7959100Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:261: Stale 100.0% +2025-07-23T19:36:54.7959647Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:267: Account 88.9% +2025-07-23T19:36:54.7960201Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:286: AccountRLP 86.7% +2025-07-23T19:36:54.7960756Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:318: accountRLP 95.0% +2025-07-23T19:36:54.7961306Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:357: Storage 60.0% +2025-07-23T19:36:54.7961846Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:389: storage 69.6% +2025-07-23T19:36:54.7962382Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:431: Update 100.0% +2025-07-23T19:36:54.7962919Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:438: flatten 95.5% +2025-07-23T19:36:54.7963473Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:497: AccountList 100.0% +2025-07-23T19:36:54.7964044Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:533: StorageList 100.0% +2025-07-23T19:36:54.7964609Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:70: Release 0.0% +2025-07-23T19:36:54.7965242Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:78: Root 100.0% +2025-07-23T19:36:54.7965786Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:83: BlockHash 100.0% +2025-07-23T19:36:54.7966338Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:88: Parent 100.0% +2025-07-23T19:36:54.7966878Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:94: Stale 100.0% +2025-07-23T19:36:54.7967409Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:103: Account 88.9% +2025-07-23T19:36:54.7967970Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:120: AccountRLP 100.0% +2025-07-23T19:36:54.7968528Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:158: Storage 100.0% +2025-07-23T19:36:54.7969077Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:199: Update 100.0% +2025-07-23T19:36:54.7969831Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:55: generateSnapshot 91.7% +2025-07-23T19:36:54.7970435Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:90: journalProgress 88.2% +2025-07-23T19:36:54.7971032Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:127: checkAndFlush 50.0% +2025-07-23T19:36:54.7971594Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:178: generate 68.9% +2025-07-23T19:36:54.7972208Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:335: newMeteredSnapshotCache 100.0% +2025-07-23T19:36:54.7972841Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:69: AccountIterator 100.0% +2025-07-23T19:36:54.7973400Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:83: Next 70.0% +2025-07-23T19:36:54.7973924Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:108: Error 100.0% +2025-07-23T19:36:54.7974460Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:113: Hash 100.0% +2025-07-23T19:36:54.7975097Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:125: Account 81.8% +2025-07-23T19:36:54.7975652Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:143: Release 0.0% +2025-07-23T19:36:54.7976346Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:153: AccountIterator 100.0% +2025-07-23T19:36:54.7976932Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:162: Next 90.0% +2025-07-23T19:36:54.7977462Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:186: Error 100.0% +2025-07-23T19:36:54.7977997Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:194: Hash 100.0% +2025-07-23T19:36:54.7978527Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:199: Account 100.0% +2025-07-23T19:36:54.7979067Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:204: Release 33.3% +2025-07-23T19:36:54.7979649Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:233: StorageIterator 100.0% +2025-07-23T19:36:54.7980208Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:250: Next 70.0% +2025-07-23T19:36:54.7980737Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:275: Error 100.0% +2025-07-23T19:36:54.7981269Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:280: Hash 100.0% +2025-07-23T19:36:54.7981790Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:292: Slot 72.7% +2025-07-23T19:36:54.7982315Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:311: Release 0.0% +2025-07-23T19:36:54.7982896Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:325: StorageIterator 100.0% +2025-07-23T19:36:54.7983458Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:341: Next 90.0% +2025-07-23T19:36:54.7983980Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:365: Error 100.0% +2025-07-23T19:36:54.7984509Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:373: Hash 100.0% +2025-07-23T19:36:54.7985155Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:378: Slot 100.0% +2025-07-23T19:36:54.7985700Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:383: Release 33.3% +2025-07-23T19:36:54.7986328Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:53: initBinaryAccountIterator 100.0% +2025-07-23T19:36:54.7987046Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:78: initBinaryStorageIterator 82.6% +2025-07-23T19:36:54.7987685Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:130: Next 100.0% +2025-07-23T19:36:54.7988260Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:162: Error 100.0% +2025-07-23T19:36:54.7988824Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:167: Hash 100.0% +2025-07-23T19:36:54.7989405Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:176: Account 57.1% +2025-07-23T19:36:54.7990110Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:194: Slot 57.1% +2025-07-23T19:36:54.7990681Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:207: Release 0.0% +2025-07-23T19:36:54.7991325Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:214: newBinaryAccountIterator 100.0% +2025-07-23T19:36:54.7992032Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:221: newBinaryStorageIterator 100.0% +2025-07-23T19:36:54.7992654Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:47: Cmp 50.0% +2025-07-23T19:36:54.7993243Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:86: newFastIterator 92.9% +2025-07-23T19:36:54.7993829Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:124: init 87.5% +2025-07-23T19:36:54.7994385Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:179: Next 83.3% +2025-07-23T19:36:54.7995048Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:235: next 100.0% +2025-07-23T19:36:54.7995603Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:296: move 100.0% +2025-07-23T19:36:54.7996158Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:304: Error 100.0% +2025-07-23T19:36:54.7996920Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:309: Hash 100.0% +2025-07-23T19:36:54.7997504Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:315: Account 100.0% +2025-07-23T19:36:54.7998072Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:321: Slot 100.0% +2025-07-23T19:36:54.7998645Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:327: Release 100.0% +2025-07-23T19:36:54.7999207Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:335: Debug 0.0% +2025-07-23T19:36:54.7999830Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:345: newFastAccountIterator 100.0% +2025-07-23T19:36:54.8000510Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:352: newFastStorageIterator 100.0% +2025-07-23T19:36:54.8001125Z github.com/ava-labs/coreth/core/state/snapshot/journal.go:61: loadSnapshot 0.0% +2025-07-23T19:36:54.8001739Z github.com/ava-labs/coreth/core/state/snapshot/journal.go:143: ResetSnapshotGeneration 0.0% +2025-07-23T19:36:54.8002322Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:205: New 0.0% +2025-07-23T19:36:54.8002858Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:254: insertSnap 100.0% +2025-07-23T19:36:54.8003417Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:266: Snapshot 100.0% +2025-07-23T19:36:54.8003976Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:272: getSnapshot 85.7% +2025-07-23T19:36:54.8004527Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:288: Snapshots 0.0% +2025-07-23T19:36:54.8005233Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:323: WithBlockHashes 0.0% +2025-07-23T19:36:54.8005854Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:329: Update 0.0% +2025-07-23T19:36:54.8006452Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:350: UpdateWithBlockHashes 81.8% +2025-07-23T19:36:54.8007079Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:386: verifyIntegrity 57.1% +2025-07-23T19:36:54.8007639Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:413: Cap 0.0% +2025-07-23T19:36:54.8008172Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:433: Flatten 83.1% +2025-07-23T19:36:54.8008749Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:533: NumStateLayers 100.0% +2025-07-23T19:36:54.8009341Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:540: NumBlockLayers 100.0% +2025-07-23T19:36:54.8009926Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:548: Discard 100.0% +2025-07-23T19:36:54.8010643Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:560: discard 78.6% +2025-07-23T19:36:54.8011217Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:592: AbortGeneration 0.0% +2025-07-23T19:36:54.8011819Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:603: abortGeneration 63.6% +2025-07-23T19:36:54.8012403Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:631: diffToDisk 75.4% +2025-07-23T19:36:54.8012956Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:779: Release 0.0% +2025-07-23T19:36:54.8013492Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:788: Rebuild 0.0% +2025-07-23T19:36:54.8014063Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:842: AccountIterator 71.4% +2025-07-23T19:36:54.8014665Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:859: StorageIterator 100.0% +2025-07-23T19:36:54.8015414Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:863: StorageIteratorWithForce 71.4% +2025-07-23T19:36:54.8016012Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:878: Verify 0.0% +2025-07-23T19:36:54.8016547Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:886: verify 66.7% +2025-07-23T19:36:54.8017203Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:918: disklayer 83.3% +2025-07-23T19:36:54.8017766Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:941: diskRoot 0.0% +2025-07-23T19:36:54.8018314Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:951: generating 87.5% +2025-07-23T19:36:54.8018857Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:965: DiskRoot 0.0% +2025-07-23T19:36:54.8019389Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:977: Size 0.0% +2025-07-23T19:36:54.8020070Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:14: DiskAccountIterator 0.0% +2025-07-23T19:36:54.8020812Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:21: DiskStorageIterator 0.0% +2025-07-23T19:36:54.8021529Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:41: NewDiskLayer 0.0% +2025-07-23T19:36:54.8022359Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:53: NewTestTree 100.0% +2025-07-23T19:36:54.8023109Z github.com/ava-labs/coreth/core/state/snapshot/utils.go:43: CheckDanglingStorage 50.0% +2025-07-23T19:36:54.8023838Z github.com/ava-labs/coreth/core/state/snapshot/utils.go:53: checkDanglingDiskStorage 76.5% +2025-07-23T19:36:54.8024527Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:45: WipeSnapshot 80.0% +2025-07-23T19:36:54.8040021Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:68: wipeContent 60.0% +2025-07-23T19:36:54.8040714Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:84: wipeKeyRange 59.4% +2025-07-23T19:36:54.8041239Z github.com/ava-labs/coreth/core/state/statedb.go:65: New 75.0% +2025-07-23T19:36:54.8041720Z github.com/ava-labs/coreth/core/state/statedb.go:81: Done 0.0% +2025-07-23T19:36:54.8042242Z github.com/ava-labs/coreth/core/state/statedb.go:87: WithConcurrentWorkers 0.0% +2025-07-23T19:36:54.8042816Z github.com/ava-labs/coreth/core/state/statedb.go:95: GetBalanceMultiCoin 100.0% +2025-07-23T19:36:54.8043354Z github.com/ava-labs/coreth/core/state/statedb.go:101: GetState 100.0% +2025-07-23T19:36:54.8043877Z github.com/ava-labs/coreth/core/state/statedb.go:107: AddBalanceMultiCoin 75.0% +2025-07-23T19:36:54.8044425Z github.com/ava-labs/coreth/core/state/statedb.go:121: SubBalanceMultiCoin 71.4% +2025-07-23T19:36:54.8045054Z github.com/ava-labs/coreth/core/state/statedb.go:136: SetState 100.0% +2025-07-23T19:36:54.8045553Z github.com/ava-labs/coreth/core/state/statedb.go:144: SetTxContext 0.0% +2025-07-23T19:36:54.8046030Z github.com/ava-labs/coreth/core/state/statedb.go:151: GetTxHash 0.0% +2025-07-23T19:36:54.8046714Z github.com/ava-labs/coreth/core/state/statedb.go:155: Copy 0.0% +2025-07-23T19:36:54.8047215Z github.com/ava-labs/coreth/core/state/statedb.go:169: NormalizeCoinID 100.0% +2025-07-23T19:36:54.8047754Z github.com/ava-labs/coreth/core/state/statedb.go:177: NormalizeStateKey 100.0% +2025-07-23T19:36:54.8048259Z github.com/ava-labs/coreth/core/state_manager.go:41: init 100.0% +2025-07-23T19:36:54.8048740Z github.com/ava-labs/coreth/core/state_manager.go:67: NewTrieWriter 100.0% +2025-07-23T19:36:54.8049234Z github.com/ava-labs/coreth/core/state_manager.go:91: InsertTrie 100.0% +2025-07-23T19:36:54.8049710Z github.com/ava-labs/coreth/core/state_manager.go:97: AcceptTrie 100.0% +2025-07-23T19:36:54.8050195Z github.com/ava-labs/coreth/core/state_manager.go:103: RejectTrie 100.0% +2025-07-23T19:36:54.8050675Z github.com/ava-labs/coreth/core/state_manager.go:107: Shutdown 100.0% +2025-07-23T19:36:54.8051155Z github.com/ava-labs/coreth/core/state_manager.go:120: InsertTrie 50.0% +2025-07-23T19:36:54.8051623Z github.com/ava-labs/coreth/core/state_manager.go:134: AcceptTrie 68.4% +2025-07-23T19:36:54.8052100Z github.com/ava-labs/coreth/core/state_manager.go:182: RejectTrie 100.0% +2025-07-23T19:36:54.8052693Z github.com/ava-labs/coreth/core/state_manager.go:187: Shutdown 100.0% +2025-07-23T19:36:54.8053210Z github.com/ava-labs/coreth/core/state_processor.go:55: NewStateProcessor 100.0% +2025-07-23T19:36:54.8053754Z github.com/ava-labs/coreth/core/state_processor.go:70: Process 90.9% +2025-07-23T19:36:54.8054269Z github.com/ava-labs/coreth/core/state_processor.go:120: applyTransaction 92.6% +2025-07-23T19:36:54.8054912Z github.com/ava-labs/coreth/core/state_processor.go:174: ApplyTransaction 83.3% +2025-07-23T19:36:54.8055479Z github.com/ava-labs/coreth/core/state_processor.go:187: ProcessBeaconBlockRoot 100.0% +2025-07-23T19:36:54.8056098Z github.com/ava-labs/coreth/core/state_processor_ext.go:24: ApplyPrecompileActivations 23.8% +2025-07-23T19:36:54.8056685Z github.com/ava-labs/coreth/core/state_processor_ext.go:77: ApplyUpgrades 100.0% +2025-07-23T19:36:54.8057234Z github.com/ava-labs/coreth/core/state_processor_ext.go:91: NewBlockContext 100.0% +2025-07-23T19:36:54.8057750Z github.com/ava-labs/coreth/core/state_processor_ext.go:98: Number 0.0% +2025-07-23T19:36:54.8058250Z github.com/ava-labs/coreth/core/state_processor_ext.go:99: Timestamp 100.0% +2025-07-23T19:36:54.8058743Z github.com/ava-labs/coreth/core/state_transition.go:56: Unwrap 0.0% +2025-07-23T19:36:54.8059214Z github.com/ava-labs/coreth/core/state_transition.go:61: Failed 100.0% +2025-07-23T19:36:54.8059687Z github.com/ava-labs/coreth/core/state_transition.go:65: Return 0.0% +2025-07-23T19:36:54.8060148Z github.com/ava-labs/coreth/core/state_transition.go:74: Revert 0.0% +2025-07-23T19:36:54.8060635Z github.com/ava-labs/coreth/core/state_transition.go:82: IntrinsicGas 88.2% +2025-07-23T19:36:54.8061147Z github.com/ava-labs/coreth/core/state_transition.go:139: accessListGas 91.3% +2025-07-23T19:36:54.8061657Z github.com/ava-labs/coreth/core/state_transition.go:179: toWordSize 66.7% +2025-07-23T19:36:54.8062195Z github.com/ava-labs/coreth/core/state_transition.go:210: TransactionToMessage 100.0% +2025-07-23T19:36:54.8062748Z github.com/ava-labs/coreth/core/state_transition.go:241: ApplyMessage 100.0% +2025-07-23T19:36:54.8063281Z github.com/ava-labs/coreth/core/state_transition.go:277: NewStateTransition 100.0% +2025-07-23T19:36:54.8063785Z github.com/ava-labs/coreth/core/state_transition.go:287: to 66.7% +2025-07-23T19:36:54.8064244Z github.com/ava-labs/coreth/core/state_transition.go:294: buyGas 77.8% +2025-07-23T19:36:54.8064719Z github.com/ava-labs/coreth/core/state_transition.go:333: preCheck 89.5% +2025-07-23T19:36:54.8065517Z github.com/ava-labs/coreth/core/state_transition.go:426: TransitionDb 88.2% +2025-07-23T19:36:54.8066217Z github.com/ava-labs/coreth/core/state_transition.go:514: refundGas 100.0% +2025-07-23T19:36:54.8066719Z github.com/ava-labs/coreth/core/state_transition.go:539: gasUsed 100.0% +2025-07-23T19:36:54.8067213Z github.com/ava-labs/coreth/core/state_transition.go:544: blobGasUsed 100.0% +2025-07-23T19:36:54.8067688Z github.com/ava-labs/coreth/core/txindexer.go:46: Done 0.0% +2025-07-23T19:36:54.8068142Z github.com/ava-labs/coreth/core/txindexer.go:68: newTxIndexer 90.9% +2025-07-23T19:36:54.8068592Z github.com/ava-labs/coreth/core/txindexer.go:97: run 90.9% +2025-07-23T19:36:54.8069011Z github.com/ava-labs/coreth/core/txindexer.go:124: loop 91.7% +2025-07-23T19:36:54.8069440Z github.com/ava-labs/coreth/core/txindexer.go:191: report 0.0% +2025-07-23T19:36:54.8069876Z github.com/ava-labs/coreth/core/txindexer.go:213: close 100.0% +2025-07-23T19:36:54.8070318Z github.com/ava-labs/coreth/core/txindexer.go:224: lockedRun 100.0% +2025-07-23T19:36:54.8070865Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:124: newBlobTxMeta 100.0% +2025-07-23T19:36:54.8071433Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:333: New 100.0% +2025-07-23T19:36:54.8071962Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:349: Filter 0.0% +2025-07-23T19:36:54.8072606Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:356: Init 78.8% +2025-07-23T19:36:54.8073138Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:458: Close 60.0% +2025-07-23T19:36:54.8073713Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:480: parseTransaction 88.0% +2025-07-23T19:36:54.8074298Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:528: recheck 90.9% +2025-07-23T19:36:54.8074988Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:779: offload 0.0% +2025-07-23T19:36:54.8075517Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:803: Reset 0.0% +2025-07-23T19:36:54.8076038Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:875: reorg 0.0% +2025-07-23T19:36:54.8076560Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1003: reinject 0.0% +2025-07-23T19:36:54.8077110Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1047: SetGasTip 97.2% +2025-07-23T19:36:54.8077681Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1112: validateTx 100.0% +2025-07-23T19:36:54.8078223Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1197: Has 0.0% +2025-07-23T19:36:54.8078741Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1205: HasLocal 0.0% +2025-07-23T19:36:54.8079261Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1211: Get 0.0% +2025-07-23T19:36:54.8079769Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1243: Add 0.0% +2025-07-23T19:36:54.8080277Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1263: add 89.3% +2025-07-23T19:36:54.8080795Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1430: drop 54.5% +2025-07-23T19:36:54.8081328Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1485: Pending 0.0% +2025-07-23T19:36:54.8081903Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1547: IteratePending 0.0% +2025-07-23T19:36:54.8082467Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1565: SetMinFee 0.0% +2025-07-23T19:36:54.8083072Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1569: updateStorageMetrics 100.0% +2025-07-23T19:36:54.8083723Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1616: updateLimboMetrics 100.0% +2025-07-23T19:36:54.8084367Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1644: SubscribeTransactions 0.0% +2025-07-23T19:36:54.8085045Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1654: Nonce 0.0% +2025-07-23T19:36:54.8085768Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1666: Stats 0.0% +2025-07-23T19:36:54.8086320Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1682: Content 0.0% +2025-07-23T19:36:54.8086873Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1691: ContentFrom 0.0% +2025-07-23T19:36:54.8087425Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1698: Locals 0.0% +2025-07-23T19:36:54.8087962Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1704: Status 0.0% +2025-07-23T19:36:54.8088522Z github.com/ava-labs/coreth/core/txpool/blobpool/config.go:50: sanitize 100.0% +2025-07-23T19:36:54.8089097Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:60: newPriceHeap 100.0% +2025-07-23T19:36:54.8089672Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:84: reinit 85.7% +2025-07-23T19:36:54.8090218Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:101: Len 100.0% +2025-07-23T19:36:54.8090762Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:107: Less 100.0% +2025-07-23T19:36:54.8091293Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:131: Swap 100.0% +2025-07-23T19:36:54.8091823Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:138: Push 100.0% +2025-07-23T19:36:54.8092472Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:148: Pop 100.0% +2025-07-23T19:36:54.8093039Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:62: newLimbo 50.0% +2025-07-23T19:36:54.8093559Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:93: Close 100.0% +2025-07-23T19:36:54.8094081Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:99: parseBlob 0.0% +2025-07-23T19:36:54.8094618Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:126: finalize 0.0% +2025-07-23T19:36:54.8095238Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:149: push 0.0% +2025-07-23T19:36:54.8095743Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:166: pull 0.0% +2025-07-23T19:36:54.8096243Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:190: update 0.0% +2025-07-23T19:36:54.8096762Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:221: getAndDrop 0.0% +2025-07-23T19:36:54.8097307Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:243: setAndIndex 0.0% +2025-07-23T19:36:54.8097896Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:45: evictionPriority 100.0% +2025-07-23T19:36:54.8098532Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:58: evictionPriority1D 100.0% +2025-07-23T19:36:54.8099156Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:77: dynamicFeeJumps 100.0% +2025-07-23T19:36:54.8099729Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:87: intLog2 50.0% +2025-07-23T19:36:54.8100282Z github.com/ava-labs/coreth/core/txpool/blobpool/slotter.go:39: newSlotter 100.0% +2025-07-23T19:36:54.8100832Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:52: Write 100.0% +2025-07-23T19:36:54.8101356Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:53: Close 0.0% +2025-07-23T19:36:54.8101912Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:63: newTxJournal 100.0% +2025-07-23T19:36:54.8102472Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:71: load 87.1% +2025-07-23T19:36:54.8103000Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:132: insert 60.0% +2025-07-23T19:36:54.8103537Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:144: rotate 76.9% +2025-07-23T19:36:54.8104089Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:189: close 100.0% +2025-07-23T19:36:54.8104668Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:186: sanitize 46.2% +2025-07-23T19:36:54.8105348Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:275: New 80.0% +2025-07-23T19:36:54.8106050Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:312: Filter 0.0% +2025-07-23T19:36:54.8106615Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:325: Init 81.0% +2025-07-23T19:36:54.8107170Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:371: loop 96.8% +2025-07-23T19:36:54.8107737Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:439: Close 100.0% +2025-07-23T19:36:54.8108294Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:455: Reset 0.0% +2025-07-23T19:36:54.8108915Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:462: SubscribeTransactions 0.0% +2025-07-23T19:36:54.8109567Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:472: SetGasTip 100.0% +2025-07-23T19:36:54.8110167Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:493: SetMinFee 0.0% +2025-07-23T19:36:54.8110747Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:502: Nonce 100.0% +2025-07-23T19:36:54.8111321Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:511: Stats 100.0% +2025-07-23T19:36:54.8111886Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:520: stats 100.0% +2025-07-23T19:36:54.8112565Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:534: Content 88.9% +2025-07-23T19:36:54.8113195Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:551: ContentFrom 0.0% +2025-07-23T19:36:54.8113791Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:571: Pending 0.0% +2025-07-23T19:36:54.8114399Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:631: IteratePending 0.0% +2025-07-23T19:36:54.8115088Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:646: Locals 0.0% +2025-07-23T19:36:54.8115656Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:656: local 100.0% +2025-07-23T19:36:54.8116266Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:673: validateTxBasics 100.0% +2025-07-23T19:36:54.8116904Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:694: validateTx 100.0% +2025-07-23T19:36:54.8117475Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:743: add 88.3% +2025-07-23T19:36:54.8118058Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:893: isGapped 100.0% +2025-07-23T19:36:54.8118656Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:919: enqueueTx 95.0% +2025-07-23T19:36:54.8119251Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:958: journalTx 75.0% +2025-07-23T19:36:54.8119834Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:972: promoteTx 58.8% +2025-07-23T19:36:54.8120430Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1009: addLocals 100.0% +2025-07-23T19:36:54.8121028Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1015: addLocal 100.0% +2025-07-23T19:36:54.8121633Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1024: addRemotes 100.0% +2025-07-23T19:36:54.8122237Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1030: addRemote 100.0% +2025-07-23T19:36:54.8122867Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1035: addRemotesSync 100.0% +2025-07-23T19:36:54.8123507Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1040: addRemoteSync 100.0% +2025-07-23T19:36:54.8124107Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1049: Add 100.0% +2025-07-23T19:36:54.8124710Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1104: addTxsLocked 100.0% +2025-07-23T19:36:54.8125415Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1120: Status 90.9% +2025-07-23T19:36:54.8125979Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1139: Get 0.0% +2025-07-23T19:36:54.8126681Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1148: get 100.0% +2025-07-23T19:36:54.8127235Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1154: Has 0.0% +2025-07-23T19:36:54.8127796Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1158: HasLocal 0.0% +2025-07-23T19:36:54.8128382Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1171: removeTx 93.3% +2025-07-23T19:36:54.8128985Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1236: requestReset 66.7% +2025-07-23T19:36:54.8129660Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1247: requestPromoteExecutables 66.7% +2025-07-23T19:36:54.8130333Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1257: queueTxEvent 100.0% +2025-07-23T19:36:54.8130977Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1267: scheduleReorgLoop 96.6% +2025-07-23T19:36:54.8131605Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1337: runReorg 84.1% +2025-07-23T19:36:54.8132213Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1420: reset 23.1% +2025-07-23T19:36:54.8132833Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1520: promoteExecutables 100.0% +2025-07-23T19:36:54.8133612Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1590: truncatePending 69.6% +2025-07-23T19:36:54.8134268Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1675: truncateQueue 100.0% +2025-07-23T19:36:54.8135024Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1726: demoteUnexecutables 96.9% +2025-07-23T19:36:54.8135710Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1781: startPeriodicFeeUpdate 85.7% +2025-07-23T19:36:54.8136407Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1797: periodicBaseFeeUpdate 100.0% +2025-07-23T19:36:54.8137067Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1820: updateBaseFee 80.0% +2025-07-23T19:36:54.8137709Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1831: updateBaseFeeAt 83.3% +2025-07-23T19:36:54.8138309Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1849: Len 100.0% +2025-07-23T19:36:54.8138876Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1850: Less 100.0% +2025-07-23T19:36:54.8139440Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1851: Swap 100.0% +2025-07-23T19:36:54.8140030Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1863: newAccountSet 100.0% +2025-07-23T19:36:54.8140642Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1875: contains 100.0% +2025-07-23T19:36:54.8141244Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1882: containsTx 66.7% +2025-07-23T19:36:54.8141820Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1890: add 100.0% +2025-07-23T19:36:54.8142389Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1896: addTx 100.0% +2025-07-23T19:36:54.8142974Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1904: flatten 100.0% +2025-07-23T19:36:54.8143559Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1916: merge 100.0% +2025-07-23T19:36:54.8144152Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1943: newLookup 100.0% +2025-07-23T19:36:54.8144740Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1953: Range 60.0% +2025-07-23T19:36:54.8145401Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1974: Get 80.0% +2025-07-23T19:36:54.8145969Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1985: GetLocal 0.0% +2025-07-23T19:36:54.8146548Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1993: GetRemote 100.0% +2025-07-23T19:36:54.8147131Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2001: Count 100.0% +2025-07-23T19:36:54.8147862Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2009: LocalCount 0.0% +2025-07-23T19:36:54.8148472Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2017: RemoteCount 100.0% +2025-07-23T19:36:54.8149070Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2025: Slots 100.0% +2025-07-23T19:36:54.8149633Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2033: Add 100.0% +2025-07-23T19:36:54.8150195Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2048: Remove 83.3% +2025-07-23T19:36:54.8150799Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2069: RemoteToLocals 66.7% +2025-07-23T19:36:54.8151444Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2085: RemotesBelowTip 100.0% +2025-07-23T19:36:54.8152065Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2097: numSlots 100.0% +2025-07-23T19:36:54.8152629Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:49: Len 100.0% +2025-07-23T19:36:54.8153159Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:50: Less 100.0% +2025-07-23T19:36:54.8153668Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:51: Swap 100.0% +2025-07-23T19:36:54.8154311Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:53: Push 100.0% +2025-07-23T19:36:54.8154959Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:57: Pop 100.0% +2025-07-23T19:36:54.8155503Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:76: newSortedMap 100.0% +2025-07-23T19:36:54.8156039Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:84: Get 100.0% +2025-07-23T19:36:54.8156543Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:90: Put 100.0% +2025-07-23T19:36:54.8157065Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:103: Forward 100.0% +2025-07-23T19:36:54.8157608Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:126: Filter 100.0% +2025-07-23T19:36:54.8158142Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:135: reheap 100.0% +2025-07-23T19:36:54.8158678Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:148: filter 100.0% +2025-07-23T19:36:54.8159205Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:168: Cap 92.3% +2025-07-23T19:36:54.8159714Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:195: Remove 100.0% +2025-07-23T19:36:54.8160244Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:223: Ready 100.0% +2025-07-23T19:36:54.8160762Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:243: Len 100.0% +2025-07-23T19:36:54.8161280Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:247: flatten 100.0% +2025-07-23T19:36:54.8161818Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:264: Flatten 100.0% +2025-07-23T19:36:54.8162375Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:274: LastElement 100.0% +2025-07-23T19:36:54.8162924Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:294: newList 100.0% +2025-07-23T19:36:54.8163454Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:305: Contains 100.0% +2025-07-23T19:36:54.8163977Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:314: Add 100.0% +2025-07-23T19:36:54.8164497Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:361: Forward 100.0% +2025-07-23T19:36:54.8165122Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:376: Filter 95.0% +2025-07-23T19:36:54.8165633Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:412: Cap 100.0% +2025-07-23T19:36:54.8166150Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:421: Remove 100.0% +2025-07-23T19:36:54.8166675Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:444: Ready 100.0% +2025-07-23T19:36:54.8167325Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:451: Len 100.0% +2025-07-23T19:36:54.8167837Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:456: Empty 100.0% +2025-07-23T19:36:54.8168363Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:463: Flatten 100.0% +2025-07-23T19:36:54.8168917Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:469: LastElement 100.0% +2025-07-23T19:36:54.8169472Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:475: subTotalCost 75.0% +2025-07-23T19:36:54.8170003Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:493: Len 100.0% +2025-07-23T19:36:54.8170515Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:494: Swap 100.0% +2025-07-23T19:36:54.8171031Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:496: Less 100.0% +2025-07-23T19:36:54.8171530Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:507: cmp 100.0% +2025-07-23T19:36:54.8172041Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:522: Push 100.0% +2025-07-23T19:36:54.8172550Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:527: Pop 100.0% +2025-07-23T19:36:54.8173090Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:563: newPricedList 100.0% +2025-07-23T19:36:54.8173755Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:570: Put 100.0% +2025-07-23T19:36:54.8174296Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:581: Removed 100.0% +2025-07-23T19:36:54.8174950Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:593: Underpriced 100.0% +2025-07-23T19:36:54.8175522Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:603: underpricedFor 70.0% +2025-07-23T19:36:54.8176082Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:628: Discard 61.9% +2025-07-23T19:36:54.8176615Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:667: Reheap 100.0% +2025-07-23T19:36:54.8177163Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:695: SetBaseFee 100.0% +2025-07-23T19:36:54.8177716Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:47: newNoncer 100.0% +2025-07-23T19:36:54.8178248Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:56: get 100.0% +2025-07-23T19:36:54.8178769Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:72: set 100.0% +2025-07-23T19:36:54.8179300Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:81: setIfLower 62.5% +2025-07-23T19:36:54.8179842Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:97: setAll 100.0% +2025-07-23T19:36:54.8180357Z github.com/ava-labs/coreth/core/txpool/subpool.go:65: Resolve 66.7% +2025-07-23T19:36:54.8180826Z github.com/ava-labs/coreth/core/txpool/txpool.go:103: New 76.9% +2025-07-23T19:36:54.8181284Z github.com/ava-labs/coreth/core/txpool/txpool.go:143: reserver 69.2% +2025-07-23T19:36:54.8181759Z github.com/ava-labs/coreth/core/txpool/txpool.go:186: Close 76.9% +2025-07-23T19:36:54.8182219Z github.com/ava-labs/coreth/core/txpool/txpool.go:215: loop 92.6% +2025-07-23T19:36:54.8182680Z github.com/ava-labs/coreth/core/txpool/txpool.go:308: GasTip 100.0% +2025-07-23T19:36:54.8183165Z github.com/ava-labs/coreth/core/txpool/txpool.go:314: SetGasTip 100.0% +2025-07-23T19:36:54.8183635Z github.com/ava-labs/coreth/core/txpool/txpool.go:323: MinFee 0.0% +2025-07-23T19:36:54.8184103Z github.com/ava-labs/coreth/core/txpool/txpool.go:329: SetMinFee 100.0% +2025-07-23T19:36:54.8184576Z github.com/ava-labs/coreth/core/txpool/txpool.go:339: Has 75.0% +2025-07-23T19:36:54.8185141Z github.com/ava-labs/coreth/core/txpool/txpool.go:350: HasLocal 0.0% +2025-07-23T19:36:54.8185609Z github.com/ava-labs/coreth/core/txpool/txpool.go:360: Get 0.0% +2025-07-23T19:36:54.8186054Z github.com/ava-labs/coreth/core/txpool/txpool.go:372: Add 90.0% +2025-07-23T19:36:54.8186669Z github.com/ava-labs/coreth/core/txpool/txpool.go:415: AddRemotesSync 100.0% +2025-07-23T19:36:54.8187180Z github.com/ava-labs/coreth/core/txpool/txpool.go:425: Pending 100.0% +2025-07-23T19:36:54.8187678Z github.com/ava-labs/coreth/core/txpool/txpool.go:439: PendingSize 100.0% +2025-07-23T19:36:54.8188198Z github.com/ava-labs/coreth/core/txpool/txpool.go:451: IteratePending 66.7% +2025-07-23T19:36:54.8188741Z github.com/ava-labs/coreth/core/txpool/txpool.go:461: SubscribeTransactions 85.7% +2025-07-23T19:36:54.8189317Z github.com/ava-labs/coreth/core/txpool/txpool.go:475: SubscribeNewReorgEvent 100.0% +2025-07-23T19:36:54.8189840Z github.com/ava-labs/coreth/core/txpool/txpool.go:481: Nonce 100.0% +2025-07-23T19:36:54.8190299Z github.com/ava-labs/coreth/core/txpool/txpool.go:496: Stats 0.0% +2025-07-23T19:36:54.8190762Z github.com/ava-labs/coreth/core/txpool/txpool.go:509: Content 0.0% +2025-07-23T19:36:54.8191247Z github.com/ava-labs/coreth/core/txpool/txpool.go:529: ContentFrom 0.0% +2025-07-23T19:36:54.8191717Z github.com/ava-labs/coreth/core/txpool/txpool.go:540: Locals 75.0% +2025-07-23T19:36:54.8192170Z github.com/ava-labs/coreth/core/txpool/txpool.go:558: Status 0.0% +2025-07-23T19:36:54.8192737Z github.com/ava-labs/coreth/core/txpool/txpool.go:574: Sync 75.0% +2025-07-23T19:36:54.8193261Z github.com/ava-labs/coreth/core/txpool/validation.go:67: ValidateTransaction 73.9% +2025-07-23T19:36:54.8193838Z github.com/ava-labs/coreth/core/txpool/validation.go:160: validateBlobSidecar 66.7% +2025-07-23T19:36:54.8194445Z github.com/ava-labs/coreth/core/txpool/validation.go:222: ValidateTransactionWithState 88.9% +2025-07-23T19:36:54.8195130Z github.com/ava-labs/coreth/core/vm/runtime/env.go:35: NewEnv 100.0% +2025-07-23T19:36:54.8195629Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:71: setDefaults 94.7% +2025-07-23T19:36:54.8196143Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:134: Execute 100.0% +2025-07-23T19:36:54.8196647Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:169: Create 77.8% +2025-07-23T19:36:54.8197136Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:203: Call 100.0% +2025-07-23T19:36:54.8197600Z github.com/ava-labs/coreth/eth/api.go:40: NewEthereumAPI 0.0% +2025-07-23T19:36:54.8198025Z github.com/ava-labs/coreth/eth/api.go:45: Etherbase 0.0% +2025-07-23T19:36:54.8198426Z github.com/ava-labs/coreth/eth/api.go:50: Coinbase 0.0% +2025-07-23T19:36:54.8198852Z github.com/ava-labs/coreth/eth/api_admin.go:50: NewAdminAPI 0.0% +2025-07-23T19:36:54.8199295Z github.com/ava-labs/coreth/eth/api_admin.go:56: ExportChain 0.0% +2025-07-23T19:36:54.8199750Z github.com/ava-labs/coreth/eth/api_admin.go:93: hasAllBlocks 0.0% +2025-07-23T19:36:54.8200198Z github.com/ava-labs/coreth/eth/api_admin.go:104: ImportChain 0.0% +2025-07-23T19:36:54.8200650Z github.com/ava-labs/coreth/eth/api_backend.go:72: ChainConfig 0.0% +2025-07-23T19:36:54.8201095Z github.com/ava-labs/coreth/eth/api_backend.go:77: IsArchive 0.0% +2025-07-23T19:36:54.8201597Z github.com/ava-labs/coreth/eth/api_backend.go:83: HistoricalProofQueryWindow 0.0% +2025-07-23T19:36:54.8202153Z github.com/ava-labs/coreth/eth/api_backend.go:87: IsAllowUnfinalizedQueries 0.0% +2025-07-23T19:36:54.8202694Z github.com/ava-labs/coreth/eth/api_backend.go:91: SetAllowUnfinalizedQueries 0.0% +2025-07-23T19:36:54.8203191Z github.com/ava-labs/coreth/eth/api_backend.go:95: CurrentBlock 0.0% +2025-07-23T19:36:54.8203672Z github.com/ava-labs/coreth/eth/api_backend.go:99: LastAcceptedBlock 0.0% +2025-07-23T19:36:54.8204160Z github.com/ava-labs/coreth/eth/api_backend.go:103: HeaderByNumber 0.0% +2025-07-23T19:36:54.8204631Z github.com/ava-labs/coreth/eth/api_backend.go:126: HeaderByHash 0.0% +2025-07-23T19:36:54.8205223Z github.com/ava-labs/coreth/eth/api_backend.go:149: HeaderByNumberOrHash 0.0% +2025-07-23T19:36:54.8205876Z github.com/ava-labs/coreth/eth/api_backend.go:166: BlockByNumber 0.0% +2025-07-23T19:36:54.8206344Z github.com/ava-labs/coreth/eth/api_backend.go:190: BlockByHash 0.0% +2025-07-23T19:36:54.8206792Z github.com/ava-labs/coreth/eth/api_backend.go:215: GetBody 0.0% +2025-07-23T19:36:54.8207288Z github.com/ava-labs/coreth/eth/api_backend.go:225: BlockByNumberOrHash 0.0% +2025-07-23T19:36:54.8207776Z github.com/ava-labs/coreth/eth/api_backend.go:245: BadBlocks 0.0% +2025-07-23T19:36:54.8208272Z github.com/ava-labs/coreth/eth/api_backend.go:249: StateAndHeaderByNumber 0.0% +2025-07-23T19:36:54.8208827Z github.com/ava-labs/coreth/eth/api_backend.go:265: StateAndHeaderByNumberOrHash 0.0% +2025-07-23T19:36:54.8209352Z github.com/ava-labs/coreth/eth/api_backend.go:289: GetReceipts 0.0% +2025-07-23T19:36:54.8209815Z github.com/ava-labs/coreth/eth/api_backend.go:296: GetLogs 0.0% +2025-07-23T19:36:54.8210261Z github.com/ava-labs/coreth/eth/api_backend.go:303: GetEVM 0.0% +2025-07-23T19:36:54.8210760Z github.com/ava-labs/coreth/eth/api_backend.go:317: SubscribeRemovedLogsEvent 0.0% +2025-07-23T19:36:54.8211309Z github.com/ava-labs/coreth/eth/api_backend.go:321: SubscribePendingLogsEvent 0.0% +2025-07-23T19:36:54.8211955Z github.com/ava-labs/coreth/eth/api_backend.go:325: SubscribeChainEvent 0.0% +2025-07-23T19:36:54.8212515Z github.com/ava-labs/coreth/eth/api_backend.go:329: SubscribeChainAcceptedEvent 0.0% +2025-07-23T19:36:54.8213067Z github.com/ava-labs/coreth/eth/api_backend.go:333: SubscribeChainHeadEvent 0.0% +2025-07-23T19:36:54.8213605Z github.com/ava-labs/coreth/eth/api_backend.go:337: SubscribeChainSideEvent 0.0% +2025-07-23T19:36:54.8214128Z github.com/ava-labs/coreth/eth/api_backend.go:341: SubscribeLogsEvent 0.0% +2025-07-23T19:36:54.8214656Z github.com/ava-labs/coreth/eth/api_backend.go:345: SubscribeAcceptedLogsEvent 0.0% +2025-07-23T19:36:54.8215349Z github.com/ava-labs/coreth/eth/api_backend.go:349: SubscribeAcceptedTransactionEvent 0.0% +2025-07-23T19:36:54.8215869Z github.com/ava-labs/coreth/eth/api_backend.go:353: SendTx 0.0% +2025-07-23T19:36:54.8216342Z github.com/ava-labs/coreth/eth/api_backend.go:367: GetPoolTransactions 0.0% +2025-07-23T19:36:54.8216856Z github.com/ava-labs/coreth/eth/api_backend.go:380: GetPoolTransaction 0.0% +2025-07-23T19:36:54.8217352Z github.com/ava-labs/coreth/eth/api_backend.go:384: GetTransaction 0.0% +2025-07-23T19:36:54.8217829Z github.com/ava-labs/coreth/eth/api_backend.go:407: GetPoolNonce 0.0% +2025-07-23T19:36:54.8218290Z github.com/ava-labs/coreth/eth/api_backend.go:411: Stats 0.0% +2025-07-23T19:36:54.8218760Z github.com/ava-labs/coreth/eth/api_backend.go:415: TxPoolContent 0.0% +2025-07-23T19:36:54.8219259Z github.com/ava-labs/coreth/eth/api_backend.go:419: TxPoolContentFrom 0.0% +2025-07-23T19:36:54.8219773Z github.com/ava-labs/coreth/eth/api_backend.go:423: SubscribeNewTxsEvent 0.0% +2025-07-23T19:36:54.8220291Z github.com/ava-labs/coreth/eth/api_backend.go:427: EstimateBaseFee 0.0% +2025-07-23T19:36:54.8220774Z github.com/ava-labs/coreth/eth/api_backend.go:431: SuggestPrice 0.0% +2025-07-23T19:36:54.8221258Z github.com/ava-labs/coreth/eth/api_backend.go:435: SuggestGasTipCap 0.0% +2025-07-23T19:36:54.8221741Z github.com/ava-labs/coreth/eth/api_backend.go:439: FeeHistory 0.0% +2025-07-23T19:36:54.8222202Z github.com/ava-labs/coreth/eth/api_backend.go:443: ChainDb 0.0% +2025-07-23T19:36:54.8222645Z github.com/ava-labs/coreth/eth/api_backend.go:447: EventMux 0.0% +2025-07-23T19:36:54.8223108Z github.com/ava-labs/coreth/eth/api_backend.go:451: AccountManager 0.0% +2025-07-23T19:36:54.8223578Z github.com/ava-labs/coreth/eth/api_backend.go:455: ExtRPCEnabled 0.0% +2025-07-23T19:36:54.8224073Z github.com/ava-labs/coreth/eth/api_backend.go:459: UnprotectedAllowed 75.0% +2025-07-23T19:36:54.8224698Z github.com/ava-labs/coreth/eth/api_backend.go:479: RPCGasCap 0.0% +2025-07-23T19:36:54.8225262Z github.com/ava-labs/coreth/eth/api_backend.go:483: RPCEVMTimeout 0.0% +2025-07-23T19:36:54.8225735Z github.com/ava-labs/coreth/eth/api_backend.go:487: RPCTxFeeCap 0.0% +2025-07-23T19:36:54.8226228Z github.com/ava-labs/coreth/eth/api_backend.go:491: PriceOptionsConfig 0.0% +2025-07-23T19:36:54.8226713Z github.com/ava-labs/coreth/eth/api_backend.go:495: BloomStatus 0.0% +2025-07-23T19:36:54.8227175Z github.com/ava-labs/coreth/eth/api_backend.go:500: ServiceFilter 0.0% +2025-07-23T19:36:54.8227631Z github.com/ava-labs/coreth/eth/api_backend.go:506: Engine 0.0% +2025-07-23T19:36:54.8228083Z github.com/ava-labs/coreth/eth/api_backend.go:510: CurrentHeader 0.0% +2025-07-23T19:36:54.8228585Z github.com/ava-labs/coreth/eth/api_backend.go:514: GetMaxBlocksPerRequest 0.0% +2025-07-23T19:36:54.8229084Z github.com/ava-labs/coreth/eth/api_backend.go:518: StateAtBlock 0.0% +2025-07-23T19:36:54.8229568Z github.com/ava-labs/coreth/eth/api_backend.go:522: StateAtNextBlock 0.0% +2025-07-23T19:36:54.8230064Z github.com/ava-labs/coreth/eth/api_backend.go:526: StateAtTransaction 0.0% +2025-07-23T19:36:54.8230553Z github.com/ava-labs/coreth/eth/api_backend.go:530: MinRequiredTip 0.0% +2025-07-23T19:36:54.8231180Z github.com/ava-labs/coreth/eth/api_backend.go:535: isLatestAndAllowed 0.0% +2025-07-23T19:36:54.8231673Z github.com/ava-labs/coreth/eth/api_debug.go:56: NewDebugAPI 0.0% +2025-07-23T19:36:54.8232157Z github.com/ava-labs/coreth/eth/api_debug.go:61: DumpBlock 0.0% +2025-07-23T19:36:54.8232586Z github.com/ava-labs/coreth/eth/api_debug.go:91: Preimage 0.0% +2025-07-23T19:36:54.8233034Z github.com/ava-labs/coreth/eth/api_debug.go:100: GetBadBlocks 0.0% +2025-07-23T19:36:54.8233489Z github.com/ava-labs/coreth/eth/api_debug.go:109: AccountRange 0.0% +2025-07-23T19:36:54.8233946Z github.com/ava-labs/coreth/eth/api_debug.go:175: StorageRangeAt 0.0% +2025-07-23T19:36:54.8234416Z github.com/ava-labs/coreth/eth/api_debug.go:194: storageRangeAt 84.0% +2025-07-23T19:36:54.8235078Z github.com/ava-labs/coreth/eth/api_debug.go:235: GetModifiedAccountsByNumber 0.0% +2025-07-23T19:36:54.8235627Z github.com/ava-labs/coreth/eth/api_debug.go:263: GetModifiedAccountsByHash 0.0% +2025-07-23T19:36:54.8236140Z github.com/ava-labs/coreth/eth/api_debug.go:285: getModifiedAccounts 0.0% +2025-07-23T19:36:54.8236636Z github.com/ava-labs/coreth/eth/api_debug.go:326: GetAccessibleState 0.0% +2025-07-23T19:36:54.8237117Z github.com/ava-labs/coreth/eth/backend.go:121: roundUpCacheSize 0.0% +2025-07-23T19:36:54.8237555Z github.com/ava-labs/coreth/eth/backend.go:128: New 0.0% +2025-07-23T19:36:54.8237957Z github.com/ava-labs/coreth/eth/backend.go:309: APIs 0.0% +2025-07-23T19:36:54.8238373Z github.com/ava-labs/coreth/eth/backend.go:349: Etherbase 0.0% +2025-07-23T19:36:54.8238816Z github.com/ava-labs/coreth/eth/backend.go:361: SetEtherbase 0.0% +2025-07-23T19:36:54.8239246Z github.com/ava-labs/coreth/eth/backend.go:369: Miner 0.0% +2025-07-23T19:36:54.8239686Z github.com/ava-labs/coreth/eth/backend.go:371: AccountManager 0.0% +2025-07-23T19:36:54.8240147Z github.com/ava-labs/coreth/eth/backend.go:372: BlockChain 0.0% +2025-07-23T19:36:54.8240576Z github.com/ava-labs/coreth/eth/backend.go:373: TxPool 0.0% +2025-07-23T19:36:54.8240989Z github.com/ava-labs/coreth/eth/backend.go:374: EventMux 0.0% +2025-07-23T19:36:54.8241403Z github.com/ava-labs/coreth/eth/backend.go:375: Engine 0.0% +2025-07-23T19:36:54.8241810Z github.com/ava-labs/coreth/eth/backend.go:376: ChainDb 0.0% +2025-07-23T19:36:54.8242228Z github.com/ava-labs/coreth/eth/backend.go:378: NetVersion 0.0% +2025-07-23T19:36:54.8242668Z github.com/ava-labs/coreth/eth/backend.go:379: ArchiveMode 0.0% +2025-07-23T19:36:54.8243328Z github.com/ava-labs/coreth/eth/backend.go:380: BloomIndexer 0.0% +2025-07-23T19:36:54.8243763Z github.com/ava-labs/coreth/eth/backend.go:384: Start 0.0% +2025-07-23T19:36:54.8244168Z github.com/ava-labs/coreth/eth/backend.go:395: Stop 0.0% +2025-07-23T19:36:54.8244613Z github.com/ava-labs/coreth/eth/backend.go:413: LastAcceptedBlock 0.0% +2025-07-23T19:36:54.8245249Z github.com/ava-labs/coreth/eth/backend.go:423: precheckPopulateMissingTries 0.0% +2025-07-23T19:36:54.8245786Z github.com/ava-labs/coreth/eth/backend.go:447: handleOfflinePruning 0.0% +2025-07-23T19:36:54.8246286Z github.com/ava-labs/coreth/eth/bloombits.go:57: startBloomHandlers 0.0% +2025-07-23T19:36:54.8246822Z github.com/ava-labs/coreth/eth/chain_with_final_block.go:20: CurrentFinalBlock 0.0% +2025-07-23T19:36:54.8247377Z github.com/ava-labs/coreth/eth/ethconfig/config.go:58: NewDefaultConfig 100.0% +2025-07-23T19:36:54.8247904Z github.com/ava-labs/coreth/eth/ethconfig/gen_config.go:18: MarshalTOML 0.0% +2025-07-23T19:36:54.8248434Z github.com/ava-labs/coreth/eth/ethconfig/gen_config.go:108: UnmarshalTOML 0.0% +2025-07-23T19:36:54.8248940Z github.com/ava-labs/coreth/eth/filters/api.go:87: NewFilterAPI 100.0% +2025-07-23T19:36:54.8249422Z github.com/ava-labs/coreth/eth/filters/api.go:101: timeoutLoop 100.0% +2025-07-23T19:36:54.8250193Z github.com/ava-labs/coreth/eth/filters/api.go:134: NewPendingTransactionFilter 100.0% +2025-07-23T19:36:54.8250772Z github.com/ava-labs/coreth/eth/filters/api.go:168: NewPendingTransactions 0.0% +2025-07-23T19:36:54.8251316Z github.com/ava-labs/coreth/eth/filters/api.go:211: NewAcceptedTransactions 0.0% +2025-07-23T19:36:54.8251834Z github.com/ava-labs/coreth/eth/filters/api.go:253: NewBlockFilter 0.0% +2025-07-23T19:36:54.8252299Z github.com/ava-labs/coreth/eth/filters/api.go:291: NewHeads 0.0% +2025-07-23T19:36:54.8252736Z github.com/ava-labs/coreth/eth/filters/api.go:328: Logs 0.0% +2025-07-23T19:36:54.8253179Z github.com/ava-labs/coreth/eth/filters/api.go:387: NewFilter 87.0% +2025-07-23T19:36:54.8253629Z github.com/ava-labs/coreth/eth/filters/api.go:432: GetLogs 90.0% +2025-07-23T19:36:54.8254107Z github.com/ava-labs/coreth/eth/filters/api.go:470: UninstallFilter 100.0% +2025-07-23T19:36:54.8254605Z github.com/ava-labs/coreth/eth/filters/api.go:486: GetFilterLogs 0.0% +2025-07-23T19:36:54.8255203Z github.com/ava-labs/coreth/eth/filters/api.go:528: GetFilterChanges 80.0% +2025-07-23T19:36:54.8255689Z github.com/ava-labs/coreth/eth/filters/api.go:581: returnHashes 0.0% +2025-07-23T19:36:54.8256155Z github.com/ava-labs/coreth/eth/filters/api.go:590: returnLogs 66.7% +2025-07-23T19:36:54.8256631Z github.com/ava-labs/coreth/eth/filters/api.go:598: UnmarshalJSON 75.5% +2025-07-23T19:36:54.8257108Z github.com/ava-labs/coreth/eth/filters/api.go:703: decodeAddress 75.0% +2025-07-23T19:36:54.8257578Z github.com/ava-labs/coreth/eth/filters/api.go:711: decodeTopic 75.0% +2025-07-23T19:36:54.8258079Z github.com/ava-labs/coreth/eth/filters/filter.go:58: NewRangeFilter 100.0% +2025-07-23T19:36:54.8258595Z github.com/ava-labs/coreth/eth/filters/filter.go:91: NewBlockFilter 100.0% +2025-07-23T19:36:54.8259093Z github.com/ava-labs/coreth/eth/filters/filter.go:100: newFilter 100.0% +2025-07-23T19:36:54.8259562Z github.com/ava-labs/coreth/eth/filters/filter.go:110: Logs 80.4% +2025-07-23T19:36:54.8260044Z github.com/ava-labs/coreth/eth/filters/filter.go:222: rangeLogsAsync 70.6% +2025-07-23T19:36:54.8260537Z github.com/ava-labs/coreth/eth/filters/filter.go:263: indexedLogs 0.0% +2025-07-23T19:36:54.8261027Z github.com/ava-labs/coreth/eth/filters/filter.go:309: unindexedLogs 81.8% +2025-07-23T19:36:54.8261517Z github.com/ava-labs/coreth/eth/filters/filter.go:331: blockLogs 100.0% +2025-07-23T19:36:54.8262005Z github.com/ava-labs/coreth/eth/filters/filter.go:340: checkMatches 82.4% +2025-07-23T19:36:54.8262628Z github.com/ava-labs/coreth/eth/filters/filter.go:370: includes 100.0% +2025-07-23T19:36:54.8263114Z github.com/ava-labs/coreth/eth/filters/filter.go:380: filterLogs 100.0% +2025-07-23T19:36:54.8263613Z github.com/ava-labs/coreth/eth/filters/filter.go:414: bloomFilter 100.0% +2025-07-23T19:36:54.8264135Z github.com/ava-labs/coreth/eth/filters/filter_system.go:55: withDefaults 100.0% +2025-07-23T19:36:54.8264693Z github.com/ava-labs/coreth/eth/filters/filter_system.go:101: NewFilterSystem 100.0% +2025-07-23T19:36:54.8265332Z github.com/ava-labs/coreth/eth/filters/filter_system.go:111: getLogs 66.7% +2025-07-23T19:36:54.8265863Z github.com/ava-labs/coreth/eth/filters/filter_system.go:209: NewEventSystem 92.3% +2025-07-23T19:36:54.8266387Z github.com/ava-labs/coreth/eth/filters/filter_system.go:253: Err 100.0% +2025-07-23T19:36:54.8266898Z github.com/ava-labs/coreth/eth/filters/filter_system.go:258: Unsubscribe 100.0% +2025-07-23T19:36:54.8267439Z github.com/ava-labs/coreth/eth/filters/filter_system.go:283: subscribe 100.0% +2025-07-23T19:36:54.8267982Z github.com/ava-labs/coreth/eth/filters/filter_system.go:292: SubscribeLogs 100.0% +2025-07-23T19:36:54.8268558Z github.com/ava-labs/coreth/eth/filters/filter_system.go:334: SubscribeAcceptedLogs 0.0% +2025-07-23T19:36:54.8269277Z github.com/ava-labs/coreth/eth/filters/filter_system.go:359: subscribeAcceptedLogs 0.0% +2025-07-23T19:36:54.8269911Z github.com/ava-labs/coreth/eth/filters/filter_system.go:376: subscribeMinedPendingLogs 100.0% +2025-07-23T19:36:54.8270509Z github.com/ava-labs/coreth/eth/filters/filter_system.go:393: subscribeLogs 100.0% +2025-07-23T19:36:54.8271082Z github.com/ava-labs/coreth/eth/filters/filter_system.go:410: subscribePendingLogs 100.0% +2025-07-23T19:36:54.8271678Z github.com/ava-labs/coreth/eth/filters/filter_system.go:427: SubscribeNewHeads 100.0% +2025-07-23T19:36:54.8272274Z github.com/ava-labs/coreth/eth/filters/filter_system.go:443: SubscribeAcceptedHeads 0.0% +2025-07-23T19:36:54.8272878Z github.com/ava-labs/coreth/eth/filters/filter_system.go:459: SubscribePendingTxs 100.0% +2025-07-23T19:36:54.8273465Z github.com/ava-labs/coreth/eth/filters/filter_system.go:475: SubscribeAcceptedTxs 0.0% +2025-07-23T19:36:54.8274032Z github.com/ava-labs/coreth/eth/filters/filter_system.go:491: handleLogs 83.3% +2025-07-23T19:36:54.8274589Z github.com/ava-labs/coreth/eth/filters/filter_system.go:503: handleAcceptedLogs 33.3% +2025-07-23T19:36:54.8275256Z github.com/ava-labs/coreth/eth/filters/filter_system.go:515: handlePendingLogs 83.3% +2025-07-23T19:36:54.8275817Z github.com/ava-labs/coreth/eth/filters/filter_system.go:527: handleTxsEvent 100.0% +2025-07-23T19:36:54.8276399Z github.com/ava-labs/coreth/eth/filters/filter_system.go:533: handleTxsAcceptedEvent 0.0% +2025-07-23T19:36:54.8276981Z github.com/ava-labs/coreth/eth/filters/filter_system.go:539: handleChainEvent 100.0% +2025-07-23T19:36:54.8277577Z github.com/ava-labs/coreth/eth/filters/filter_system.go:545: handleChainAcceptedEvent 0.0% +2025-07-23T19:36:54.8278150Z github.com/ava-labs/coreth/eth/filters/filter_system.go:552: eventLoop 53.8% +2025-07-23T19:36:54.8278694Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:63: Estimate 73.4% +2025-07-23T19:36:54.8279245Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:199: execute 88.9% +2025-07-23T19:36:54.8279775Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:218: run 91.7% +2025-07-23T19:36:54.8280343Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:63: newFeeInfoProvider 100.0% +2025-07-23T19:36:54.8280920Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:92: addHeader 100.0% +2025-07-23T19:36:54.8281452Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:125: get 100.0% +2025-07-23T19:36:54.8281997Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:136: populateCache 83.3% +2025-07-23T19:36:54.8282705Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:68: processBlock 84.6% +2025-07-23T19:36:54.8283270Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:89: processPercentiles 72.2% +2025-07-23T19:36:54.8283849Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:124: resolveBlockRange 100.0% +2025-07-23T19:36:54.8284412Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:177: FeeHistory 74.4% +2025-07-23T19:36:54.8285036Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:132: NewOracle 83.3% +2025-07-23T19:36:54.8285568Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:211: EstimateBaseFee 0.0% +2025-07-23T19:36:54.8286122Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:220: estimateNextBaseFee 57.1% +2025-07-23T19:36:54.8286669Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:239: SuggestPrice 60.0% +2025-07-23T19:36:54.8287198Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:266: SuggestTipCap 100.0% +2025-07-23T19:36:54.8287728Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:271: suggestTip 85.7% +2025-07-23T19:36:54.8288228Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:347: getFeeInfo 42.9% +2025-07-23T19:36:54.8288718Z github.com/ava-labs/coreth/eth/state_accessor.go:53: hashState 0.0% +2025-07-23T19:36:54.8289314Z github.com/ava-labs/coreth/eth/state_accessor.go:193: pathState 0.0% +2025-07-23T19:36:54.8289819Z github.com/ava-labs/coreth/eth/state_accessor.go:227: stateAtBlock 0.0% +2025-07-23T19:36:54.8290325Z github.com/ava-labs/coreth/eth/state_accessor.go:240: stateAtTransaction 0.0% +2025-07-23T19:36:54.8290849Z github.com/ava-labs/coreth/eth/state_accessor.go:287: StateAtNextBlock 0.0% +2025-07-23T19:36:54.8291337Z github.com/ava-labs/coreth/eth/tracers/api.go:115: NewAPI 100.0% +2025-07-23T19:36:54.8291816Z github.com/ava-labs/coreth/eth/tracers/api.go:127: NewFileTracerAPI 0.0% +2025-07-23T19:36:54.8292310Z github.com/ava-labs/coreth/eth/tracers/api.go:133: chainContext 100.0% +2025-07-23T19:36:54.8292793Z github.com/ava-labs/coreth/eth/tracers/api.go:139: blockByNumber 83.3% +2025-07-23T19:36:54.8293269Z github.com/ava-labs/coreth/eth/tracers/api.go:152: blockByHash 0.0% +2025-07-23T19:36:54.8293771Z github.com/ava-labs/coreth/eth/tracers/api.go:168: blockByNumberAndHash 66.7% +2025-07-23T19:36:54.8294258Z github.com/ava-labs/coreth/eth/tracers/api.go:213: String 0.0% +2025-07-23T19:36:54.8294710Z github.com/ava-labs/coreth/eth/tracers/api.go:243: TraceChain 0.0% +2025-07-23T19:36:54.8295267Z github.com/ava-labs/coreth/eth/tracers/api.go:276: traceChain 76.8% +2025-07-23T19:36:54.8295762Z github.com/ava-labs/coreth/eth/tracers/api.go:467: TraceBlockByNumber 100.0% +2025-07-23T19:36:54.8296272Z github.com/ava-labs/coreth/eth/tracers/api.go:477: TraceBlockByHash 0.0% +2025-07-23T19:36:54.8296751Z github.com/ava-labs/coreth/eth/tracers/api.go:487: TraceBlock 0.0% +2025-07-23T19:36:54.8297237Z github.com/ava-labs/coreth/eth/tracers/api.go:497: TraceBlockFromFile 0.0% +2025-07-23T19:36:54.8297734Z github.com/ava-labs/coreth/eth/tracers/api.go:508: TraceBadBlock 0.0% +2025-07-23T19:36:54.8298246Z github.com/ava-labs/coreth/eth/tracers/api.go:529: StandardTraceBlockToFile 0.0% +2025-07-23T19:36:54.8298778Z github.com/ava-labs/coreth/eth/tracers/api.go:539: IntermediateRoots 0.0% +2025-07-23T19:36:54.8299309Z github.com/ava-labs/coreth/eth/tracers/api.go:598: StandardTraceBadBlockToFile 0.0% +2025-07-23T19:36:54.8299824Z github.com/ava-labs/coreth/eth/tracers/api.go:619: traceBlock 76.0% +2025-07-23T19:36:54.8300313Z github.com/ava-labs/coreth/eth/tracers/api.go:679: traceBlockParallel 0.0% +2025-07-23T19:36:54.8300836Z github.com/ava-labs/coreth/eth/tracers/api.go:756: standardTraceBlockToFile 0.0% +2025-07-23T19:36:54.8301334Z github.com/ava-labs/coreth/eth/tracers/api.go:866: containsTx 0.0% +2025-07-23T19:36:54.8301987Z github.com/ava-labs/coreth/eth/tracers/api.go:877: TraceTransaction 73.7% +2025-07-23T19:36:54.8302467Z github.com/ava-labs/coreth/eth/tracers/api.go:920: TraceCall 80.6% +2025-07-23T19:36:54.8302912Z github.com/ava-labs/coreth/eth/tracers/api.go:996: traceTx 69.6% +2025-07-23T19:36:54.8303358Z github.com/ava-labs/coreth/eth/tracers/api.go:1042: APIs 0.0% +2025-07-23T19:36:54.8303821Z github.com/ava-labs/coreth/eth/tracers/api.go:1060: overrideConfig 0.0% +2025-07-23T19:36:54.8304338Z github.com/ava-labs/coreth/eth/tracers/tracker.go:49: newStateTracker 100.0% +2025-07-23T19:36:54.8304954Z github.com/ava-labs/coreth/eth/tracers/tracker.go:62: releaseState 100.0% +2025-07-23T19:36:54.8305458Z github.com/ava-labs/coreth/eth/tracers/tracker.go:95: callReleases 100.0% +2025-07-23T19:36:54.8305935Z github.com/ava-labs/coreth/eth/tracers/tracker.go:106: wait 87.5% +2025-07-23T19:36:54.8306444Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:53: New 0.0% +2025-07-23T19:36:54.8307049Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:59: CreateAccessList 0.0% +2025-07-23T19:36:54.8307673Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:92: GetProof 0.0% +2025-07-23T19:36:54.8308401Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:156: CallContract 0.0% +2025-07-23T19:36:54.8309027Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:166: GCStats 0.0% +2025-07-23T19:36:54.8309616Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:173: MemStats 0.0% +2025-07-23T19:36:54.8310286Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:180: SubscribePendingTransactions 0.0% +2025-07-23T19:36:54.8310962Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:184: toCallArg 0.0% +2025-07-23T19:36:54.8311576Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:219: toOverrideMap 0.0% +2025-07-23T19:36:54.8312125Z github.com/ava-labs/coreth/ethclient/ethclient.go:53: Dial 0.0% +2025-07-23T19:36:54.8312599Z github.com/ava-labs/coreth/ethclient/ethclient.go:58: DialContext 0.0% +2025-07-23T19:36:54.8313088Z github.com/ava-labs/coreth/ethclient/ethclient.go:67: NewClient 100.0% +2025-07-23T19:36:54.8313568Z github.com/ava-labs/coreth/ethclient/ethclient.go:72: Close 100.0% +2025-07-23T19:36:54.8314035Z github.com/ava-labs/coreth/ethclient/ethclient.go:77: Client 0.0% +2025-07-23T19:36:54.8314503Z github.com/ava-labs/coreth/ethclient/ethclient.go:84: ChainID 80.0% +2025-07-23T19:36:54.8315075Z github.com/ava-labs/coreth/ethclient/ethclient.go:97: BlockByHash 0.0% +2025-07-23T19:36:54.8315585Z github.com/ava-labs/coreth/ethclient/ethclient.go:106: BlockByNumber 100.0% +2025-07-23T19:36:54.8316106Z github.com/ava-labs/coreth/ethclient/ethclient.go:111: BlockNumber 100.0% +2025-07-23T19:36:54.8316623Z github.com/ava-labs/coreth/ethclient/ethclient.go:125: BlockReceipts 0.0% +2025-07-23T19:36:54.8317111Z github.com/ava-labs/coreth/ethclient/ethclient.go:141: getBlock 51.2% +2025-07-23T19:36:54.8317605Z github.com/ava-labs/coreth/ethclient/ethclient.go:221: HeaderByHash 80.0% +2025-07-23T19:36:54.8318124Z github.com/ava-labs/coreth/ethclient/ethclient.go:232: HeaderByNumber 80.0% +2025-07-23T19:36:54.8318647Z github.com/ava-labs/coreth/ethclient/ethclient.go:252: UnmarshalJSON 66.7% +2025-07-23T19:36:54.8319174Z github.com/ava-labs/coreth/ethclient/ethclient.go:260: TransactionByHash 0.0% +2025-07-23T19:36:54.8319708Z github.com/ava-labs/coreth/ethclient/ethclient.go:282: TransactionSender 0.0% +2025-07-23T19:36:54.8320239Z github.com/ava-labs/coreth/ethclient/ethclient.go:304: TransactionCount 0.0% +2025-07-23T19:36:54.8320768Z github.com/ava-labs/coreth/ethclient/ethclient.go:311: TransactionInBlock 0.0% +2025-07-23T19:36:54.8321454Z github.com/ava-labs/coreth/ethclient/ethclient.go:330: TransactionReceipt 80.0% +2025-07-23T19:36:54.8321990Z github.com/ava-labs/coreth/ethclient/ethclient.go:341: SyncProgress 0.0% +2025-07-23T19:36:54.8322515Z github.com/ava-labs/coreth/ethclient/ethclient.go:357: SubscribeNewHead 0.0% +2025-07-23T19:36:54.8323026Z github.com/ava-labs/coreth/ethclient/ethclient.go:371: NetworkID 0.0% +2025-07-23T19:36:54.8323514Z github.com/ava-labs/coreth/ethclient/ethclient.go:385: BalanceAt 0.0% +2025-07-23T19:36:54.8324013Z github.com/ava-labs/coreth/ethclient/ethclient.go:392: BalanceAtHash 0.0% +2025-07-23T19:36:54.8324504Z github.com/ava-labs/coreth/ethclient/ethclient.go:400: StorageAt 0.0% +2025-07-23T19:36:54.8325102Z github.com/ava-labs/coreth/ethclient/ethclient.go:407: StorageAtHash 0.0% +2025-07-23T19:36:54.8325593Z github.com/ava-labs/coreth/ethclient/ethclient.go:415: CodeAt 0.0% +2025-07-23T19:36:54.8326076Z github.com/ava-labs/coreth/ethclient/ethclient.go:422: CodeAtHash 0.0% +2025-07-23T19:36:54.8326562Z github.com/ava-labs/coreth/ethclient/ethclient.go:430: NonceAt 100.0% +2025-07-23T19:36:54.8327051Z github.com/ava-labs/coreth/ethclient/ethclient.go:437: NonceAtHash 0.0% +2025-07-23T19:36:54.8327539Z github.com/ava-labs/coreth/ethclient/ethclient.go:446: FilterLogs 0.0% +2025-07-23T19:36:54.8328179Z github.com/ava-labs/coreth/ethclient/ethclient.go:457: SubscribeFilterLogs 0.0% +2025-07-23T19:36:54.8328729Z github.com/ava-labs/coreth/ethclient/ethclient.go:472: toFilterArg 0.0% +2025-07-23T19:36:54.8329235Z github.com/ava-labs/coreth/ethclient/ethclient.go:539: CallContract 80.0% +2025-07-23T19:36:54.8329764Z github.com/ava-labs/coreth/ethclient/ethclient.go:550: CallContractAtHash 0.0% +2025-07-23T19:36:54.8330301Z github.com/ava-labs/coreth/ethclient/ethclient.go:572: SuggestGasPrice 0.0% +2025-07-23T19:36:54.8330834Z github.com/ava-labs/coreth/ethclient/ethclient.go:582: SuggestGasTipCap 0.0% +2025-07-23T19:36:54.8331348Z github.com/ava-labs/coreth/ethclient/ethclient.go:598: FeeHistory 0.0% +2025-07-23T19:36:54.8331866Z github.com/ava-labs/coreth/ethclient/ethclient.go:626: EstimateGas 0.0% +2025-07-23T19:36:54.8332549Z github.com/ava-labs/coreth/ethclient/ethclient.go:639: SendTransaction 75.0% +2025-07-23T19:36:54.8333080Z github.com/ava-labs/coreth/ethclient/ethclient.go:647: toBlockNumArg 85.7% +2025-07-23T19:36:54.8333580Z github.com/ava-labs/coreth/ethclient/ethclient.go:662: toCallArg 60.0% +2025-07-23T19:36:54.8334081Z github.com/ava-labs/coreth/ethclient/ethclient.go:722: toSyncProgress 0.0% +2025-07-23T19:36:54.8334612Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:44: NewClientWithHook 0.0% +2025-07-23T19:36:54.8335324Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:61: SubscribeNewAcceptedTransactions 0.0% +2025-07-23T19:36:54.8335975Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:73: SubscribeNewPendingTransactions 0.0% +2025-07-23T19:36:54.8336563Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:85: AcceptedCodeAt 0.0% +2025-07-23T19:36:54.8337100Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:91: AcceptedNonceAt 0.0% +2025-07-23T19:36:54.8337677Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:97: AcceptedCallContract 0.0% +2025-07-23T19:36:54.8338258Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:104: EstimateBaseFee 0.0% +2025-07-23T19:36:54.8338796Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:113: ToBlockNumArg 0.0% +2025-07-23T19:36:54.8339336Z github.com/ava-labs/coreth/ethclient/signer.go:48: setSenderFromServer 100.0% +2025-07-23T19:36:54.8339826Z github.com/ava-labs/coreth/ethclient/signer.go:53: Equal 0.0% +2025-07-23T19:36:54.8340270Z github.com/ava-labs/coreth/ethclient/signer.go:58: Sender 66.7% +2025-07-23T19:36:54.8340714Z github.com/ava-labs/coreth/ethclient/signer.go:65: ChainID 0.0% +2025-07-23T19:36:54.8341296Z github.com/ava-labs/coreth/ethclient/signer.go:68: Hash 0.0% +2025-07-23T19:36:54.8341758Z github.com/ava-labs/coreth/ethclient/signer.go:71: SignatureValues 0.0% +2025-07-23T19:36:54.8342261Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:48: Add 0.0% +2025-07-23T19:36:54.8342790Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:87: NewBackend 88.9% +2025-07-23T19:36:54.8343345Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:122: newWithNode 83.3% +2025-07-23T19:36:54.8343891Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:154: Close 100.0% +2025-07-23T19:36:54.8344419Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:163: Commit 75.0% +2025-07-23T19:36:54.8345063Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:171: buildBlock 73.3% +2025-07-23T19:36:54.8345642Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:196: acceptAncestors 83.3% +2025-07-23T19:36:54.8346220Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:219: Rollback 100.0% +2025-07-23T19:36:54.8346743Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:239: Fork 76.5% +2025-07-23T19:36:54.8347285Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:274: AdjustTime 100.0% +2025-07-23T19:36:54.8347951Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:280: Client 100.0% +2025-07-23T19:36:54.8348545Z github.com/ava-labs/coreth/ethclient/simulated/options.go:29: WithBlockGasLimit 100.0% +2025-07-23T19:36:54.8349147Z github.com/ava-labs/coreth/ethclient/simulated/options.go:37: WithCallGasLimit 100.0% +2025-07-23T19:36:54.8349717Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:51: NewHasher 100.0% +2025-07-23T19:36:54.8350253Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:56: Reset 100.0% +2025-07-23T19:36:54.8350771Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:61: Update 100.0% +2025-07-23T19:36:54.8351297Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:68: Hash 100.0% +2025-07-23T19:36:54.8351794Z github.com/ava-labs/coreth/internal/debug/api.go:70: Verbosity 0.0% +2025-07-23T19:36:54.8352427Z github.com/ava-labs/coreth/internal/debug/api.go:76: Vmodule 0.0% +2025-07-23T19:36:54.8352902Z github.com/ava-labs/coreth/internal/debug/api.go:81: MemStats 0.0% +2025-07-23T19:36:54.8353361Z github.com/ava-labs/coreth/internal/debug/api.go:88: GcStats 0.0% +2025-07-23T19:36:54.8353848Z github.com/ava-labs/coreth/internal/debug/api.go:96: CpuProfile 0.0% +2025-07-23T19:36:54.8354358Z github.com/ava-labs/coreth/internal/debug/api.go:106: StartCPUProfile 0.0% +2025-07-23T19:36:54.8354984Z github.com/ava-labs/coreth/internal/debug/api.go:127: StopCPUProfile 0.0% +2025-07-23T19:36:54.8355500Z github.com/ava-labs/coreth/internal/debug/api.go:143: GoTrace 0.0% +2025-07-23T19:36:54.8355993Z github.com/ava-labs/coreth/internal/debug/api.go:155: BlockProfile 0.0% +2025-07-23T19:36:54.8356520Z github.com/ava-labs/coreth/internal/debug/api.go:164: SetBlockProfileRate 0.0% +2025-07-23T19:36:54.8357061Z github.com/ava-labs/coreth/internal/debug/api.go:169: WriteBlockProfile 0.0% +2025-07-23T19:36:54.8357579Z github.com/ava-labs/coreth/internal/debug/api.go:176: MutexProfile 0.0% +2025-07-23T19:36:54.8358120Z github.com/ava-labs/coreth/internal/debug/api.go:184: SetMutexProfileFraction 0.0% +2025-07-23T19:36:54.8358670Z github.com/ava-labs/coreth/internal/debug/api.go:189: WriteMutexProfile 0.0% +2025-07-23T19:36:54.8359195Z github.com/ava-labs/coreth/internal/debug/api.go:196: WriteMemProfile 0.0% +2025-07-23T19:36:54.8359689Z github.com/ava-labs/coreth/internal/debug/api.go:203: Stacks 0.0% +2025-07-23T19:36:54.8360164Z github.com/ava-labs/coreth/internal/debug/api.go:242: FreeOSMemory 0.0% +2025-07-23T19:36:54.8360658Z github.com/ava-labs/coreth/internal/debug/api.go:248: SetGCPercent 0.0% +2025-07-23T19:36:54.8361307Z github.com/ava-labs/coreth/internal/debug/api.go:252: writeProfile 0.0% +2025-07-23T19:36:54.8361802Z github.com/ava-labs/coreth/internal/debug/api.go:265: expandHome 0.0% +2025-07-23T19:36:54.8362283Z github.com/ava-labs/coreth/internal/debug/flags.go:181: init 100.0% +2025-07-23T19:36:54.8362760Z github.com/ava-labs/coreth/internal/debug/flags.go:187: Setup 0.0% +2025-07-23T19:36:54.8363253Z github.com/ava-labs/coreth/internal/debug/flags.go:314: StartPProf 0.0% +2025-07-23T19:36:54.8363729Z github.com/ava-labs/coreth/internal/debug/flags.go:325: Exit 0.0% +2025-07-23T19:36:54.8364238Z github.com/ava-labs/coreth/internal/debug/flags.go:333: validateLogLocation 0.0% +2025-07-23T19:36:54.8364883Z github.com/ava-labs/coreth/internal/debug/loudpanic.go:33: LoudPanic 0.0% +2025-07-23T19:36:54.8365398Z github.com/ava-labs/coreth/internal/debug/trace.go:39: StartGoTrace 0.0% +2025-07-23T19:36:54.8365898Z github.com/ava-labs/coreth/internal/debug/trace.go:60: StopGoTrace 0.0% +2025-07-23T19:36:54.8366386Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:42: lock 0.0% +2025-07-23T19:36:54.8366874Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:57: LockAddr 0.0% +2025-07-23T19:36:54.8367503Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:62: UnlockAddr 0.0% +2025-07-23T19:36:54.8368092Z github.com/ava-labs/coreth/internal/ethapi/api.coreth.go:46: SuggestPriceOptions 86.7% +2025-07-23T19:36:54.8368708Z github.com/ava-labs/coreth/internal/ethapi/api.coreth.go:104: calculateFeeSpeeds 100.0% +2025-07-23T19:36:54.8369279Z github.com/ava-labs/coreth/internal/ethapi/api.go:76: NewEthereumAPI 100.0% +2025-07-23T19:36:54.8369782Z github.com/ava-labs/coreth/internal/ethapi/api.go:81: GasPrice 0.0% +2025-07-23T19:36:54.8370247Z github.com/ava-labs/coreth/internal/ethapi/api.go:91: BaseFee 0.0% +2025-07-23T19:36:54.8370766Z github.com/ava-labs/coreth/internal/ethapi/api.go:100: MaxPriorityFeePerGas 0.0% +2025-07-23T19:36:54.8371291Z github.com/ava-labs/coreth/internal/ethapi/api.go:116: FeeHistory 0.0% +2025-07-23T19:36:54.8371767Z github.com/ava-labs/coreth/internal/ethapi/api.go:148: Syncing 0.0% +2025-07-23T19:36:54.8372262Z github.com/ava-labs/coreth/internal/ethapi/api.go:158: NewTxPoolAPI 0.0% +2025-07-23T19:36:54.8372750Z github.com/ava-labs/coreth/internal/ethapi/api.go:163: Content 0.0% +2025-07-23T19:36:54.8373238Z github.com/ava-labs/coreth/internal/ethapi/api.go:191: ContentFrom 0.0% +2025-07-23T19:36:54.8373714Z github.com/ava-labs/coreth/internal/ethapi/api.go:215: Status 0.0% +2025-07-23T19:36:54.8374184Z github.com/ava-labs/coreth/internal/ethapi/api.go:225: Inspect 0.0% +2025-07-23T19:36:54.8374705Z github.com/ava-labs/coreth/internal/ethapi/api.go:265: NewEthereumAccountAPI 0.0% +2025-07-23T19:36:54.8375330Z github.com/ava-labs/coreth/internal/ethapi/api.go:270: Accounts 0.0% +2025-07-23T19:36:54.8375849Z github.com/ava-labs/coreth/internal/ethapi/api.go:284: NewPersonalAccountAPI 0.0% +2025-07-23T19:36:54.8376388Z github.com/ava-labs/coreth/internal/ethapi/api.go:293: ListAccounts 0.0% +2025-07-23T19:36:54.8376886Z github.com/ava-labs/coreth/internal/ethapi/api.go:307: ListWallets 0.0% +2025-07-23T19:36:54.8377375Z github.com/ava-labs/coreth/internal/ethapi/api.go:329: OpenWallet 0.0% +2025-07-23T19:36:54.8377877Z github.com/ava-labs/coreth/internal/ethapi/api.go:343: DeriveAccount 0.0% +2025-07-23T19:36:54.8378377Z github.com/ava-labs/coreth/internal/ethapi/api.go:359: NewAccount 0.0% +2025-07-23T19:36:54.8378872Z github.com/ava-labs/coreth/internal/ethapi/api.go:376: fetchKeystore 0.0% +2025-07-23T19:36:54.8379370Z github.com/ava-labs/coreth/internal/ethapi/api.go:385: ImportRawKey 0.0% +2025-07-23T19:36:54.8379596Z github.com/ava-labs/coreth/internal/ethapi/api.go:401: UnlockAccount 0.0% +2025-07-23T19:36:54.8379981Z github.com/ava-labs/coreth/internal/ethapi/api.go:430: LockAccount 0.0% +2025-07-23T19:36:54.8380218Z github.com/ava-labs/coreth/internal/ethapi/api.go:440: signTransaction 0.0% +2025-07-23T19:36:54.8380452Z github.com/ava-labs/coreth/internal/ethapi/api.go:460: SendTransaction 0.0% +2025-07-23T19:36:54.8380684Z github.com/ava-labs/coreth/internal/ethapi/api.go:482: SignTransaction 0.0% +2025-07-23T19:36:54.8380887Z github.com/ava-labs/coreth/internal/ethapi/api.go:526: Sign 0.0% +2025-07-23T19:36:54.8381098Z github.com/ava-labs/coreth/internal/ethapi/api.go:554: EcRecover 0.0% +2025-07-23T19:36:54.8381326Z github.com/ava-labs/coreth/internal/ethapi/api.go:571: InitializeWallet 0.0% +2025-07-23T19:36:54.8381529Z github.com/ava-labs/coreth/internal/ethapi/api.go:598: Unpair 0.0% +2025-07-23T19:36:54.8381769Z github.com/ava-labs/coreth/internal/ethapi/api.go:618: NewBlockChainAPI 100.0% +2025-07-23T19:36:54.8381980Z github.com/ava-labs/coreth/internal/ethapi/api.go:628: ChainId 0.0% +2025-07-23T19:36:54.8382193Z github.com/ava-labs/coreth/internal/ethapi/api.go:633: BlockNumber 0.0% +2025-07-23T19:36:54.8382399Z github.com/ava-labs/coreth/internal/ethapi/api.go:641: GetBalance 0.0% +2025-07-23T19:36:54.8382706Z github.com/ava-labs/coreth/internal/ethapi/api.go:671: Put 0.0% +2025-07-23T19:36:54.8382914Z github.com/ava-labs/coreth/internal/ethapi/api.go:676: Delete 0.0% +2025-07-23T19:36:54.8383117Z github.com/ava-labs/coreth/internal/ethapi/api.go:683: GetProof 0.0% +2025-07-23T19:36:54.8383332Z github.com/ava-labs/coreth/internal/ethapi/api.go:766: decodeHash 0.0% +2025-07-23T19:36:54.8383572Z github.com/ava-labs/coreth/internal/ethapi/api.go:788: GetHeaderByNumber 100.0% +2025-07-23T19:36:54.8383812Z github.com/ava-labs/coreth/internal/ethapi/api.go:805: GetHeaderByHash 100.0% +2025-07-23T19:36:54.8384045Z github.com/ava-labs/coreth/internal/ethapi/api.go:820: GetBlockByNumber 100.0% +2025-07-23T19:36:54.8384282Z github.com/ava-labs/coreth/internal/ethapi/api.go:838: GetBlockByHash 100.0% +2025-07-23T19:36:54.8384569Z github.com/ava-labs/coreth/internal/ethapi/api.go:847: GetUncleByBlockNumberAndIndex 0.0% +2025-07-23T19:36:54.8384986Z github.com/ava-labs/coreth/internal/ethapi/api.go:862: GetUncleByBlockHashAndIndex 0.0% +2025-07-23T19:36:54.8385263Z github.com/ava-labs/coreth/internal/ethapi/api.go:877: GetUncleCountByBlockNumber 0.0% +2025-07-23T19:36:54.8385524Z github.com/ava-labs/coreth/internal/ethapi/api.go:886: GetUncleCountByBlockHash 0.0% +2025-07-23T19:36:54.8385729Z github.com/ava-labs/coreth/internal/ethapi/api.go:895: GetCode 0.0% +2025-07-23T19:36:54.8385953Z github.com/ava-labs/coreth/internal/ethapi/api.go:907: GetStorageAt 0.0% +2025-07-23T19:36:54.8386189Z github.com/ava-labs/coreth/internal/ethapi/api.go:921: GetBlockReceipts 85.7% +2025-07-23T19:36:54.8386389Z github.com/ava-labs/coreth/internal/ethapi/api.go:966: Apply 84.2% +2025-07-23T19:36:54.8386602Z github.com/ava-labs/coreth/internal/ethapi/api.go:1017: Apply 56.2% +2025-07-23T19:36:54.8386840Z github.com/ava-labs/coreth/internal/ethapi/api.go:1058: NewChainContext 100.0% +2025-07-23T19:36:54.8387052Z github.com/ava-labs/coreth/internal/ethapi/api.go:1062: Engine 100.0% +2025-07-23T19:36:54.8387261Z github.com/ava-labs/coreth/internal/ethapi/api.go:1066: GetHeader 0.0% +2025-07-23T19:36:54.8387467Z github.com/ava-labs/coreth/internal/ethapi/api.go:1076: doCall 80.8% +2025-07-23T19:36:54.8387676Z github.com/ava-labs/coreth/internal/ethapi/api.go:1128: DoCall 43.8% +2025-07-23T19:36:54.8387871Z github.com/ava-labs/coreth/internal/ethapi/api.go:1163: Call 66.7% +2025-07-23T19:36:54.8388105Z github.com/ava-labs/coreth/internal/ethapi/api.go:1183: DoEstimateGas 77.8% +2025-07-23T19:36:54.8388329Z github.com/ava-labs/coreth/internal/ethapi/api.go:1227: EstimateGas 100.0% +2025-07-23T19:36:54.8388700Z github.com/ava-labs/coreth/internal/ethapi/api.go:1236: RPCMarshalHeader 80.0% +2025-07-23T19:36:54.8388943Z github.com/ava-labs/coreth/internal/ethapi/api.go:1281: RPCMarshalBlock 95.0% +2025-07-23T19:36:54.8389183Z github.com/ava-labs/coreth/internal/ethapi/api.go:1313: rpcMarshalHeader 100.0% +2025-07-23T19:36:54.8389428Z github.com/ava-labs/coreth/internal/ethapi/api.go:1323: rpcMarshalBlock 100.0% +2025-07-23T19:36:54.8389665Z github.com/ava-labs/coreth/internal/ethapi/api.go:1361: newRPCTransaction 94.9% +2025-07-23T19:36:54.8389898Z github.com/ava-labs/coreth/internal/ethapi/api.go:1438: effectiveGasPrice 0.0% +2025-07-23T19:36:54.8390138Z github.com/ava-labs/coreth/internal/ethapi/api.go:1450: NewRPCTransaction 0.0% +2025-07-23T19:36:54.8390434Z github.com/ava-labs/coreth/internal/ethapi/api.go:1463: newRPCTransactionFromBlockIndex 75.0% +2025-07-23T19:36:54.8390729Z github.com/ava-labs/coreth/internal/ethapi/api.go:1472: newRPCRawTransactionFromBlockIndex 0.0% +2025-07-23T19:36:54.8390977Z github.com/ava-labs/coreth/internal/ethapi/api.go:1492: CreateAccessList 0.0% +2025-07-23T19:36:54.8391187Z github.com/ava-labs/coreth/internal/ethapi/api.go:1511: AccessList 0.0% +2025-07-23T19:36:54.8391543Z github.com/ava-labs/coreth/internal/ethapi/api.go:1573: NewTransactionAPI 100.0% +2025-07-23T19:36:54.8391841Z github.com/ava-labs/coreth/internal/ethapi/api.go:1581: GetBlockTransactionCountByNumber 0.0% +2025-07-23T19:36:54.8392125Z github.com/ava-labs/coreth/internal/ethapi/api.go:1590: GetBlockTransactionCountByHash 0.0% +2025-07-23T19:36:54.8392429Z github.com/ava-labs/coreth/internal/ethapi/api.go:1599: GetTransactionByBlockNumberAndIndex 0.0% +2025-07-23T19:36:54.8392721Z github.com/ava-labs/coreth/internal/ethapi/api.go:1607: GetTransactionByBlockHashAndIndex 0.0% +2025-07-23T19:36:54.8393035Z github.com/ava-labs/coreth/internal/ethapi/api.go:1615: GetRawTransactionByBlockNumberAndIndex 0.0% +2025-07-23T19:36:54.8393351Z github.com/ava-labs/coreth/internal/ethapi/api.go:1623: GetRawTransactionByBlockHashAndIndex 0.0% +2025-07-23T19:36:54.8393606Z github.com/ava-labs/coreth/internal/ethapi/api.go:1631: GetTransactionCount 0.0% +2025-07-23T19:36:54.8393873Z github.com/ava-labs/coreth/internal/ethapi/api.go:1650: GetTransactionByHash 0.0% +2025-07-23T19:36:54.8394138Z github.com/ava-labs/coreth/internal/ethapi/api.go:1672: GetRawTransactionByHash 0.0% +2025-07-23T19:36:54.8394403Z github.com/ava-labs/coreth/internal/ethapi/api.go:1688: GetTransactionReceipt 75.0% +2025-07-23T19:36:54.8394636Z github.com/ava-labs/coreth/internal/ethapi/api.go:1715: marshalReceipt 84.6% +2025-07-23T19:36:54.8394955Z github.com/ava-labs/coreth/internal/ethapi/api.go:1757: sign 80.0% +2025-07-23T19:36:54.8395201Z github.com/ava-labs/coreth/internal/ethapi/api.go:1770: SubmitTransaction 0.0% +2025-07-23T19:36:54.8395435Z github.com/ava-labs/coreth/internal/ethapi/api.go:1802: SendTransaction 37.5% +2025-07-23T19:36:54.8395670Z github.com/ava-labs/coreth/internal/ethapi/api.go:1838: FillTransaction 87.5% +2025-07-23T19:36:54.8395917Z github.com/ava-labs/coreth/internal/ethapi/api.go:1856: SendRawTransaction 0.0% +2025-07-23T19:36:54.8396119Z github.com/ava-labs/coreth/internal/ethapi/api.go:1873: Sign 0.0% +2025-07-23T19:36:54.8396354Z github.com/ava-labs/coreth/internal/ethapi/api.go:1898: SignTransaction 65.0% +2025-07-23T19:36:54.8396601Z github.com/ava-labs/coreth/internal/ethapi/api.go:1932: PendingTransactions 0.0% +2025-07-23T19:36:54.8396807Z github.com/ava-labs/coreth/internal/ethapi/api.go:1957: Resend 0.0% +2025-07-23T19:36:54.8397034Z github.com/ava-labs/coreth/internal/ethapi/api.go:2014: NewDebugAPI 0.0% +2025-07-23T19:36:54.8397261Z github.com/ava-labs/coreth/internal/ethapi/api.go:2019: GetRawHeader 0.0% +2025-07-23T19:36:54.8397483Z github.com/ava-labs/coreth/internal/ethapi/api.go:2038: GetRawBlock 0.0% +2025-07-23T19:36:54.8397844Z github.com/ava-labs/coreth/internal/ethapi/api.go:2057: GetRawReceipts 0.0% +2025-07-23T19:36:54.8398078Z github.com/ava-labs/coreth/internal/ethapi/api.go:2084: GetRawTransaction 0.0% +2025-07-23T19:36:54.8398298Z github.com/ava-labs/coreth/internal/ethapi/api.go:2100: PrintBlock 0.0% +2025-07-23T19:36:54.8398513Z github.com/ava-labs/coreth/internal/ethapi/api.go:2114: NewNetAPI 0.0% +2025-07-23T19:36:54.8398725Z github.com/ava-labs/coreth/internal/ethapi/api.go:2119: Listening 0.0% +2025-07-23T19:36:54.8398932Z github.com/ava-labs/coreth/internal/ethapi/api.go:2124: PeerCount 0.0% +2025-07-23T19:36:54.8399144Z github.com/ava-labs/coreth/internal/ethapi/api.go:2129: Version 0.0% +2025-07-23T19:36:54.8399366Z github.com/ava-labs/coreth/internal/ethapi/api.go:2135: checkTxFee 28.6% +2025-07-23T19:36:54.8399606Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:20: GetChainConfig 0.0% +2025-07-23T19:36:54.8399849Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:32: CallDetailed 0.0% +2025-07-23T19:36:54.8400088Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:71: GetBadBlocks 0.0% +2025-07-23T19:36:54.8400383Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:103: stateQueryBlockNumberAllowed 90.5% +2025-07-23T19:36:54.8400719Z github.com/ava-labs/coreth/internal/ethapi/backend.go:115: GetAPIs 0.0% +2025-07-23T19:36:54.8400942Z github.com/ava-labs/coreth/internal/ethapi/errors.go:47: ErrorCode 0.0% +2025-07-23T19:36:54.8401156Z github.com/ava-labs/coreth/internal/ethapi/errors.go:52: ErrorData 0.0% +2025-07-23T19:36:54.8401394Z github.com/ava-labs/coreth/internal/ethapi/errors.go:57: newRevertError 0.0% +2025-07-23T19:36:54.8401636Z github.com/ava-labs/coreth/internal/ethapi/errors.go:75: NewTxIndexingError 0.0% +2025-07-23T19:36:54.8401843Z github.com/ava-labs/coreth/internal/ethapi/errors.go:78: Error 0.0% +2025-07-23T19:36:54.8402056Z github.com/ava-labs/coreth/internal/ethapi/errors.go:84: ErrorCode 0.0% +2025-07-23T19:36:54.8402266Z github.com/ava-labs/coreth/internal/ethapi/errors.go:89: ErrorData 0.0% +2025-07-23T19:36:54.8402508Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:91: from 100.0% +2025-07-23T19:36:54.8402750Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:99: data 100.0% +2025-07-23T19:36:54.8403018Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:110: setDefaults 61.9% +2025-07-23T19:36:54.8403304Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:203: setFeeDefaults 89.7% +2025-07-23T19:36:54.8403601Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:263: setCancunFeeDefaults 100.0% +2025-07-23T19:36:54.8403927Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:282: setApricotPhase3FeeDefault 90.9% +2025-07-23T19:36:54.8404215Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:310: setBlobTxSidecar 90.5% +2025-07-23T19:36:54.8404478Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:387: ToMessage 78.6% +2025-07-23T19:36:54.8404848Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:476: toTransaction 73.3% +2025-07-23T19:36:54.8405116Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:548: IsEIP4844 100.0% +2025-07-23T19:36:54.8405339Z github.com/ava-labs/coreth/internal/flags/categories.go:53: init 100.0% +2025-07-23T19:36:54.8405550Z github.com/ava-labs/coreth/internal/flags/helpers.go:47: NewApp 80.0% +2025-07-23T19:36:54.8405750Z github.com/ava-labs/coreth/internal/flags/helpers.go:62: Merge 0.0% +2025-07-23T19:36:54.8406000Z github.com/ava-labs/coreth/internal/flags/helpers.go:87: MigrateGlobalFlags 0.0% +2025-07-23T19:36:54.8406233Z github.com/ava-labs/coreth/internal/flags/helpers.go:114: doMigrateFlags 0.0% +2025-07-23T19:36:54.8406440Z github.com/ava-labs/coreth/internal/flags/helpers.go:149: init 50.0% +2025-07-23T19:36:54.8406796Z github.com/ava-labs/coreth/internal/flags/helpers.go:162: FlagString 0.0% +2025-07-23T19:36:54.8407006Z github.com/ava-labs/coreth/internal/flags/helpers.go:194: indent 0.0% +2025-07-23T19:36:54.8407225Z github.com/ava-labs/coreth/internal/flags/helpers.go:199: wordWrap 0.0% +2025-07-23T19:36:54.8407436Z github.com/ava-labs/coreth/internal/reexec/reexec.go:31: Register 0.0% +2025-07-23T19:36:54.8407636Z github.com/ava-labs/coreth/internal/reexec/reexec.go:40: Init 0.0% +2025-07-23T19:36:54.8407849Z github.com/ava-labs/coreth/internal/reexec/self_linux.go:23: Self 0.0% +2025-07-23T19:36:54.8408166Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:49: NewShutdownTracker 100.0% +2025-07-23T19:36:54.8408460Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:59: MarkStartup 71.4% +2025-07-23T19:36:54.8408729Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:75: Start 85.7% +2025-07-23T19:36:54.8408995Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:91: Stop 100.0% +2025-07-23T19:36:54.8409226Z github.com/ava-labs/coreth/internal/version/vcs.go:43: buildInfoVCS 36.4% +2025-07-23T19:36:54.8409561Z github.com/ava-labs/coreth/internal/version/version.go:54: VCS 83.3% +2025-07-23T19:36:54.8409799Z github.com/ava-labs/coreth/internal/version/version.go:69: ClientName 0.0% +2025-07-23T19:36:54.8410008Z github.com/ava-labs/coreth/internal/version/version.go:85: Info 42.9% +2025-07-23T19:36:54.8410243Z github.com/ava-labs/coreth/internal/version/version.go:112: versionInfo 50.0% +2025-07-23T19:36:54.8410476Z github.com/ava-labs/coreth/internal/version/version.go:142: findModule 50.0% +2025-07-23T19:36:54.8410652Z github.com/ava-labs/coreth/log/format.go:45: format 66.7% +2025-07-23T19:36:54.8410854Z github.com/ava-labs/coreth/log/format.go:103: formatAttributes 82.1% +2025-07-23T19:36:54.8411067Z github.com/ava-labs/coreth/log/format.go:150: FormatSlogValue 84.0% +2025-07-23T19:36:54.8411262Z github.com/ava-labs/coreth/log/format.go:206: appendInt64 100.0% +2025-07-23T19:36:54.8411459Z github.com/ava-labs/coreth/log/format.go:214: appendUint64 88.2% +2025-07-23T19:36:54.8411671Z github.com/ava-labs/coreth/log/format.go:249: FormatLogfmtUint64 0.0% +2025-07-23T19:36:54.8411862Z github.com/ava-labs/coreth/log/format.go:254: appendBigInt 12.5% +2025-07-23T19:36:54.8412056Z github.com/ava-labs/coreth/log/format.go:288: appendU256 50.0% +2025-07-23T19:36:54.8412270Z github.com/ava-labs/coreth/log/format.go:298: appendEscapeString 100.0% +2025-07-23T19:36:54.8412474Z github.com/ava-labs/coreth/log/format.go:331: escapeMessage 60.0% +2025-07-23T19:36:54.8412689Z github.com/ava-labs/coreth/log/format.go:352: writeTimeTermFormat 100.0% +2025-07-23T19:36:54.8412894Z github.com/ava-labs/coreth/log/format.go:372: writePosIntWidth 91.7% +2025-07-23T19:36:54.8413101Z github.com/ava-labs/coreth/log/handler.go:22: DiscardHandler 0.0% +2025-07-23T19:36:54.8413274Z github.com/ava-labs/coreth/log/handler.go:26: Handle 0.0% +2025-07-23T19:36:54.8413453Z github.com/ava-labs/coreth/log/handler.go:30: Enabled 0.0% +2025-07-23T19:36:54.8413646Z github.com/ava-labs/coreth/log/handler.go:34: WithGroup 0.0% +2025-07-23T19:36:54.8413822Z github.com/ava-labs/coreth/log/handler.go:38: WithAttrs 0.0% +2025-07-23T19:36:54.8414043Z github.com/ava-labs/coreth/log/handler.go:67: NewTerminalHandler 0.0% +2025-07-23T19:36:54.8414285Z github.com/ava-labs/coreth/log/handler.go:73: NewTerminalHandlerWithLevel 100.0% +2025-07-23T19:36:54.8414463Z github.com/ava-labs/coreth/log/handler.go:82: Handle 100.0% +2025-07-23T19:36:54.8414653Z github.com/ava-labs/coreth/log/handler.go:91: Enabled 100.0% +2025-07-23T19:36:54.8414931Z github.com/ava-labs/coreth/log/handler.go:95: WithGroup 0.0% +2025-07-23T19:36:54.8415255Z github.com/ava-labs/coreth/log/handler.go:99: WithAttrs 100.0% +2025-07-23T19:36:54.8415471Z github.com/ava-labs/coreth/log/handler.go:110: ResetFieldPadding 0.0% +2025-07-23T19:36:54.8415663Z github.com/ava-labs/coreth/log/handler.go:117: JSONHandler 0.0% +2025-07-23T19:36:54.8415899Z github.com/ava-labs/coreth/log/handler.go:123: JSONHandlerWithLevel 100.0% +2025-07-23T19:36:54.8416097Z github.com/ava-labs/coreth/log/handler.go:134: LogfmtHandler 0.0% +2025-07-23T19:36:54.8416326Z github.com/ava-labs/coreth/log/handler.go:142: LogfmtHandlerWithLevel 0.0% +2025-07-23T19:36:54.8416552Z github.com/ava-labs/coreth/log/handler.go:149: builtinReplaceLogfmt 0.0% +2025-07-23T19:36:54.8416766Z github.com/ava-labs/coreth/log/handler.go:153: builtinReplaceJSON 0.0% +2025-07-23T19:36:54.8416972Z github.com/ava-labs/coreth/log/handler.go:157: builtinReplace 0.0% +2025-07-23T19:36:54.8417257Z github.com/ava-labs/coreth/log/logger.go:46: LvlFromString 37.5% +2025-07-23T19:36:54.8417490Z github.com/ava-labs/coreth/log/logger.go:67: FromLegacyLevel 0.0% +2025-07-23T19:36:54.8417771Z github.com/ava-labs/coreth/log/logger.go:93: LevelAlignedString 37.5% +2025-07-23T19:36:54.8417993Z github.com/ava-labs/coreth/log/logger.go:113: LevelString 0.0% +2025-07-23T19:36:54.8418523Z github.com/ava-labs/coreth/log/logger.go:173: NewLogger 0.0% +2025-07-23T19:36:54.8418772Z github.com/ava-labs/coreth/log/logger.go:180: Write 0.0% +2025-07-23T19:36:54.8419024Z github.com/ava-labs/coreth/log/logger.go:196: Log 0.0% +2025-07-23T19:36:54.8419236Z github.com/ava-labs/coreth/log/logger.go:200: With 0.0% +2025-07-23T19:36:54.8419470Z github.com/ava-labs/coreth/log/logger.go:204: New 0.0% +2025-07-23T19:36:54.8419690Z github.com/ava-labs/coreth/log/logger.go:209: Enabled 0.0% +2025-07-23T19:36:54.8419952Z github.com/ava-labs/coreth/log/logger.go:213: Trace 0.0% +2025-07-23T19:36:54.8420212Z github.com/ava-labs/coreth/log/logger.go:217: Debug 0.0% +2025-07-23T19:36:54.8420409Z github.com/ava-labs/coreth/log/logger.go:221: Info 0.0% +2025-07-23T19:36:54.8420639Z github.com/ava-labs/coreth/log/logger.go:225: Warn 0.0% +2025-07-23T19:36:54.8420860Z github.com/ava-labs/coreth/log/logger.go:229: Error 0.0% +2025-07-23T19:36:54.8421038Z github.com/ava-labs/coreth/log/logger.go:233: Crit 0.0% +2025-07-23T19:36:54.8421439Z github.com/ava-labs/coreth/metrics/metricstest/metrics.go:15: WithMetrics 40.0% +2025-07-23T19:36:54.8421748Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:28: NewGatherer 100.0% +2025-07-23T19:36:54.8422027Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:36: Gather 100.0% +2025-07-23T19:36:54.8422341Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:64: ptrTo 100.0% +2025-07-23T19:36:54.8422652Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:66: metricFamily 94.1% +2025-07-23T19:36:54.8422923Z github.com/ava-labs/coreth/miner/miner.go:59: New 0.0% +2025-07-23T19:36:54.8423169Z github.com/ava-labs/coreth/miner/miner.go:65: SetEtherbase 0.0% +2025-07-23T19:36:54.8423401Z github.com/ava-labs/coreth/miner/miner.go:69: GenerateBlock 0.0% +2025-07-23T19:36:54.8423704Z github.com/ava-labs/coreth/miner/miner.go:75: SubscribePendingLogs 0.0% +2025-07-23T19:36:54.8423979Z github.com/ava-labs/coreth/miner/ordering.go:50: newTxWithMinerFee 100.0% +2025-07-23T19:36:54.8424208Z github.com/ava-labs/coreth/miner/ordering.go:72: Len 100.0% +2025-07-23T19:36:54.8424466Z github.com/ava-labs/coreth/miner/ordering.go:73: Less 100.0% +2025-07-23T19:36:54.8424702Z github.com/ava-labs/coreth/miner/ordering.go:82: Swap 100.0% +2025-07-23T19:36:54.8425264Z github.com/ava-labs/coreth/miner/ordering.go:84: Push 0.0% +2025-07-23T19:36:54.8425679Z github.com/ava-labs/coreth/miner/ordering.go:88: Pop 100.0% +2025-07-23T19:36:54.8425997Z github.com/ava-labs/coreth/miner/ordering.go:112: newTransactionsByPriceAndNonce 100.0% +2025-07-23T19:36:54.8426242Z github.com/ava-labs/coreth/miner/ordering.go:141: Peek 100.0% +2025-07-23T19:36:54.8426536Z github.com/ava-labs/coreth/miner/ordering.go:149: Shift 100.0% +2025-07-23T19:36:54.8426806Z github.com/ava-labs/coreth/miner/ordering.go:164: Pop 0.0% +2025-07-23T19:36:54.8427038Z github.com/ava-labs/coreth/miner/ordering.go:170: Empty 0.0% +2025-07-23T19:36:54.8427246Z github.com/ava-labs/coreth/miner/ordering.go:175: Clear 0.0% +2025-07-23T19:36:54.8427502Z github.com/ava-labs/coreth/miner/worker.go:116: newWorker 0.0% +2025-07-23T19:36:54.8427722Z github.com/ava-labs/coreth/miner/worker.go:133: setEtherbase 0.0% +2025-07-23T19:36:54.8428060Z github.com/ava-labs/coreth/miner/worker.go:140: commitNewWork 0.0% +2025-07-23T19:36:54.8428340Z github.com/ava-labs/coreth/miner/worker.go:264: createCurrentEnvironment 0.0% +2025-07-23T19:36:54.8428607Z github.com/ava-labs/coreth/miner/worker.go:313: commitTransaction 0.0% +2025-07-23T19:36:54.8428909Z github.com/ava-labs/coreth/miner/worker.go:327: commitBlobTransaction 0.0% +2025-07-23T19:36:54.8429271Z github.com/ava-labs/coreth/miner/worker.go:352: applyTransaction 0.0% +2025-07-23T19:36:54.8429605Z github.com/ava-labs/coreth/miner/worker.go:386: commitTransactions 0.0% +2025-07-23T19:36:54.8429854Z github.com/ava-labs/coreth/miner/worker.go:493: commit 0.0% +2025-07-23T19:36:54.8430087Z github.com/ava-labs/coreth/miner/worker.go:511: handleResult 0.0% +2025-07-23T19:36:54.8430356Z github.com/ava-labs/coreth/miner/worker.go:557: copyReceipts 0.0% +2025-07-23T19:36:54.8430573Z github.com/ava-labs/coreth/miner/worker.go:567: totalFees 0.0% +2025-07-23T19:36:54.8430895Z github.com/ava-labs/coreth/nativeasset/contract.go:36: PackNativeAssetBalanceInput 100.0% +2025-07-23T19:36:54.8431285Z github.com/ava-labs/coreth/nativeasset/contract.go:44: UnpackNativeAssetBalanceInput 100.0% +2025-07-23T19:36:54.8431548Z github.com/ava-labs/coreth/nativeasset/contract.go:55: Run 90.0% +2025-07-23T19:36:54.8431931Z github.com/ava-labs/coreth/nativeasset/contract.go:84: PackNativeAssetCallInput 100.0% +2025-07-23T19:36:54.8432248Z github.com/ava-labs/coreth/nativeasset/contract.go:94: UnpackNativeAssetCallInput 100.0% +2025-07-23T19:36:54.8432483Z github.com/ava-labs/coreth/nativeasset/contract.go:106: Run 100.0% +2025-07-23T19:36:54.8432735Z github.com/ava-labs/coreth/nativeasset/contract.go:123: run 81.0% +2025-07-23T19:36:54.8433017Z github.com/ava-labs/coreth/nativeasset/contract.go:168: Run 100.0% +2025-07-23T19:36:54.8433322Z github.com/ava-labs/coreth/network/network.go:125: NewNetwork 75.0% +2025-07-23T19:36:54.8433586Z github.com/ava-labs/coreth/network/network.go:155: SendAppRequestAny 90.0% +2025-07-23T19:36:54.8433841Z github.com/ava-labs/coreth/network/network.go:177: SendAppRequest 88.9% +2025-07-23T19:36:54.8434130Z github.com/ava-labs/coreth/network/network.go:204: sendAppRequest 70.0% +2025-07-23T19:36:54.8434346Z github.com/ava-labs/coreth/network/network.go:259: AppRequest 81.8% +2025-07-23T19:36:54.8434703Z github.com/ava-labs/coreth/network/network.go:304: AppResponse 100.0% +2025-07-23T19:36:54.8435089Z github.com/ava-labs/coreth/network/network.go:325: AppRequestFailed 71.4% +2025-07-23T19:36:54.8435389Z github.com/ava-labs/coreth/network/network.go:343: calculateTimeUntilDeadline 100.0% +2025-07-23T19:36:54.8435702Z github.com/ava-labs/coreth/network/network.go:365: markRequestFulfilled 100.0% +2025-07-23T19:36:54.8435934Z github.com/ava-labs/coreth/network/network.go:382: AppGossip 100.0% +2025-07-23T19:36:54.8436248Z github.com/ava-labs/coreth/network/network.go:387: Connected 87.5% +2025-07-23T19:36:54.8436656Z github.com/ava-labs/coreth/network/network.go:406: Disconnected 0.0% +2025-07-23T19:36:54.8436892Z github.com/ava-labs/coreth/network/network.go:424: Shutdown 100.0% +2025-07-23T19:36:54.8437194Z github.com/ava-labs/coreth/network/network.go:438: SetRequestHandler 100.0% +2025-07-23T19:36:54.8437415Z github.com/ava-labs/coreth/network/network.go:445: Size 100.0% +2025-07-23T19:36:54.8437680Z github.com/ava-labs/coreth/network/network.go:452: TrackBandwidth 0.0% +2025-07-23T19:36:54.8438046Z github.com/ava-labs/coreth/network/network.go:463: SendSyncedAppRequestAny 100.0% +2025-07-23T19:36:54.8450420Z github.com/ava-labs/coreth/network/network.go:475: SendSyncedAppRequest 75.0% +2025-07-23T19:36:54.8450701Z github.com/ava-labs/coreth/network/network.go:483: NewClient 0.0% +2025-07-23T19:36:54.8450933Z github.com/ava-labs/coreth/network/network.go:487: AddHandler 100.0% +2025-07-23T19:36:54.8451172Z github.com/ava-labs/coreth/network/network.go:492: P2PValidators 0.0% +2025-07-23T19:36:54.8451421Z github.com/ava-labs/coreth/network/network.go:501: nextRequestID 100.0% +2025-07-23T19:36:54.8451661Z github.com/ava-labs/coreth/network/network.go:511: IsNetworkRequest 100.0% +2025-07-23T19:36:54.8451910Z github.com/ava-labs/coreth/network/peer_tracker.go:55: NewPeerTracker 100.0% +2025-07-23T19:36:54.8452341Z github.com/ava-labs/coreth/network/peer_tracker.go:70: shouldTrackNewPeer 100.0% +2025-07-23T19:36:54.8452613Z github.com/ava-labs/coreth/network/peer_tracker.go:85: getResponsivePeer 75.0% +2025-07-23T19:36:54.8452843Z github.com/ava-labs/coreth/network/peer_tracker.go:98: GetAnyPeer 100.0% +2025-07-23T19:36:54.8453058Z github.com/ava-labs/coreth/network/peer_tracker.go:133: TrackPeer 100.0% +2025-07-23T19:36:54.8453292Z github.com/ava-labs/coreth/network/peer_tracker.go:138: TrackBandwidth 86.7% +2025-07-23T19:36:54.8453504Z github.com/ava-labs/coreth/network/peer_tracker.go:165: Connected 71.4% +2025-07-23T19:36:54.8453739Z github.com/ava-labs/coreth/network/peer_tracker.go:188: Disconnected 100.0% +2025-07-23T19:36:54.8453939Z github.com/ava-labs/coreth/network/peer_tracker.go:198: Size 100.0% +2025-07-23T19:36:54.8454227Z github.com/ava-labs/coreth/network/stats/stats.go:23: IncDeadlineDroppedRequest 100.0% +2025-07-23T19:36:54.8454516Z github.com/ava-labs/coreth/network/stats/stats.go:27: UpdateTimeUntilDeadline 100.0% +2025-07-23T19:36:54.8454915Z github.com/ava-labs/coreth/network/stats/stats.go:31: NewRequestHandlerStats 100.0% +2025-07-23T19:36:54.8455210Z github.com/ava-labs/coreth/network/waiting_handler.go:29: newWaitingResponseHandler 100.0% +2025-07-23T19:36:54.8455443Z github.com/ava-labs/coreth/network/waiting_handler.go:39: OnResponse 100.0% +2025-07-23T19:36:54.8455665Z github.com/ava-labs/coreth/network/waiting_handler.go:46: OnFailure 100.0% +2025-07-23T19:36:54.8455904Z github.com/ava-labs/coreth/network/waiting_handler.go:52: WaitForResult 100.0% +2025-07-23T19:36:54.8456077Z github.com/ava-labs/coreth/node/api.go:38: apis 100.0% +2025-07-23T19:36:54.8456266Z github.com/ava-labs/coreth/node/api.go:59: ClientVersion 0.0% +2025-07-23T19:36:54.8456428Z github.com/ava-labs/coreth/node/api.go:65: Sha3 0.0% +2025-07-23T19:36:54.8456643Z github.com/ava-labs/coreth/node/config.go:75: ExtRPCEnabled 100.0% +2025-07-23T19:36:54.8456843Z github.com/ava-labs/coreth/node/config.go:81: KeyDirConfig 60.0% +2025-07-23T19:36:54.8457044Z github.com/ava-labs/coreth/node/config.go:97: GetKeyStoreDir 75.0% +2025-07-23T19:36:54.8457264Z github.com/ava-labs/coreth/node/config.go:119: makeAccountManager 58.8% +2025-07-23T19:36:54.8457429Z github.com/ava-labs/coreth/node/node.go:42: New 87.5% +2025-07-23T19:36:54.8457602Z github.com/ava-labs/coreth/node/node.go:62: Config 100.0% +2025-07-23T19:36:54.8457799Z github.com/ava-labs/coreth/node/node.go:67: AccountManager 100.0% +2025-07-23T19:36:54.8458105Z github.com/ava-labs/coreth/node/node.go:72: APIs 100.0% +2025-07-23T19:36:54.8458343Z github.com/ava-labs/coreth/params/config_extra.go:34: SetEthUpgrades 79.3% +2025-07-23T19:36:54.8458551Z github.com/ava-labs/coreth/params/config_extra.go:91: GetExtra 60.0% +2025-07-23T19:36:54.8458745Z github.com/ava-labs/coreth/params/config_extra.go:100: Copy 0.0% +2025-07-23T19:36:54.8458959Z github.com/ava-labs/coreth/params/config_extra.go:107: WithExtra 100.0% +2025-07-23T19:36:54.8459170Z github.com/ava-labs/coreth/params/config_extra.go:122: MarshalJSON 0.0% +2025-07-23T19:36:54.8459390Z github.com/ava-labs/coreth/params/config_extra.go:152: UnmarshalJSON 0.0% +2025-07-23T19:36:54.8459631Z github.com/ava-labs/coreth/params/config_extra.go:174: ToWithUpgradesJSON 0.0% +2025-07-23T19:36:54.8459846Z github.com/ava-labs/coreth/params/config_libevm.go:18: libevmInit 100.0% +2025-07-23T19:36:54.8460090Z github.com/ava-labs/coreth/params/config_libevm.go:31: constructRulesExtra 53.3% +2025-07-23T19:36:54.8460317Z github.com/ava-labs/coreth/params/extras/config.go:96: copyAndSet 100.0% +2025-07-23T19:36:54.8460573Z github.com/ava-labs/coreth/params/extras/config.go:123: CheckConfigCompatible 0.0% +2025-07-23T19:36:54.8460897Z github.com/ava-labs/coreth/params/extras/config.go:145: Description 0.0% +2025-07-23T19:36:54.8461183Z github.com/ava-labs/coreth/params/extras/config.go:166: isForkTimestampIncompatible 0.0% +2025-07-23T19:36:54.8461427Z github.com/ava-labs/coreth/params/extras/config.go:172: isTimestampForked 100.0% +2025-07-23T19:36:54.8461679Z github.com/ava-labs/coreth/params/extras/config.go:179: configTimestampEqual 0.0% +2025-07-23T19:36:54.8461905Z github.com/ava-labs/coreth/params/extras/config.go:194: UnmarshalJSON 0.0% +2025-07-23T19:36:54.8462117Z github.com/ava-labs/coreth/params/extras/config.go:210: MarshalJSON 0.0% +2025-07-23T19:36:54.8462374Z github.com/ava-labs/coreth/params/extras/config.go:223: CheckConfigForkOrder 0.0% +2025-07-23T19:36:54.8462584Z github.com/ava-labs/coreth/params/extras/config.go:240: checkForks 0.0% +2025-07-23T19:36:54.8462788Z github.com/ava-labs/coreth/params/extras/config.go:281: Verify 0.0% +2025-07-23T19:36:54.8463037Z github.com/ava-labs/coreth/params/extras/config.go:291: IsPrecompileEnabled 0.0% +2025-07-23T19:36:54.8463274Z github.com/ava-labs/coreth/params/extras/config.go:303: IsForkTransition 100.0% +2025-07-23T19:36:54.8463502Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:61: Equal 0.0% +2025-07-23T19:36:54.8463822Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:65: checkNetworkUpgradesCompatible 0.0% +2025-07-23T19:36:54.8464067Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:112: forkOrder 0.0% +2025-07-23T19:36:54.8464335Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:133: IsApricotPhase1 0.0% +2025-07-23T19:36:54.8464595Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:139: IsApricotPhase2 0.0% +2025-07-23T19:36:54.8465108Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:145: IsApricotPhase3 0.0% +2025-07-23T19:36:54.8465462Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:151: IsApricotPhase4 0.0% +2025-07-23T19:36:54.8465739Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:157: IsApricotPhase5 0.0% +2025-07-23T19:36:54.8466018Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:163: IsApricotPhasePre6 0.0% +2025-07-23T19:36:54.8466275Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:169: IsApricotPhase6 0.0% +2025-07-23T19:36:54.8466557Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:175: IsApricotPhasePost6 0.0% +2025-07-23T19:36:54.8466796Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:181: IsBanff 0.0% +2025-07-23T19:36:54.8467034Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:187: IsCortina 0.0% +2025-07-23T19:36:54.8467452Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:193: IsDurango 0.0% +2025-07-23T19:36:54.8467700Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:199: IsEtna 0.0% +2025-07-23T19:36:54.8467962Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:205: IsFortuna 0.0% +2025-07-23T19:36:54.8468214Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:211: IsGranite 0.0% +2025-07-23T19:36:54.8468468Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:215: Description 0.0% +2025-07-23T19:36:54.8468756Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:234: GetNetworkUpgrades 0.0% +2025-07-23T19:36:54.8469038Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:264: GetAvalancheRules 0.0% +2025-07-23T19:36:54.8469296Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:283: ptrToString 0.0% +2025-07-23T19:36:54.8469574Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:32: UnmarshalJSON 0.0% +2025-07-23T19:36:54.8469831Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:59: MarshalJSON 0.0% +2025-07-23T19:36:54.8470143Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:71: verifyPrecompileUpgrades 0.0% +2025-07-23T19:36:54.8470596Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:137: GetActivePrecompileConfig 0.0% +2025-07-23T19:36:54.8470957Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:147: GetActivatingPrecompileConfigs 0.0% +2025-07-23T19:36:54.8471279Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:176: checkPrecompilesCompatible 0.0% +2025-07-23T19:36:54.8471588Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:192: checkPrecompileCompatible 0.0% +2025-07-23T19:36:54.8471903Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:230: EnabledStatefulPrecompiles 0.0% +2025-07-23T19:36:54.8472159Z github.com/ava-labs/coreth/params/extras/precompiles.go:18: UnmarshalJSON 0.0% +2025-07-23T19:36:54.8472391Z github.com/ava-labs/coreth/params/extras/rules.go:28: PredicatersExist 0.0% +2025-07-23T19:36:54.8472623Z github.com/ava-labs/coreth/params/extras/rules.go:32: PredicaterExists 0.0% +2025-07-23T19:36:54.8472870Z github.com/ava-labs/coreth/params/extras/rules.go:38: IsPrecompileEnabled 0.0% +2025-07-23T19:36:54.8473098Z github.com/ava-labs/coreth/params/hooks_libevm.go:28: GetRulesExtra 100.0% +2025-07-23T19:36:54.8473327Z github.com/ava-labs/coreth/params/hooks_libevm.go:33: CanCreateContract 0.0% +2025-07-23T19:36:54.8473582Z github.com/ava-labs/coreth/params/hooks_libevm.go:37: CanExecuteTransaction 0.0% +2025-07-23T19:36:54.8473830Z github.com/ava-labs/coreth/params/hooks_libevm.go:42: MinimumGasConsumption 0.0% +2025-07-23T19:36:54.8474059Z github.com/ava-labs/coreth/params/hooks_libevm.go:70: ActivePrecompiles 0.0% +2025-07-23T19:36:54.8474329Z github.com/ava-labs/coreth/params/hooks_libevm.go:92: precompileOverrideBuiltin 0.0% +2025-07-23T19:36:54.8474553Z github.com/ava-labs/coreth/params/hooks_libevm.go:113: makePrecompile 0.0% +2025-07-23T19:36:54.8474955Z github.com/ava-labs/coreth/params/hooks_libevm.go:140: PrecompileOverride 0.0% +2025-07-23T19:36:54.8475183Z github.com/ava-labs/coreth/params/hooks_libevm.go:160: GetStateDB 0.0% +2025-07-23T19:36:54.8475411Z github.com/ava-labs/coreth/params/hooks_libevm.go:172: GetBlockContext 0.0% +2025-07-23T19:36:54.8475636Z github.com/ava-labs/coreth/params/hooks_libevm.go:176: GetChainConfig 0.0% +2025-07-23T19:36:54.8475852Z github.com/ava-labs/coreth/params/hooks_libevm.go:180: GetSnowContext 0.0% +2025-07-23T19:36:54.8476077Z github.com/ava-labs/coreth/params/hooks_libevm.go:184: GetPrecompileEnv 0.0% +2025-07-23T19:36:54.8476284Z github.com/ava-labs/coreth/params/hooks_libevm.go:194: Number 0.0% +2025-07-23T19:36:54.8476624Z github.com/ava-labs/coreth/params/hooks_libevm.go:198: Timestamp 0.0% +2025-07-23T19:36:54.8476864Z github.com/ava-labs/coreth/params/hooks_libevm.go:202: GetPredicateResults 0.0% +2025-07-23T19:36:54.8477087Z github.com/ava-labs/coreth/params/version.go:53: VersionWithCommit 0.0% +2025-07-23T19:36:54.8477309Z github.com/ava-labs/coreth/plugin/evm/admin.go:22: NewAdminService 0.0% +2025-07-23T19:36:54.8477528Z github.com/ava-labs/coreth/plugin/evm/admin.go:30: StartCPUProfiler 0.0% +2025-07-23T19:36:54.8477741Z github.com/ava-labs/coreth/plugin/evm/admin.go:40: StopCPUProfiler 0.0% +2025-07-23T19:36:54.8477947Z github.com/ava-labs/coreth/plugin/evm/admin.go:50: MemoryProfile 0.0% +2025-07-23T19:36:54.8478154Z github.com/ava-labs/coreth/plugin/evm/admin.go:60: LockProfile 0.0% +2025-07-23T19:36:54.8478352Z github.com/ava-labs/coreth/plugin/evm/admin.go:69: SetLogLevel 0.0% +2025-07-23T19:36:54.8478554Z github.com/ava-labs/coreth/plugin/evm/admin.go:81: GetVMConfig 0.0% +2025-07-23T19:36:54.8478853Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/ops.go:12: ConvertToAtomicOps 75.0% +2025-07-23T19:36:54.8479242Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:26: AddItemsToBeRemovedToPeerChain 87.5% +2025-07-23T19:36:54.8479688Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:40: AssertOpsApplied 100.0% +2025-07-23T19:36:54.8480043Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:58: AssertOpsNotApplied 100.0% +2025-07-23T19:36:54.8480372Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:76: NewSharedMemories 100.0% +2025-07-23T19:36:54.8480699Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:85: TestSharedMemory 100.0% +2025-07-23T19:36:54.8480932Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:28: init 83.3% +2025-07-23T19:36:54.8481185Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:58: GasUsed 100.0% +2025-07-23T19:36:54.8481430Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:61: Verify 0.0% +2025-07-23T19:36:54.8481682Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:64: AtomicOps 100.0% +2025-07-23T19:36:54.8481936Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:69: Initialize 0.0% +2025-07-23T19:36:54.8482163Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:72: ID 100.0% +2025-07-23T19:36:54.8482406Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:75: Burned 100.0% +2025-07-23T19:36:54.8482635Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:78: Bytes 0.0% +2025-07-23T19:36:54.8482882Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:81: SignedBytes 0.0% +2025-07-23T19:36:54.8483145Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:84: InputUTXOs 100.0% +2025-07-23T19:36:54.8483377Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:87: Visit 0.0% +2025-07-23T19:36:54.8483657Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:92: EVMStateTransfer 0.0% +2025-07-23T19:36:54.8483975Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:98: GenerateTestImportTxWithGas 100.0% +2025-07-23T19:36:54.8484279Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:115: GenerateTestImportTx 100.0% +2025-07-23T19:36:54.8484577Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:130: GenerateTestExportTx 100.0% +2025-07-23T19:36:54.8484940Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:151: NewTestTx 80.0% +2025-07-23T19:36:54.8485206Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:163: NewTestTxs 100.0% +2025-07-23T19:36:54.8485414Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:25: init 85.7% +2025-07-23T19:36:54.8485652Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:57: ExtractAtomicTxs 0.0% +2025-07-23T19:36:54.8486089Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:76: ExtractAtomicTx 66.7% +2025-07-23T19:36:54.8486456Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:89: ExtractAtomicTxsBatch 0.0% +2025-07-23T19:36:54.8486783Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:60: InputUTXOs 0.0% +2025-07-23T19:36:54.8487051Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:75: Verify 0.0% +2025-07-23T19:36:54.8487330Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:134: GasUsed 0.0% +2025-07-23T19:36:54.8487572Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:156: Burned 0.0% +2025-07-23T19:36:54.8487795Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:182: Visit 0.0% +2025-07-23T19:36:54.8488031Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:185: AtomicOps 0.0% +2025-07-23T19:36:54.8488276Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:219: NewExportTx 0.0% +2025-07-23T19:36:54.8488539Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:313: EVMStateTransfer 0.0% +2025-07-23T19:36:54.8488808Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:352: getSpendableFunds 0.0% +2025-07-23T19:36:54.8489238Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:409: getSpendableAVAXWithFee 0.0% +2025-07-23T19:36:54.8489498Z github.com/ava-labs/coreth/plugin/evm/atomic/gossip.go:12: MarshalGossip 100.0% +2025-07-23T19:36:54.8489758Z github.com/ava-labs/coreth/plugin/evm/atomic/gossip.go:16: UnmarshalGossip 100.0% +2025-07-23T19:36:54.8489991Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:63: InputUTXOs 0.0% +2025-07-23T19:36:54.8490216Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:72: Verify 0.0% +2025-07-23T19:36:54.8490453Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:136: GasUsed 0.0% +2025-07-23T19:36:54.8490676Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:161: Burned 0.0% +2025-07-23T19:36:54.8490916Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:192: AtomicOps 0.0% +2025-07-23T19:36:54.8491155Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:202: NewImportTx 0.0% +2025-07-23T19:36:54.8491416Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:335: EVMStateTransfer 0.0% +2025-07-23T19:36:54.8491642Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:352: Visit 0.0% +2025-07-23T19:36:54.8491878Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:18: Initialize 100.0% +2025-07-23T19:36:54.8492098Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:25: ID 100.0% +2025-07-23T19:36:54.8492317Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:30: Bytes 0.0% +2025-07-23T19:36:54.8492555Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:35: SignedBytes 100.0% +2025-07-23T19:36:54.8492858Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:42: NewAtomicBackend 75.0% +2025-07-23T19:36:54.8493137Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:79: initialize 72.0% +2025-07-23T19:36:54.8493466Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:182: ApplyToSharedMemory 63.3% +2025-07-23T19:36:54.8493825Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:303: MarkApplyToSharedMemoryCursor 100.0% +2025-07-23T19:36:54.8494147Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:309: GetVerifiedAtomicState 0.0% +2025-07-23T19:36:54.8494444Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:320: getAtomicRootAt 0.0% +2025-07-23T19:36:54.8494734Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:332: SetLastAccepted 0.0% +2025-07-23T19:36:54.8495135Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:343: InsertTxs 0.0% +2025-07-23T19:36:54.8495541Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:393: IsBonus 0.0% +2025-07-23T19:36:54.8495824Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:400: AtomicTrie 100.0% +2025-07-23T19:36:54.8496118Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:406: mergeAtomicOps 91.7% +2025-07-23T19:36:54.8496440Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:428: mergeAtomicOpsToMap 100.0% +2025-07-23T19:36:54.8496727Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:438: AddBonusBlock 0.0% +2025-07-23T19:36:54.8497064Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:65: NewAtomicTxRepository 75.0% +2025-07-23T19:36:54.8497391Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:85: initializeHeightIndex 59.6% +2025-07-23T19:36:54.8497696Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:185: GetIndexHeight 0.0% +2025-07-23T19:36:54.8497983Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:201: GetByTxID 0.0% +2025-07-23T19:36:54.8498283Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:229: GetByHeight 100.0% +2025-07-23T19:36:54.8498604Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:236: getByHeightBytes 100.0% +2025-07-23T19:36:54.8498991Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:248: Write 100.0% +2025-07-23T19:36:54.8499291Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:254: WriteBonus 0.0% +2025-07-23T19:36:54.8499564Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:258: write 72.2% +2025-07-23T19:36:54.8499856Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:300: indexTxByID 80.0% +2025-07-23T19:36:54.8500170Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:320: indexTxsAtHeight 66.7% +2025-07-23T19:36:54.8500508Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:335: appendTxToHeightIndex 75.0% +2025-07-23T19:36:54.8500822Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:356: IterateByHeight 100.0% +2025-07-23T19:36:54.8501070Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:28: Root 0.0% +2025-07-23T19:36:54.8501332Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:35: Accept 0.0% +2025-07-23T19:36:54.8501589Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:78: Reject 0.0% +2025-07-23T19:36:54.8501868Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:52: newAtomicTrie 58.3% +2025-07-23T19:36:54.8502199Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:103: lastCommittedRootIfExists 72.7% +2025-07-23T19:36:54.8502504Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:126: nearestCommitHeight 100.0% +2025-07-23T19:36:54.8502771Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:130: OpenTrie 100.0% +2025-07-23T19:36:54.8503033Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:135: Commit 75.0% +2025-07-23T19:36:54.8503302Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:143: UpdateTrie 80.0% +2025-07-23T19:36:54.8503603Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:165: LastCommitted 100.0% +2025-07-23T19:36:54.8503903Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:171: updateLastCommitted 75.0% +2025-07-23T19:36:54.8504165Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:191: Iterator 75.0% +2025-07-23T19:36:54.8504421Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:205: TrieDB 0.0% +2025-07-23T19:36:54.8504667Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:212: Root 100.0% +2025-07-23T19:36:54.8505181Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:218: getRoot 62.5% +2025-07-23T19:36:54.8505636Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:237: LastAcceptedRoot 100.0% +2025-07-23T19:36:54.8505909Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:241: InsertTrie 55.6% +2025-07-23T19:36:54.8506184Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:263: AcceptTrie 83.3% +2025-07-23T19:36:54.8506446Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:293: RejectTrie 0.0% +2025-07-23T19:36:54.8506791Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:28: NewAtomicTrieIterator 100.0% +2025-07-23T19:36:54.8507078Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:33: Error 100.0% +2025-07-23T19:36:54.8507352Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:42: Next 81.0% +2025-07-23T19:36:54.8507657Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:81: resetFields 100.0% +2025-07-23T19:36:54.8507959Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:90: BlockNumber 100.0% +2025-07-23T19:36:54.8508263Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:95: BlockchainID 100.0% +2025-07-23T19:36:54.8508703Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:101: AtomicOps 100.0% +2025-07-23T19:36:54.8508993Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:107: Key 0.0% +2025-07-23T19:36:54.8509283Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:112: Value 0.0% +2025-07-23T19:36:54.8509518Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:29: MarshalJSON 0.0% +2025-07-23T19:36:54.8509753Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:37: UnmarshalJSON 0.0% +2025-07-23T19:36:54.8509968Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:58: Valid 0.0% +2025-07-23T19:36:54.8510185Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:67: String 0.0% +2025-07-23T19:36:54.8510439Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:29: Initialize 0.0% +2025-07-23T19:36:54.8510665Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:36: Sync 0.0% +2025-07-23T19:36:54.8510956Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:69: OnFinishBeforeCommit 0.0% +2025-07-23T19:36:54.8511241Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:81: OnFinishAfterCommit 0.0% +2025-07-23T19:36:54.8511513Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:28: OnLeafsRequest 0.0% +2025-07-23T19:36:54.8511790Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:38: NewLeafHandler 0.0% +2025-07-23T19:36:54.8512052Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:45: Initialize 0.0% +2025-07-23T19:36:54.8512298Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:32: NewSummary 80.0% +2025-07-23T19:36:54.8512541Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:57: Bytes 100.0% +2025-07-23T19:36:54.8512764Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:61: ID 100.0% +2025-07-23T19:36:54.8512997Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:65: String 0.0% +2025-07-23T19:36:54.8513236Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:69: Accept 66.7% +2025-07-23T19:36:54.8513537Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_parser.go:17: NewSummaryParser 100.0% +2025-07-23T19:36:54.8513801Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_parser.go:21: Parse 80.0% +2025-07-23T19:36:54.8514075Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_provider.go:25: Initialize 0.0% +2025-07-23T19:36:54.8514379Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_provider.go:30: StateSummaryAtBlock 0.0% +2025-07-23T19:36:54.8514713Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:88: Validate 100.0% +2025-07-23T19:36:54.8515133Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:162: addZeroes 100.0% +2025-07-23T19:36:54.8515383Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:170: newSyncer 86.7% +2025-07-23T19:36:54.8515618Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:211: Start 100.0% +2025-07-23T19:36:54.8515854Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:219: onLeafs 70.8% +2025-07-23T19:36:54.8516095Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:267: onFinish 58.3% +2025-07-23T19:36:54.8516354Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:293: onSyncFailure 100.0% +2025-07-23T19:36:54.8516588Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:300: Wait 100.0% +2025-07-23T19:36:54.8516816Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:318: Start 100.0% +2025-07-23T19:36:54.8517044Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:319: End 100.0% +2025-07-23T19:36:54.8517287Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:320: NodeType 100.0% +2025-07-23T19:36:54.8517523Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:321: OnFinish 100.0% +2025-07-23T19:36:54.8517882Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:322: OnStart 100.0% +2025-07-23T19:36:54.8518123Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:323: Root 100.0% +2025-07-23T19:36:54.8518358Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:324: Account 100.0% +2025-07-23T19:36:54.8518598Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:325: OnLeafs 100.0% +2025-07-23T19:36:54.8518805Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:70: Compare 0.0% +2025-07-23T19:36:54.8519012Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:86: Compare 0.0% +2025-07-23T19:36:54.8519224Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:95: Verify 0.0% +2025-07-23T19:36:54.8519422Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:108: Verify 0.0% +2025-07-23T19:36:54.8519633Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:183: Compare 0.0% +2025-07-23T19:36:54.8519836Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:197: Sign 82.4% +2025-07-23T19:36:54.8520086Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:231: BlockFeeContribution 0.0% +2025-07-23T19:36:54.8520305Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:261: GossipID 100.0% +2025-07-23T19:36:54.8520507Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:271: Less 0.0% +2025-07-23T19:36:54.8520702Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:279: Len 0.0% +2025-07-23T19:36:54.8520903Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:281: Swap 0.0% +2025-07-23T19:36:54.8521166Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:287: SortEVMInputsAndSigners 0.0% +2025-07-23T19:36:54.8521420Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:293: CalculateDynamicFee 0.0% +2025-07-23T19:36:54.8521646Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:309: calcBytesCost 0.0% +2025-07-23T19:36:54.8521936Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:48: newMempoolMetrics 100.0% +2025-07-23T19:36:54.8522196Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:89: Initialize 93.3% +2025-07-23T19:36:54.8522453Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:114: PendingLen 0.0% +2025-07-23T19:36:54.8522690Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:119: Len 0.0% +2025-07-23T19:36:54.8522938Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:127: length 100.0% +2025-07-23T19:36:54.8523219Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:133: atomicTxGasPrice 77.8% +2025-07-23T19:36:54.8523594Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:148: Add 100.0% +2025-07-23T19:36:54.8523865Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:157: AddRemoteTx 100.0% +2025-07-23T19:36:54.8524126Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:180: AddLocalTx 0.0% +2025-07-23T19:36:54.8524385Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:193: ForceAddTx 0.0% +2025-07-23T19:36:54.8524663Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:203: checkConflictTx 26.7% +2025-07-23T19:36:54.8525018Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:234: addTx 64.6% +2025-07-23T19:36:54.8525273Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:352: Iterate 100.0% +2025-07-23T19:36:54.8525523Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:363: GetFilter 0.0% +2025-07-23T19:36:54.8525775Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:371: NextTx 88.9% +2025-07-23T19:36:54.8526046Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:391: GetPendingTx 0.0% +2025-07-23T19:36:54.8526292Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:401: GetTx 72.7% +2025-07-23T19:36:54.8526643Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:422: Has 100.0% +2025-07-23T19:36:54.8526929Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:428: IssueCurrentTxs 88.9% +2025-07-23T19:36:54.8527215Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:451: CancelCurrentTx 0.0% +2025-07-23T19:36:54.8527489Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:464: CancelCurrentTxs 0.0% +2025-07-23T19:36:54.8527737Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:484: cancelTx 0.0% +2025-07-23T19:36:54.8528011Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:505: DiscardCurrentTx 0.0% +2025-07-23T19:36:54.8528291Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:515: DiscardCurrentTxs 0.0% +2025-07-23T19:36:54.8528566Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:526: discardCurrentTx 0.0% +2025-07-23T19:36:54.8528815Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:540: removeTx 91.7% +2025-07-23T19:36:54.8529095Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:565: removeSpenders 50.0% +2025-07-23T19:36:54.8529340Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:573: RemoveTx 0.0% +2025-07-23T19:36:54.8529605Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:581: addPending 100.0% +2025-07-23T19:36:54.8529900Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:590: SubscribePendingTxs 0.0% +2025-07-23T19:36:54.8530181Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:29: newInternalTxHeap 100.0% +2025-07-23T19:36:54.8530417Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:37: Len 100.0% +2025-07-23T19:36:54.8530662Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:39: Less 100.0% +2025-07-23T19:36:54.8530895Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:46: Swap 100.0% +2025-07-23T19:36:54.8531135Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:52: Push 80.0% +2025-07-23T19:36:54.8531366Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:61: Pop 100.0% +2025-07-23T19:36:54.8531591Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:70: Get 100.0% +2025-07-23T19:36:54.8531856Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:78: Has 100.0% +2025-07-23T19:36:54.8532111Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:88: newTxHeap 100.0% +2025-07-23T19:36:54.8532350Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:95: Push 100.0% +2025-07-23T19:36:54.8532594Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:113: PeekMax 0.0% +2025-07-23T19:36:54.8532971Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:119: PeekMin 100.0% +2025-07-23T19:36:54.8533230Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:125: PopMax 100.0% +2025-07-23T19:36:54.8533483Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:130: PopMin 100.0% +2025-07-23T19:36:54.8533729Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:134: Remove 75.0% +2025-07-23T19:36:54.8533965Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:150: Len 100.0% +2025-07-23T19:36:54.8534197Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:154: Get 100.0% +2025-07-23T19:36:54.8534435Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:162: Has 100.0% +2025-07-23T19:36:54.8534655Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:43: Version 0.0% +2025-07-23T19:36:54.8534977Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:53: GetUTXOs 0.0% +2025-07-23T19:36:54.8535204Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:141: IssueTx 0.0% +2025-07-23T19:36:54.8535452Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:170: GetAtomicTxStatus 0.0% +2025-07-23T19:36:54.8535795Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:205: GetAtomicTx 0.0% +2025-07-23T19:36:54.8536099Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:48: newBlockExtender 100.0% +2025-07-23T19:36:54.8536388Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:61: NewBlockExtension 75.0% +2025-07-23T19:36:54.8536680Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:82: SyntacticVerify 66.7% +2025-07-23T19:36:54.8536967Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:172: SemanticVerify 100.0% +2025-07-23T19:36:54.8537235Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:193: Accept 85.7% +2025-07-23T19:36:54.8537500Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:213: Reject 77.8% +2025-07-23T19:36:54.8537795Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:231: CleanupVerified 100.0% +2025-07-23T19:36:54.8538079Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:239: AtomicTxs 100.0% +2025-07-23T19:36:54.8538379Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:245: verifyUTXOsPresent 92.9% +2025-07-23T19:36:54.8538674Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/bonus_blocks.go:9: readMainnetBonusBlocks 0.0% +2025-07-23T19:36:54.8538919Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/ext_data_hashes.go:23: init 66.7% +2025-07-23T19:36:54.8539206Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:18: ParseServiceAddress 0.0% +2025-07-23T19:36:54.8539489Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:27: ParseLocalAddress 0.0% +2025-07-23T19:36:54.8539766Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:40: FormatLocalAddress 0.0% +2025-07-23T19:36:54.8540029Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:51: ParseAddress 0.0% +2025-07-23T19:36:54.8540340Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:50: NewVerifierBackend 100.0% +2025-07-23T19:36:54.8540635Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:62: SemanticVerify 100.0% +2025-07-23T19:36:54.8540909Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:80: ImportTx 95.7% +2025-07-23T19:36:54.8541184Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:167: conflicts 88.2% +2025-07-23T19:36:54.8541458Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:205: ExportTx 86.8% +2025-07-23T19:36:54.8541683Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:108: WrapVM 100.0% +2025-07-23T19:36:54.8542057Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:113: Initialize 74.4% +2025-07-23T19:36:54.8542281Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:231: SetState 57.1% +2025-07-23T19:36:54.8542545Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:248: onBootstrapStarted 100.0% +2025-07-23T19:36:54.8542828Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:253: onNormalOperationsStarted 83.9% +2025-07-23T19:36:54.8543050Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:342: Shutdown 75.0% +2025-07-23T19:36:54.8543289Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:356: CreateHandlers 0.0% +2025-07-23T19:36:54.8543540Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:371: verifyTxAtTip 77.3% +2025-07-23T19:36:54.8543755Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:414: verifyTx 85.7% +2025-07-23T19:36:54.8543974Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:428: verifyTxs 88.2% +2025-07-23T19:36:54.8544223Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:464: CodecRegistry 100.0% +2025-07-23T19:36:54.8544435Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:467: Clock 100.0% +2025-07-23T19:36:54.8544650Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:470: Logger 100.0% +2025-07-23T19:36:54.8545136Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:472: createConsensusCallbacks 100.0% +2025-07-23T19:36:54.8545436Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:479: preBatchOnFinalizeAndAssemble 84.0% +2025-07-23T19:36:54.8545733Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:526: postBatchOnFinalizeAndAssemble 84.1% +2025-07-23T19:36:54.8545997Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:636: onFinalizeAndAssemble 100.0% +2025-07-23T19:36:54.8546247Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:648: onExtraStateChange 83.9% +2025-07-23T19:36:54.8546480Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:721: BuildBlock 100.0% +2025-07-23T19:36:54.8546749Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:725: BuildBlockWithContext 50.0% +2025-07-23T19:36:54.8547002Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:744: chainConfigExtra 100.0% +2025-07-23T19:36:54.8547214Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:748: rules 100.0% +2025-07-23T19:36:54.8547454Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:754: CurrentRules 100.0% +2025-07-23T19:36:54.8547688Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:763: GetAtomicTx 22.2% +2025-07-23T19:36:54.8547913Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:780: NewImportTx 85.7% +2025-07-23T19:36:54.8548141Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:800: NewExportTx 71.4% +2025-07-23T19:36:54.8548385Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:49: NewBlockBuilder 100.0% +2025-07-23T19:36:54.8548654Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:62: handleGenerateBlock 100.0% +2025-07-23T19:36:54.8548893Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:70: needToBuild 100.0% +2025-07-23T19:36:54.8549131Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:78: signalCanBuild 100.0% +2025-07-23T19:36:54.8549388Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:87: awaitSubmittedTxs 100.0% +2025-07-23T19:36:54.8549619Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:119: waitForEvent 91.7% +2025-07-23T19:36:54.8549874Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:145: waitForNeedToBuild 100.0% +2025-07-23T19:36:54.8550097Z github.com/ava-labs/coreth/plugin/evm/client/client.go:49: NewClient 0.0% +2025-07-23T19:36:54.8550338Z github.com/ava-labs/coreth/plugin/evm/client/client.go:57: NewCChainClient 0.0% +2025-07-23T19:36:54.8550557Z github.com/ava-labs/coreth/plugin/evm/client/client.go:62: IssueTx 0.0% +2025-07-23T19:36:54.8550801Z github.com/ava-labs/coreth/plugin/evm/client/client.go:82: GetAtomicTxStatus 0.0% +2025-07-23T19:36:54.8551152Z github.com/ava-labs/coreth/plugin/evm/client/client.go:91: GetAtomicTx 0.0% +2025-07-23T19:36:54.8551399Z github.com/ava-labs/coreth/plugin/evm/client/client.go:106: GetAtomicUTXOs 0.0% +2025-07-23T19:36:54.8551649Z github.com/ava-labs/coreth/plugin/evm/client/client.go:138: StartCPUProfiler 0.0% +2025-07-23T19:36:54.8551893Z github.com/ava-labs/coreth/plugin/evm/client/client.go:142: StopCPUProfiler 0.0% +2025-07-23T19:36:54.8552131Z github.com/ava-labs/coreth/plugin/evm/client/client.go:146: MemoryProfile 0.0% +2025-07-23T19:36:54.8552355Z github.com/ava-labs/coreth/plugin/evm/client/client.go:150: LockProfile 0.0% +2025-07-23T19:36:54.8552586Z github.com/ava-labs/coreth/plugin/evm/client/client.go:159: SetLogLevel 0.0% +2025-07-23T19:36:54.8552811Z github.com/ava-labs/coreth/plugin/evm/client/client.go:170: GetVMConfig 0.0% +2025-07-23T19:36:54.8553052Z github.com/ava-labs/coreth/plugin/evm/client/utils.go:8: ParseEthAddress 0.0% +2025-07-23T19:36:54.8553274Z github.com/ava-labs/coreth/plugin/evm/config/config.go:265: EthAPIs 0.0% +2025-07-23T19:36:54.8553505Z github.com/ava-labs/coreth/plugin/evm/config/config.go:269: SetDefaults 0.0% +2025-07-23T19:36:54.8553826Z github.com/ava-labs/coreth/plugin/evm/config/config.go:327: UnmarshalJSON 80.0% +2025-07-23T19:36:54.8554041Z github.com/ava-labs/coreth/plugin/evm/config/config.go:337: String 0.0% +2025-07-23T19:36:54.8554266Z github.com/ava-labs/coreth/plugin/evm/config/config.go:342: MarshalJSON 0.0% +2025-07-23T19:36:54.8554487Z github.com/ava-labs/coreth/plugin/evm/config/config.go:347: Validate 0.0% +2025-07-23T19:36:54.8554710Z github.com/ava-labs/coreth/plugin/evm/config/config.go:382: Deprecate 57.1% +2025-07-23T19:36:54.8555062Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:28: New 0.0% +2025-07-23T19:36:54.8555317Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:35: Dial 0.0% +2025-07-23T19:36:54.8555603Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:40: DialContext 0.0% +2025-07-23T19:36:54.8555895Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:60: OnBlockDecoded 0.0% +2025-07-23T19:36:54.8556149Z github.com/ava-labs/coreth/plugin/evm/customlogs/log_ext.go:8: FlattenLogs 100.0% +2025-07-23T19:36:54.8556499Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:16: writeCurrentTimeMarker 0.0% +2025-07-23T19:36:54.8556817Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:25: readTimeMarker 0.0% +2025-07-23T19:36:54.8557149Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:44: WriteOfflinePruning 0.0% +2025-07-23T19:36:54.8557483Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:50: ReadOfflinePruning 0.0% +2025-07-23T19:36:54.8557824Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:55: DeleteOfflinePruning 0.0% +2025-07-23T19:36:54.8558179Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:61: WritePopulateMissingTries 0.0% +2025-07-23T19:36:54.8558532Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:67: ReadPopulateMissingTries 0.0% +2025-07-23T19:36:54.8558893Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:73: DeletePopulateMissingTries 0.0% +2025-07-23T19:36:54.8559234Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:79: WritePruningDisabled 0.0% +2025-07-23T19:36:54.8559558Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:85: HasPruningDisabled 0.0% +2025-07-23T19:36:54.8559878Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:90: WriteAcceptorTip 0.0% +2025-07-23T19:36:54.8560200Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:97: ReadAcceptorTip 0.0% +2025-07-23T19:36:54.8560666Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:15: ReadSnapshotBlockHash 0.0% +2025-07-23T19:36:54.8561018Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:25: WriteSnapshotBlockHash 50.0% +2025-07-23T19:36:54.8561365Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:35: DeleteSnapshotBlockHash 0.0% +2025-07-23T19:36:54.8561711Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:42: IterateAccountSnapshots 0.0% +2025-07-23T19:36:54.8562017Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:18: ReadSyncRoot 0.0% +2025-07-23T19:36:54.8562323Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:31: WriteSyncRoot 0.0% +2025-07-23T19:36:54.8562639Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:36: AddCodeToFetch 50.0% +2025-07-23T19:36:54.8562958Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:43: DeleteCodeToFetch 0.0% +2025-07-23T19:36:54.8563291Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:52: NewCodeToFetchIterator 0.0% +2025-07-23T19:36:54.8563722Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:59: codeToFetchKey 100.0% +2025-07-23T19:36:54.8564068Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:69: NewSyncSegmentsIterator 0.0% +2025-07-23T19:36:54.8564387Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:81: WriteSyncSegment 100.0% +2025-07-23T19:36:54.8564696Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:86: ClearSyncSegments 0.0% +2025-07-23T19:36:54.8565321Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:94: ClearAllSyncSegments 100.0% +2025-07-23T19:36:54.8565670Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:100: UnpackSyncSegmentKey 0.0% +2025-07-23T19:36:54.8566013Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:108: packSyncSegmentKey 100.0% +2025-07-23T19:36:54.8566380Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:119: NewSyncStorageTriesIterator 0.0% +2025-07-23T19:36:54.8566728Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:124: WriteSyncStorageTrie 100.0% +2025-07-23T19:36:54.8567055Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:130: ClearSyncStorageTrie 0.0% +2025-07-23T19:36:54.8567403Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:138: ClearAllSyncStorageTries 0.0% +2025-07-23T19:36:54.8567745Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:144: UnpackSyncStorageTrieKey 0.0% +2025-07-23T19:36:54.8568096Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:152: packSyncStorageTrieKey 100.0% +2025-07-23T19:36:54.8568428Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:161: WriteSyncPerformed 100.0% +2025-07-23T19:36:54.8568768Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:171: NewSyncPerformedIterator 0.0% +2025-07-23T19:36:54.8569112Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:177: UnpackSyncPerformedKey 0.0% +2025-07-23T19:36:54.8569447Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:182: GetLatestSyncPerformed 0.0% +2025-07-23T19:36:54.8569755Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:198: clearPrefix 68.8% +2025-07-23T19:36:54.8570054Z github.com/ava-labs/coreth/plugin/evm/customrawdb/database_ext.go:17: InspectDatabase 100.0% +2025-07-23T19:36:54.8570358Z github.com/ava-labs/coreth/plugin/evm/customrawdb/database_ext.go:67: ParseStateSchemeExt 0.0% +2025-07-23T19:36:54.8570638Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:16: SetBlockExtra 100.0% +2025-07-23T19:36:54.8571018Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:33: Copy 100.0% +2025-07-23T19:36:54.8571334Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:48: BodyRLPFieldsForEncoding 100.0% +2025-07-23T19:36:54.8571669Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:61: BodyRLPFieldPointersForDecoding 100.0% +2025-07-23T19:36:54.8571982Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:78: BlockRLPFieldsForEncoding 100.0% +2025-07-23T19:36:54.8572320Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:92: BlockRLPFieldPointersForDecoding 100.0% +2025-07-23T19:36:54.8572592Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:104: BlockExtData 100.0% +2025-07-23T19:36:54.8572865Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:111: BlockVersion 100.0% +2025-07-23T19:36:54.8573158Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:115: BlockExtDataGasUsed 100.0% +2025-07-23T19:36:54.8573430Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:123: BlockGasCost 100.0% +2025-07-23T19:36:54.8573713Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:131: CalcExtDataHash 66.7% +2025-07-23T19:36:54.8574106Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:138: NewBlockWithExtData 100.0% +2025-07-23T19:36:54.8574445Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_json.go:18: MarshalJSON 100.0% +2025-07-23T19:36:54.8574882Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_json.go:72: UnmarshalJSON 76.2% +2025-07-23T19:36:54.8575192Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_rlp.go:8: EncodeRLP 85.9% +2025-07-23T19:36:54.8575491Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:17: GetHeaderExtra 100.0% +2025-07-23T19:36:54.8575774Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:22: SetHeaderExtra 100.0% +2025-07-23T19:36:54.8576066Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:28: WithHeaderExtra 100.0% +2025-07-23T19:36:54.8576336Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:45: EncodeRLP 100.0% +2025-07-23T19:36:54.8576600Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:56: DecodeRLP 100.0% +2025-07-23T19:36:54.8576869Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:70: EncodeJSON 100.0% +2025-07-23T19:36:54.8577124Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:81: DecodeJSON 83.3% +2025-07-23T19:36:54.8577382Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:93: PostCopy 100.0% +2025-07-23T19:36:54.8577663Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:106: updateFromEth 100.0% +2025-07-23T19:36:54.8577933Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:128: updateToEth 100.0% +2025-07-23T19:36:54.8578230Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:150: updateFromExtras 100.0% +2025-07-23T19:36:54.8578511Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:156: updateToExtras 100.0% +2025-07-23T19:36:54.8578763Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:233: Hash 100.0% +2025-07-23T19:36:54.8579052Z github.com/ava-labs/coreth/plugin/evm/customtypes/state_account_ext.go:14: IsMultiCoin 0.0% +2025-07-23T19:36:54.8579330Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:22: WrapDatabase 100.0% +2025-07-23T19:36:54.8579578Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:25: Stat 0.0% +2025-07-23T19:36:54.8579848Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:28: NewBatch 100.0% +2025-07-23T19:36:54.8580134Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:32: NewBatchWithSize 0.0% +2025-07-23T19:36:54.8580559Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:36: NewSnapshot 0.0% +2025-07-23T19:36:54.8580836Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:44: NewIterator 100.0% +2025-07-23T19:36:54.8581144Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:57: NewIteratorWithStart 0.0% +2025-07-23T19:36:54.8581415Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:65: ValueSize 100.0% +2025-07-23T19:36:54.8581679Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:68: Replay 100.0% +2025-07-23T19:36:54.8581936Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:38: NewGossipEthTxPool 75.0% +2025-07-23T19:36:54.8582169Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:70: IsSubscribed 100.0% +2025-07-23T19:36:54.8582389Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:74: Subscribe 85.2% +2025-07-23T19:36:54.8582606Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:119: Add 100.0% +2025-07-23T19:36:54.8582815Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:125: Has 100.0% +2025-07-23T19:36:54.8583039Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:129: Iterate 100.0% +2025-07-23T19:36:54.8583255Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:135: GetFilter 0.0% +2025-07-23T19:36:54.8583607Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:144: MarshalGossip 100.0% +2025-07-23T19:36:54.8583873Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:148: UnmarshalGossip 100.0% +2025-07-23T19:36:54.8584094Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:160: GossipID 100.0% +2025-07-23T19:36:54.8584303Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:170: Add 75.0% +2025-07-23T19:36:54.8584541Z github.com/ava-labs/coreth/plugin/evm/extension/config.go:161: Validate 55.6% +2025-07-23T19:36:54.8584914Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:19: NewTxGossipHandler 100.0% +2025-07-23T19:36:54.8585169Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:61: AppGossip 100.0% +2025-07-23T19:36:54.8585402Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:65: AppRequest 100.0% +2025-07-23T19:36:54.8585630Z github.com/ava-labs/coreth/plugin/evm/header/base_fee.go:21: BaseFee 100.0% +2025-07-23T19:36:54.8585914Z github.com/ava-labs/coreth/plugin/evm/header/base_fee.go:50: EstimateNextBaseFee 100.0% +2025-07-23T19:36:54.8586182Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:28: BlockGasCost 100.0% +2025-07-23T19:36:54.8586481Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:60: BlockGasCostWithStep 100.0% +2025-07-23T19:36:54.8586766Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:88: EstimateRequiredTip 100.0% +2025-07-23T19:36:54.8587064Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_state.go:19: feeStateBeforeBlock 100.0% +2025-07-23T19:36:54.8587360Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_state.go:51: feeStateAfterBlock 100.0% +2025-07-23T19:36:54.8587651Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:40: baseFeeFromWindow 97.4% +2025-07-23T19:36:54.8587931Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:148: feeWindow 100.0% +2025-07-23T19:36:54.8588256Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:221: selectBigWithinBounds 100.0% +2025-07-23T19:36:54.8588486Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:29: ExtraPrefix 100.0% +2025-07-23T19:36:54.8588739Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:61: VerifyExtraPrefix 100.0% +2025-07-23T19:36:54.8588969Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:116: VerifyExtra 100.0% +2025-07-23T19:36:54.8589248Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:169: PredicateBytesFromExtra 100.0% +2025-07-23T19:36:54.8589520Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:187: SetPredicateBytesInExtra 100.0% +2025-07-23T19:36:54.8589878Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:28: GasLimit 100.0% +2025-07-23T19:36:54.8590136Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:61: VerifyGasUsed 100.0% +2025-07-23T19:36:54.8590395Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:97: VerifyGasLimit 100.0% +2025-07-23T19:36:54.8590644Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:159: GasCapacity 100.0% +2025-07-23T19:36:54.8590941Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:179: RemainingAtomicGasCapacity 100.0% +2025-07-23T19:36:54.8591152Z github.com/ava-labs/coreth/plugin/evm/health.go:11: HealthCheck 0.0% +2025-07-23T19:36:54.8591366Z github.com/ava-labs/coreth/plugin/evm/log/log.go:26: InitLogger 55.0% +2025-07-23T19:36:54.8591584Z github.com/ava-labs/coreth/plugin/evm/log/log.go:62: SetLogLevel 100.0% +2025-07-23T19:36:54.8591800Z github.com/ava-labs/coreth/plugin/evm/log/log.go:77: trimPrefixes 88.9% +2025-07-23T19:36:54.8592008Z github.com/ava-labs/coreth/plugin/evm/log/log.go:92: getSource 0.0% +2025-07-23T19:36:54.8592207Z github.com/ava-labs/coreth/plugin/evm/log/log.go:104: Handle 0.0% +2025-07-23T19:36:54.8592559Z github.com/ava-labs/coreth/plugin/evm/message/block_request.go:24: String 0.0% +2025-07-23T19:36:54.8592808Z github.com/ava-labs/coreth/plugin/evm/message/block_request.go:31: Handle 0.0% +2025-07-23T19:36:54.8593110Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:31: NewBlockSyncSummary 80.0% +2025-07-23T19:36:54.8593400Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:53: GetBlockHash 100.0% +2025-07-23T19:36:54.8593681Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:57: GetBlockRoot 100.0% +2025-07-23T19:36:54.8593947Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:61: Bytes 100.0% +2025-07-23T19:36:54.8594215Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:65: Height 100.0% +2025-07-23T19:36:54.8594456Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:69: ID 0.0% +2025-07-23T19:36:54.8594717Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:73: String 0.0% +2025-07-23T19:36:54.8595082Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:77: Accept 66.7% +2025-07-23T19:36:54.8595445Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_parser.go:14: NewBlockSyncSummaryParser 100.0% +2025-07-23T19:36:54.8595727Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_parser.go:18: Parse 80.0% +2025-07-23T19:36:54.8596056Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_provider.go:14: StateSummaryAtBlock 0.0% +2025-07-23T19:36:54.8596296Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:23: String 0.0% +2025-07-23T19:36:54.8596536Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:31: Handle 0.0% +2025-07-23T19:36:54.8596796Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:35: NewCodeRequest 0.0% +2025-07-23T19:36:54.8597010Z github.com/ava-labs/coreth/plugin/evm/message/codec.go:20: init 88.9% +2025-07-23T19:36:54.8597278Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:35: HandleLeafsRequest 0.0% +2025-07-23T19:36:54.8597540Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:39: HandleBlockRequest 0.0% +2025-07-23T19:36:54.8597793Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:43: HandleCodeRequest 0.0% +2025-07-23T19:36:54.8598029Z github.com/ava-labs/coreth/plugin/evm/message/leafs_request.go:40: String 0.0% +2025-07-23T19:36:54.8598271Z github.com/ava-labs/coreth/plugin/evm/message/leafs_request.go:47: Handle 0.0% +2025-07-23T19:36:54.8598517Z github.com/ava-labs/coreth/plugin/evm/message/request.go:25: RequestToBytes 0.0% +2025-07-23T19:36:54.8598910Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:39: newNetworkHandler 100.0% +2025-07-23T19:36:54.8599167Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:54: HandleLeafsRequest 60.0% +2025-07-23T19:36:54.8599429Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:63: HandleBlockRequest 100.0% +2025-07-23T19:36:54.8599695Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:67: HandleCodeRequest 0.0% +2025-07-23T19:36:54.8599915Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:99: NewClient 100.0% +2025-07-23T19:36:54.8600164Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:127: StateSyncEnabled 100.0% +2025-07-23T19:36:54.8600437Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:134: GetOngoingSyncStateSummary 0.0% +2025-07-23T19:36:54.8600688Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:153: ClearOngoingSummary 60.0% +2025-07-23T19:36:54.8600942Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:165: ParseStateSummary 100.0% +2025-07-23T19:36:54.8601164Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:171: stateSync 71.4% +2025-07-23T19:36:54.8601404Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:189: acceptSyncSummary 92.0% +2025-07-23T19:36:54.8601738Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:257: syncBlocks 89.3% +2025-07-23T19:36:54.8601981Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:304: syncStateTrie 77.8% +2025-07-23T19:36:54.8602203Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:326: Shutdown 100.0% +2025-07-23T19:36:54.8602424Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:336: finishSync 66.7% +2025-07-23T19:36:54.8602664Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:405: commitVMMarkers 66.7% +2025-07-23T19:36:54.8602879Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:420: Error 100.0% +2025-07-23T19:36:54.8603095Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:36: NewServer 100.0% +2025-07-23T19:36:54.8603353Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:48: GetLastStateSummary 75.0% +2025-07-23T19:36:54.8603586Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:64: GetStateSummary 66.7% +2025-07-23T19:36:54.8603838Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:82: stateSummaryAtHeight 62.5% +2025-07-23T19:36:54.8604107Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:53: ParseState 100.0% +2025-07-23T19:36:54.8604351Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:74: Target 100.0% +2025-07-23T19:36:54.8604617Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:83: MaxCapacity 100.0% +2025-07-23T19:36:54.8604963Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:91: GasPrice 100.0% +2025-07-23T19:36:54.8605223Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:99: AdvanceTime 100.0% +2025-07-23T19:36:54.8605491Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:114: ConsumeGas 100.0% +2025-07-23T19:36:54.8605786Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:144: UpdateTargetExcess 100.0% +2025-07-23T19:36:54.8606026Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:160: Bytes 100.0% +2025-07-23T19:36:54.8606337Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:170: DesiredTargetExcess 100.0% +2025-07-23T19:36:54.8606607Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:184: targetExcess 100.0% +2025-07-23T19:36:54.8606876Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:195: scaleExcess 100.0% +2025-07-23T19:36:54.8607162Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:214: mulWithUpperBound 100.0% +2025-07-23T19:36:54.8607416Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:67: ParseWindow 100.0% +2025-07-23T19:36:54.8607651Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:87: Add 100.0% +2025-07-23T19:36:54.8608010Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:94: Shift 100.0% +2025-07-23T19:36:54.8608240Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:108: Sum 100.0% +2025-07-23T19:36:54.8608472Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:112: Bytes 100.0% +2025-07-23T19:36:54.8608699Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:121: add 100.0% +2025-07-23T19:36:54.8608948Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap4/cost.go:53: BlockGasCost 93.3% +2025-07-23T19:36:54.8609141Z github.com/ava-labs/coreth/plugin/evm/version.go:15: init 50.0% +2025-07-23T19:36:54.8609326Z github.com/ava-labs/coreth/plugin/evm/vm.go:175: init 100.0% +2025-07-23T19:36:54.8609522Z github.com/ava-labs/coreth/plugin/evm/vm.go:271: Initialize 80.3% +2025-07-23T19:36:54.8609725Z github.com/ava-labs/coreth/plugin/evm/vm.go:500: parseGenesis 76.9% +2025-07-23T19:36:54.8609952Z github.com/ava-labs/coreth/plugin/evm/vm.go:530: initializeMetrics 54.5% +2025-07-23T19:36:54.8610161Z github.com/ava-labs/coreth/plugin/evm/vm.go:549: initializeChain 84.2% +2025-07-23T19:36:54.8610381Z github.com/ava-labs/coreth/plugin/evm/vm.go:604: initializeStateSync 76.7% +2025-07-23T19:36:54.8610719Z github.com/ava-labs/coreth/plugin/evm/vm.go:704: initChainState 75.0% +2025-07-23T19:36:54.8610918Z github.com/ava-labs/coreth/plugin/evm/vm.go:737: SetState 83.3% +2025-07-23T19:36:54.8611148Z github.com/ava-labs/coreth/plugin/evm/vm.go:752: onBootstrapStarted 71.4% +2025-07-23T19:36:54.8611389Z github.com/ava-labs/coreth/plugin/evm/vm.go:768: onNormalOperationsStarted 75.0% +2025-07-23T19:36:54.8611605Z github.com/ava-labs/coreth/plugin/evm/vm.go:779: initBlockBuilding 91.3% +2025-07-23T19:36:54.8611807Z github.com/ava-labs/coreth/plugin/evm/vm.go:886: WaitForEvent 77.8% +2025-07-23T19:36:54.8611994Z github.com/ava-labs/coreth/plugin/evm/vm.go:907: Shutdown 76.9% +2025-07-23T19:36:54.8612198Z github.com/ava-labs/coreth/plugin/evm/vm.go:929: buildBlock 100.0% +2025-07-23T19:36:54.8612429Z github.com/ava-labs/coreth/plugin/evm/vm.go:933: buildBlockWithContext 86.7% +2025-07-23T19:36:54.8612621Z github.com/ava-labs/coreth/plugin/evm/vm.go:978: parseBlock 77.8% +2025-07-23T19:36:54.8612836Z github.com/ava-labs/coreth/plugin/evm/vm.go:997: ParseEthBlock 75.0% +2025-07-23T19:36:54.8613026Z github.com/ava-labs/coreth/plugin/evm/vm.go:1008: getBlock 100.0% +2025-07-23T19:36:54.8613247Z github.com/ava-labs/coreth/plugin/evm/vm.go:1021: GetAcceptedBlock 90.0% +2025-07-23T19:36:54.8613457Z github.com/ava-labs/coreth/plugin/evm/vm.go:1041: SetPreference 75.0% +2025-07-23T19:36:54.8613677Z github.com/ava-labs/coreth/plugin/evm/vm.go:1057: GetBlockIDAtHeight 85.7% +2025-07-23T19:36:54.8613862Z github.com/ava-labs/coreth/plugin/evm/vm.go:1070: Version 0.0% +2025-07-23T19:36:54.8614066Z github.com/ava-labs/coreth/plugin/evm/vm.go:1075: CreateHandlers 0.0% +2025-07-23T19:36:54.8614269Z github.com/ava-labs/coreth/plugin/evm/vm.go:1122: NewHTTPHandler 0.0% +2025-07-23T19:36:54.8614492Z github.com/ava-labs/coreth/plugin/evm/vm.go:1126: chainConfigExtra 100.0% +2025-07-23T19:36:54.8614675Z github.com/ava-labs/coreth/plugin/evm/vm.go:1130: rules 100.0% +2025-07-23T19:36:54.8614980Z github.com/ava-labs/coreth/plugin/evm/vm.go:1136: currentRules 100.0% +2025-07-23T19:36:54.8615232Z github.com/ava-labs/coreth/plugin/evm/vm.go:1144: requirePrimaryNetworkSigners 0.0% +2025-07-23T19:36:54.8615470Z github.com/ava-labs/coreth/plugin/evm/vm.go:1153: startContinuousProfiler 91.7% +2025-07-23T19:36:54.8615686Z github.com/ava-labs/coreth/plugin/evm/vm.go:1183: ReadLastAccepted 70.0% +2025-07-23T19:36:54.8615895Z github.com/ava-labs/coreth/plugin/evm/vm.go:1207: attachEthService 0.0% +2025-07-23T19:36:54.8616111Z github.com/ava-labs/coreth/plugin/evm/vm.go:1242: stateSyncEnabled 100.0% +2025-07-23T19:36:54.8616466Z github.com/ava-labs/coreth/plugin/evm/vm.go:1252: PutLastAcceptedID 100.0% +2025-07-23T19:36:54.8616697Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:20: initializeDBs 100.0% +2025-07-23T19:36:54.8616933Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:35: inspectDatabases 0.0% +2025-07-23T19:36:54.8617147Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:54: inspectDB 0.0% +2025-07-23T19:36:54.8617398Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:28: SetExtensionConfig 66.7% +2025-07-23T19:36:54.8617642Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:41: GetExtendedBlock 75.0% +2025-07-23T19:36:54.8617919Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:53: LastAcceptedExtendedBlock 75.0% +2025-07-23T19:36:54.8618152Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:64: ChainConfig 100.0% +2025-07-23T19:36:54.8618377Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:68: Blockchain 100.0% +2025-07-23T19:36:54.8618597Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:72: Config 100.0% +2025-07-23T19:36:54.8618837Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:76: MetricRegistry 100.0% +2025-07-23T19:36:54.8619163Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:80: Validators 0.0% +2025-07-23T19:36:54.8619393Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:84: VersionDB 100.0% +2025-07-23T19:36:54.8619625Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:88: SyncerClient 0.0% +2025-07-23T19:36:54.8619845Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:58: wrapBlock 85.7% +2025-07-23T19:36:54.8620052Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:75: ID 100.0% +2025-07-23T19:36:54.8620267Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:78: Accept 76.5% +2025-07-23T19:36:54.8620543Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:125: handlePrecompileAccept 78.6% +2025-07-23T19:36:54.8620766Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:159: Reject 83.3% +2025-07-23T19:36:54.8620981Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:176: Parent 100.0% +2025-07-23T19:36:54.8621201Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:181: Height 100.0% +2025-07-23T19:36:54.8621432Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:186: Timestamp 100.0% +2025-07-23T19:36:54.8621648Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:191: Verify 100.0% +2025-07-23T19:36:54.8621930Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:199: ShouldVerifyWithContext 72.7% +2025-07-23T19:36:54.8622186Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:223: VerifyWithContext 100.0% +2025-07-23T19:36:54.8622399Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:233: verify 100.0% +2025-07-23T19:36:54.8622649Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:279: semanticVerify 100.0% +2025-07-23T19:36:54.8622897Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:295: syntacticVerify 71.0% +2025-07-23T19:36:54.8623145Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:434: verifyPredicates 85.0% +2025-07-23T19:36:54.8623362Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:468: Bytes 75.0% +2025-07-23T19:36:54.8623572Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:476: String 0.0% +2025-07-23T19:36:54.8623812Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:478: GetEthBlock 100.0% +2025-07-23T19:36:54.8624066Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:482: GetBlockExtension 100.0% +2025-07-23T19:36:54.8624272Z github.com/ava-labs/coreth/plugin/factory/factory.go:25: New 0.0% +2025-07-23T19:36:54.8624492Z github.com/ava-labs/coreth/plugin/factory/factory.go:29: NewPluginVM 0.0% +2025-07-23T19:36:54.8624665Z github.com/ava-labs/coreth/plugin/main.go:19: main 0.0% +2025-07-23T19:36:54.8625064Z github.com/ava-labs/coreth/plugin/params.go:13: corethFlagSet 0.0% +2025-07-23T19:36:54.8625254Z github.com/ava-labs/coreth/plugin/params.go:22: getViper 0.0% +2025-07-23T19:36:54.8625459Z github.com/ava-labs/coreth/plugin/params.go:35: PrintVersion 0.0% +2025-07-23T19:36:54.8625712Z github.com/ava-labs/coreth/precompile/contract/contract.go:32: IsActivated 0.0% +2025-07-23T19:36:54.8626030Z github.com/ava-labs/coreth/precompile/contract/contract.go:40: NewStatefulPrecompileFunction 0.0% +2025-07-23T19:36:54.8626394Z github.com/ava-labs/coreth/precompile/contract/contract.go:47: NewStatefulPrecompileFunctionWithActivator 0.0% +2025-07-23T19:36:54.8626703Z github.com/ava-labs/coreth/precompile/contract/contract.go:65: NewStatefulPrecompileContract 0.0% +2025-07-23T19:36:54.8626924Z github.com/ava-labs/coreth/precompile/contract/contract.go:84: Run 0.0% +2025-07-23T19:36:54.8627173Z github.com/ava-labs/coreth/precompile/contract/mocks.go:38: NewMockStateDB 0.0% +2025-07-23T19:36:54.8627395Z github.com/ava-labs/coreth/precompile/contract/mocks.go:45: EXPECT 0.0% +2025-07-23T19:36:54.8627633Z github.com/ava-labs/coreth/precompile/contract/mocks.go:50: AddBalance 0.0% +2025-07-23T19:36:54.8627859Z github.com/ava-labs/coreth/precompile/contract/mocks.go:56: AddBalance 0.0% +2025-07-23T19:36:54.8628235Z github.com/ava-labs/coreth/precompile/contract/mocks.go:62: AddBalanceMultiCoin 0.0% +2025-07-23T19:36:54.8628508Z github.com/ava-labs/coreth/precompile/contract/mocks.go:68: AddBalanceMultiCoin 0.0% +2025-07-23T19:36:54.8628723Z github.com/ava-labs/coreth/precompile/contract/mocks.go:74: AddLog 0.0% +2025-07-23T19:36:54.8628942Z github.com/ava-labs/coreth/precompile/contract/mocks.go:80: AddLog 0.0% +2025-07-23T19:36:54.8629181Z github.com/ava-labs/coreth/precompile/contract/mocks.go:86: CreateAccount 0.0% +2025-07-23T19:36:54.8629419Z github.com/ava-labs/coreth/precompile/contract/mocks.go:92: CreateAccount 0.0% +2025-07-23T19:36:54.8629641Z github.com/ava-labs/coreth/precompile/contract/mocks.go:98: Exist 0.0% +2025-07-23T19:36:54.8629855Z github.com/ava-labs/coreth/precompile/contract/mocks.go:106: Exist 0.0% +2025-07-23T19:36:54.8630087Z github.com/ava-labs/coreth/precompile/contract/mocks.go:112: GetBalance 0.0% +2025-07-23T19:36:54.8630327Z github.com/ava-labs/coreth/precompile/contract/mocks.go:120: GetBalance 0.0% +2025-07-23T19:36:54.8630593Z github.com/ava-labs/coreth/precompile/contract/mocks.go:126: GetBalanceMultiCoin 0.0% +2025-07-23T19:36:54.8630862Z github.com/ava-labs/coreth/precompile/contract/mocks.go:134: GetBalanceMultiCoin 0.0% +2025-07-23T19:36:54.8631087Z github.com/ava-labs/coreth/precompile/contract/mocks.go:140: GetNonce 0.0% +2025-07-23T19:36:54.8631309Z github.com/ava-labs/coreth/precompile/contract/mocks.go:148: GetNonce 0.0% +2025-07-23T19:36:54.8631598Z github.com/ava-labs/coreth/precompile/contract/mocks.go:154: GetPredicateStorageSlots 0.0% +2025-07-23T19:36:54.8631916Z github.com/ava-labs/coreth/precompile/contract/mocks.go:163: GetPredicateStorageSlots 0.0% +2025-07-23T19:36:54.8632146Z github.com/ava-labs/coreth/precompile/contract/mocks.go:169: GetState 0.0% +2025-07-23T19:36:54.8632372Z github.com/ava-labs/coreth/precompile/contract/mocks.go:177: GetState 0.0% +2025-07-23T19:36:54.8632596Z github.com/ava-labs/coreth/precompile/contract/mocks.go:183: GetTxHash 0.0% +2025-07-23T19:36:54.8632823Z github.com/ava-labs/coreth/precompile/contract/mocks.go:191: GetTxHash 0.0% +2025-07-23T19:36:54.8633035Z github.com/ava-labs/coreth/precompile/contract/mocks.go:197: Logs 0.0% +2025-07-23T19:36:54.8633255Z github.com/ava-labs/coreth/precompile/contract/mocks.go:205: Logs 0.0% +2025-07-23T19:36:54.8633511Z github.com/ava-labs/coreth/precompile/contract/mocks.go:211: RevertToSnapshot 0.0% +2025-07-23T19:36:54.8633764Z github.com/ava-labs/coreth/precompile/contract/mocks.go:217: RevertToSnapshot 0.0% +2025-07-23T19:36:54.8634126Z github.com/ava-labs/coreth/precompile/contract/mocks.go:223: SetNonce 0.0% +2025-07-23T19:36:54.8634347Z github.com/ava-labs/coreth/precompile/contract/mocks.go:229: SetNonce 0.0% +2025-07-23T19:36:54.8634569Z github.com/ava-labs/coreth/precompile/contract/mocks.go:235: SetState 0.0% +2025-07-23T19:36:54.8634886Z github.com/ava-labs/coreth/precompile/contract/mocks.go:241: SetState 0.0% +2025-07-23T19:36:54.8635109Z github.com/ava-labs/coreth/precompile/contract/mocks.go:247: Snapshot 0.0% +2025-07-23T19:36:54.8635336Z github.com/ava-labs/coreth/precompile/contract/mocks.go:255: Snapshot 0.0% +2025-07-23T19:36:54.8635601Z github.com/ava-labs/coreth/precompile/contract/mocks.go:261: SubBalanceMultiCoin 0.0% +2025-07-23T19:36:54.8635866Z github.com/ava-labs/coreth/precompile/contract/mocks.go:267: SubBalanceMultiCoin 0.0% +2025-07-23T19:36:54.8636151Z github.com/ava-labs/coreth/precompile/contract/mocks.go:285: NewMockAccessibleState 0.0% +2025-07-23T19:36:54.8636377Z github.com/ava-labs/coreth/precompile/contract/mocks.go:292: EXPECT 0.0% +2025-07-23T19:36:54.8636630Z github.com/ava-labs/coreth/precompile/contract/mocks.go:297: GetBlockContext 0.0% +2025-07-23T19:36:54.8636994Z github.com/ava-labs/coreth/precompile/contract/mocks.go:305: GetBlockContext 0.0% +2025-07-23T19:36:54.8637248Z github.com/ava-labs/coreth/precompile/contract/mocks.go:311: GetChainConfig 0.0% +2025-07-23T19:36:54.8637497Z github.com/ava-labs/coreth/precompile/contract/mocks.go:319: GetChainConfig 0.0% +2025-07-23T19:36:54.8637747Z github.com/ava-labs/coreth/precompile/contract/mocks.go:325: GetPrecompileEnv 0.0% +2025-07-23T19:36:54.8637997Z github.com/ava-labs/coreth/precompile/contract/mocks.go:333: GetPrecompileEnv 0.0% +2025-07-23T19:36:54.8638242Z github.com/ava-labs/coreth/precompile/contract/mocks.go:339: GetSnowContext 0.0% +2025-07-23T19:36:54.8638491Z github.com/ava-labs/coreth/precompile/contract/mocks.go:347: GetSnowContext 0.0% +2025-07-23T19:36:54.8638726Z github.com/ava-labs/coreth/precompile/contract/mocks.go:353: GetStateDB 0.0% +2025-07-23T19:36:54.8638956Z github.com/ava-labs/coreth/precompile/contract/mocks.go:361: GetStateDB 0.0% +2025-07-23T19:36:54.8639225Z github.com/ava-labs/coreth/precompile/contract/mocks.go:379: NewMockBlockContext 0.0% +2025-07-23T19:36:54.8639450Z github.com/ava-labs/coreth/precompile/contract/mocks.go:386: EXPECT 0.0% +2025-07-23T19:36:54.8639716Z github.com/ava-labs/coreth/precompile/contract/mocks.go:391: GetPredicateResults 0.0% +2025-07-23T19:36:54.8639982Z github.com/ava-labs/coreth/precompile/contract/mocks.go:399: GetPredicateResults 0.0% +2025-07-23T19:36:54.8640202Z github.com/ava-labs/coreth/precompile/contract/mocks.go:405: Number 0.0% +2025-07-23T19:36:54.8640419Z github.com/ava-labs/coreth/precompile/contract/mocks.go:413: Number 0.0% +2025-07-23T19:36:54.8640657Z github.com/ava-labs/coreth/precompile/contract/mocks.go:419: Timestamp 0.0% +2025-07-23T19:36:54.8640883Z github.com/ava-labs/coreth/precompile/contract/mocks.go:427: Timestamp 0.0% +2025-07-23T19:36:54.8641173Z github.com/ava-labs/coreth/precompile/contract/utils.go:35: CalculateFunctionSelector 0.0% +2025-07-23T19:36:54.8641399Z github.com/ava-labs/coreth/precompile/contract/utils.go:44: DeductGas 0.0% +2025-07-23T19:36:54.8641618Z github.com/ava-labs/coreth/precompile/contract/utils.go:53: ParseABI 0.0% +2025-07-23T19:36:54.8641883Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:57: NewConfig 100.0% +2025-07-23T19:36:54.8642164Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:67: NewDefaultConfig 100.0% +2025-07-23T19:36:54.8642443Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:73: NewDisableConfig 0.0% +2025-07-23T19:36:54.8642677Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:84: Key 0.0% +2025-07-23T19:36:54.8643074Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:87: Verify 100.0% +2025-07-23T19:36:54.8643325Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:107: Equal 100.0% +2025-07-23T19:36:54.8643569Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:117: Accept 0.0% +2025-07-23T19:36:54.8643843Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:145: PredicateGas 84.6% +2025-07-23T19:36:54.8644128Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:186: VerifyPredicate 80.0% +2025-07-23T19:36:54.8644440Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:85: PackGetBlockchainID 100.0% +2025-07-23T19:36:54.8644873Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:91: PackGetBlockchainIDOutput 100.0% +2025-07-23T19:36:54.8645164Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:96: getBlockchainID 83.3% +2025-07-23T19:36:54.8645530Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:111: UnpackGetVerifiedWarpBlockHashInput 0.0% +2025-07-23T19:36:54.8645876Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:125: PackGetVerifiedWarpBlockHash 100.0% +2025-07-23T19:36:54.8646376Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:131: PackGetVerifiedWarpBlockHashOutput 100.0% +2025-07-23T19:36:54.8646753Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:140: UnpackGetVerifiedWarpBlockHashOutput 0.0% +2025-07-23T19:36:54.8647081Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:147: getVerifiedWarpBlockHash 100.0% +2025-07-23T19:36:54.8647444Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:153: UnpackGetVerifiedWarpMessageInput 100.0% +2025-07-23T19:36:54.8647788Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:167: PackGetVerifiedWarpMessage 100.0% +2025-07-23T19:36:54.8648135Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:173: PackGetVerifiedWarpMessageOutput 100.0% +2025-07-23T19:36:54.8648498Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:182: UnpackGetVerifiedWarpMessageOutput 0.0% +2025-07-23T19:36:54.8648819Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:191: getVerifiedWarpMessage 100.0% +2025-07-23T19:36:54.8649157Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:197: UnpackSendWarpMessageInput 100.0% +2025-07-23T19:36:54.8649475Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:209: PackSendWarpMessage 100.0% +2025-07-23T19:36:54.8649807Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:215: PackSendWarpMessageOutput 100.0% +2025-07-23T19:36:54.8650139Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:221: UnpackSendWarpMessageOutput 0.0% +2025-07-23T19:36:54.8650434Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:232: sendWarpMessage 81.5% +2025-07-23T19:36:54.8650762Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:301: PackSendWarpMessageEvent 100.0% +2025-07-23T19:36:54.8651118Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:306: UnpackSendWarpEventDataToMessage 80.0% +2025-07-23T19:36:54.8651429Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:316: createWarpPrecompile 81.8% +2025-07-23T19:36:54.8651725Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:29: init 75.0% +2025-07-23T19:36:54.8652057Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:48: handleWarpMessage 96.7% +2025-07-23T19:36:54.8652372Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:98: packFailed 100.0% +2025-07-23T19:36:54.8652703Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:102: handleMessage 100.0% +2025-07-23T19:36:54.8653020Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:119: packFailed 100.0% +2025-07-23T19:36:54.8653485Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:123: handleMessage 100.0% +2025-07-23T19:36:54.8653734Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:35: init 50.0% +2025-07-23T19:36:54.8653996Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:45: MakeConfig 0.0% +2025-07-23T19:36:54.8654251Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:50: Configure 0.0% +2025-07-23T19:36:54.8654467Z github.com/ava-labs/coreth/precompile/modules/module.go:27: Len 100.0% +2025-07-23T19:36:54.8654690Z github.com/ava-labs/coreth/precompile/modules/module.go:31: Swap 100.0% +2025-07-23T19:36:54.8655007Z github.com/ava-labs/coreth/precompile/modules/module.go:35: Less 100.0% +2025-07-23T19:36:54.8655283Z github.com/ava-labs/coreth/precompile/modules/registerer.go:37: ReservedAddress 75.0% +2025-07-23T19:36:54.8655559Z github.com/ava-labs/coreth/precompile/modules/registerer.go:48: RegisterModule 46.2% +2025-07-23T19:36:54.8655874Z github.com/ava-labs/coreth/precompile/modules/registerer.go:72: GetPrecompileModuleByAddress 0.0% +2025-07-23T19:36:54.8656160Z github.com/ava-labs/coreth/precompile/modules/registerer.go:81: GetPrecompileModule 0.0% +2025-07-23T19:36:54.8656548Z github.com/ava-labs/coreth/precompile/modules/registerer.go:90: RegisteredModules 0.0% +2025-07-23T19:36:54.8656860Z github.com/ava-labs/coreth/precompile/modules/registerer.go:94: insertSortedByAddress 100.0% +2025-07-23T19:36:54.8657159Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:32: NewMockPredicater 0.0% +2025-07-23T19:36:54.8657410Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:39: EXPECT 0.0% +2025-07-23T19:36:54.8657684Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:44: PredicateGas 0.0% +2025-07-23T19:36:54.8657957Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:53: PredicateGas 0.0% +2025-07-23T19:36:54.8658241Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:59: VerifyPredicate 0.0% +2025-07-23T19:36:54.8658529Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:67: VerifyPredicate 0.0% +2025-07-23T19:36:54.8658804Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:85: NewMockConfig 0.0% +2025-07-23T19:36:54.8659051Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:92: EXPECT 0.0% +2025-07-23T19:36:54.8659299Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:97: Equal 0.0% +2025-07-23T19:36:54.8659543Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:105: Equal 0.0% +2025-07-23T19:36:54.8659811Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:111: IsDisabled 0.0% +2025-07-23T19:36:54.8660076Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:119: IsDisabled 0.0% +2025-07-23T19:36:54.8660320Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:125: Key 0.0% +2025-07-23T19:36:54.8660562Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:133: Key 0.0% +2025-07-23T19:36:54.8660821Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:139: Timestamp 0.0% +2025-07-23T19:36:54.8661085Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:147: Timestamp 0.0% +2025-07-23T19:36:54.8661342Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:153: Verify 0.0% +2025-07-23T19:36:54.8661589Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:161: Verify 0.0% +2025-07-23T19:36:54.8661888Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:179: NewMockChainConfig 0.0% +2025-07-23T19:36:54.8662133Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:186: EXPECT 0.0% +2025-07-23T19:36:54.8662390Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:191: IsDurango 0.0% +2025-07-23T19:36:54.8662772Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:199: IsDurango 0.0% +2025-07-23T19:36:54.8663058Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:217: NewMockAccepter 0.0% +2025-07-23T19:36:54.8663309Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:224: EXPECT 0.0% +2025-07-23T19:36:54.8663562Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:229: Accept 0.0% +2025-07-23T19:36:54.8663817Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:237: Accept 0.0% +2025-07-23T19:36:54.8664102Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:17: Timestamp 0.0% +2025-07-23T19:36:54.8664383Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:22: IsDisabled 0.0% +2025-07-23T19:36:54.8664653Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:28: Equal 0.0% +2025-07-23T19:36:54.8665062Z github.com/ava-labs/coreth/precompile/precompiletest/test_config.go:28: RunVerifyTests 100.0% +2025-07-23T19:36:54.8665361Z github.com/ava-labs/coreth/precompile/precompiletest/test_config.go:51: RunEqualTests 100.0% +2025-07-23T19:36:54.8665634Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:66: Run 100.0% +2025-07-23T19:36:54.8666018Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:88: setup 96.0% +2025-07-23T19:36:54.8666365Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:135: RunPrecompileTests 100.0% +2025-07-23T19:36:54.8666682Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:153: newTestStateDB 100.0% +2025-07-23T19:36:54.8667037Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:163: GetPredicateStorageSlots 100.0% +2025-07-23T19:36:54.8667311Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:26: Run 100.0% +2025-07-23T19:36:54.8667631Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:43: RunPredicateTests 100.0% +2025-07-23T19:36:54.8667922Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:53: RunBenchmark 0.0% +2025-07-23T19:36:54.8668258Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:73: RunPredicateBenchmarks 0.0% +2025-07-23T19:36:54.8668508Z github.com/ava-labs/coreth/predicate/predicate_bytes.go:28: PackPredicate 100.0% +2025-07-23T19:36:54.8668762Z github.com/ava-labs/coreth/predicate/predicate_bytes.go:36: UnpackPredicate 87.5% +2025-07-23T19:36:54.8668981Z github.com/ava-labs/coreth/predicate/predicate_results.go:24: init 83.3% +2025-07-23T19:36:54.8669245Z github.com/ava-labs/coreth/predicate/predicate_results.go:47: GetPredicateResults 0.0% +2025-07-23T19:36:54.8669488Z github.com/ava-labs/coreth/predicate/predicate_results.go:56: NewResults 100.0% +2025-07-23T19:36:54.8669751Z github.com/ava-labs/coreth/predicate/predicate_results.go:62: NewResultsFromMap 100.0% +2025-07-23T19:36:54.8670002Z github.com/ava-labs/coreth/predicate/predicate_results.go:69: ParseResults 71.4% +2025-07-23T19:36:54.8670239Z github.com/ava-labs/coreth/predicate/predicate_results.go:82: GetResults 100.0% +2025-07-23T19:36:54.8670488Z github.com/ava-labs/coreth/predicate/predicate_results.go:91: SetTxResults 100.0% +2025-07-23T19:36:54.8670752Z github.com/ava-labs/coreth/predicate/predicate_results.go:101: DeleteTxResults 100.0% +2025-07-23T19:36:54.8670981Z github.com/ava-labs/coreth/predicate/predicate_results.go:106: Bytes 100.0% +2025-07-23T19:36:54.8671211Z github.com/ava-labs/coreth/predicate/predicate_results.go:110: String 0.0% +2025-07-23T19:36:54.8671505Z github.com/ava-labs/coreth/predicate/predicate_slots.go:20: PreparePredicateStorageSlots 0.0% +2025-07-23T19:36:54.8671736Z github.com/ava-labs/coreth/predicate/predicate_tx.go:16: NewPredicateTx 0.0% +2025-07-23T19:36:54.8672072Z github.com/ava-labs/coreth/rpc/client.go:128: newClientConn 100.0% +2025-07-23T19:36:54.8672251Z github.com/ava-labs/coreth/rpc/client.go:141: close 100.0% +2025-07-23T19:36:54.8672424Z github.com/ava-labs/coreth/rpc/client.go:161: wait 100.0% +2025-07-23T19:36:54.8672595Z github.com/ava-labs/coreth/rpc/client.go:189: Dial 100.0% +2025-07-23T19:36:54.8672794Z github.com/ava-labs/coreth/rpc/client.go:197: DialContext 100.0% +2025-07-23T19:36:54.8672995Z github.com/ava-labs/coreth/rpc/client.go:208: DialOptions 80.0% +2025-07-23T19:36:54.8673213Z github.com/ava-labs/coreth/rpc/client.go:242: ClientFromContext 100.0% +2025-07-23T19:36:54.8673401Z github.com/ava-labs/coreth/rpc/client.go:247: newClient 100.0% +2025-07-23T19:36:54.8673593Z github.com/ava-labs/coreth/rpc/client.go:257: initClient 100.0% +2025-07-23T19:36:54.8673779Z github.com/ava-labs/coreth/rpc/client.go:293: RegisterName 0.0% +2025-07-23T19:36:54.8673961Z github.com/ava-labs/coreth/rpc/client.go:297: nextID 100.0% +2025-07-23T19:36:54.8674174Z github.com/ava-labs/coreth/rpc/client.go:304: SupportedModules 100.0% +2025-07-23T19:36:54.8674347Z github.com/ava-labs/coreth/rpc/client.go:313: Close 100.0% +2025-07-23T19:36:54.8674534Z github.com/ava-labs/coreth/rpc/client.go:327: SetHeader 83.3% +2025-07-23T19:36:54.8674881Z github.com/ava-labs/coreth/rpc/client.go:342: Call 100.0% +2025-07-23T19:36:54.8675077Z github.com/ava-labs/coreth/rpc/client.go:352: CallContext 95.2% +2025-07-23T19:36:54.8675267Z github.com/ava-labs/coreth/rpc/client.go:400: BatchCall 100.0% +2025-07-23T19:36:54.8675470Z github.com/ava-labs/coreth/rpc/client.go:414: BatchCallContext 85.7% +2025-07-23T19:36:54.8675648Z github.com/ava-labs/coreth/rpc/client.go:485: Notify 75.0% +2025-07-23T19:36:54.8675843Z github.com/ava-labs/coreth/rpc/client.go:500: EthSubscribe 100.0% +2025-07-23T19:36:54.8676040Z github.com/ava-labs/coreth/rpc/client.go:506: ShhSubscribe 0.0% +2025-07-23T19:36:54.8676257Z github.com/ava-labs/coreth/rpc/client.go:522: Subscribe 81.2% +2025-07-23T19:36:54.8676478Z github.com/ava-labs/coreth/rpc/client.go:559: SupportsSubscriptions 0.0% +2025-07-23T19:36:54.8676660Z github.com/ava-labs/coreth/rpc/client.go:563: newMessage 83.3% +2025-07-23T19:36:54.8676836Z github.com/ava-labs/coreth/rpc/client.go:576: send 100.0% +2025-07-23T19:36:54.8677005Z github.com/ava-labs/coreth/rpc/client.go:591: write 100.0% +2025-07-23T19:36:54.8677186Z github.com/ava-labs/coreth/rpc/client.go:608: reconnect 93.3% +2025-07-23T19:36:54.8677361Z github.com/ava-labs/coreth/rpc/client.go:636: dispatch 94.1% +2025-07-23T19:36:54.8677545Z github.com/ava-labs/coreth/rpc/client.go:717: drainRead 100.0% +2025-07-23T19:36:54.8677717Z github.com/ava-labs/coreth/rpc/client.go:728: read 100.0% +2025-07-23T19:36:54.8677919Z github.com/ava-labs/coreth/rpc/client_opt.go:57: initHeaders 100.0% +2025-07-23T19:36:54.8678120Z github.com/ava-labs/coreth/rpc/client_opt.go:63: setHeader 100.0% +2025-07-23T19:36:54.8678320Z github.com/ava-labs/coreth/rpc/client_opt.go:70: applyOption 100.0% +2025-07-23T19:36:54.8678539Z github.com/ava-labs/coreth/rpc/client_opt.go:75: WithWebsocketDialer 0.0% +2025-07-23T19:36:54.8678805Z github.com/ava-labs/coreth/rpc/client_opt.go:83: WithWebsocketMessageSizeLimit 100.0% +2025-07-23T19:36:54.8679000Z github.com/ava-labs/coreth/rpc/client_opt.go:91: WithHeader 0.0% +2025-07-23T19:36:54.8679194Z github.com/ava-labs/coreth/rpc/client_opt.go:100: WithHeaders 0.0% +2025-07-23T19:36:54.8679405Z github.com/ava-labs/coreth/rpc/client_opt.go:110: WithHTTPClient 0.0% +2025-07-23T19:36:54.8679603Z github.com/ava-labs/coreth/rpc/client_opt.go:119: WithHTTPAuth 0.0% +2025-07-23T19:36:54.8679824Z github.com/ava-labs/coreth/rpc/client_opt.go:139: WithBatchItemLimit 0.0% +2025-07-23T19:36:54.8680225Z github.com/ava-labs/coreth/rpc/client_opt.go:151: WithBatchResponseSizeLimit 0.0% +2025-07-23T19:36:54.8680480Z github.com/ava-labs/coreth/rpc/context_headers.go:39: NewContextWithHeaders 87.5% +2025-07-23T19:36:54.8680731Z github.com/ava-labs/coreth/rpc/context_headers.go:56: headersFromContext 100.0% +2025-07-23T19:36:54.8680951Z github.com/ava-labs/coreth/rpc/context_headers.go:62: setHeaders 100.0% +2025-07-23T19:36:54.8681127Z github.com/ava-labs/coreth/rpc/errors.go:40: Error 66.7% +2025-07-23T19:36:54.8681309Z github.com/ava-labs/coreth/rpc/errors.go:89: ErrorCode 100.0% +2025-07-23T19:36:54.8681478Z github.com/ava-labs/coreth/rpc/errors.go:91: Error 100.0% +2025-07-23T19:36:54.8681650Z github.com/ava-labs/coreth/rpc/errors.go:97: Error 0.0% +2025-07-23T19:36:54.8681828Z github.com/ava-labs/coreth/rpc/errors.go:101: ErrorCode 0.0% +2025-07-23T19:36:54.8681989Z github.com/ava-labs/coreth/rpc/errors.go:111: Is 0.0% +2025-07-23T19:36:54.8682188Z github.com/ava-labs/coreth/rpc/errors.go:125: ErrorCode 100.0% +2025-07-23T19:36:54.8682362Z github.com/ava-labs/coreth/rpc/errors.go:127: Error 100.0% +2025-07-23T19:36:54.8682549Z github.com/ava-labs/coreth/rpc/errors.go:134: ErrorCode 100.0% +2025-07-23T19:36:54.8682719Z github.com/ava-labs/coreth/rpc/errors.go:136: Error 100.0% +2025-07-23T19:36:54.8683031Z github.com/ava-labs/coreth/rpc/errors.go:141: ErrorCode 100.0% +2025-07-23T19:36:54.8683212Z github.com/ava-labs/coreth/rpc/errors.go:143: Error 100.0% +2025-07-23T19:36:54.8683390Z github.com/ava-labs/coreth/rpc/errors.go:148: ErrorCode 0.0% +2025-07-23T19:36:54.8683556Z github.com/ava-labs/coreth/rpc/errors.go:150: Error 0.0% +2025-07-23T19:36:54.8683745Z github.com/ava-labs/coreth/rpc/errors.go:155: ErrorCode 100.0% +2025-07-23T19:36:54.8683914Z github.com/ava-labs/coreth/rpc/errors.go:157: Error 100.0% +2025-07-23T19:36:54.8684096Z github.com/ava-labs/coreth/rpc/errors.go:165: ErrorCode 100.0% +2025-07-23T19:36:54.8684269Z github.com/ava-labs/coreth/rpc/errors.go:167: Error 100.0% +2025-07-23T19:36:54.8684460Z github.com/ava-labs/coreth/rpc/handler.go:96: newHandler 100.0% +2025-07-23T19:36:54.8684644Z github.com/ava-labs/coreth/rpc/handler.go:130: nextCall 100.0% +2025-07-23T19:36:54.8684949Z github.com/ava-labs/coreth/rpc/handler.go:144: pushResponse 100.0% +2025-07-23T19:36:54.8685126Z github.com/ava-labs/coreth/rpc/handler.go:155: write 100.0% +2025-07-23T19:36:54.8685346Z github.com/ava-labs/coreth/rpc/handler.go:164: respondWithError 100.0% +2025-07-23T19:36:54.8685525Z github.com/ava-labs/coreth/rpc/handler.go:178: doWrite 100.0% +2025-07-23T19:36:54.8685718Z github.com/ava-labs/coreth/rpc/handler.go:193: addLimiter 66.7% +2025-07-23T19:36:54.8685908Z github.com/ava-labs/coreth/rpc/handler.go:201: handleBatch 84.1% +2025-07-23T19:36:54.8686145Z github.com/ava-labs/coreth/rpc/handler.go:283: respondWithBatchTooLarge 100.0% +2025-07-23T19:36:54.8686338Z github.com/ava-labs/coreth/rpc/handler.go:298: handleMsg 100.0% +2025-07-23T19:36:54.8686553Z github.com/ava-labs/coreth/rpc/handler.go:307: handleNonBatchCall 66.7% +2025-07-23T19:36:54.8686731Z github.com/ava-labs/coreth/rpc/handler.go:346: close 100.0% +2025-07-23T19:36:54.8686930Z github.com/ava-labs/coreth/rpc/handler.go:354: addRequestOp 100.0% +2025-07-23T19:36:54.8687141Z github.com/ava-labs/coreth/rpc/handler.go:361: removeRequestOp 100.0% +2025-07-23T19:36:54.8687360Z github.com/ava-labs/coreth/rpc/handler.go:368: cancelAllRequests 100.0% +2025-07-23T19:36:54.8687571Z github.com/ava-labs/coreth/rpc/handler.go:390: addSubscriptions 100.0% +2025-07-23T19:36:54.8687809Z github.com/ava-labs/coreth/rpc/handler.go:402: cancelServerSubscriptions 100.0% +2025-07-23T19:36:54.8688003Z github.com/ava-labs/coreth/rpc/handler.go:415: awaitLimit 22.2% +2025-07-23T19:36:54.8688327Z github.com/ava-labs/coreth/rpc/handler.go:435: consumeLimit 28.6% +2025-07-23T19:36:54.8688529Z github.com/ava-labs/coreth/rpc/handler.go:450: startCallProc 87.5% +2025-07-23T19:36:54.8688738Z github.com/ava-labs/coreth/rpc/handler.go:484: handleResponses 93.3% +2025-07-23T19:36:54.8688978Z github.com/ava-labs/coreth/rpc/handler.go:541: handleSubscriptionResult 66.7% +2025-07-23T19:36:54.8689194Z github.com/ava-labs/coreth/rpc/handler.go:553: handleCallMsg 100.0% +2025-07-23T19:36:54.8689379Z github.com/ava-labs/coreth/rpc/handler.go:595: handleCall 95.5% +2025-07-23T19:36:54.8689590Z github.com/ava-labs/coreth/rpc/handler.go:635: handleSubscribe 83.3% +2025-07-23T19:36:54.8689779Z github.com/ava-labs/coreth/rpc/handler.go:668: runMethod 100.0% +2025-07-23T19:36:54.8689970Z github.com/ava-labs/coreth/rpc/handler.go:677: unsubscribe 87.5% +2025-07-23T19:36:54.8690148Z github.com/ava-labs/coreth/rpc/handler.go:692: String 0.0% +2025-07-23T19:36:54.8690324Z github.com/ava-labs/coreth/rpc/handler.go:706: Write 66.7% +2025-07-23T19:36:54.8690526Z github.com/ava-labs/coreth/rpc/handler.go:716: formatErrorData 66.7% +2025-07-23T19:36:54.8690703Z github.com/ava-labs/coreth/rpc/http.go:68: writeJSON 0.0% +2025-07-23T19:36:54.8691021Z github.com/ava-labs/coreth/rpc/http.go:72: writeJSONSkipDeadline 0.0% +2025-07-23T19:36:54.8691200Z github.com/ava-labs/coreth/rpc/http.go:76: peerInfo 0.0% +2025-07-23T19:36:54.8691373Z github.com/ava-labs/coreth/rpc/http.go:80: remoteAddr 0.0% +2025-07-23T19:36:54.8691539Z github.com/ava-labs/coreth/rpc/http.go:84: readBatch 0.0% +2025-07-23T19:36:54.8691704Z github.com/ava-labs/coreth/rpc/http.go:89: close 0.0% +2025-07-23T19:36:54.8691870Z github.com/ava-labs/coreth/rpc/http.go:93: closed 0.0% +2025-07-23T19:36:54.8692047Z github.com/ava-labs/coreth/rpc/http.go:139: DialHTTP 100.0% +2025-07-23T19:36:54.8692261Z github.com/ava-labs/coreth/rpc/http.go:147: DialHTTPWithClient 85.7% +2025-07-23T19:36:54.8692480Z github.com/ava-labs/coreth/rpc/http.go:160: newClientTransportHTTP 90.9% +2025-07-23T19:36:54.8692656Z github.com/ava-labs/coreth/rpc/http.go:186: sendHTTP 90.9% +2025-07-23T19:36:54.8692849Z github.com/ava-labs/coreth/rpc/http.go:203: sendBatchHTTP 80.0% +2025-07-23T19:36:54.8693018Z github.com/ava-labs/coreth/rpc/http.go:219: doRequest 81.5% +2025-07-23T19:36:54.8693223Z github.com/ava-labs/coreth/rpc/http.go:271: newHTTPServerConn 47.1% +2025-07-23T19:36:54.8693389Z github.com/ava-labs/coreth/rpc/http.go:313: Close 100.0% +2025-07-23T19:36:54.8693574Z github.com/ava-labs/coreth/rpc/http.go:316: RemoteAddr 100.0% +2025-07-23T19:36:54.8693773Z github.com/ava-labs/coreth/rpc/http.go:321: SetWriteDeadline 100.0% +2025-07-23T19:36:54.8693947Z github.com/ava-labs/coreth/rpc/http.go:324: ServeHTTP 100.0% +2025-07-23T19:36:54.8694151Z github.com/ava-labs/coreth/rpc/http.go:355: validateRequest 92.3% +2025-07-23T19:36:54.8694365Z github.com/ava-labs/coreth/rpc/http.go:381: ContextRequestTimeout 50.0% +2025-07-23T19:36:54.8694553Z github.com/ava-labs/coreth/rpc/inproc.go:36: DialInProc 100.0% +2025-07-23T19:36:54.8694747Z github.com/ava-labs/coreth/rpc/json.go:82: isNotification 100.0% +2025-07-23T19:36:54.8695015Z github.com/ava-labs/coreth/rpc/json.go:86: isCall 100.0% +2025-07-23T19:36:54.8695197Z github.com/ava-labs/coreth/rpc/json.go:90: isResponse 100.0% +2025-07-23T19:36:54.8695369Z github.com/ava-labs/coreth/rpc/json.go:94: hasValidID 100.0% +2025-07-23T19:36:54.8695563Z github.com/ava-labs/coreth/rpc/json.go:98: hasValidVersion 100.0% +2025-07-23T19:36:54.8695749Z github.com/ava-labs/coreth/rpc/json.go:102: isSubscribe 100.0% +2025-07-23T19:36:54.8695941Z github.com/ava-labs/coreth/rpc/json.go:106: isUnsubscribe 100.0% +2025-07-23T19:36:54.8696244Z github.com/ava-labs/coreth/rpc/json.go:110: namespace 100.0% +2025-07-23T19:36:54.8696417Z github.com/ava-labs/coreth/rpc/json.go:115: String 0.0% +2025-07-23T19:36:54.8696607Z github.com/ava-labs/coreth/rpc/json.go:120: errorResponse 100.0% +2025-07-23T19:36:54.8696787Z github.com/ava-labs/coreth/rpc/json.go:126: response 100.0% +2025-07-23T19:36:54.8696978Z github.com/ava-labs/coreth/rpc/json.go:134: errorMessage 100.0% +2025-07-23T19:36:54.8697142Z github.com/ava-labs/coreth/rpc/json.go:156: Error 66.7% +2025-07-23T19:36:54.8697320Z github.com/ava-labs/coreth/rpc/json.go:163: ErrorCode 100.0% +2025-07-23T19:36:54.8697491Z github.com/ava-labs/coreth/rpc/json.go:167: ErrorData 100.0% +2025-07-23T19:36:54.8697681Z github.com/ava-labs/coreth/rpc/json.go:208: NewFuncCodec 100.0% +2025-07-23T19:36:54.8697853Z github.com/ava-labs/coreth/rpc/json.go:223: NewCodec 100.0% +2025-07-23T19:36:54.8698025Z github.com/ava-labs/coreth/rpc/json.go:234: peerInfo 100.0% +2025-07-23T19:36:54.8698216Z github.com/ava-labs/coreth/rpc/json.go:239: remoteAddr 100.0% +2025-07-23T19:36:54.8698388Z github.com/ava-labs/coreth/rpc/json.go:243: readBatch 100.0% +2025-07-23T19:36:54.8698558Z github.com/ava-labs/coreth/rpc/json.go:261: writeJSON 100.0% +2025-07-23T19:36:54.8698886Z github.com/ava-labs/coreth/rpc/json.go:265: writeJSONSkipDeadline 100.0% +2025-07-23T19:36:54.8699059Z github.com/ava-labs/coreth/rpc/json.go:280: close 100.0% +2025-07-23T19:36:54.8699234Z github.com/ava-labs/coreth/rpc/json.go:288: closed 100.0% +2025-07-23T19:36:54.8699423Z github.com/ava-labs/coreth/rpc/json.go:296: parseMessage 100.0% +2025-07-23T19:36:54.8699589Z github.com/ava-labs/coreth/rpc/json.go:313: isBatch 60.0% +2025-07-23T19:36:54.8699829Z github.com/ava-labs/coreth/rpc/json.go:327: parsePositionalArguments 84.6% +2025-07-23T19:36:54.8700037Z github.com/ava-labs/coreth/rpc/json.go:355: parseArgumentArray 75.0% +2025-07-23T19:36:54.8700258Z github.com/ava-labs/coreth/rpc/json.go:376: parseSubscriptionName 75.0% +2025-07-23T19:36:54.8700495Z github.com/ava-labs/coreth/rpc/metrics.go:58: updateServeTimeHistogram 0.0% +2025-07-23T19:36:54.8700675Z github.com/ava-labs/coreth/rpc/server.go:74: NewServer 100.0% +2025-07-23T19:36:54.8700886Z github.com/ava-labs/coreth/rpc/server.go:95: SetBatchLimits 100.0% +2025-07-23T19:36:54.8701088Z github.com/ava-labs/coreth/rpc/server.go:103: SetHTTPBodyLimit 0.0% +2025-07-23T19:36:54.8701281Z github.com/ava-labs/coreth/rpc/server.go:111: RegisterName 100.0% +2025-07-23T19:36:54.8701470Z github.com/ava-labs/coreth/rpc/server.go:120: ServeCodec 87.5% +2025-07-23T19:36:54.8701652Z github.com/ava-labs/coreth/rpc/server.go:138: trackCodec 83.3% +2025-07-23T19:36:54.8701851Z github.com/ava-labs/coreth/rpc/server.go:149: untrackCodec 100.0% +2025-07-23T19:36:54.8702061Z github.com/ava-labs/coreth/rpc/server.go:159: serveSingleRequest 60.0% +2025-07-23T19:36:54.8702237Z github.com/ava-labs/coreth/rpc/server.go:188: Stop 100.0% +2025-07-23T19:36:54.8702419Z github.com/ava-labs/coreth/rpc/server.go:207: Modules 100.0% +2025-07-23T19:36:54.8702636Z github.com/ava-labs/coreth/rpc/server.go:248: PeerInfoFromContext 100.0% +2025-07-23T19:36:54.8702834Z github.com/ava-labs/coreth/rpc/service.go:71: registerName 89.5% +2025-07-23T19:36:54.8703018Z github.com/ava-labs/coreth/rpc/service.go:106: callback 83.3% +2025-07-23T19:36:54.8703217Z github.com/ava-labs/coreth/rpc/service.go:117: subscription 100.0% +2025-07-23T19:36:54.8703431Z github.com/ava-labs/coreth/rpc/service.go:126: suitableCallbacks 91.7% +2025-07-23T19:36:54.8703625Z github.com/ava-labs/coreth/rpc/service.go:146: newCallback 100.0% +2025-07-23T19:36:54.8703821Z github.com/ava-labs/coreth/rpc/service.go:175: makeArgTypes 100.0% +2025-07-23T19:36:54.8703998Z github.com/ava-labs/coreth/rpc/service.go:194: call 100.0% +2025-07-23T19:36:54.8704289Z github.com/ava-labs/coreth/rpc/service.go:229: isErrorType 100.0% +2025-07-23T19:36:54.8704506Z github.com/ava-labs/coreth/rpc/service.go:234: isSubscriptionType 100.0% +2025-07-23T19:36:54.8704695Z github.com/ava-labs/coreth/rpc/service.go:243: isPubSub 100.0% +2025-07-23T19:36:54.8704990Z github.com/ava-labs/coreth/rpc/service.go:254: formatName 100.0% +2025-07-23T19:36:54.8705189Z github.com/ava-labs/coreth/rpc/subscription.go:67: NewID 100.0% +2025-07-23T19:36:54.8705416Z github.com/ava-labs/coreth/rpc/subscription.go:72: randomIDGenerator 91.7% +2025-07-23T19:36:54.8705608Z github.com/ava-labs/coreth/rpc/subscription.go:94: encodeID 80.0% +2025-07-23T19:36:54.8705855Z github.com/ava-labs/coreth/rpc/subscription.go:106: NotifierFromContext 100.0% +2025-07-23T19:36:54.8706089Z github.com/ava-labs/coreth/rpc/subscription.go:128: CreateSubscription 75.0% +2025-07-23T19:36:54.8706290Z github.com/ava-labs/coreth/rpc/subscription.go:143: Notify 80.0% +2025-07-23T19:36:54.8706485Z github.com/ava-labs/coreth/rpc/subscription.go:161: Closed 100.0% +2025-07-23T19:36:54.8706713Z github.com/ava-labs/coreth/rpc/subscription.go:167: takeSubscription 100.0% +2025-07-23T19:36:54.8707032Z github.com/ava-labs/coreth/rpc/subscription.go:177: activate 100.0% +2025-07-23T19:36:54.8707232Z github.com/ava-labs/coreth/rpc/subscription.go:190: send 100.0% +2025-07-23T19:36:54.8707418Z github.com/ava-labs/coreth/rpc/subscription.go:211: Err 100.0% +2025-07-23T19:36:54.8707637Z github.com/ava-labs/coreth/rpc/subscription.go:216: MarshalJSON 100.0% +2025-07-23T19:36:54.8707888Z github.com/ava-labs/coreth/rpc/subscription.go:248: newClientSubscription 100.0% +2025-07-23T19:36:54.8708079Z github.com/ava-labs/coreth/rpc/subscription.go:271: Err 100.0% +2025-07-23T19:36:54.8708289Z github.com/ava-labs/coreth/rpc/subscription.go:277: Unsubscribe 100.0% +2025-07-23T19:36:54.8708493Z github.com/ava-labs/coreth/rpc/subscription.go:289: deliver 100.0% +2025-07-23T19:36:54.8708686Z github.com/ava-labs/coreth/rpc/subscription.go:299: close 100.0% +2025-07-23T19:36:54.8708869Z github.com/ava-labs/coreth/rpc/subscription.go:308: run 100.0% +2025-07-23T19:36:54.8709074Z github.com/ava-labs/coreth/rpc/subscription.go:335: forward 95.7% +2025-07-23T19:36:54.8709278Z github.com/ava-labs/coreth/rpc/subscription.go:383: unmarshal 100.0% +2025-07-23T19:36:54.8709516Z github.com/ava-labs/coreth/rpc/subscription.go:389: requestUnsubscribe 100.0% +2025-07-23T19:36:54.8709711Z github.com/ava-labs/coreth/rpc/types.go:90: UnmarshalJSON 81.0% +2025-07-23T19:36:54.8709878Z github.com/ava-labs/coreth/rpc/types.go:127: Int64 0.0% +2025-07-23T19:36:54.8710066Z github.com/ava-labs/coreth/rpc/types.go:134: MarshalText 100.0% +2025-07-23T19:36:54.8710241Z github.com/ava-labs/coreth/rpc/types.go:138: String 66.7% +2025-07-23T19:36:54.8710426Z github.com/ava-labs/coreth/rpc/types.go:159: IsAccepted 0.0% +2025-07-23T19:36:54.8710605Z github.com/ava-labs/coreth/rpc/types.go:163: IsLatest 0.0% +2025-07-23T19:36:54.8710799Z github.com/ava-labs/coreth/rpc/types.go:173: UnmarshalJSON 84.4% +2025-07-23T19:36:54.8710977Z github.com/ava-labs/coreth/rpc/types.go:237: Number 100.0% +2025-07-23T19:36:54.8711148Z github.com/ava-labs/coreth/rpc/types.go:244: String 80.0% +2025-07-23T19:36:54.8711312Z github.com/ava-labs/coreth/rpc/types.go:254: Hash 100.0% +2025-07-23T19:36:54.8711548Z github.com/ava-labs/coreth/rpc/types.go:261: BlockNumberOrHashWithNumber 100.0% +2025-07-23T19:36:54.8711784Z github.com/ava-labs/coreth/rpc/types.go:269: BlockNumberOrHashWithHash 100.0% +2025-07-23T19:36:54.8712005Z github.com/ava-labs/coreth/rpc/websocket.go:61: WebsocketHandler 100.0% +2025-07-23T19:36:54.8712267Z github.com/ava-labs/coreth/rpc/websocket.go:65: WebsocketHandlerWithDuration 100.0% +2025-07-23T19:36:54.8712649Z github.com/ava-labs/coreth/rpc/websocket.go:86: wsHandshakeValidator 100.0% +2025-07-23T19:36:54.8712827Z github.com/ava-labs/coreth/rpc/websocket.go:132: Error 0.0% +2025-07-23T19:36:54.8713049Z github.com/ava-labs/coreth/rpc/websocket.go:140: originIsAllowed 100.0% +2025-07-23T19:36:54.8713262Z github.com/ava-labs/coreth/rpc/websocket.go:150: ruleAllowsOrigin 62.5% +2025-07-23T19:36:54.8713474Z github.com/ava-labs/coreth/rpc/websocket.go:178: parseOriginURL 92.9% +2025-07-23T19:36:54.8713705Z github.com/ava-labs/coreth/rpc/websocket.go:205: DialWebsocketWithDialer 0.0% +2025-07-23T19:36:54.8713908Z github.com/ava-labs/coreth/rpc/websocket.go:223: DialWebsocket 85.7% +2025-07-23T19:36:54.8714137Z github.com/ava-labs/coreth/rpc/websocket.go:235: newClientTransportWS 87.5% +2025-07-23T19:36:54.8714344Z github.com/ava-labs/coreth/rpc/websocket.go:278: wsClientHeaders 90.9% +2025-07-23T19:36:54.8714563Z github.com/ava-labs/coreth/rpc/websocket.go:305: newWebsocketCodec 84.6% +2025-07-23T19:36:54.8714750Z github.com/ava-labs/coreth/rpc/websocket.go:337: close 100.0% +2025-07-23T19:36:54.8715038Z github.com/ava-labs/coreth/rpc/websocket.go:342: peerInfo 100.0% +2025-07-23T19:36:54.8715346Z github.com/ava-labs/coreth/rpc/websocket.go:346: writeJSON 100.0% +2025-07-23T19:36:54.8715593Z github.com/ava-labs/coreth/rpc/websocket.go:350: writeJSONSkipDeadline 100.0% +2025-07-23T19:36:54.8715782Z github.com/ava-labs/coreth/rpc/websocket.go:363: pingLoop 50.0% +2025-07-23T19:36:54.8716004Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:55: Crit 0.0% +2025-07-23T19:36:54.8716218Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:58: Warn 0.0% +2025-07-23T19:36:54.8716432Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:61: Info 0.0% +2025-07-23T19:36:54.8716668Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:66: GetWarnings 0.0% +2025-07-23T19:36:54.8716895Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:103: String 0.0% +2025-07-23T19:36:54.8717145Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:112: ToTransaction 0.0% +2025-07-23T19:36:54.8717352Z github.com/ava-labs/coreth/sync/client/client.go:99: NewClient 100.0% +2025-07-23T19:36:54.8717561Z github.com/ava-labs/coreth/sync/client/client.go:114: GetLeafs 100.0% +2025-07-23T19:36:54.8717809Z github.com/ava-labs/coreth/sync/client/client.go:132: parseLeafsResponse 88.5% +2025-07-23T19:36:54.8718014Z github.com/ava-labs/coreth/sync/client/client.go:188: GetBlocks 100.0% +2025-07-23T19:36:54.8718236Z github.com/ava-labs/coreth/sync/client/client.go:207: parseBlocks 100.0% +2025-07-23T19:36:54.8718438Z github.com/ava-labs/coreth/sync/client/client.go:243: GetCode 100.0% +2025-07-23T19:36:54.8718641Z github.com/ava-labs/coreth/sync/client/client.go:257: parseCode 93.3% +2025-07-23T19:36:54.8718837Z github.com/ava-labs/coreth/sync/client/client.go:289: get 72.1% +2025-07-23T19:36:54.8719096Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:51: NewCallbackLeafSyncer 0.0% +2025-07-23T19:36:54.8719317Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:62: workerLoop 0.0% +2025-07-23T19:36:54.8719526Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:80: syncTask 0.0% +2025-07-23T19:36:54.8719730Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:149: Start 0.0% +2025-07-23T19:36:54.8719934Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:171: Done 0.0% +2025-07-23T19:36:54.8720177Z github.com/ava-labs/coreth/sync/client/stats/stats.go:42: NewMessageMetric 100.0% +2025-07-23T19:36:54.8720407Z github.com/ava-labs/coreth/sync/client/stats/stats.go:53: IncRequested 100.0% +2025-07-23T19:36:54.8720640Z github.com/ava-labs/coreth/sync/client/stats/stats.go:57: IncSucceeded 100.0% +2025-07-23T19:36:54.8720987Z github.com/ava-labs/coreth/sync/client/stats/stats.go:61: IncFailed 100.0% +2025-07-23T19:36:54.8721237Z github.com/ava-labs/coreth/sync/client/stats/stats.go:65: IncInvalidResponse 0.0% +2025-07-23T19:36:54.8721466Z github.com/ava-labs/coreth/sync/client/stats/stats.go:69: IncReceived 100.0% +2025-07-23T19:36:54.8721738Z github.com/ava-labs/coreth/sync/client/stats/stats.go:73: UpdateRequestLatency 100.0% +2025-07-23T19:36:54.8722004Z github.com/ava-labs/coreth/sync/client/stats/stats.go:84: NewClientSyncerStats 100.0% +2025-07-23T19:36:54.8722222Z github.com/ava-labs/coreth/sync/client/stats/stats.go:97: GetMetric 62.5% +2025-07-23T19:36:54.8722453Z github.com/ava-labs/coreth/sync/client/stats/stats.go:121: IncRequested 0.0% +2025-07-23T19:36:54.8722679Z github.com/ava-labs/coreth/sync/client/stats/stats.go:122: IncSucceeded 0.0% +2025-07-23T19:36:54.8722894Z github.com/ava-labs/coreth/sync/client/stats/stats.go:123: IncFailed 0.0% +2025-07-23T19:36:54.8723157Z github.com/ava-labs/coreth/sync/client/stats/stats.go:124: IncInvalidResponse 0.0% +2025-07-23T19:36:54.8723381Z github.com/ava-labs/coreth/sync/client/stats/stats.go:125: IncReceived 0.0% +2025-07-23T19:36:54.8723643Z github.com/ava-labs/coreth/sync/client/stats/stats.go:126: UpdateRequestLatency 0.0% +2025-07-23T19:36:54.8723962Z github.com/ava-labs/coreth/sync/client/stats/stats.go:128: NewNoOpStats 100.0% +2025-07-23T19:36:54.8724184Z github.com/ava-labs/coreth/sync/client/stats/stats.go:132: GetMetric 100.0% +2025-07-23T19:36:54.8724426Z github.com/ava-labs/coreth/sync/client/test_client.go:44: NewTestClient 0.0% +2025-07-23T19:36:54.8724643Z github.com/ava-labs/coreth/sync/client/test_client.go:58: GetLeafs 0.0% +2025-07-23T19:36:54.8724974Z github.com/ava-labs/coreth/sync/client/test_client.go:77: LeavesReceived 0.0% +2025-07-23T19:36:54.8725191Z github.com/ava-labs/coreth/sync/client/test_client.go:81: GetCode 0.0% +2025-07-23T19:36:54.8725420Z github.com/ava-labs/coreth/sync/client/test_client.go:105: CodeReceived 0.0% +2025-07-23T19:36:54.8725640Z github.com/ava-labs/coreth/sync/client/test_client.go:109: GetBlocks 0.0% +2025-07-23T19:36:54.8725874Z github.com/ava-labs/coreth/sync/client/test_client.go:136: BlocksReceived 0.0% +2025-07-23T19:36:54.8726134Z github.com/ava-labs/coreth/sync/client/test_client.go:142: newTestBlockParser 100.0% +2025-07-23T19:36:54.8726378Z github.com/ava-labs/coreth/sync/client/test_client.go:146: ParseEthBlock 100.0% +2025-07-23T19:36:54.8726655Z github.com/ava-labs/coreth/sync/client/test_network.go:31: SendSyncedAppRequestAny 80.0% +2025-07-23T19:36:54.8726923Z github.com/ava-labs/coreth/sync/client/test_network.go:42: SendSyncedAppRequest 75.0% +2025-07-23T19:36:54.8727148Z github.com/ava-labs/coreth/sync/client/test_network.go:52: processTest 84.6% +2025-07-23T19:36:54.8727356Z github.com/ava-labs/coreth/sync/client/test_network.go:76: Gossip 0.0% +2025-07-23T19:36:54.8727596Z github.com/ava-labs/coreth/sync/client/test_network.go:80: testResponse 100.0% +2025-07-23T19:36:54.8727829Z github.com/ava-labs/coreth/sync/client/test_network.go:89: testResponses 100.0% +2025-07-23T19:36:54.8728058Z github.com/ava-labs/coreth/sync/client/test_network.go:95: TrackBandwidth 0.0% +2025-07-23T19:36:54.8728359Z github.com/ava-labs/coreth/sync/handlers/block_request.go:36: NewBlockRequestHandler 100.0% +2025-07-23T19:36:54.8728609Z github.com/ava-labs/coreth/sync/handlers/block_request.go:49: OnBlockRequest 87.8% +2025-07-23T19:36:54.8728892Z github.com/ava-labs/coreth/sync/handlers/code_request.go:29: NewCodeRequestHandler 100.0% +2025-07-23T19:36:54.8729133Z github.com/ava-labs/coreth/sync/handlers/code_request.go:43: OnCodeRequest 82.1% +2025-07-23T19:36:54.8729355Z github.com/ava-labs/coreth/sync/handlers/code_request.go:85: isUnique 100.0% +2025-07-23T19:36:54.8729645Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:58: NewLeafsRequestHandler 100.0% +2025-07-23T19:36:54.8730033Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:81: OnLeafsRequest 89.8% +2025-07-23T19:36:54.8730287Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:186: handleRequest 73.9% +2025-07-23T19:36:54.8730549Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:230: fillFromSnapshot 69.5% +2025-07-23T19:36:54.8730819Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:333: generateRangeProof 73.3% +2025-07-23T19:36:54.8731084Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:360: verifyRangeProof 100.0% +2025-07-23T19:36:54.8731323Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:372: iterateVals 87.5% +2025-07-23T19:36:54.8731575Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:393: isRangeValid 88.9% +2025-07-23T19:36:54.8731805Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:410: nextKey 100.0% +2025-07-23T19:36:54.8732088Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:424: fillFromTrie 94.4% +2025-07-23T19:36:54.8732373Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:459: readLeafsFromSnapshot 92.3% +2025-07-23T19:36:54.8732632Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:88: IncBlockRequest 100.0% +2025-07-23T19:36:54.8733003Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:92: IncMissingBlockHash 0.0% +2025-07-23T19:36:54.8733290Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:96: UpdateBlocksReturned 100.0% +2025-07-23T19:36:54.8733608Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:100: UpdateBlockRequestProcessingTime 100.0% +2025-07-23T19:36:54.8733856Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:104: IncCodeRequest 0.0% +2025-07-23T19:36:54.8734111Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:108: IncMissingCodeHash 0.0% +2025-07-23T19:36:54.8734394Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:112: IncTooManyHashesRequested 0.0% +2025-07-23T19:36:54.8734702Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:116: IncDuplicateHashesRequested 0.0% +2025-07-23T19:36:54.8735060Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:120: UpdateCodeReadTime 0.0% +2025-07-23T19:36:54.8735352Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:124: UpdateCodeBytesReturned 0.0% +2025-07-23T19:36:54.8735606Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:128: IncLeafsRequest 100.0% +2025-07-23T19:36:54.8735884Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:132: IncInvalidLeafsRequest 0.0% +2025-07-23T19:36:54.8736203Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:136: UpdateLeafsRequestProcessingTime 100.0% +2025-07-23T19:36:54.8736471Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:140: UpdateLeafsReturned 100.0% +2025-07-23T19:36:54.8736743Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:144: UpdateReadLeafsTime 100.0% +2025-07-23T19:36:54.8737026Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:148: UpdateSnapshotReadTime 100.0% +2025-07-23T19:36:54.8737326Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:152: UpdateGenerateRangeProofTime 100.0% +2025-07-23T19:36:54.8737632Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:156: UpdateRangeProofValsReturned 100.0% +2025-07-23T19:36:54.8737875Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:160: IncMissingRoot 0.0% +2025-07-23T19:36:54.8738120Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:161: IncTrieError 0.0% +2025-07-23T19:36:54.8738360Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:162: IncProofError 0.0% +2025-07-23T19:36:54.8738625Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:163: IncSnapshotReadError 0.0% +2025-07-23T19:36:54.8738911Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:164: IncSnapshotReadAttempt 100.0% +2025-07-23T19:36:54.8739324Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:165: IncSnapshotReadSuccess 0.0% +2025-07-23T19:36:54.8739613Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:166: IncSnapshotSegmentValid 0.0% +2025-07-23T19:36:54.8739903Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:167: IncSnapshotSegmentInvalid 100.0% +2025-07-23T19:36:54.8740193Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:172: GetOrRegisterHandlerStats 66.7% +2025-07-23T19:36:54.8740467Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:214: NewNoopHandlerStats 100.0% +2025-07-23T19:36:54.8740715Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:219: IncBlockRequest 0.0% +2025-07-23T19:36:54.8740976Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:220: IncMissingBlockHash 0.0% +2025-07-23T19:36:54.8741246Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:221: UpdateBlocksReturned 0.0% +2025-07-23T19:36:54.8741562Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:222: UpdateBlockRequestProcessingTime 0.0% +2025-07-23T19:36:54.8741809Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:223: IncCodeRequest 0.0% +2025-07-23T19:36:54.8742063Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:224: IncMissingCodeHash 0.0% +2025-07-23T19:36:54.8742473Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:225: IncTooManyHashesRequested 0.0% +2025-07-23T19:36:54.8742780Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:226: IncDuplicateHashesRequested 0.0% +2025-07-23T19:36:54.8743039Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:227: UpdateCodeReadTime 0.0% +2025-07-23T19:36:54.8743323Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:228: UpdateCodeBytesReturned 0.0% +2025-07-23T19:36:54.8743573Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:229: IncLeafsRequest 0.0% +2025-07-23T19:36:54.8743847Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:230: IncInvalidLeafsRequest 0.0% +2025-07-23T19:36:54.8744168Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:231: UpdateLeafsRequestProcessingTime 0.0% +2025-07-23T19:36:54.8744435Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:232: UpdateLeafsReturned 0.0% +2025-07-23T19:36:54.8744705Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:233: UpdateReadLeafsTime 0.0% +2025-07-23T19:36:54.8745081Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:234: UpdateSnapshotReadTime 0.0% +2025-07-23T19:36:54.8745382Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:235: UpdateGenerateRangeProofTime 0.0% +2025-07-23T19:36:54.8745680Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:236: UpdateRangeProofValsReturned 0.0% +2025-07-23T19:36:54.8745924Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:237: IncMissingRoot 0.0% +2025-07-23T19:36:54.8746168Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:238: IncTrieError 0.0% +2025-07-23T19:36:54.8746411Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:239: IncProofError 0.0% +2025-07-23T19:36:54.8746678Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:240: IncSnapshotReadError 0.0% +2025-07-23T19:36:54.8746956Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:241: IncSnapshotReadAttempt 0.0% +2025-07-23T19:36:54.8747236Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:242: IncSnapshotReadSuccess 0.0% +2025-07-23T19:36:54.8747519Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:243: IncSnapshotSegmentValid 0.0% +2025-07-23T19:36:54.8747800Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:244: IncSnapshotSegmentInvalid 0.0% +2025-07-23T19:36:54.8748077Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:49: Reset 100.0% +2025-07-23T19:36:54.8748387Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:80: IncBlockRequest 100.0% +2025-07-23T19:36:54.8748833Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:86: IncMissingBlockHash 100.0% +2025-07-23T19:36:54.8749161Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:92: UpdateBlocksReturned 100.0% +2025-07-23T19:36:54.8749537Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:98: UpdateBlockRequestProcessingTime 100.0% +2025-07-23T19:36:54.8749842Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:104: IncCodeRequest 100.0% +2025-07-23T19:36:54.8750159Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:110: IncMissingCodeHash 0.0% +2025-07-23T19:36:54.8750507Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:116: IncTooManyHashesRequested 100.0% +2025-07-23T19:36:54.8750858Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:122: IncDuplicateHashesRequested 100.0% +2025-07-23T19:36:54.8751184Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:128: UpdateCodeReadTime 100.0% +2025-07-23T19:36:54.8751531Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:134: UpdateCodeBytesReturned 100.0% +2025-07-23T19:36:54.8751843Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:140: IncLeafsRequest 100.0% +2025-07-23T19:36:54.8752289Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:146: IncInvalidLeafsRequest 100.0% +2025-07-23T19:36:54.8752669Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:152: UpdateLeafsReturned 100.0% +2025-07-23T19:36:54.8753050Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:158: UpdateLeafsRequestProcessingTime 100.0% +2025-07-23T19:36:54.8753371Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:164: UpdateReadLeafsTime 100.0% +2025-07-23T19:36:54.8753733Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:170: UpdateGenerateRangeProofTime 100.0% +2025-07-23T19:36:54.8754076Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:176: UpdateSnapshotReadTime 100.0% +2025-07-23T19:36:54.8754426Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:182: UpdateRangeProofValsReturned 100.0% +2025-07-23T19:36:54.8754742Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:188: IncMissingRoot 100.0% +2025-07-23T19:36:54.8755150Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:194: IncTrieError 100.0% +2025-07-23T19:36:54.8755453Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:200: IncProofError 0.0% +2025-07-23T19:36:54.8755773Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:206: IncSnapshotReadError 0.0% +2025-07-23T19:36:54.8756109Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:212: IncSnapshotReadAttempt 100.0% +2025-07-23T19:36:54.8756448Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:218: IncSnapshotReadSuccess 100.0% +2025-07-23T19:36:54.8756794Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:224: IncSnapshotSegmentValid 100.0% +2025-07-23T19:36:54.8757145Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:230: IncSnapshotSegmentInvalid 100.0% +2025-07-23T19:36:54.8757390Z github.com/ava-labs/coreth/sync/handlers/test_providers.go:21: GetBlock 100.0% +2025-07-23T19:36:54.8757630Z github.com/ava-labs/coreth/sync/handlers/test_providers.go:29: Snapshots 100.0% +2025-07-23T19:36:54.8757883Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:63: newCodeSyncer 100.0% +2025-07-23T19:36:54.8758103Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:75: start 93.3% +2025-07-23T19:36:54.8758399Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:107: addCodeToFetchFromDBToQueue 55.0% +2025-07-23T19:36:54.8758621Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:143: work 100.0% +2025-07-23T19:36:54.8759008Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:180: fulfillCodeRequest 92.3% +2025-07-23T19:36:54.8759239Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:204: addCode 91.7% +2025-07-23T19:36:54.8759531Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:230: notifyAccountTrieCompleted 100.0% +2025-07-23T19:36:54.8759794Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:236: addHashesToQueue 100.0% +2025-07-23T19:36:54.8760025Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:249: setError 100.0% +2025-07-23T19:36:54.8760243Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:257: Done 100.0% +2025-07-23T19:36:54.8760501Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:65: NewStateSyncer 84.6% +2025-07-23T19:36:54.8760780Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:113: onStorageTrieFinished 80.0% +2025-07-23T19:36:54.8761048Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:136: onMainTrieFinished 87.5% +2025-07-23T19:36:54.8761308Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:156: onSyncComplete 100.0% +2025-07-23T19:36:54.8761577Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:165: storageTrieProducer 87.0% +2025-07-23T19:36:54.8761915Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:220: Start 100.0% +2025-07-23T19:36:54.8762152Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:247: Done 100.0% +2025-07-23T19:36:54.8762424Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:250: addTrieInProgress 100.0% +2025-07-23T19:36:54.8762707Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:259: removeTrieInProgress 85.7% +2025-07-23T19:36:54.8762959Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:274: onSyncFailure 85.7% +2025-07-23T19:36:54.8763338Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_sync.go:21: FillAccountsWithOverlappingStorage 100.0% +2025-07-23T19:36:54.8763628Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:29: GenerateTrie 66.7% +2025-07-23T19:36:54.8763895Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:39: FillTrie 95.7% +2025-07-23T19:36:54.8764230Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:78: AssertTrieConsistency 81.5% +2025-07-23T19:36:54.8764510Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:118: CorruptTrie 71.4% +2025-07-23T19:36:54.8764902Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:146: FillAccounts 77.3% +2025-07-23T19:36:54.8765184Z github.com/ava-labs/coreth/sync/statesync/sync_helpers.go:16: writeAccountSnapshot 100.0% +2025-07-23T19:36:54.8765501Z github.com/ava-labs/coreth/sync/statesync/sync_helpers.go:23: writeAccountStorageSnapshotFromTrie 0.0% +2025-07-23T19:36:54.8765745Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:20: NewTrieQueue 100.0% +2025-07-23T19:36:54.8766023Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:28: clearIfRootDoesNotMatch 66.7% +2025-07-23T19:36:54.8766288Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:50: RegisterStorageTrie 100.0% +2025-07-23T19:36:54.8766539Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:56: StorageTrieDone 100.0% +2025-07-23T19:36:54.8766776Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:65: getNextTrie 100.0% +2025-07-23T19:36:54.8767010Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:97: countTries 100.0% +2025-07-23T19:36:54.8767260Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:66: NewTrieToSync 100.0% +2025-07-23T19:36:54.8767505Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:86: loadSegments 76.0% +2025-07-23T19:36:54.8767760Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:142: startSyncing 100.0% +2025-07-23T19:36:54.8768129Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:152: addSegment 100.0% +2025-07-23T19:36:54.8768392Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:166: segmentFinished 74.4% +2025-07-23T19:36:54.8768680Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:245: createSegmentsIfNeeded 66.7% +2025-07-23T19:36:54.8768934Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:254: shouldSegment 83.3% +2025-07-23T19:36:54.8769190Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:277: createSegments 0.0% +2025-07-23T19:36:54.8769418Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:336: String 0.0% +2025-07-23T19:36:54.8769644Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:346: Root 100.0% +2025-07-23T19:36:54.8769880Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:347: Account 100.0% +2025-07-23T19:36:54.8770104Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:348: End 100.0% +2025-07-23T19:36:54.8770353Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:349: NodeType 100.0% +2025-07-23T19:36:54.8770585Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:350: OnStart 100.0% +2025-07-23T19:36:54.8770824Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:351: OnFinish 100.0% +2025-07-23T19:36:54.8771162Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:353: Start 100.0% +2025-07-23T19:36:54.8771403Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:360: OnLeafs 92.9% +2025-07-23T19:36:54.8771656Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:391: estimateSize 83.3% +2025-07-23T19:36:54.8771891Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:415: addPadding 0.0% +2025-07-23T19:36:54.8772157Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:45: newTrieSyncStats 100.0% +2025-07-23T19:36:54.8772423Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:59: incTriesSegmented 0.0% +2025-07-23T19:36:54.8772658Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:65: incLeafs 72.7% +2025-07-23T19:36:54.8772976Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:84: estimateSegmentsInProgressTime 25.0% +2025-07-23T19:36:54.8773223Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:101: trieDone 100.0% +2025-07-23T19:36:54.8773463Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:118: updateETA 76.9% +2025-07-23T19:36:54.8773735Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:145: setTriesRemaining 100.0% +2025-07-23T19:36:54.8773967Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:155: roundETA 80.0% +2025-07-23T19:36:54.8774234Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:41: NewMainTrieTask 100.0% +2025-07-23T19:36:54.8774484Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:47: IterateLeafs 100.0% +2025-07-23T19:36:54.8774719Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:53: OnStart 100.0% +2025-07-23T19:36:54.8775052Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:57: OnFinish 100.0% +2025-07-23T19:36:54.8775286Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:61: OnLeafs 92.3% +2025-07-23T19:36:54.8775563Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:97: NewStorageTrieTask 100.0% +2025-07-23T19:36:54.8775819Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:105: IterateLeafs 100.0% +2025-07-23T19:36:54.8776050Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:111: OnStart 54.5% +2025-07-23T19:36:54.8776293Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:138: OnFinish 100.0% +2025-07-23T19:36:54.8776528Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:142: OnLeafs 100.0% +2025-07-23T19:36:54.8776746Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:25: Next 85.7% +2025-07-23T19:36:54.8777077Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:37: Key 66.7% +2025-07-23T19:36:54.8777291Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:44: Value 66.7% +2025-07-23T19:36:54.8777507Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:51: Error 66.7% +2025-07-23T19:36:54.8777720Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:63: Key 100.0% +2025-07-23T19:36:54.8777937Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:67: Value 100.0% +2025-07-23T19:36:54.8778204Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:38: NewAccountTrie 100.0% +2025-07-23T19:36:54.8778441Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:53: GetAccount 87.5% +2025-07-23T19:36:54.8778684Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:87: GetStorage 72.2% +2025-07-23T19:36:54.8778942Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:123: UpdateAccount 88.9% +2025-07-23T19:36:54.8779202Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:138: UpdateStorage 92.3% +2025-07-23T19:36:54.8779465Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:159: DeleteAccount 100.0% +2025-07-23T19:36:54.8779719Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:170: DeleteStorage 100.0% +2025-07-23T19:36:54.8780076Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:186: Hash 60.0% +2025-07-23T19:36:54.8780308Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:195: hash 85.7% +2025-07-23T19:36:54.8780538Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:209: Commit 85.7% +2025-07-23T19:36:54.8780819Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:229: UpdateContractCode 100.0% +2025-07-23T19:36:54.8781046Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:234: GetKey 0.0% +2025-07-23T19:36:54.8781295Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:239: NodeIterator 0.0% +2025-07-23T19:36:54.8781529Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:244: Prove 0.0% +2025-07-23T19:36:54.8781751Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:248: Copy 57.1% +2025-07-23T19:36:54.8782018Z github.com/ava-labs/coreth/triedb/firewood/database.go:79: BackendConstructor 100.0% +2025-07-23T19:36:54.8782227Z github.com/ava-labs/coreth/triedb/firewood/database.go:97: New 66.7% +2025-07-23T19:36:54.8782463Z github.com/ava-labs/coreth/triedb/firewood/database.go:126: validatePath 50.0% +2025-07-23T19:36:54.8782689Z github.com/ava-labs/coreth/triedb/firewood/database.go:163: Scheme 100.0% +2025-07-23T19:36:54.8782919Z github.com/ava-labs/coreth/triedb/firewood/database.go:168: Initialized 66.7% +2025-07-23T19:36:54.8783145Z github.com/ava-labs/coreth/triedb/firewood/database.go:182: Update 93.8% +2025-07-23T19:36:54.8783367Z github.com/ava-labs/coreth/triedb/firewood/database.go:226: propose 82.6% +2025-07-23T19:36:54.8783588Z github.com/ava-labs/coreth/triedb/firewood/database.go:291: Commit 82.8% +2025-07-23T19:36:54.8783809Z github.com/ava-labs/coreth/triedb/firewood/database.go:353: Size 100.0% +2025-07-23T19:36:54.8784037Z github.com/ava-labs/coreth/triedb/firewood/database.go:358: Reference 0.0% +2025-07-23T19:36:54.8784276Z github.com/ava-labs/coreth/triedb/firewood/database.go:370: Dereference 0.0% +2025-07-23T19:36:54.8784480Z github.com/ava-labs/coreth/triedb/firewood/database.go:374: Cap 0.0% +2025-07-23T19:36:54.8784694Z github.com/ava-labs/coreth/triedb/firewood/database.go:378: Close 100.0% +2025-07-23T19:36:54.8785045Z github.com/ava-labs/coreth/triedb/firewood/database.go:392: createProposal 66.7% +2025-07-23T19:36:54.8785335Z github.com/ava-labs/coreth/triedb/firewood/database.go:432: cleanupCommittedProposal 100.0% +2025-07-23T19:36:54.8785567Z github.com/ava-labs/coreth/triedb/firewood/database.go:452: dereference 85.7% +2025-07-23T19:36:54.8785984Z github.com/ava-labs/coreth/triedb/firewood/database.go:471: removeProposalFromMap 100.0% +2025-07-23T19:36:54.8786205Z github.com/ava-labs/coreth/triedb/firewood/database.go:490: Reader 100.0% +2025-07-23T19:36:54.8786419Z github.com/ava-labs/coreth/triedb/firewood/database.go:505: Node 66.7% +2025-07-23T19:36:54.8786671Z github.com/ava-labs/coreth/triedb/firewood/database.go:519: getProposalHash 81.8% +2025-07-23T19:36:54.8786943Z github.com/ava-labs/coreth/triedb/firewood/database.go:563: arrangeKeyValuePairs 100.0% +2025-07-23T19:36:54.8787212Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:18: NewStorageTrie 100.0% +2025-07-23T19:36:54.8787440Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:28: Commit 100.0% +2025-07-23T19:36:54.8787667Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:33: Hash 100.0% +2025-07-23T19:36:54.8787882Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:39: Copy 0.0% +2025-07-23T19:36:54.8788142Z github.com/ava-labs/coreth/triedb/hashdb/database.go:119: BackendConstructor 100.0% +2025-07-23T19:36:54.8788373Z github.com/ava-labs/coreth/triedb/hashdb/database.go:181: forChildren 100.0% +2025-07-23T19:36:54.8788575Z github.com/ava-labs/coreth/triedb/hashdb/database.go:189: New 83.3% +2025-07-23T19:36:54.8788974Z github.com/ava-labs/coreth/triedb/hashdb/database.go:209: insert 100.0% +2025-07-23T19:36:54.8789187Z github.com/ava-labs/coreth/triedb/hashdb/database.go:239: node 89.3% +2025-07-23T19:36:54.8789404Z github.com/ava-labs/coreth/triedb/hashdb/database.go:295: Reference 100.0% +2025-07-23T19:36:54.8789627Z github.com/ava-labs/coreth/triedb/hashdb/database.go:303: reference 100.0% +2025-07-23T19:36:54.8789848Z github.com/ava-labs/coreth/triedb/hashdb/database.go:328: Dereference 88.2% +2025-07-23T19:36:54.8790071Z github.com/ava-labs/coreth/triedb/hashdb/database.go:357: dereference 100.0% +2025-07-23T19:36:54.8790320Z github.com/ava-labs/coreth/triedb/hashdb/database.go:410: writeFlushItems 71.4% +2025-07-23T19:36:54.8790521Z github.com/ava-labs/coreth/triedb/hashdb/database.go:438: Cap 0.0% +2025-07-23T19:36:54.8790735Z github.com/ava-labs/coreth/triedb/hashdb/database.go:518: Commit 87.9% +2025-07-23T19:36:54.8790947Z github.com/ava-labs/coreth/triedb/hashdb/database.go:576: commit 90.9% +2025-07-23T19:36:54.8791197Z github.com/ava-labs/coreth/triedb/hashdb/database.go:607: removeFromDirties 100.0% +2025-07-23T19:36:54.8791423Z github.com/ava-labs/coreth/triedb/hashdb/database.go:646: Initialized 100.0% +2025-07-23T19:36:54.8791630Z github.com/ava-labs/coreth/triedb/hashdb/database.go:654: Update 80.0% +2025-07-23T19:36:54.8791835Z github.com/ava-labs/coreth/triedb/hashdb/database.go:674: update 95.2% +2025-07-23T19:36:54.8792041Z github.com/ava-labs/coreth/triedb/hashdb/database.go:721: Size 100.0% +2025-07-23T19:36:54.8792248Z github.com/ava-labs/coreth/triedb/hashdb/database.go:733: Close 100.0% +2025-07-23T19:36:54.8792467Z github.com/ava-labs/coreth/triedb/hashdb/database.go:741: Scheme 100.0% +2025-07-23T19:36:54.8792677Z github.com/ava-labs/coreth/triedb/hashdb/database.go:747: Reader 100.0% +2025-07-23T19:36:54.8792882Z github.com/ava-labs/coreth/triedb/hashdb/database.go:761: Node 100.0% +2025-07-23T19:36:54.8793137Z github.com/ava-labs/coreth/triedb/pathdb/database.go:108: BackendConstructor 0.0% +2025-07-23T19:36:54.8793351Z github.com/ava-labs/coreth/triedb/pathdb/database.go:114: sanitize 60.0% +2025-07-23T19:36:54.8793556Z github.com/ava-labs/coreth/triedb/pathdb/database.go:163: New 100.0% +2025-07-23T19:36:54.8793769Z github.com/ava-labs/coreth/triedb/pathdb/database.go:231: Reader 100.0% +2025-07-23T19:36:54.8793977Z github.com/ava-labs/coreth/triedb/pathdb/database.go:246: Update 71.4% +2025-07-23T19:36:54.8794189Z github.com/ava-labs/coreth/triedb/pathdb/database.go:269: Commit 80.0% +2025-07-23T19:36:54.8794487Z github.com/ava-labs/coreth/triedb/pathdb/database.go:284: Disable 72.7% +2025-07-23T19:36:54.8794693Z github.com/ava-labs/coreth/triedb/pathdb/database.go:310: Enable 88.2% +2025-07-23T19:36:54.8795015Z github.com/ava-labs/coreth/triedb/pathdb/database.go:356: Recover 100.0% +2025-07-23T19:36:54.8795247Z github.com/ava-labs/coreth/triedb/pathdb/database.go:362: Recoverable 100.0% +2025-07-23T19:36:54.8795457Z github.com/ava-labs/coreth/triedb/pathdb/database.go:394: Close 100.0% +2025-07-23T19:36:54.8795658Z github.com/ava-labs/coreth/triedb/pathdb/database.go:416: Size 0.0% +2025-07-23T19:36:54.8795881Z github.com/ava-labs/coreth/triedb/pathdb/database.go:430: Initialized 0.0% +2025-07-23T19:36:54.8796114Z github.com/ava-labs/coreth/triedb/pathdb/database.go:445: SetBufferSize 0.0% +2025-07-23T19:36:54.8796317Z github.com/ava-labs/coreth/triedb/pathdb/database.go:458: Scheme 0.0% +2025-07-23T19:36:54.8796557Z github.com/ava-labs/coreth/triedb/pathdb/database.go:464: modifyAllowed 60.0% +2025-07-23T19:36:54.8796789Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:59: newDiffLayer 100.0% +2025-07-23T19:36:54.8797008Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:91: rootHash 100.0% +2025-07-23T19:36:54.8797341Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:96: stateID 100.0% +2025-07-23T19:36:54.8797578Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:102: parentLayer 100.0% +2025-07-23T19:36:54.8797783Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:112: node 82.4% +2025-07-23T19:36:54.8797994Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:146: Node 100.0% +2025-07-23T19:36:54.8798210Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:152: update 100.0% +2025-07-23T19:36:54.8798430Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:157: persist 77.8% +2025-07-23T19:36:54.8798659Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:179: diffToDisk 75.0% +2025-07-23T19:36:54.8798890Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:57: newDiskLayer 100.0% +2025-07-23T19:36:54.8799109Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:74: rootHash 100.0% +2025-07-23T19:36:54.8799327Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:79: stateID 100.0% +2025-07-23T19:36:54.8799558Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:85: parentLayer 100.0% +2025-07-23T19:36:54.8799772Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:91: isStale 100.0% +2025-07-23T19:36:54.8799988Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:99: markStale 80.0% +2025-07-23T19:36:54.8800197Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:111: Node 73.0% +2025-07-23T19:36:54.8800411Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:175: update 100.0% +2025-07-23T19:36:54.8800624Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:182: commit 85.7% +2025-07-23T19:36:54.8800841Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:252: revert 0.0% +2025-07-23T19:36:54.8801073Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:300: setBufferSize 0.0% +2025-07-23T19:36:54.8801279Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:311: size 0.0% +2025-07-23T19:36:54.8801509Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:322: resetCache 83.3% +2025-07-23T19:36:54.8801731Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:342: newHasher 100.0% +2025-07-23T19:36:54.8801941Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:346: hash 100.0% +2025-07-23T19:36:54.8802160Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:350: release 100.0% +2025-07-23T19:36:54.8802425Z github.com/ava-labs/coreth/triedb/pathdb/errors.go:67: newUnexpectedNodeError 0.0% +2025-07-23T19:36:54.8802638Z github.com/ava-labs/coreth/triedb/pathdb/history.go:158: encode 100.0% +2025-07-23T19:36:54.8802965Z github.com/ava-labs/coreth/triedb/pathdb/history.go:169: decode 100.0% +2025-07-23T19:36:54.8803176Z github.com/ava-labs/coreth/triedb/pathdb/history.go:185: encode 100.0% +2025-07-23T19:36:54.8803384Z github.com/ava-labs/coreth/triedb/pathdb/history.go:194: decode 100.0% +2025-07-23T19:36:54.8803594Z github.com/ava-labs/coreth/triedb/pathdb/history.go:210: encode 87.5% +2025-07-23T19:36:54.8803801Z github.com/ava-labs/coreth/triedb/pathdb/history.go:223: decode 62.5% +2025-07-23T19:36:54.8804018Z github.com/ava-labs/coreth/triedb/pathdb/history.go:263: newHistory 92.9% +2025-07-23T19:36:54.8804227Z github.com/ava-labs/coreth/triedb/pathdb/history.go:304: encode 100.0% +2025-07-23T19:36:54.8804431Z github.com/ava-labs/coreth/triedb/pathdb/history.go:365: verify 60.0% +2025-07-23T19:36:54.8804650Z github.com/ava-labs/coreth/triedb/pathdb/history.go:376: readAccount 75.0% +2025-07-23T19:36:54.8804996Z github.com/ava-labs/coreth/triedb/pathdb/history.go:409: readStorage 76.2% +2025-07-23T19:36:54.8805203Z github.com/ava-labs/coreth/triedb/pathdb/history.go:456: decode 85.0% +2025-07-23T19:36:54.8805428Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:85: loadJournal 77.3% +2025-07-23T19:36:54.8805759Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:127: loadLayers 100.0% +2025-07-23T19:36:54.8806002Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:149: loadDiskLayer 54.5% +2025-07-23T19:36:54.8806239Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:190: loadDiffLayer 83.3% +2025-07-23T19:36:54.8806449Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:257: journal 77.8% +2025-07-23T19:36:54.8806662Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:291: journal 80.0% +2025-07-23T19:36:54.8806868Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:350: Journal 76.0% +2025-07-23T19:36:54.8807099Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:52: newLayerTree 100.0% +2025-07-23T19:36:54.8807318Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:60: reset 100.0% +2025-07-23T19:36:54.8807518Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:73: get 100.0% +2025-07-23T19:36:54.8807726Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:82: forEach 0.0% +2025-07-23T19:36:54.8807938Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:92: len 100.0% +2025-07-23T19:36:54.8808138Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:100: add 81.8% +2025-07-23T19:36:54.8808344Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:125: cap 79.0% +2025-07-23T19:36:54.8808557Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:236: bottom 90.9% +2025-07-23T19:36:54.8808800Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:54: newNodeBuffer 71.4% +2025-07-23T19:36:54.8809010Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:73: node 27.3% +2025-07-23T19:36:54.8809228Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:94: commit 100.0% +2025-07-23T19:36:54.8809448Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:139: revert 0.0% +2025-07-23T19:36:54.8809675Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:189: updateSize 57.1% +2025-07-23T19:36:54.8809895Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:201: reset 100.0% +2025-07-23T19:36:54.8810109Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:209: empty 0.0% +2025-07-23T19:36:54.8810325Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:215: setSize 0.0% +2025-07-23T19:36:54.8810534Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:222: flush 88.2% +2025-07-23T19:36:54.8810773Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:254: writeNodes 100.0% +2025-07-23T19:36:54.8811002Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:283: cacheKey 100.0% +2025-07-23T19:36:54.8811380Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:55: newTestHasher 80.0% +2025-07-23T19:36:54.8811582Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:71: Get 0.0% +2025-07-23T19:36:54.8811798Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:81: Update 100.0% +2025-07-23T19:36:54.8812024Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:87: Delete 100.0% +2025-07-23T19:36:54.8812235Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:94: Commit 93.8% +2025-07-23T19:36:54.8812446Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:126: hash 100.0% +2025-07-23T19:36:54.8812690Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:152: newHashLoader 100.0% +2025-07-23T19:36:54.8812901Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:160: OpenTrie 0.0% +2025-07-23T19:36:54.8813149Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:165: OpenStorageTrie 0.0% +2025-07-23T19:36:54.8813348Z github.com/ava-labs/coreth/utils/address_range.go:20: Contains 0.0% +2025-07-23T19:36:54.8813588Z github.com/ava-labs/coreth/utils/bounded_workers.go:22: NewBoundedWorkers 0.0% +2025-07-23T19:36:54.8813808Z github.com/ava-labs/coreth/utils/bounded_workers.go:31: startWorker 0.0% +2025-07-23T19:36:54.8814009Z github.com/ava-labs/coreth/utils/bounded_workers.go:51: Execute 0.0% +2025-07-23T19:36:54.8814288Z github.com/ava-labs/coreth/utils/bounded_workers.go:75: Wait 0.0% +2025-07-23T19:36:54.8814472Z github.com/ava-labs/coreth/utils/bytes.go:9: IncrOne 100.0% +2025-07-23T19:36:54.8814680Z github.com/ava-labs/coreth/utils/bytes.go:23: HashSliceToBytes 100.0% +2025-07-23T19:36:54.8814987Z github.com/ava-labs/coreth/utils/bytes.go:33: BytesToHashSlice 100.0% +2025-07-23T19:36:54.8815214Z github.com/ava-labs/coreth/utils/metered_cache.go:37: NewMeteredCache 0.0% +2025-07-23T19:36:54.8815456Z github.com/ava-labs/coreth/utils/metered_cache.go:60: updateStatsIfNeeded 0.0% +2025-07-23T19:36:54.8815646Z github.com/ava-labs/coreth/utils/metered_cache.go:81: Del 0.0% +2025-07-23T19:36:54.8815832Z github.com/ava-labs/coreth/utils/metered_cache.go:86: Get 0.0% +2025-07-23T19:36:54.8816034Z github.com/ava-labs/coreth/utils/metered_cache.go:91: GetBig 0.0% +2025-07-23T19:36:54.8816220Z github.com/ava-labs/coreth/utils/metered_cache.go:96: Has 0.0% +2025-07-23T19:36:54.8816416Z github.com/ava-labs/coreth/utils/metered_cache.go:101: HasGet 0.0% +2025-07-23T19:36:54.8816610Z github.com/ava-labs/coreth/utils/metered_cache.go:106: Set 0.0% +2025-07-23T19:36:54.8816801Z github.com/ava-labs/coreth/utils/metered_cache.go:111: SetBig 0.0% +2025-07-23T19:36:54.8816987Z github.com/ava-labs/coreth/utils/numbers.go:11: NewUint64 0.0% +2025-07-23T19:36:54.8817190Z github.com/ava-labs/coreth/utils/numbers.go:13: TimeToNewUint64 0.0% +2025-07-23T19:36:54.8817382Z github.com/ava-labs/coreth/utils/numbers.go:18: Uint64ToTime 0.0% +2025-07-23T19:36:54.8817590Z github.com/ava-labs/coreth/utils/numbers.go:25: Uint64PtrEqual 0.0% +2025-07-23T19:36:54.8817780Z github.com/ava-labs/coreth/utils/numbers.go:34: BigEqual 100.0% +2025-07-23T19:36:54.8817987Z github.com/ava-labs/coreth/utils/numbers.go:43: BigEqualUint64 100.0% +2025-07-23T19:36:54.8818222Z github.com/ava-labs/coreth/utils/numbers.go:51: BigLessOrEqualUint64 100.0% +2025-07-23T19:36:54.8818421Z github.com/ava-labs/coreth/utils/rpc/handler.go:16: NewHandler 0.0% +2025-07-23T19:36:54.8818641Z github.com/ava-labs/coreth/utils/snow.go:17: NewTestValidatorState 0.0% +2025-07-23T19:36:54.8818842Z github.com/ava-labs/coreth/utils/utilstest/key.go:24: NewKey 100.0% +2025-07-23T19:36:54.8819036Z github.com/ava-labs/coreth/warp/backend.go:65: NewBackend 100.0% +2025-07-23T19:36:54.8819262Z github.com/ava-labs/coreth/warp/backend.go:88: initOffChainMessages 76.9% +2025-07-23T19:36:54.8819451Z github.com/ava-labs/coreth/warp/backend.go:113: AddMessage 71.4% +2025-07-23T19:36:54.8819813Z github.com/ava-labs/coreth/warp/backend.go:130: GetMessageSignature 100.0% +2025-07-23T19:36:54.8820035Z github.com/ava-labs/coreth/warp/backend.go:144: GetBlockSignature 73.3% +2025-07-23T19:36:54.8820225Z github.com/ava-labs/coreth/warp/backend.go:172: GetMessage 83.3% +2025-07-23T19:36:54.8820426Z github.com/ava-labs/coreth/warp/backend.go:194: signMessage 80.0% +2025-07-23T19:36:54.8820607Z github.com/ava-labs/coreth/warp/client.go:31: NewClient 0.0% +2025-07-23T19:36:54.8820794Z github.com/ava-labs/coreth/warp/client.go:41: GetMessage 0.0% +2025-07-23T19:36:54.8821012Z github.com/ava-labs/coreth/warp/client.go:49: GetMessageSignature 0.0% +2025-07-23T19:36:54.8821253Z github.com/ava-labs/coreth/warp/client.go:57: GetMessageAggregateSignature 0.0% +2025-07-23T19:36:54.8821461Z github.com/ava-labs/coreth/warp/client.go:65: GetBlockSignature 0.0% +2025-07-23T19:36:54.8821698Z github.com/ava-labs/coreth/warp/client.go:73: GetBlockAggregateSignature 0.0% +2025-07-23T19:36:54.8821878Z github.com/ava-labs/coreth/warp/service.go:32: NewAPI 0.0% +2025-07-23T19:36:54.8822069Z github.com/ava-labs/coreth/warp/service.go:42: GetMessage 0.0% +2025-07-23T19:36:54.8822390Z github.com/ava-labs/coreth/warp/service.go:51: GetMessageSignature 0.0% +2025-07-23T19:36:54.8822609Z github.com/ava-labs/coreth/warp/service.go:64: GetBlockSignature 0.0% +2025-07-23T19:36:54.8822855Z github.com/ava-labs/coreth/warp/service.go:73: GetMessageAggregateSignature 0.0% +2025-07-23T19:36:54.8823093Z github.com/ava-labs/coreth/warp/service.go:82: GetBlockAggregateSignature 0.0% +2025-07-23T19:36:54.8823312Z github.com/ava-labs/coreth/warp/service.go:95: aggregateSignatures 0.0% +2025-07-23T19:36:54.8823526Z github.com/ava-labs/coreth/warp/validators/state.go:31: NewState 100.0% +2025-07-23T19:36:54.8823768Z github.com/ava-labs/coreth/warp/validators/state.go:40: GetValidatorSet 100.0% +2025-07-23T19:36:54.8823985Z github.com/ava-labs/coreth/warp/verifier_backend.go:23: Verify 76.9% +2025-07-23T19:36:54.8824234Z github.com/ava-labs/coreth/warp/verifier_backend.go:58: verifyBlockMessage 100.0% +2025-07-23T19:36:54.8824468Z github.com/ava-labs/coreth/warp/verifier_stats.go:14: newVerifierStats 100.0% +2025-07-23T19:36:54.8824724Z github.com/ava-labs/coreth/warp/verifier_stats.go:21: IncBlockValidationFail 100.0% +2025-07-23T19:36:54.8825063Z github.com/ava-labs/coreth/warp/verifier_stats.go:25: IncMessageParseFail 100.0% +2025-07-23T19:36:54.8825324Z github.com/ava-labs/coreth/warp/warptest/block_client.go:23: GetAcceptedBlock 100.0% +2025-07-23T19:36:54.8825575Z github.com/ava-labs/coreth/warp/warptest/block_client.go:30: MakeBlockClient 100.0% +2025-07-23T19:36:54.8825685Z total: (statements) 60.0% +2025-07-23T19:36:54.8883080Z Post job cleanup. +2025-07-23T19:36:55.0547277Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:36:55.0585562Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:36:55.0609720Z /home/runner/go/pkg/mod +2025-07-23T19:36:55.0640446Z /home/runner/.cache/go-build +2025-07-23T19:36:55.0646868Z Cache hit occurred on the primary key setup-go-Linux-x64-ubuntu22-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d, not saving cache. +2025-07-23T19:36:55.0786007Z Post job cleanup. +2025-07-23T19:36:55.1769229Z [command]/usr/bin/git version +2025-07-23T19:36:55.1814134Z git version 2.50.1 +2025-07-23T19:36:55.1857237Z Temporarily overriding HOME='/home/runner/work/_temp/789b75b4-8f13-4019-92ec-fa3e46783192' before making global git config changes +2025-07-23T19:36:55.1857790Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:36:55.1862478Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:36:55.1897602Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:36:55.1930041Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:36:55.2163989Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:36:55.2186106Z http.https://github.com/.extraheader +2025-07-23T19:36:55.2198906Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +2025-07-23T19:36:55.2229962Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:36:55.2559535Z Cleaning up orphan processes diff --git a/logs_42241282643/4_Golang Unit Tests (macos-latest).txt b/logs_42241282643/4_Golang Unit Tests (macos-latest).txt new file mode 100644 index 0000000000..f57af94188 --- /dev/null +++ b/logs_42241282643/4_Golang Unit Tests (macos-latest).txt @@ -0,0 +1,258 @@ +2025-07-23T19:28:55.6470340Z Current runner version: '2.326.0' +2025-07-23T19:28:55.6485630Z ##[group]Operating System +2025-07-23T19:28:55.6486070Z macOS +2025-07-23T19:28:55.6486460Z 14.7.6 +2025-07-23T19:28:55.6486750Z 23H626 +2025-07-23T19:28:55.6487130Z ##[endgroup] +2025-07-23T19:28:55.6487440Z ##[group]Runner Image +2025-07-23T19:28:55.6487780Z Image: macos-14-arm64 +2025-07-23T19:28:55.6488090Z Version: 20250715.1663 +2025-07-23T19:28:55.6488820Z Included Software: https://github.com/actions/runner-images/blob/macos-14-arm64/20250715.1663/images/macos/macos-14-arm64-Readme.md +2025-07-23T19:28:55.6489730Z Image Release: https://github.com/actions/runner-images/releases/tag/macos-14-arm64%2F20250715.1663 +2025-07-23T19:28:55.6490290Z ##[endgroup] +2025-07-23T19:28:55.6490610Z ##[group]Runner Image Provisioner +2025-07-23T19:28:55.6490980Z 2.0.449.1+6d46f4794670abc677653e70ad733fc4b7478209 +2025-07-23T19:28:55.6491360Z ##[endgroup] +2025-07-23T19:28:55.6492780Z ##[group]GITHUB_TOKEN Permissions +2025-07-23T19:28:55.6493760Z Actions: write +2025-07-23T19:28:55.6494080Z Attestations: write +2025-07-23T19:28:55.6494420Z Checks: write +2025-07-23T19:28:55.6494710Z Contents: write +2025-07-23T19:28:55.6495050Z Deployments: write +2025-07-23T19:28:55.6495400Z Discussions: write +2025-07-23T19:28:55.6495700Z Issues: write +2025-07-23T19:28:55.6495980Z Metadata: read +2025-07-23T19:28:55.6496280Z Models: read +2025-07-23T19:28:55.6496560Z Packages: write +2025-07-23T19:28:55.6496860Z Pages: write +2025-07-23T19:28:55.6497140Z PullRequests: write +2025-07-23T19:28:55.6497460Z RepositoryProjects: write +2025-07-23T19:28:55.6497770Z SecurityEvents: write +2025-07-23T19:28:55.6498080Z Statuses: write +2025-07-23T19:28:55.6498380Z ##[endgroup] +2025-07-23T19:28:55.6499520Z Secret source: Actions +2025-07-23T19:28:55.6499910Z Prepare workflow directory +2025-07-23T19:28:55.6698660Z Prepare all required actions +2025-07-23T19:28:55.6723800Z Getting action download info +2025-07-23T19:28:55.9826810Z ##[group]Download immutable action package 'actions/checkout@v4' +2025-07-23T19:28:55.9827450Z Version: 4.2.2 +2025-07-23T19:28:55.9828020Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 +2025-07-23T19:28:55.9828770Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 +2025-07-23T19:28:55.9829220Z ##[endgroup] +2025-07-23T19:28:56.3134410Z ##[group]Download immutable action package 'actions/setup-go@v5' +2025-07-23T19:28:56.3135570Z Version: 5.5.0 +2025-07-23T19:28:56.3136070Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb +2025-07-23T19:28:56.3136680Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 +2025-07-23T19:28:56.3137140Z ##[endgroup] +2025-07-23T19:28:57.0638010Z Complete job name: Golang Unit Tests (macos-latest) +2025-07-23T19:28:57.0964790Z ##[group]Run actions/checkout@v4 +2025-07-23T19:28:57.0965290Z with: +2025-07-23T19:28:57.0965580Z repository: ava-labs/coreth +2025-07-23T19:28:57.0966020Z token: *** +2025-07-23T19:28:57.0966290Z ssh-strict: true +2025-07-23T19:28:57.0966580Z ssh-user: git +2025-07-23T19:28:57.0966890Z persist-credentials: true +2025-07-23T19:28:57.0967210Z clean: true +2025-07-23T19:28:57.0967500Z sparse-checkout-cone-mode: true +2025-07-23T19:28:57.0967850Z fetch-depth: 1 +2025-07-23T19:28:57.0968130Z fetch-tags: false +2025-07-23T19:28:57.0968500Z show-progress: true +2025-07-23T19:28:57.0968800Z lfs: false +2025-07-23T19:28:57.0969090Z submodules: false +2025-07-23T19:28:57.0969390Z set-safe-directory: true +2025-07-23T19:28:57.0969810Z ##[endgroup] +2025-07-23T19:28:57.3790940Z Syncing repository: ava-labs/coreth +2025-07-23T19:28:57.3792280Z ##[group]Getting Git version info +2025-07-23T19:28:57.3792780Z Working directory is '/Users/runner/work/coreth/coreth' +2025-07-23T19:28:57.3814620Z [command]/opt/homebrew/bin/git version +2025-07-23T19:28:57.4339280Z git version 2.50.1 +2025-07-23T19:28:57.4362650Z ##[endgroup] +2025-07-23T19:28:57.4368270Z Copying '/Users/runner/.gitconfig' to '/Users/runner/work/_temp/8fdf0996-2c77-4556-aa33-ff5ddfd5426f/.gitconfig' +2025-07-23T19:28:57.4374250Z Temporarily overriding HOME='/Users/runner/work/_temp/8fdf0996-2c77-4556-aa33-ff5ddfd5426f' before making global git config changes +2025-07-23T19:28:57.4375240Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:28:57.4377810Z [command]/opt/homebrew/bin/git config --global --add safe.directory /Users/runner/work/coreth/coreth +2025-07-23T19:28:57.4445260Z Deleting the contents of '/Users/runner/work/coreth/coreth' +2025-07-23T19:28:57.4447090Z ##[group]Initializing the repository +2025-07-23T19:28:57.4450960Z [command]/opt/homebrew/bin/git init /Users/runner/work/coreth/coreth +2025-07-23T19:28:57.4585280Z hint: Using 'master' as the name for the initial branch. This default branch name +2025-07-23T19:28:57.4586570Z hint: is subject to change. To configure the initial branch name to use in all +2025-07-23T19:28:57.4587450Z hint: of your new repositories, which will suppress this warning, call: +2025-07-23T19:28:57.4587960Z hint: +2025-07-23T19:28:57.4588360Z hint: git config --global init.defaultBranch +2025-07-23T19:28:57.4588900Z hint: +2025-07-23T19:28:57.4589330Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2025-07-23T19:28:57.4589990Z hint: 'development'. The just-created branch can be renamed via this command: +2025-07-23T19:28:57.4590510Z hint: +2025-07-23T19:28:57.4590800Z hint: git branch -m +2025-07-23T19:28:57.4591140Z hint: +2025-07-23T19:28:57.4591590Z hint: Disable this message with "git config set advice.defaultBranchName false" +2025-07-23T19:28:57.4592290Z Initialized empty Git repository in /Users/runner/work/coreth/coreth/.git/ +2025-07-23T19:28:57.4593630Z [command]/opt/homebrew/bin/git remote add origin https://github.com/ava-labs/coreth +2025-07-23T19:28:57.4643800Z ##[endgroup] +2025-07-23T19:28:57.4644350Z ##[group]Disabling automatic garbage collection +2025-07-23T19:28:57.4646250Z [command]/opt/homebrew/bin/git config --local gc.auto 0 +2025-07-23T19:28:57.4688340Z ##[endgroup] +2025-07-23T19:28:57.4689010Z ##[group]Setting up auth +2025-07-23T19:28:57.4691930Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:28:57.4729820Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:28:57.5272210Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:28:57.5307000Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:28:57.6710350Z [command]/opt/homebrew/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2025-07-23T19:28:57.6712320Z ##[endgroup] +2025-07-23T19:28:57.6713550Z ##[group]Fetching the repository +2025-07-23T19:28:57.6714730Z [command]/opt/homebrew/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge +2025-07-23T19:28:58.8014950Z From https://github.com/ava-labs/coreth +2025-07-23T19:28:58.8015860Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge +2025-07-23T19:28:58.8062960Z ##[endgroup] +2025-07-23T19:28:58.8063600Z ##[group]Determining the checkout info +2025-07-23T19:28:58.8064360Z ##[endgroup] +2025-07-23T19:28:58.8067150Z [command]/opt/homebrew/bin/git sparse-checkout disable +2025-07-23T19:28:58.8121830Z [command]/opt/homebrew/bin/git config --local --unset-all extensions.worktreeConfig +2025-07-23T19:28:58.8161700Z ##[group]Checking out the ref +2025-07-23T19:28:58.8163660Z [command]/opt/homebrew/bin/git checkout --progress --force refs/remotes/pull/1065/merge +2025-07-23T19:28:58.9380840Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 +2025-07-23T19:28:58.9628740Z ##[endgroup] +2025-07-23T19:28:58.9933290Z [command]/opt/homebrew/bin/git log -1 --format=%H +2025-07-23T19:28:58.9996220Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 +2025-07-23T19:28:59.0333830Z ##[group]Run actions/setup-go@v5 +2025-07-23T19:28:59.0335510Z with: +2025-07-23T19:28:59.0336150Z go-version-file: go.mod +2025-07-23T19:28:59.0336850Z check-latest: false +2025-07-23T19:28:59.0337670Z token: *** +2025-07-23T19:28:59.0338220Z cache: true +2025-07-23T19:28:59.0338780Z ##[endgroup] +2025-07-23T19:28:59.1634480Z Setup go version spec 1.23.9 +2025-07-23T19:28:59.1662470Z Attempting to download 1.23.9... +2025-07-23T19:29:00.0309900Z matching 1.23.9... +2025-07-23T19:29:00.1350510Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-darwin-arm64.tar.gz +2025-07-23T19:29:00.9474720Z Extracting Go... +2025-07-23T19:29:00.9555940Z [command]/usr/bin/tar xz -C /Users/runner/work/_temp/aabfc34d-b18f-416a-b458-a6f7e344f159 -f /Users/runner/work/_temp/5cbcbaac-4a4d-4d9b-a417-f79fb5e4419b +2025-07-23T19:29:03.3391660Z Successfully extracted go to /Users/runner/work/_temp/aabfc34d-b18f-416a-b458-a6f7e344f159 +2025-07-23T19:29:03.3392280Z Adding to the cache ... +2025-07-23T19:29:07.9882230Z Successfully cached go to /Users/runner/hostedtoolcache/go/1.23.9/arm64 +2025-07-23T19:29:07.9889230Z Added go to the path +2025-07-23T19:29:07.9919180Z Successfully set up Go version 1.23.9 +2025-07-23T19:29:08.1129950Z [command]/Users/runner/hostedtoolcache/go/1.23.9/arm64/bin/go env GOMODCACHE +2025-07-23T19:29:08.1167110Z [command]/Users/runner/hostedtoolcache/go/1.23.9/arm64/bin/go env GOCACHE +2025-07-23T19:29:08.1167740Z /Users/runner/go/pkg/mod +2025-07-23T19:29:08.1170200Z /Users/runner/Library/Caches/go-build +2025-07-23T19:29:08.2655670Z Cache hit for: setup-go-macOS-arm64-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:09.4201510Z Received 71303168 of 665833561 (10.7%), 67.9 MBs/sec +2025-07-23T19:29:10.4306320Z Received 192937984 of 665833561 (29.0%), 91.4 MBs/sec +2025-07-23T19:29:11.4349000Z Received 301989888 of 665833561 (45.4%), 95.6 MBs/sec +2025-07-23T19:29:12.4427060Z Received 406847488 of 665833561 (61.1%), 96.6 MBs/sec +2025-07-23T19:29:13.4343860Z Received 536870912 of 665833561 (80.6%), 102.0 MBs/sec +2025-07-23T19:29:14.4293890Z Received 665833561 of 665833561 (100.0%), 105.6 MBs/sec +2025-07-23T19:29:14.4299370Z Cache Size: ~635 MB (665833561 B) +2025-07-23T19:29:14.4342660Z [command]/opt/homebrew/bin/gtar -xf /Users/runner/work/_temp/d7820235-272a-4fb0-a9c1-f98db5fee222/cache.tzst -P -C /Users/runner/work/coreth/coreth --delay-directory-restore --use-compress-program unzstd +2025-07-23T19:29:24.0727310Z Cache restored successfully +2025-07-23T19:29:24.0932060Z Cache restored from key: setup-go-macOS-arm64-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:24.1086730Z go version go1.23.9 darwin/arm64 +2025-07-23T19:29:24.1086910Z +2025-07-23T19:29:24.1087310Z ##[group]go env +2025-07-23T19:29:25.8943950Z GO111MODULE='' +2025-07-23T19:29:25.9045130Z GOARCH='arm64' +2025-07-23T19:29:25.9102410Z GOBIN='' +2025-07-23T19:29:25.9103560Z GOCACHE='/Users/runner/Library/Caches/go-build' +2025-07-23T19:29:25.9105790Z GOENV='/Users/runner/Library/Application Support/go/env' +2025-07-23T19:29:25.9107070Z GOEXE='' +2025-07-23T19:29:25.9108760Z GOEXPERIMENT='' +2025-07-23T19:29:25.9110050Z GOFLAGS='' +2025-07-23T19:29:25.9111460Z GOHOSTARCH='arm64' +2025-07-23T19:29:25.9112010Z GOHOSTOS='darwin' +2025-07-23T19:29:25.9112480Z GOINSECURE='' +2025-07-23T19:29:25.9113120Z GOMODCACHE='/Users/runner/go/pkg/mod' +2025-07-23T19:29:25.9114010Z GONOPROXY='' +2025-07-23T19:29:25.9116100Z GONOSUMDB='' +2025-07-23T19:29:25.9118510Z GOOS='darwin' +2025-07-23T19:29:25.9119090Z GOPATH='/Users/runner/go' +2025-07-23T19:29:25.9120780Z GOPRIVATE='' +2025-07-23T19:29:25.9122040Z GOPROXY='https://proxy.golang.org,direct' +2025-07-23T19:29:25.9122520Z GOROOT='/Users/runner/hostedtoolcache/go/1.23.9/arm64' +2025-07-23T19:29:25.9128930Z GOSUMDB='sum.golang.org' +2025-07-23T19:29:25.9129500Z GOTMPDIR='' +2025-07-23T19:29:25.9129720Z GOTOOLCHAIN='auto' +2025-07-23T19:29:25.9131490Z GOTOOLDIR='/Users/runner/hostedtoolcache/go/1.23.9/arm64/pkg/tool/darwin_arm64' +2025-07-23T19:29:25.9131960Z GOVCS='' +2025-07-23T19:29:25.9132170Z GOVERSION='go1.23.9' +2025-07-23T19:29:25.9132500Z GODEBUG='' +2025-07-23T19:29:25.9132740Z GOTELEMETRY='local' +2025-07-23T19:29:25.9133210Z GOTELEMETRYDIR='/Users/runner/Library/Application Support/go/telemetry' +2025-07-23T19:29:25.9133620Z GCCGO='gccgo' +2025-07-23T19:29:25.9133860Z GOARM64='v8.0' +2025-07-23T19:29:25.9134090Z AR='ar' +2025-07-23T19:29:25.9134330Z CC='clang' +2025-07-23T19:29:25.9134610Z CXX='clang++' +2025-07-23T19:29:25.9134830Z CGO_ENABLED='1' +2025-07-23T19:29:25.9135120Z GOMOD='/Users/runner/work/coreth/coreth/go.mod' +2025-07-23T19:29:25.9135510Z GOWORK='' +2025-07-23T19:29:25.9135700Z CGO_CFLAGS='-O2 -g' +2025-07-23T19:29:25.9135930Z CGO_CPPFLAGS='' +2025-07-23T19:29:25.9136250Z CGO_CXXFLAGS='-O2 -g' +2025-07-23T19:29:25.9136470Z CGO_FFLAGS='-O2 -g' +2025-07-23T19:29:25.9136740Z CGO_LDFLAGS='-O2 -g' +2025-07-23T19:29:25.9137050Z PKG_CONFIG='pkg-config' +2025-07-23T19:29:25.9138210Z GOGCCFLAGS='-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -ffile-prefix-map=/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/go-build963083595=/tmp/go-build -gno-record-gcc-switches -fno-common' +2025-07-23T19:29:25.9139180Z +2025-07-23T19:29:25.9139570Z ##[endgroup] +2025-07-23T19:29:25.9246510Z ##[group]Run go mod download +2025-07-23T19:29:25.9246870Z go mod download +2025-07-23T19:29:25.9424270Z shell: /bin/bash -e {0} +2025-07-23T19:29:25.9424590Z ##[endgroup] +2025-07-23T19:29:26.1558910Z ##[group]Run ./scripts/run_task.sh check-generate-codec +2025-07-23T19:29:26.1559260Z ./scripts/run_task.sh check-generate-codec +2025-07-23T19:29:26.1636050Z shell: /bin/bash -e {0} +2025-07-23T19:29:26.1636290Z ##[endgroup] +2025-07-23T19:29:28.1177170Z task: [generate-codec] grep -lr -E '^// Code generated by github\.com\/fjl\/gencodec\. DO NOT EDIT\.$' . | xargs -r rm +2025-07-23T19:29:28.3630580Z task: [generate-codec] go generate -run "github.com/fjl/gencodec" ./... +2025-07-23T19:29:35.3968720Z task: [check-clean-branch] git add --all +2025-07-23T19:29:35.5080100Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null +2025-07-23T19:29:35.5157530Z task: [check-clean-branch] git status --short +2025-07-23T19:29:35.5286080Z task: [check-clean-branch] git diff-index --quiet HEAD +2025-07-23T19:29:35.5411710Z ##[group]Run ./scripts/run_task.sh check-generate-mocks +2025-07-23T19:29:35.5412010Z ./scripts/run_task.sh check-generate-mocks +2025-07-23T19:29:35.5538810Z shell: /bin/bash -e {0} +2025-07-23T19:29:35.5539020Z ##[endgroup] +2025-07-23T19:29:36.1478950Z task: [generate-mocks] grep -lr -E '^// Code generated by MockGen\. DO NOT EDIT\.$' . | xargs -r rm +2025-07-23T19:29:36.2869140Z task: [generate-mocks] go generate -run "go.uber.org/mock/mockgen" ./... +2025-07-23T19:29:41.7072290Z task: [check-clean-branch] git add --all +2025-07-23T19:29:41.7167960Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null +2025-07-23T19:29:41.7225630Z task: [check-clean-branch] git status --short +2025-07-23T19:29:41.7322640Z task: [check-clean-branch] git diff-index --quiet HEAD +2025-07-23T19:29:41.7437820Z ##[group]Run ./scripts/run_task.sh build +2025-07-23T19:29:41.7438070Z ./scripts/run_task.sh build +2025-07-23T19:29:41.7487200Z shell: /bin/bash -e {0} +2025-07-23T19:29:41.7487370Z ##[endgroup] +2025-07-23T19:29:42.3282050Z task: [build] ./scripts/build.sh +2025-07-23T19:29:42.3605910Z Using branch: d85ec03 +2025-07-23T19:29:42.3639410Z Building Coreth @ GitCommit: d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 at /Users/runner/.avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy +2025-07-23T19:29:51.2280740Z ##[group]Run ./scripts/run_task.sh build-test +2025-07-23T19:29:51.2281090Z ./scripts/run_task.sh build-test +2025-07-23T19:29:51.2415480Z shell: /bin/bash -e {0} +2025-07-23T19:29:51.2415670Z env: +2025-07-23T19:29:51.2415810Z TIMEOUT: +2025-07-23T19:29:51.2415930Z ##[endgroup] +2025-07-23T19:29:51.8737390Z task: [build-test] ./scripts/build_test.sh +2025-07-23T19:29:51.9016950Z Using branch: d85ec03 +2025-07-23T19:29:52.2501440Z Test run 1 of 4 +2025-07-23T19:29:52.2501760Z Getting expected test list... +2025-07-23T19:29:58.6019690Z Expected tests: 1 tests +2025-07-23T19:29:58.6019970Z Running tests... +2025-07-23T19:35:29.6858720Z jq: parse error: Invalid numeric literal at line 1, column 2 +2025-07-23T19:35:29.6980820Z task: Failed to run task "build-test": exit status 5 +2025-07-23T19:35:29.7011060Z exit status 201 +2025-07-23T19:35:29.7081710Z ##[error]Process completed with exit code 1. +2025-07-23T19:35:29.7511690Z Post job cleanup. +2025-07-23T19:35:30.1818930Z [command]/opt/homebrew/bin/git version +2025-07-23T19:35:30.2110990Z git version 2.50.1 +2025-07-23T19:35:30.2156310Z Copying '/Users/runner/.gitconfig' to '/Users/runner/work/_temp/804fb9a9-4f08-41b4-aae6-898a7bc2f756/.gitconfig' +2025-07-23T19:35:30.2168330Z Temporarily overriding HOME='/Users/runner/work/_temp/804fb9a9-4f08-41b4-aae6-898a7bc2f756' before making global git config changes +2025-07-23T19:35:30.2170480Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:35:30.2171800Z [command]/opt/homebrew/bin/git config --global --add safe.directory /Users/runner/work/coreth/coreth +2025-07-23T19:35:30.2281180Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:35:30.2346150Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:35:30.3922370Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:35:30.3957350Z http.https://github.com/.extraheader +2025-07-23T19:35:30.3989780Z [command]/opt/homebrew/bin/git config --local --unset-all http.https://github.com/.extraheader +2025-07-23T19:35:30.4115700Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:35:30.5740940Z Cleaning up orphan processes diff --git a/logs_42241282643/5_Golang Unit Tests (ubuntu-latest).txt b/logs_42241282643/5_Golang Unit Tests (ubuntu-latest).txt new file mode 100644 index 0000000000..01915b7fbb --- /dev/null +++ b/logs_42241282643/5_Golang Unit Tests (ubuntu-latest).txt @@ -0,0 +1,3206 @@ +2025-07-23T19:28:54.5253315Z Current runner version: '2.326.0' +2025-07-23T19:28:54.5275807Z ##[group]Runner Image Provisioner +2025-07-23T19:28:54.5277180Z Hosted Compute Agent +2025-07-23T19:28:54.5277948Z Version: 20250711.363 +2025-07-23T19:28:54.5279050Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c +2025-07-23T19:28:54.5280213Z Build Date: 2025-07-11T20:04:25Z +2025-07-23T19:28:54.5281150Z ##[endgroup] +2025-07-23T19:28:54.5281895Z ##[group]Operating System +2025-07-23T19:28:54.5282825Z Ubuntu +2025-07-23T19:28:54.5283588Z 24.04.2 +2025-07-23T19:28:54.5284242Z LTS +2025-07-23T19:28:54.5285101Z ##[endgroup] +2025-07-23T19:28:54.5285868Z ##[group]Runner Image +2025-07-23T19:28:54.5286701Z Image: ubuntu-24.04 +2025-07-23T19:28:54.5287399Z Version: 20250720.1.0 +2025-07-23T19:28:54.5289402Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md +2025-07-23T19:28:54.5291981Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 +2025-07-23T19:28:54.5293818Z ##[endgroup] +2025-07-23T19:28:54.5297995Z ##[group]GITHUB_TOKEN Permissions +2025-07-23T19:28:54.5301381Z Actions: write +2025-07-23T19:28:54.5302142Z Attestations: write +2025-07-23T19:28:54.5303027Z Checks: write +2025-07-23T19:28:54.5303879Z Contents: write +2025-07-23T19:28:54.5304737Z Deployments: write +2025-07-23T19:28:54.5305560Z Discussions: write +2025-07-23T19:28:54.5306537Z Issues: write +2025-07-23T19:28:54.5307359Z Metadata: read +2025-07-23T19:28:54.5308425Z Models: read +2025-07-23T19:28:54.5309517Z Packages: write +2025-07-23T19:28:54.5310358Z Pages: write +2025-07-23T19:28:54.5311221Z PullRequests: write +2025-07-23T19:28:54.5312239Z RepositoryProjects: write +2025-07-23T19:28:54.5313222Z SecurityEvents: write +2025-07-23T19:28:54.5314227Z Statuses: write +2025-07-23T19:28:54.5315275Z ##[endgroup] +2025-07-23T19:28:54.5318293Z Secret source: Actions +2025-07-23T19:28:54.5319352Z Prepare workflow directory +2025-07-23T19:28:54.5782198Z Prepare all required actions +2025-07-23T19:28:54.5837140Z Getting action download info +2025-07-23T19:28:54.8949236Z ##[group]Download immutable action package 'actions/checkout@v4' +2025-07-23T19:28:54.8950366Z Version: 4.2.2 +2025-07-23T19:28:54.8951367Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 +2025-07-23T19:28:54.8952532Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 +2025-07-23T19:28:54.8953291Z ##[endgroup] +2025-07-23T19:28:54.9874301Z ##[group]Download immutable action package 'actions/setup-go@v5' +2025-07-23T19:28:54.9875047Z Version: 5.5.0 +2025-07-23T19:28:54.9875777Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb +2025-07-23T19:28:54.9876771Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 +2025-07-23T19:28:54.9877477Z ##[endgroup] +2025-07-23T19:28:55.3208645Z Complete job name: Golang Unit Tests (ubuntu-latest) +2025-07-23T19:28:55.3815760Z ##[group]Run actions/checkout@v4 +2025-07-23T19:28:55.3816649Z with: +2025-07-23T19:28:55.3817045Z repository: ava-labs/coreth +2025-07-23T19:28:55.3817684Z token: *** +2025-07-23T19:28:55.3818071Z ssh-strict: true +2025-07-23T19:28:55.3818637Z ssh-user: git +2025-07-23T19:28:55.3819114Z persist-credentials: true +2025-07-23T19:28:55.3819554Z clean: true +2025-07-23T19:28:55.3819945Z sparse-checkout-cone-mode: true +2025-07-23T19:28:55.3820408Z fetch-depth: 1 +2025-07-23T19:28:55.3820793Z fetch-tags: false +2025-07-23T19:28:55.3821193Z show-progress: true +2025-07-23T19:28:55.3821600Z lfs: false +2025-07-23T19:28:55.3821966Z submodules: false +2025-07-23T19:28:55.3822374Z set-safe-directory: true +2025-07-23T19:28:55.3823073Z ##[endgroup] +2025-07-23T19:28:55.4877703Z Syncing repository: ava-labs/coreth +2025-07-23T19:28:55.4879732Z ##[group]Getting Git version info +2025-07-23T19:28:55.4880407Z Working directory is '/home/runner/work/coreth/coreth' +2025-07-23T19:28:55.4881364Z [command]/usr/bin/git version +2025-07-23T19:28:55.4927701Z git version 2.50.1 +2025-07-23T19:28:55.4960825Z ##[endgroup] +2025-07-23T19:28:55.4971467Z Temporarily overriding HOME='/home/runner/work/_temp/befb0eca-fb3f-4a02-a4de-d1960c4d6cff' before making global git config changes +2025-07-23T19:28:55.4974327Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:28:55.4976318Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:28:55.5010672Z Deleting the contents of '/home/runner/work/coreth/coreth' +2025-07-23T19:28:55.5014201Z ##[group]Initializing the repository +2025-07-23T19:28:55.5017783Z [command]/usr/bin/git init /home/runner/work/coreth/coreth +2025-07-23T19:28:55.5077762Z hint: Using 'master' as the name for the initial branch. This default branch name +2025-07-23T19:28:55.5079568Z hint: is subject to change. To configure the initial branch name to use in all +2025-07-23T19:28:55.5081032Z hint: of your new repositories, which will suppress this warning, call: +2025-07-23T19:28:55.5082106Z hint: +2025-07-23T19:28:55.5082633Z hint: git config --global init.defaultBranch +2025-07-23T19:28:55.5083216Z hint: +2025-07-23T19:28:55.5083746Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2025-07-23T19:28:55.5084625Z hint: 'development'. The just-created branch can be renamed via this command: +2025-07-23T19:28:55.5085301Z hint: +2025-07-23T19:28:55.5085753Z hint: git branch -m +2025-07-23T19:28:55.5086456Z hint: +2025-07-23T19:28:55.5087137Z hint: Disable this message with "git config set advice.defaultBranchName false" +2025-07-23T19:28:55.5088055Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ +2025-07-23T19:28:55.5091700Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth +2025-07-23T19:28:55.5122145Z ##[endgroup] +2025-07-23T19:28:55.5123364Z ##[group]Disabling automatic garbage collection +2025-07-23T19:28:55.5125782Z [command]/usr/bin/git config --local gc.auto 0 +2025-07-23T19:28:55.5156349Z ##[endgroup] +2025-07-23T19:28:55.5157505Z ##[group]Setting up auth +2025-07-23T19:28:55.5163557Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:28:55.5194699Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:28:55.5476802Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:28:55.5508068Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:28:55.5751500Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2025-07-23T19:28:55.5797134Z ##[endgroup] +2025-07-23T19:28:55.5798428Z ##[group]Fetching the repository +2025-07-23T19:28:55.5807814Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge +2025-07-23T19:28:56.1034441Z From https://github.com/ava-labs/coreth +2025-07-23T19:28:56.1036216Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge +2025-07-23T19:28:56.1061375Z ##[endgroup] +2025-07-23T19:28:56.1062665Z ##[group]Determining the checkout info +2025-07-23T19:28:56.1064165Z ##[endgroup] +2025-07-23T19:28:56.1069065Z [command]/usr/bin/git sparse-checkout disable +2025-07-23T19:28:56.1107321Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig +2025-07-23T19:28:56.1136125Z ##[group]Checking out the ref +2025-07-23T19:28:56.1140633Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge +2025-07-23T19:28:56.2232988Z Note: switching to 'refs/remotes/pull/1065/merge'. +2025-07-23T19:28:56.2234404Z +2025-07-23T19:28:56.2235239Z You are in 'detached HEAD' state. You can look around, make experimental +2025-07-23T19:28:56.2237323Z changes and commit them, and you can discard any commits you make in this +2025-07-23T19:28:56.2239506Z state without impacting any branches by switching back to a branch. +2025-07-23T19:28:56.2240224Z +2025-07-23T19:28:56.2240759Z If you want to create a new branch to retain commits you create, you may +2025-07-23T19:28:56.2242117Z do so (now or later) by using -c with the switch command. Example: +2025-07-23T19:28:56.2243016Z +2025-07-23T19:28:56.2243321Z git switch -c +2025-07-23T19:28:56.2243766Z +2025-07-23T19:28:56.2244075Z Or undo this operation with: +2025-07-23T19:28:56.2244518Z +2025-07-23T19:28:56.2244779Z git switch - +2025-07-23T19:28:56.2245164Z +2025-07-23T19:28:56.2245741Z Turn off this advice by setting config variable advice.detachedHead to false +2025-07-23T19:28:56.2246739Z +2025-07-23T19:28:56.2247809Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 +2025-07-23T19:28:56.2251133Z ##[endgroup] +2025-07-23T19:28:56.2281515Z [command]/usr/bin/git log -1 --format=%H +2025-07-23T19:28:56.2303799Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 +2025-07-23T19:28:56.2600398Z ##[group]Run actions/setup-go@v5 +2025-07-23T19:28:56.2601458Z with: +2025-07-23T19:28:56.2602263Z go-version-file: go.mod +2025-07-23T19:28:56.2603208Z check-latest: false +2025-07-23T19:28:56.2604372Z token: *** +2025-07-23T19:28:56.2605181Z cache: true +2025-07-23T19:28:56.2605991Z ##[endgroup] +2025-07-23T19:28:56.4204742Z Setup go version spec 1.23.9 +2025-07-23T19:28:56.4215898Z Attempting to download 1.23.9... +2025-07-23T19:28:56.7474914Z matching 1.23.9... +2025-07-23T19:28:56.7515887Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz +2025-07-23T19:28:57.2963261Z Extracting Go... +2025-07-23T19:28:57.3063045Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/2608b46e-5bc4-41b4-861d-ee2edbf1ffd4 -f /home/runner/work/_temp/f2203187-69d5-475d-85d1-f2452dbefc33 +2025-07-23T19:28:58.9504010Z Successfully extracted go to /home/runner/work/_temp/2608b46e-5bc4-41b4-861d-ee2edbf1ffd4 +2025-07-23T19:28:58.9504826Z Adding to the cache ... +2025-07-23T19:29:03.1923301Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 +2025-07-23T19:29:03.1924873Z Added go to the path +2025-07-23T19:29:03.1927787Z Successfully set up Go version 1.23.9 +2025-07-23T19:29:03.2123181Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:29:03.2149939Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:29:03.2178000Z /home/runner/go/pkg/mod +2025-07-23T19:29:03.2193316Z /home/runner/.cache/go-build +2025-07-23T19:29:03.3457896Z Cache hit for: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:04.3870363Z Received 192937984 of 743127682 (26.0%), 182.5 MBs/sec +2025-07-23T19:29:05.3882761Z Received 402653184 of 743127682 (54.2%), 191.0 MBs/sec +2025-07-23T19:29:06.3884947Z Received 658505728 of 743127682 (88.6%), 208.6 MBs/sec +2025-07-23T19:29:06.8440674Z Received 743127682 of 743127682 (100.0%), 204.5 MBs/sec +2025-07-23T19:29:06.8442574Z Cache Size: ~709 MB (743127682 B) +2025-07-23T19:29:06.8564849Z [command]/usr/bin/tar -xf /home/runner/work/_temp/ec881acd-ae8f-4528-804a-8272d685508f/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd +2025-07-23T19:29:14.1899879Z Cache restored successfully +2025-07-23T19:29:14.3280131Z Cache restored from key: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:14.3303709Z go version go1.23.9 linux/amd64 +2025-07-23T19:29:14.3304005Z +2025-07-23T19:29:14.3304400Z ##[group]go env +2025-07-23T19:29:14.4781906Z GO111MODULE='' +2025-07-23T19:29:14.4782310Z GOARCH='amd64' +2025-07-23T19:29:14.4782715Z GOBIN='' +2025-07-23T19:29:14.4783063Z GOCACHE='/home/runner/.cache/go-build' +2025-07-23T19:29:14.4783541Z GOENV='/home/runner/.config/go/env' +2025-07-23T19:29:14.4784535Z GOEXE='' +2025-07-23T19:29:14.4784810Z GOEXPERIMENT='' +2025-07-23T19:29:14.4785111Z GOFLAGS='' +2025-07-23T19:29:14.4785452Z GOHOSTARCH='amd64' +2025-07-23T19:29:14.4785747Z GOHOSTOS='linux' +2025-07-23T19:29:14.4786041Z GOINSECURE='' +2025-07-23T19:29:14.4786372Z GOMODCACHE='/home/runner/go/pkg/mod' +2025-07-23T19:29:14.4786763Z GONOPROXY='' +2025-07-23T19:29:14.4787046Z GONOSUMDB='' +2025-07-23T19:29:14.4787747Z GOOS='linux' +2025-07-23T19:29:14.4788055Z GOPATH='/home/runner/go' +2025-07-23T19:29:14.4788852Z GOPRIVATE='' +2025-07-23T19:29:14.4789378Z GOPROXY='https://proxy.golang.org,direct' +2025-07-23T19:29:14.4789871Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' +2025-07-23T19:29:14.4790309Z GOSUMDB='sum.golang.org' +2025-07-23T19:29:14.4790637Z GOTMPDIR='' +2025-07-23T19:29:14.4790914Z GOTOOLCHAIN='auto' +2025-07-23T19:29:14.4791409Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' +2025-07-23T19:29:14.4791939Z GOVCS='' +2025-07-23T19:29:14.4792216Z GOVERSION='go1.23.9' +2025-07-23T19:29:14.4792526Z GODEBUG='' +2025-07-23T19:29:14.4792807Z GOTELEMETRY='local' +2025-07-23T19:29:14.4793728Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' +2025-07-23T19:29:14.4794239Z GCCGO='gccgo' +2025-07-23T19:29:14.4794531Z GOAMD64='v1' +2025-07-23T19:29:14.4794803Z AR='ar' +2025-07-23T19:29:14.4795052Z CC='gcc' +2025-07-23T19:29:14.4795302Z CXX='g++' +2025-07-23T19:29:14.4795568Z CGO_ENABLED='1' +2025-07-23T19:29:14.4795925Z GOMOD='/home/runner/work/coreth/coreth/go.mod' +2025-07-23T19:29:14.4796332Z GOWORK='' +2025-07-23T19:29:14.4796630Z CGO_CFLAGS='-O2 -g' +2025-07-23T19:29:14.4796925Z CGO_CPPFLAGS='' +2025-07-23T19:29:14.4797231Z CGO_CXXFLAGS='-O2 -g' +2025-07-23T19:29:14.4797566Z CGO_FFLAGS='-O2 -g' +2025-07-23T19:29:14.4797885Z CGO_LDFLAGS='-O2 -g' +2025-07-23T19:29:14.4798404Z PKG_CONFIG='pkg-config' +2025-07-23T19:29:14.4799408Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build2181527828=/tmp/go-build -gno-record-gcc-switches' +2025-07-23T19:29:14.4800242Z +2025-07-23T19:29:14.4800688Z ##[endgroup] +2025-07-23T19:29:14.4963412Z ##[group]Run go mod download +2025-07-23T19:29:14.4963737Z go mod download +2025-07-23T19:29:14.4997129Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:14.4997392Z ##[endgroup] +2025-07-23T19:29:14.5786106Z ##[group]Run ./scripts/run_task.sh check-generate-codec +2025-07-23T19:29:14.5786604Z ./scripts/run_task.sh check-generate-codec +2025-07-23T19:29:14.5815194Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:14.5815488Z ##[endgroup] +2025-07-23T19:29:15.5306193Z task: [generate-codec] grep -lr -E '^// Code generated by github\.com\/fjl\/gencodec\. DO NOT EDIT\.$' . | xargs -r rm +2025-07-23T19:29:15.5465334Z task: [generate-codec] go generate -run "github.com/fjl/gencodec" ./... +2025-07-23T19:29:22.5040222Z task: [check-clean-branch] git add --all +2025-07-23T19:29:22.5624823Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null +2025-07-23T19:29:22.5675815Z task: [check-clean-branch] git status --short +2025-07-23T19:29:22.5744426Z task: [check-clean-branch] git diff-index --quiet HEAD +2025-07-23T19:29:22.5877803Z ##[group]Run ./scripts/run_task.sh check-generate-mocks +2025-07-23T19:29:22.5878916Z ./scripts/run_task.sh check-generate-mocks +2025-07-23T19:29:22.5907658Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:22.5907897Z ##[endgroup] +2025-07-23T19:29:23.0134018Z task: [generate-mocks] grep -lr -E '^// Code generated by MockGen\. DO NOT EDIT\.$' . | xargs -r rm +2025-07-23T19:29:23.0278741Z task: [generate-mocks] go generate -run "go.uber.org/mock/mockgen" ./... +2025-07-23T19:29:29.6979971Z task: [check-clean-branch] git add --all +2025-07-23T19:29:29.7052595Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null +2025-07-23T19:29:29.7094214Z task: [check-clean-branch] git status --short +2025-07-23T19:29:29.7166319Z task: [check-clean-branch] git diff-index --quiet HEAD +2025-07-23T19:29:29.7295412Z ##[group]Run ./scripts/run_task.sh build +2025-07-23T19:29:29.7295750Z ./scripts/run_task.sh build +2025-07-23T19:29:29.7324580Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:29.7324812Z ##[endgroup] +2025-07-23T19:29:30.1577584Z task: [build] ./scripts/build.sh +2025-07-23T19:29:30.1786104Z Using branch: d85ec03 +2025-07-23T19:29:30.1802864Z Building Coreth @ GitCommit: d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 at /home/runner/.avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy +2025-07-23T19:29:58.0660332Z ##[group]Run ./scripts/run_task.sh build-test +2025-07-23T19:29:58.0660673Z ./scripts/run_task.sh build-test +2025-07-23T19:29:58.0687872Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:58.0688318Z env: +2025-07-23T19:29:58.0688536Z TIMEOUT: +2025-07-23T19:29:58.0688704Z ##[endgroup] +2025-07-23T19:29:58.4778625Z task: [build-test] ./scripts/build_test.sh +2025-07-23T19:29:58.4899334Z Using branch: d85ec03 +2025-07-23T19:29:58.8779073Z Test run 1 of 4 +2025-07-23T19:29:58.8779460Z Getting expected test list... +2025-07-23T19:30:07.3925272Z Expected tests: 1 tests +2025-07-23T19:30:07.3925741Z Running tests... +2025-07-23T19:39:13.6360052Z All tests passed! +2025-07-23T19:39:13.6480554Z ##[group]Run ./scripts/run_task.sh coverage +2025-07-23T19:39:13.6480882Z ./scripts/run_task.sh coverage +2025-07-23T19:39:13.6530840Z shell: /usr/bin/bash -e {0} +2025-07-23T19:39:13.6531065Z ##[endgroup] +2025-07-23T19:39:14.4956661Z task: [coverage] ./scripts/coverage.sh +2025-07-23T19:39:14.9509400Z Current test coverage : 0.0 +2025-07-23T19:39:14.9510022Z 60.0 % +2025-07-23T19:39:14.9510751Z ======================================== +2025-07-23T19:39:15.3914591Z github.com/ava-labs/coreth/accounts/abi/abi.go:59: JSON 100.0% +2025-07-23T19:39:15.3915393Z github.com/ava-labs/coreth/accounts/abi/abi.go:74: Pack 91.7% +2025-07-23T19:39:15.3916224Z github.com/ava-labs/coreth/accounts/abi/abi.go:103: PackEvent 81.8% +2025-07-23T19:39:15.3917076Z github.com/ava-labs/coreth/accounts/abi/abi.go:147: PackOutput 71.4% +2025-07-23T19:39:15.3917981Z github.com/ava-labs/coreth/accounts/abi/abi.go:162: getInputs 80.0% +2025-07-23T19:39:15.3918921Z github.com/ava-labs/coreth/accounts/abi/abi.go:182: getArguments 90.0% +2025-07-23T19:39:15.3919433Z github.com/ava-labs/coreth/accounts/abi/abi.go:205: UnpackInput 0.0% +2025-07-23T19:39:15.3920146Z github.com/ava-labs/coreth/accounts/abi/abi.go:214: Unpack 75.0% +2025-07-23T19:39:15.3921105Z github.com/ava-labs/coreth/accounts/abi/abi.go:228: UnpackInputIntoInterface 85.7% +2025-07-23T19:39:15.3922203Z github.com/ava-labs/coreth/accounts/abi/abi.go:243: UnpackIntoInterface 85.7% +2025-07-23T19:39:15.3923165Z github.com/ava-labs/coreth/accounts/abi/abi.go:256: UnpackIntoMap 100.0% +2025-07-23T19:39:15.3924122Z github.com/ava-labs/coreth/accounts/abi/abi.go:265: UnmarshalJSON 85.7% +2025-07-23T19:39:15.3925014Z github.com/ava-labs/coreth/accounts/abi/abi.go:330: MethodById 100.0% +2025-07-23T19:39:15.3925881Z github.com/ava-labs/coreth/accounts/abi/abi.go:344: EventByID 100.0% +2025-07-23T19:39:15.3926748Z github.com/ava-labs/coreth/accounts/abi/abi.go:355: ErrorByID 100.0% +2025-07-23T19:39:15.3927599Z github.com/ava-labs/coreth/accounts/abi/abi.go:365: HasFallback 100.0% +2025-07-23T19:39:15.3928630Z github.com/ava-labs/coreth/accounts/abi/abi.go:370: HasReceive 100.0% +2025-07-23T19:39:15.3929483Z github.com/ava-labs/coreth/accounts/abi/abi.go:402: UnpackRevert 81.8% +2025-07-23T19:39:15.3930957Z github.com/ava-labs/coreth/accounts/abi/argument.go:57: UnmarshalJSON 90.0% +2025-07-23T19:39:15.3931899Z github.com/ava-labs/coreth/accounts/abi/argument.go:75: NonIndexed 100.0% +2025-07-23T19:39:15.3932757Z github.com/ava-labs/coreth/accounts/abi/argument.go:86: isTuple 100.0% +2025-07-23T19:39:15.3933576Z github.com/ava-labs/coreth/accounts/abi/argument.go:91: Unpack 100.0% +2025-07-23T19:39:15.3934456Z github.com/ava-labs/coreth/accounts/abi/argument.go:102: UnpackIntoMap 58.3% +2025-07-23T19:39:15.3935352Z github.com/ava-labs/coreth/accounts/abi/argument.go:124: Copy 77.8% +2025-07-23T19:39:15.3936643Z github.com/ava-labs/coreth/accounts/abi/argument.go:142: copyAtomic 100.0% +2025-07-23T19:39:15.3937506Z github.com/ava-labs/coreth/accounts/abi/argument.go:153: copyTuple 95.7% +2025-07-23T19:39:15.3938604Z github.com/ava-labs/coreth/accounts/abi/argument.go:195: UnpackValues 100.0% +2025-07-23T19:39:15.3939528Z github.com/ava-labs/coreth/accounts/abi/argument.go:228: PackValues 0.0% +2025-07-23T19:39:15.3940338Z github.com/ava-labs/coreth/accounts/abi/argument.go:233: Pack 100.0% +2025-07-23T19:39:15.3941243Z github.com/ava-labs/coreth/accounts/abi/argument.go:276: ToCamelCase 100.0% +2025-07-23T19:39:15.3942101Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:56: NewTransactor 0.0% +2025-07-23T19:39:15.3943064Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:73: NewKeyStoreTransactor 0.0% +2025-07-23T19:39:15.3944124Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:96: NewKeyedTransactor 0.0% +2025-07-23T19:39:15.3945508Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:118: NewTransactorWithChainID 0.0% +2025-07-23T19:39:15.3946765Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:132: NewKeyStoreTransactorWithChainID 0.0% +2025-07-23T19:39:15.3947987Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:155: NewKeyedTransactorWithChainID 72.7% +2025-07-23T19:39:15.3949251Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:179: NewClefTransactor 0.0% +2025-07-23T19:39:15.3950327Z github.com/ava-labs/coreth/accounts/abi/bind/backends/simulated.go:67: Fork 0.0% +2025-07-23T19:39:15.3951407Z github.com/ava-labs/coreth/accounts/abi/bind/backends/simulated.go:78: NewSimulatedBackend 0.0% +2025-07-23T19:39:15.3951995Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:128: GetAbi 0.0% +2025-07-23T19:39:15.3952523Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:155: NewBoundContract 100.0% +2025-07-23T19:39:15.3953086Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:167: DeployContract 77.8% +2025-07-23T19:39:15.3953599Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:187: Call 100.0% +2025-07-23T19:39:15.3954098Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:265: Transact 75.0% +2025-07-23T19:39:15.3954597Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:278: RawTransact 0.0% +2025-07-23T19:39:15.3955111Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:286: Transfer 0.0% +2025-07-23T19:39:15.3955650Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:294: wrapNativeAssetCall 83.3% +2025-07-23T19:39:15.3956214Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:324: createDynamicTx 84.0% +2025-07-23T19:39:15.3956772Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:376: createLegacyTx 81.8% +2025-07-23T19:39:15.3957311Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:419: estimateGasLimit 71.4% +2025-07-23T19:39:15.3957845Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:440: getNonce 75.0% +2025-07-23T19:39:15.3958693Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:451: transact 66.7% +2025-07-23T19:39:15.3959614Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:502: FilterLogs 0.0% +2025-07-23T19:39:15.3960516Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:551: WatchLogs 0.0% +2025-07-23T19:39:15.3961392Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:581: UnpackLog 0.0% +2025-07-23T19:39:15.3962305Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:604: UnpackLogIntoMap 83.3% +2025-07-23T19:39:15.3963021Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:628: ensureContext 100.0% +2025-07-23T19:39:15.3963543Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:54: isKeyWord 100.0% +2025-07-23T19:39:15.3964026Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:95: Bind 92.2% +2025-07-23T19:39:15.3964544Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:323: bindBasicTypeGo 100.0% +2025-07-23T19:39:15.3965269Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:349: bindTypeGo 100.0% +2025-07-23T19:39:15.3966168Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:370: bindTopicTypeGo 100.0% +2025-07-23T19:39:15.3967452Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:394: bindStructTypeGo 100.0% +2025-07-23T19:39:15.3968023Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:445: alias 100.0% +2025-07-23T19:39:15.3968935Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:462: decapitalise 75.0% +2025-07-23T19:39:15.3969545Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:473: structured 100.0% +2025-07-23T19:39:15.3970089Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:496: hasStruct 100.0% +2025-07-23T19:39:15.3970588Z github.com/ava-labs/coreth/accounts/abi/bind/util.go:43: WaitMined 91.7% +2025-07-23T19:39:15.3971092Z github.com/ava-labs/coreth/accounts/abi/bind/util.go:71: WaitDeployed 90.9% +2025-07-23T19:39:15.3971766Z github.com/ava-labs/coreth/accounts/abi/error.go:54: NewError 92.9% +2025-07-23T19:39:15.3972235Z github.com/ava-labs/coreth/accounts/abi/error.go:91: String 100.0% +2025-07-23T19:39:15.3972695Z github.com/ava-labs/coreth/accounts/abi/error.go:95: Unpack 0.0% +2025-07-23T19:39:15.3973222Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:50: formatSliceString 66.7% +2025-07-23T19:39:15.3973802Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:59: sliceTypeCheck 90.0% +2025-07-23T19:39:15.3974346Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:82: typeCheck 100.0% +2025-07-23T19:39:15.3974876Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:98: typeErr 100.0% +2025-07-23T19:39:15.3975376Z github.com/ava-labs/coreth/accounts/abi/event.go:73: NewEvent 100.0% +2025-07-23T19:39:15.3975851Z github.com/ava-labs/coreth/accounts/abi/event.go:112: String 100.0% +2025-07-23T19:39:15.3976335Z github.com/ava-labs/coreth/accounts/abi/method.go:105: NewMethod 100.0% +2025-07-23T19:39:15.3976960Z github.com/ava-labs/coreth/accounts/abi/method.go:164: String 100.0% +2025-07-23T19:39:15.3977491Z github.com/ava-labs/coreth/accounts/abi/method.go:169: IsConstant 0.0% +2025-07-23T19:39:15.3978056Z github.com/ava-labs/coreth/accounts/abi/method.go:175: IsPayable 0.0% +2025-07-23T19:39:15.3978800Z github.com/ava-labs/coreth/accounts/abi/pack.go:42: packBytesSlice 100.0% +2025-07-23T19:39:15.3979406Z github.com/ava-labs/coreth/accounts/abi/pack.go:49: packElement 83.3% +2025-07-23T19:39:15.3979970Z github.com/ava-labs/coreth/accounts/abi/pack.go:85: packNum 80.0% +2025-07-23T19:39:15.3980480Z github.com/ava-labs/coreth/accounts/abi/reflect.go:52: ConvertType 83.3% +2025-07-23T19:39:15.3981076Z github.com/ava-labs/coreth/accounts/abi/reflect.go:66: indirect 100.0% +2025-07-23T19:39:15.3981696Z github.com/ava-labs/coreth/accounts/abi/reflect.go:75: reflectIntType 100.0% +2025-07-23T19:39:15.3982298Z github.com/ava-labs/coreth/accounts/abi/reflect.go:103: mustArrayToByteSlice 100.0% +2025-07-23T19:39:15.3982882Z github.com/ava-labs/coreth/accounts/abi/reflect.go:113: set 100.0% +2025-07-23T19:39:15.3983450Z github.com/ava-labs/coreth/accounts/abi/reflect.go:137: setSlice 75.0% +2025-07-23T19:39:15.3984021Z github.com/ava-labs/coreth/accounts/abi/reflect.go:151: setArray 84.6% +2025-07-23T19:39:15.3984504Z github.com/ava-labs/coreth/accounts/abi/reflect.go:172: setStruct 75.0% +2025-07-23T19:39:15.3985156Z github.com/ava-labs/coreth/accounts/abi/reflect.go:195: mapArgNamesToStructFields 100.0% +2025-07-23T19:39:15.3985795Z github.com/ava-labs/coreth/accounts/abi/topics.go:45: packTopic 96.4% +2025-07-23T19:39:15.3986334Z github.com/ava-labs/coreth/accounts/abi/topics.go:111: PackTopics 85.7% +2025-07-23T19:39:15.3986868Z github.com/ava-labs/coreth/accounts/abi/topics.go:125: MakeTopics 87.5% +2025-07-23T19:39:15.3987638Z github.com/ava-labs/coreth/accounts/abi/topics.go:139: genIntType 100.0% +2025-07-23T19:39:15.3988471Z github.com/ava-labs/coreth/accounts/abi/topics.go:153: ParseTopics 100.0% +2025-07-23T19:39:15.3989117Z github.com/ava-labs/coreth/accounts/abi/topics.go:162: ParseTopicsIntoMap 100.0% +2025-07-23T19:39:15.3989792Z github.com/ava-labs/coreth/accounts/abi/topics.go:174: parseTopicWithSetter 95.0% +2025-07-23T19:39:15.3990339Z github.com/ava-labs/coreth/accounts/abi/type.go:81: NewType 93.1% +2025-07-23T19:39:15.3990879Z github.com/ava-labs/coreth/accounts/abi/type.go:239: GetType 80.0% +2025-07-23T19:39:15.3991431Z github.com/ava-labs/coreth/accounts/abi/type.go:275: String 100.0% +2025-07-23T19:39:15.3991894Z github.com/ava-labs/coreth/accounts/abi/type.go:279: pack 90.9% +2025-07-23T19:39:15.3992501Z github.com/ava-labs/coreth/accounts/abi/type.go:362: requiresLengthPrefix 100.0% +2025-07-23T19:39:15.3993287Z github.com/ava-labs/coreth/accounts/abi/type.go:373: isDynamicType 100.0% +2025-07-23T19:39:15.3993910Z github.com/ava-labs/coreth/accounts/abi/type.go:393: getTypeSize 100.0% +2025-07-23T19:39:15.3994449Z github.com/ava-labs/coreth/accounts/abi/type.go:412: isLetter 100.0% +2025-07-23T19:39:15.3995005Z github.com/ava-labs/coreth/accounts/abi/type.go:423: isValidFieldName 66.7% +2025-07-23T19:39:15.3995613Z github.com/ava-labs/coreth/accounts/abi/unpack.go:49: ReadInteger 100.0% +2025-07-23T19:39:15.3996208Z github.com/ava-labs/coreth/accounts/abi/unpack.go:119: readBool 100.0% +2025-07-23T19:39:15.3996723Z github.com/ava-labs/coreth/accounts/abi/unpack.go:138: readFunctionType 66.7% +2025-07-23T19:39:15.3997359Z github.com/ava-labs/coreth/accounts/abi/unpack.go:151: ReadFixedBytes 80.0% +2025-07-23T19:39:15.3997965Z github.com/ava-labs/coreth/accounts/abi/unpack.go:163: forEachUnpack 81.2% +2025-07-23T19:39:15.3998771Z github.com/ava-labs/coreth/accounts/abi/unpack.go:203: forTupleUnpack 83.3% +2025-07-23T19:39:15.3999375Z github.com/ava-labs/coreth/accounts/abi/unpack.go:235: toGoType 83.9% +2025-07-23T19:39:15.4000019Z github.com/ava-labs/coreth/accounts/abi/unpack.go:299: lengthPrefixPointsTo 94.1% +2025-07-23T19:39:15.4000572Z github.com/ava-labs/coreth/accounts/abi/unpack.go:329: tuplePointsTo 71.4% +2025-07-23T19:39:15.4001218Z github.com/ava-labs/coreth/accounts/abi/utils.go:43: ResolveNameConflict 100.0% +2025-07-23T19:39:15.4001822Z github.com/ava-labs/coreth/cmd/abigen/main.go:90: init 100.0% +2025-07-23T19:39:15.4002299Z github.com/ava-labs/coreth/cmd/abigen/main.go:106: abigen 0.0% +2025-07-23T19:39:15.4002787Z github.com/ava-labs/coreth/cmd/abigen/main.go:245: main 0.0% +2025-07-23T19:39:15.4003374Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:24: newNameFilter 100.0% +2025-07-23T19:39:15.4004233Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:38: add 100.0% +2025-07-23T19:39:15.4005077Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:57: Matches 100.0% +2025-07-23T19:39:15.4006019Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:53: BuildConfig 0.0% +2025-07-23T19:39:15.4007003Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:86: BuildViper 0.0% +2025-07-23T19:39:15.4007995Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:109: BuildFlagSet 0.0% +2025-07-23T19:39:15.4009583Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:115: addSimulatorFlags 0.0% +2025-07-23T19:39:15.4010549Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:22: CreateKey 0.0% +2025-07-23T19:39:15.4011350Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:27: Load 0.0% +2025-07-23T19:39:15.4012152Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:36: LoadAll 0.0% +2025-07-23T19:39:15.4012942Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:73: Save 0.0% +2025-07-23T19:39:15.4013922Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:79: Generate 0.0% +2025-07-23T19:39:15.4014868Z github.com/ava-labs/coreth/cmd/simulator/load/funder.go:25: DistributeFunds 0.0% +2025-07-23T19:39:15.4015800Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:46: New 0.0% +2025-07-23T19:39:15.4016681Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:60: Execute 0.0% +2025-07-23T19:39:15.4017626Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:89: ConfirmReachedTip 0.0% +2025-07-23T19:39:15.4018703Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:125: ExecuteLoader 0.0% +2025-07-23T19:39:15.4019703Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:30: NewSingleAddressTxWorker 0.0% +2025-07-23T19:39:15.4020664Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:50: NewTxReceiptWorker 0.0% +2025-07-23T19:39:15.4021587Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:67: IssueTx 0.0% +2025-07-23T19:39:15.4022543Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:71: ConfirmTx 0.0% +2025-07-23T19:39:15.4023099Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:78: confirmTxByNonce 0.0% +2025-07-23T19:39:15.4023677Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:103: confirmTxByReceipt 0.0% +2025-07-23T19:39:15.4024246Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:120: LatestHeight 0.0% +2025-07-23T19:39:15.4024958Z github.com/ava-labs/coreth/cmd/simulator/main/main.go:19: main 0.0% +2025-07-23T19:39:15.4025932Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:29: NewDefaultMetrics 0.0% +2025-07-23T19:39:15.4026969Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:35: NewMetrics 0.0% +2025-07-23T19:39:15.4027947Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:68: Serve 0.0% +2025-07-23T19:39:15.4028990Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:106: Shutdown 0.0% +2025-07-23T19:39:15.4029549Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:111: Print 0.0% +2025-07-23T19:39:15.4030088Z github.com/ava-labs/coreth/cmd/simulator/txs/agent.go:51: NewIssueNAgent 0.0% +2025-07-23T19:39:15.4030603Z github.com/ava-labs/coreth/cmd/simulator/txs/agent.go:61: Execute 0.0% +2025-07-23T19:39:15.4031152Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:20: GenerateTxSequence 0.0% +2025-07-23T19:39:15.4031764Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:43: GenerateTxSequences 0.0% +2025-07-23T19:39:15.4032334Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:55: addTxs 0.0% +2025-07-23T19:39:15.4032936Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:76: ConvertTxSliceToSequence 0.0% +2025-07-23T19:39:15.4033521Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:88: Chan 0.0% +2025-07-23T19:39:15.4033997Z github.com/ava-labs/coreth/cmd/utils/cmd.go:33: Fatalf 0.0% +2025-07-23T19:39:15.4034466Z github.com/ava-labs/coreth/cmd/utils/flags.go:33: CheckExclusive 0.0% +2025-07-23T19:39:15.4034988Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:81: NewDummyEngine 0.0% +2025-07-23T19:39:15.4035527Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:95: NewETHFaker 0.0% +2025-07-23T19:39:15.4036054Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:102: NewFaker 100.0% +2025-07-23T19:39:15.4036609Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:108: NewFakerWithClock 0.0% +2025-07-23T19:39:15.4037208Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:115: NewFakerWithCallbacks 0.0% +2025-07-23T19:39:15.4037791Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:122: NewFakerWithMode 0.0% +2025-07-23T19:39:15.4038621Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:130: NewFakerWithModeAndClock 0.0% +2025-07-23T19:39:15.4039225Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:137: NewCoinbaseFaker 0.0% +2025-07-23T19:39:15.4039953Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:144: NewFullFaker 0.0% +2025-07-23T19:39:15.4040523Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:151: verifyHeaderGasFields 0.0% +2025-07-23T19:39:15.4041100Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:203: verifyHeader 0.0% +2025-07-23T19:39:15.4041626Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:263: Author 0.0% +2025-07-23T19:39:15.4042143Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:267: VerifyHeader 0.0% +2025-07-23T19:39:15.4042673Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:285: VerifyUncles 0.0% +2025-07-23T19:39:15.4043200Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:292: Prepare 0.0% +2025-07-23T19:39:15.4043741Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:297: verifyBlockFee 81.0% +2025-07-23T19:39:15.4044383Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:367: Finalize 0.0% +2025-07-23T19:39:15.4044943Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:419: FinalizeAndAssemble 0.0% +2025-07-23T19:39:15.4045524Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:477: CalcDifficulty 0.0% +2025-07-23T19:39:15.4046054Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:481: Close 0.0% +2025-07-23T19:39:15.4046611Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:47: VerifyEIP4844Header 0.0% +2025-07-23T19:39:15.4047220Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:81: CalcExcessBlobGas 100.0% +2025-07-23T19:39:15.4047806Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:90: CalcBlobFee 100.0% +2025-07-23T19:39:15.4048729Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:96: fakeExponential 100.0% +2025-07-23T19:39:15.4049308Z github.com/ava-labs/coreth/core/block_validator.go:53: NewBlockValidator 100.0% +2025-07-23T19:39:15.4049838Z github.com/ava-labs/coreth/core/block_validator.go:65: ValidateBody 62.5% +2025-07-23T19:39:15.4050355Z github.com/ava-labs/coreth/core/block_validator.go:122: ValidateState 66.7% +2025-07-23T19:39:15.4050862Z github.com/ava-labs/coreth/core/block_validator.go:150: CalcGasLimit 85.7% +2025-07-23T19:39:15.4051353Z github.com/ava-labs/coreth/core/blockchain.go:210: triedbConfig 90.0% +2025-07-23T19:39:15.4051893Z github.com/ava-labs/coreth/core/blockchain.go:260: DefaultCacheConfigWithScheme 100.0% +2025-07-23T19:39:15.4052429Z github.com/ava-labs/coreth/core/blockchain.go:385: NewBlockChain 81.8% +2025-07-23T19:39:15.4052993Z github.com/ava-labs/coreth/core/blockchain.go:507: writeBlockAcceptedIndices 66.7% +2025-07-23T19:39:15.4053556Z github.com/ava-labs/coreth/core/blockchain.go:518: batchBlockAcceptedIndices 80.0% +2025-07-23T19:39:15.4054085Z github.com/ava-labs/coreth/core/blockchain.go:529: flattenSnapshot 87.5% +2025-07-23T19:39:15.4054605Z github.com/ava-labs/coreth/core/blockchain.go:558: warmAcceptedCaches 84.2% +2025-07-23T19:39:15.4055106Z github.com/ava-labs/coreth/core/blockchain.go:595: startAcceptor 92.0% +2025-07-23T19:39:15.4055604Z github.com/ava-labs/coreth/core/blockchain.go:646: addAcceptorQueue 100.0% +2025-07-23T19:39:15.4056108Z github.com/ava-labs/coreth/core/blockchain.go:663: DrainAcceptorQueue 80.0% +2025-07-23T19:39:15.4056609Z github.com/ava-labs/coreth/core/blockchain.go:677: stopAcceptor 100.0% +2025-07-23T19:39:15.4057115Z github.com/ava-labs/coreth/core/blockchain.go:699: InitializeSnapshots 0.0% +2025-07-23T19:39:15.4057608Z github.com/ava-labs/coreth/core/blockchain.go:708: SenderCacher 0.0% +2025-07-23T19:39:15.4058263Z github.com/ava-labs/coreth/core/blockchain.go:714: loadLastState 81.8% +2025-07-23T19:39:15.4058778Z github.com/ava-labs/coreth/core/blockchain.go:762: loadGenesisState 90.0% +2025-07-23T19:39:15.4059399Z github.com/ava-labs/coreth/core/blockchain.go:780: Export 0.0% +2025-07-23T19:39:15.4059858Z github.com/ava-labs/coreth/core/blockchain.go:785: ExportN 0.0% +2025-07-23T19:39:15.4060328Z github.com/ava-labs/coreth/core/blockchain.go:792: ExportCallback 0.0% +2025-07-23T19:39:15.4060819Z github.com/ava-labs/coreth/core/blockchain.go:828: writeHeadBlock 87.5% +2025-07-23T19:39:15.4061340Z github.com/ava-labs/coreth/core/blockchain.go:847: ValidateCanonicalChain 66.7% +2025-07-23T19:39:15.4061867Z github.com/ava-labs/coreth/core/blockchain.go:956: stopWithoutSaving 100.0% +2025-07-23T19:39:15.4062344Z github.com/ava-labs/coreth/core/blockchain.go:988: Stop 100.0% +2025-07-23T19:39:15.4062813Z github.com/ava-labs/coreth/core/blockchain.go:1022: SetPreference 100.0% +2025-07-23T19:39:15.4063300Z github.com/ava-labs/coreth/core/blockchain.go:1034: setPreference 87.5% +2025-07-23T19:39:15.4063843Z github.com/ava-labs/coreth/core/blockchain.go:1060: LastConsensusAcceptedBlock 100.0% +2025-07-23T19:39:15.4064517Z github.com/ava-labs/coreth/core/blockchain.go:1071: LastAcceptedBlock 100.0% +2025-07-23T19:39:15.4065016Z github.com/ava-labs/coreth/core/blockchain.go:1083: Accept 84.6% +2025-07-23T19:39:15.4065466Z github.com/ava-labs/coreth/core/blockchain.go:1132: Reject 76.9% +2025-07-23T19:39:15.4065951Z github.com/ava-labs/coreth/core/blockchain.go:1162: writeKnownBlock 83.3% +2025-07-23T19:39:15.4066503Z github.com/ava-labs/coreth/core/blockchain.go:1175: writeCanonicalBlockWithLogs 100.0% +2025-07-23T19:39:15.4067033Z github.com/ava-labs/coreth/core/blockchain.go:1186: newTip 100.0% +2025-07-23T19:39:15.4067527Z github.com/ava-labs/coreth/core/blockchain.go:1195: writeBlockAndSetHead 83.3% +2025-07-23T19:39:15.4068067Z github.com/ava-labs/coreth/core/blockchain.go:1213: writeBlockWithState 61.1% +2025-07-23T19:39:15.4069010Z github.com/ava-labs/coreth/core/blockchain.go:1260: InsertChain 86.7% +2025-07-23T19:39:15.4069507Z github.com/ava-labs/coreth/core/blockchain.go:1296: InsertBlock 100.0% +2025-07-23T19:39:15.4070018Z github.com/ava-labs/coreth/core/blockchain.go:1300: InsertBlockManual 100.0% +2025-07-23T19:39:15.4070513Z github.com/ava-labs/coreth/core/blockchain.go:1311: insertBlock 88.7% +2025-07-23T19:39:15.4071027Z github.com/ava-labs/coreth/core/blockchain.go:1448: collectUnflattenedLogs 81.2% +2025-07-23T19:39:15.4071543Z github.com/ava-labs/coreth/core/blockchain.go:1477: collectLogs 100.0% +2025-07-23T19:39:15.4072007Z github.com/ava-labs/coreth/core/blockchain.go:1485: reorg 67.2% +2025-07-23T19:39:15.4072457Z github.com/ava-labs/coreth/core/blockchain.go:1642: String 75.0% +2025-07-23T19:39:15.4072912Z github.com/ava-labs/coreth/core/blockchain.go:1668: BadBlocks 0.0% +2025-07-23T19:39:15.4073376Z github.com/ava-labs/coreth/core/blockchain.go:1681: addBadBlock 100.0% +2025-07-23T19:39:15.4073856Z github.com/ava-labs/coreth/core/blockchain.go:1689: reportBlock 100.0% +2025-07-23T19:39:15.4074353Z github.com/ava-labs/coreth/core/blockchain.go:1705: reprocessBlock 77.8% +2025-07-23T19:39:15.4074850Z github.com/ava-labs/coreth/core/blockchain.go:1747: commitWithSnap 75.0% +2025-07-23T19:39:15.4075343Z github.com/ava-labs/coreth/core/blockchain.go:1783: initSnapshot 90.0% +2025-07-23T19:39:15.4075831Z github.com/ava-labs/coreth/core/blockchain.go:1814: reprocessState 83.1% +2025-07-23T19:39:15.4076334Z github.com/ava-labs/coreth/core/blockchain.go:1956: protectTrieIndex 60.0% +2025-07-23T19:39:15.4076858Z github.com/ava-labs/coreth/core/blockchain.go:1978: populateMissingTries 74.3% +2025-07-23T19:39:15.4077442Z github.com/ava-labs/coreth/core/blockchain.go:2059: CleanBlockRootsAboveLastAccepted 85.7% +2025-07-23T19:39:15.4078060Z github.com/ava-labs/coreth/core/blockchain.go:2102: gatherBlockRootsAboveLastAccepted 90.9% +2025-07-23T19:39:15.4078858Z github.com/ava-labs/coreth/core/blockchain.go:2132: ResetToStateSyncedBlock 0.0% +2025-07-23T19:39:15.4079524Z github.com/ava-labs/coreth/core/blockchain.go:2187: CacheConfig 100.0% +2025-07-23T19:39:15.4080032Z github.com/ava-labs/coreth/core/blockchain.go:2191: repairTxIndexTail 100.0% +2025-07-23T19:39:15.4080693Z github.com/ava-labs/coreth/core/blockchain_ext.go:15: getOrOverrideAsRegisteredCounter 83.3% +2025-07-23T19:39:15.4081297Z github.com/ava-labs/coreth/core/blockchain_iterator.go:60: newBlockChainIterator 85.0% +2025-07-23T19:39:15.4081873Z github.com/ava-labs/coreth/core/blockchain_iterator.go:120: populateReaders 88.9% +2025-07-23T19:39:15.4082394Z github.com/ava-labs/coreth/core/blockchain_iterator.go:139: Next 75.0% +2025-07-23T19:39:15.4082884Z github.com/ava-labs/coreth/core/blockchain_iterator.go:180: Stop 100.0% +2025-07-23T19:39:15.4083388Z github.com/ava-labs/coreth/core/blockchain_reader.go:45: CurrentHeader 100.0% +2025-07-23T19:39:15.4083906Z github.com/ava-labs/coreth/core/blockchain_reader.go:51: CurrentBlock 100.0% +2025-07-23T19:39:15.4084549Z github.com/ava-labs/coreth/core/blockchain_reader.go:57: HasHeader 100.0% +2025-07-23T19:39:15.4085050Z github.com/ava-labs/coreth/core/blockchain_reader.go:63: GetHeader 100.0% +2025-07-23T19:39:15.4085559Z github.com/ava-labs/coreth/core/blockchain_reader.go:69: GetHeaderByHash 100.0% +2025-07-23T19:39:15.4086101Z github.com/ava-labs/coreth/core/blockchain_reader.go:75: GetHeaderByNumber 100.0% +2025-07-23T19:39:15.4086611Z github.com/ava-labs/coreth/core/blockchain_reader.go:81: GetBody 0.0% +2025-07-23T19:39:15.4087089Z github.com/ava-labs/coreth/core/blockchain_reader.go:100: HasBlock 60.0% +2025-07-23T19:39:15.4087589Z github.com/ava-labs/coreth/core/blockchain_reader.go:111: HasFastBlock 0.0% +2025-07-23T19:39:15.4088089Z github.com/ava-labs/coreth/core/blockchain_reader.go:123: GetBlock 100.0% +2025-07-23T19:39:15.4088802Z github.com/ava-labs/coreth/core/blockchain_reader.go:138: GetBlockByHash 75.0% +2025-07-23T19:39:15.4089341Z github.com/ava-labs/coreth/core/blockchain_reader.go:148: GetBlockByNumber 100.0% +2025-07-23T19:39:15.4089888Z github.com/ava-labs/coreth/core/blockchain_reader.go:158: GetBlocksFromHash 0.0% +2025-07-23T19:39:15.4090429Z github.com/ava-labs/coreth/core/blockchain_reader.go:176: GetReceiptsByHash 76.9% +2025-07-23T19:39:15.4090967Z github.com/ava-labs/coreth/core/blockchain_reader.go:197: GetCanonicalHash 100.0% +2025-07-23T19:39:15.4091530Z github.com/ava-labs/coreth/core/blockchain_reader.go:211: GetTransactionLookup 87.5% +2025-07-23T19:39:15.4092075Z github.com/ava-labs/coreth/core/blockchain_reader.go:235: HasState 100.0% +2025-07-23T19:39:15.4092598Z github.com/ava-labs/coreth/core/blockchain_reader.go:242: HasBlockAndState 100.0% +2025-07-23T19:39:15.4093117Z github.com/ava-labs/coreth/core/blockchain_reader.go:252: State 100.0% +2025-07-23T19:39:15.4093612Z github.com/ava-labs/coreth/core/blockchain_reader.go:257: StateAt 100.0% +2025-07-23T19:39:15.4094111Z github.com/ava-labs/coreth/core/blockchain_reader.go:262: Config 100.0% +2025-07-23T19:39:15.4094600Z github.com/ava-labs/coreth/core/blockchain_reader.go:265: Engine 100.0% +2025-07-23T19:39:15.4095085Z github.com/ava-labs/coreth/core/blockchain_reader.go:268: Snapshots 0.0% +2025-07-23T19:39:15.4095571Z github.com/ava-labs/coreth/core/blockchain_reader.go:273: Validator 0.0% +2025-07-23T19:39:15.4096068Z github.com/ava-labs/coreth/core/blockchain_reader.go:278: Processor 0.0% +2025-07-23T19:39:15.4096562Z github.com/ava-labs/coreth/core/blockchain_reader.go:283: StateCache 0.0% +2025-07-23T19:39:15.4097045Z github.com/ava-labs/coreth/core/blockchain_reader.go:288: GasLimit 0.0% +2025-07-23T19:39:15.4097532Z github.com/ava-labs/coreth/core/blockchain_reader.go:293: Genesis 100.0% +2025-07-23T19:39:15.4098033Z github.com/ava-labs/coreth/core/blockchain_reader.go:298: GetVMConfig 0.0% +2025-07-23T19:39:15.4098933Z github.com/ava-labs/coreth/core/blockchain_reader.go:303: TrieDB 100.0% +2025-07-23T19:39:15.4099437Z github.com/ava-labs/coreth/core/blockchain_reader.go:308: HeaderChain 0.0% +2025-07-23T19:39:15.4100001Z github.com/ava-labs/coreth/core/blockchain_reader.go:313: SubscribeRemovedLogsEvent 0.0% +2025-07-23T19:39:15.4100588Z github.com/ava-labs/coreth/core/blockchain_reader.go:318: SubscribeChainEvent 0.0% +2025-07-23T19:39:15.4101171Z github.com/ava-labs/coreth/core/blockchain_reader.go:323: SubscribeChainHeadEvent 0.0% +2025-07-23T19:39:15.4101763Z github.com/ava-labs/coreth/core/blockchain_reader.go:328: SubscribeChainSideEvent 0.0% +2025-07-23T19:39:15.4102332Z github.com/ava-labs/coreth/core/blockchain_reader.go:333: SubscribeLogsEvent 0.0% +2025-07-23T19:39:15.4102937Z github.com/ava-labs/coreth/core/blockchain_reader.go:339: SubscribeBlockProcessingEvent 0.0% +2025-07-23T19:39:15.4103555Z github.com/ava-labs/coreth/core/blockchain_reader.go:344: SubscribeChainAcceptedEvent 100.0% +2025-07-23T19:39:15.4104289Z github.com/ava-labs/coreth/core/blockchain_reader.go:349: SubscribeAcceptedLogsEvent 100.0% +2025-07-23T19:39:15.4104931Z github.com/ava-labs/coreth/core/blockchain_reader.go:354: SubscribeAcceptedTransactionEvent 0.0% +2025-07-23T19:39:15.4105502Z github.com/ava-labs/coreth/core/blockchain_reader.go:359: GetLogs 0.0% +2025-07-23T19:39:15.4106002Z github.com/ava-labs/coreth/core/bloom_indexer.go:60: NewBloomIndexer 0.0% +2025-07-23T19:39:15.4106481Z github.com/ava-labs/coreth/core/bloom_indexer.go:72: Reset 0.0% +2025-07-23T19:39:15.4106941Z github.com/ava-labs/coreth/core/bloom_indexer.go:80: Process 0.0% +2025-07-23T19:39:15.4107405Z github.com/ava-labs/coreth/core/bloom_indexer.go:88: Commit 0.0% +2025-07-23T19:39:15.4107849Z github.com/ava-labs/coreth/core/bloom_indexer.go:101: Prune 0.0% +2025-07-23T19:39:15.4108510Z github.com/ava-labs/coreth/core/bloombits/generator.go:56: NewGenerator 83.3% +2025-07-23T19:39:15.4109052Z github.com/ava-labs/coreth/core/bloombits/generator.go:69: AddBloom 90.5% +2025-07-23T19:39:15.4109554Z github.com/ava-labs/coreth/core/bloombits/generator.go:101: Bitset 60.0% +2025-07-23T19:39:15.4110092Z github.com/ava-labs/coreth/core/bloombits/matcher.go:49: calcBloomIndexes 100.0% +2025-07-23T19:39:15.4110632Z github.com/ava-labs/coreth/core/bloombits/matcher.go:103: NewMatcher 100.0% +2025-07-23T19:39:15.4111145Z github.com/ava-labs/coreth/core/bloombits/matcher.go:148: addScheduler 100.0% +2025-07-23T19:39:15.4111648Z github.com/ava-labs/coreth/core/bloombits/matcher.go:158: Start 97.0% +2025-07-23T19:39:15.4112129Z github.com/ava-labs/coreth/core/bloombits/matcher.go:235: run 100.0% +2025-07-23T19:39:15.4112615Z github.com/ava-labs/coreth/core/bloombits/matcher.go:270: subMatch 98.3% +2025-07-23T19:39:15.4113119Z github.com/ava-labs/coreth/core/bloombits/matcher.go:392: distributor 100.0% +2025-07-23T19:39:15.4113634Z github.com/ava-labs/coreth/core/bloombits/matcher.go:534: Close 100.0% +2025-07-23T19:39:15.4114114Z github.com/ava-labs/coreth/core/bloombits/matcher.go:543: Error 0.0% +2025-07-23T19:39:15.4114641Z github.com/ava-labs/coreth/core/bloombits/matcher.go:553: allocateRetrieval 100.0% +2025-07-23T19:39:15.4115201Z github.com/ava-labs/coreth/core/bloombits/matcher.go:567: pendingSections 100.0% +2025-07-23T19:39:15.4115761Z github.com/ava-labs/coreth/core/bloombits/matcher.go:581: allocateSections 100.0% +2025-07-23T19:39:15.4116308Z github.com/ava-labs/coreth/core/bloombits/matcher.go:599: deliverSections 100.0% +2025-07-23T19:39:15.4116832Z github.com/ava-labs/coreth/core/bloombits/matcher.go:609: Multiplex 81.8% +2025-07-23T19:39:15.4117355Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:60: newScheduler 100.0% +2025-07-23T19:39:15.4117866Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:70: run 100.0% +2025-07-23T19:39:15.4118676Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:84: reset 100.0% +2025-07-23T19:39:15.4119203Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:98: scheduleRequests 100.0% +2025-07-23T19:39:15.4119787Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:145: scheduleDeliveries 100.0% +2025-07-23T19:39:15.4120344Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:182: deliver 100.0% +2025-07-23T19:39:15.4120870Z github.com/ava-labs/coreth/core/bounded_buffer.go:21: NewBoundedBuffer 100.0% +2025-07-23T19:39:15.4121390Z github.com/ava-labs/coreth/core/bounded_buffer.go:32: Insert 90.0% +2025-07-23T19:39:15.4121847Z github.com/ava-labs/coreth/core/bounded_buffer.go:55: Last 100.0% +2025-07-23T19:39:15.4122333Z github.com/ava-labs/coreth/core/chain_indexer.go:115: NewChainIndexer 100.0% +2025-07-23T19:39:15.4122835Z github.com/ava-labs/coreth/core/chain_indexer.go:142: AddCheckpoint 0.0% +2025-07-23T19:39:15.4123430Z github.com/ava-labs/coreth/core/chain_indexer.go:160: Start 0.0% +2025-07-23T19:39:15.4123884Z github.com/ava-labs/coreth/core/chain_indexer.go:169: Close 58.8% +2025-07-23T19:39:15.4124343Z github.com/ava-labs/coreth/core/chain_indexer.go:209: eventLoop 0.0% +2025-07-23T19:39:15.4124807Z github.com/ava-labs/coreth/core/chain_indexer.go:255: newHead 78.1% +2025-07-23T19:39:15.4125276Z github.com/ava-labs/coreth/core/chain_indexer.go:316: updateLoop 95.2% +2025-07-23T19:39:15.4125775Z github.com/ava-labs/coreth/core/chain_indexer.go:400: processSection 68.4% +2025-07-23T19:39:15.4126281Z github.com/ava-labs/coreth/core/chain_indexer.go:434: verifyLastHead 75.0% +2025-07-23T19:39:15.4126764Z github.com/ava-labs/coreth/core/chain_indexer.go:446: Sections 100.0% +2025-07-23T19:39:15.4127256Z github.com/ava-labs/coreth/core/chain_indexer.go:455: AddChildIndexer 70.0% +2025-07-23T19:39:15.4127736Z github.com/ava-labs/coreth/core/chain_indexer.go:477: Prune 0.0% +2025-07-23T19:39:15.4128447Z github.com/ava-labs/coreth/core/chain_indexer.go:483: loadValidSections 66.7% +2025-07-23T19:39:15.4128985Z github.com/ava-labs/coreth/core/chain_indexer.go:491: setValidSections 100.0% +2025-07-23T19:39:15.4129492Z github.com/ava-labs/coreth/core/chain_indexer.go:507: SectionHead 100.0% +2025-07-23T19:39:15.4130004Z github.com/ava-labs/coreth/core/chain_indexer.go:520: setSectionHead 100.0% +2025-07-23T19:39:15.4130519Z github.com/ava-labs/coreth/core/chain_indexer.go:529: removeSectionHead 100.0% +2025-07-23T19:39:15.4131019Z github.com/ava-labs/coreth/core/chain_makers.go:68: SetCoinbase 50.0% +2025-07-23T19:39:15.4131481Z github.com/ava-labs/coreth/core/chain_makers.go:80: SetExtra 0.0% +2025-07-23T19:39:15.4131939Z github.com/ava-labs/coreth/core/chain_makers.go:85: AppendExtra 0.0% +2025-07-23T19:39:15.4132388Z github.com/ava-labs/coreth/core/chain_makers.go:90: SetNonce 0.0% +2025-07-23T19:39:15.4132864Z github.com/ava-labs/coreth/core/chain_makers.go:97: SetDifficulty 100.0% +2025-07-23T19:39:15.4133344Z github.com/ava-labs/coreth/core/chain_makers.go:102: Difficulty 0.0% +2025-07-23T19:39:15.4133847Z github.com/ava-labs/coreth/core/chain_makers.go:108: SetParentBeaconRoot 0.0% +2025-07-23T19:39:15.4134470Z github.com/ava-labs/coreth/core/chain_makers.go:124: addTx 90.9% +2025-07-23T19:39:15.4135012Z github.com/ava-labs/coreth/core/chain_makers.go:149: AddTx 100.0% +2025-07-23T19:39:15.4135737Z github.com/ava-labs/coreth/core/chain_makers.go:160: AddTxWithChain 0.0% +2025-07-23T19:39:15.4136378Z github.com/ava-labs/coreth/core/chain_makers.go:167: AddTxWithVMConfig 100.0% +2025-07-23T19:39:15.4137019Z github.com/ava-labs/coreth/core/chain_makers.go:172: GetBalance 0.0% +2025-07-23T19:39:15.4137611Z github.com/ava-labs/coreth/core/chain_makers.go:180: AddUncheckedTx 0.0% +2025-07-23T19:39:15.4138400Z github.com/ava-labs/coreth/core/chain_makers.go:185: Number 0.0% +2025-07-23T19:39:15.4139139Z github.com/ava-labs/coreth/core/chain_makers.go:190: Timestamp 100.0% +2025-07-23T19:39:15.4139783Z github.com/ava-labs/coreth/core/chain_makers.go:195: BaseFee 100.0% +2025-07-23T19:39:15.4140334Z github.com/ava-labs/coreth/core/chain_makers.go:200: Gas 0.0% +2025-07-23T19:39:15.4140868Z github.com/ava-labs/coreth/core/chain_makers.go:205: Signer 0.0% +2025-07-23T19:39:15.4141512Z github.com/ava-labs/coreth/core/chain_makers.go:214: AddUncheckedReceipt 0.0% +2025-07-23T19:39:15.4157438Z github.com/ava-labs/coreth/core/chain_makers.go:220: TxNonce 66.7% +2025-07-23T19:39:15.4158038Z github.com/ava-labs/coreth/core/chain_makers.go:228: AddUncle 100.0% +2025-07-23T19:39:15.4158804Z github.com/ava-labs/coreth/core/chain_makers.go:235: PrevBlock 60.0% +2025-07-23T19:39:15.4159317Z github.com/ava-labs/coreth/core/chain_makers.go:248: OffsetTime 0.0% +2025-07-23T19:39:15.4160038Z github.com/ava-labs/coreth/core/chain_makers.go:257: SetOnBlockGenerated 0.0% +2025-07-23T19:39:15.4160576Z github.com/ava-labs/coreth/core/chain_makers.go:273: GenerateChain 79.2% +2025-07-23T19:39:15.4161110Z github.com/ava-labs/coreth/core/chain_makers.go:362: GenerateChainWithGenesis 87.5% +2025-07-23T19:39:15.4161640Z github.com/ava-labs/coreth/core/chain_makers.go:374: makeHeader 89.5% +2025-07-23T19:39:15.4162138Z github.com/ava-labs/coreth/core/chain_makers.go:425: newChainMaker 100.0% +2025-07-23T19:39:15.4162611Z github.com/ava-labs/coreth/core/chain_makers.go:434: add 100.0% +2025-07-23T19:39:15.4163078Z github.com/ava-labs/coreth/core/chain_makers.go:440: blockByNumber 0.0% +2025-07-23T19:39:15.4163562Z github.com/ava-labs/coreth/core/chain_makers.go:455: Config 100.0% +2025-07-23T19:39:15.4164021Z github.com/ava-labs/coreth/core/chain_makers.go:460: Engine 0.0% +2025-07-23T19:39:15.4164493Z github.com/ava-labs/coreth/core/chain_makers.go:464: CurrentHeader 0.0% +2025-07-23T19:39:15.4164998Z github.com/ava-labs/coreth/core/chain_makers.go:471: GetHeaderByNumber 0.0% +2025-07-23T19:39:15.4165505Z github.com/ava-labs/coreth/core/chain_makers.go:479: GetHeaderByHash 0.0% +2025-07-23T19:39:15.4165983Z github.com/ava-labs/coreth/core/chain_makers.go:487: GetHeader 0.0% +2025-07-23T19:39:15.4166437Z github.com/ava-labs/coreth/core/chain_makers.go:491: GetBlock 0.0% +2025-07-23T19:39:15.4166954Z github.com/ava-labs/coreth/core/coretest/test_indices.go:21: CheckTxIndices 100.0% +2025-07-23T19:39:15.4167440Z github.com/ava-labs/coreth/core/evm.go:47: init 100.0% +2025-07-23T19:39:15.4167877Z github.com/ava-labs/coreth/core/evm.go:61: OverrideNewEVMArgs 100.0% +2025-07-23T19:39:15.4168586Z github.com/ava-labs/coreth/core/evm.go:74: OverrideEVMResetArgs 100.0% +2025-07-23T19:39:15.4169058Z github.com/ava-labs/coreth/core/evm.go:79: wrapStateDB 100.0% +2025-07-23T19:39:15.4169519Z github.com/ava-labs/coreth/core/evm.go:90: GetCommittedState 100.0% +2025-07-23T19:39:15.4169998Z github.com/ava-labs/coreth/core/evm.go:106: NewEVMBlockContext 100.0% +2025-07-23T19:39:15.4170538Z github.com/ava-labs/coreth/core/evm.go:147: NewEVMBlockContextWithPredicateResults 0.0% +2025-07-23T19:39:15.4171086Z github.com/ava-labs/coreth/core/evm.go:160: NewEVMTxContext 100.0% +2025-07-23T19:39:15.4171773Z github.com/ava-labs/coreth/core/evm.go:173: GetHashFn 10.0% +2025-07-23T19:39:15.4172354Z github.com/ava-labs/coreth/core/evm.go:213: CanTransfer 100.0% +2025-07-23T19:39:15.4172786Z github.com/ava-labs/coreth/core/evm.go:218: Transfer 100.0% +2025-07-23T19:39:15.4173248Z github.com/ava-labs/coreth/core/extstate/statedb.go:38: New 100.0% +2025-07-23T19:39:15.4173752Z github.com/ava-labs/coreth/core/extstate/statedb.go:45: Prepare 100.0% +2025-07-23T19:39:15.4174314Z github.com/ava-labs/coreth/core/extstate/statedb.go:61: GetPredicateStorageSlots 75.0% +2025-07-23T19:39:15.4175029Z github.com/ava-labs/coreth/core/fifo_cache.go:24: NewFIFOCache 100.0% +2025-07-23T19:39:15.4175487Z github.com/ava-labs/coreth/core/fifo_cache.go:43: Put 100.0% +2025-07-23T19:39:15.4175906Z github.com/ava-labs/coreth/core/fifo_cache.go:51: Get 100.0% +2025-07-23T19:39:15.4176323Z github.com/ava-labs/coreth/core/fifo_cache.go:61: remove 0.0% +2025-07-23T19:39:15.4176742Z github.com/ava-labs/coreth/core/fifo_cache.go:68: Put 0.0% +2025-07-23T19:39:15.4177152Z github.com/ava-labs/coreth/core/fifo_cache.go:69: Get 100.0% +2025-07-23T19:39:15.4177567Z github.com/ava-labs/coreth/core/gaspool.go:40: AddGas 75.0% +2025-07-23T19:39:15.4177986Z github.com/ava-labs/coreth/core/gaspool.go:50: SubGas 100.0% +2025-07-23T19:39:15.4178637Z github.com/ava-labs/coreth/core/gaspool.go:59: Gas 0.0% +2025-07-23T19:39:15.4179050Z github.com/ava-labs/coreth/core/gaspool.go:64: SetGas 0.0% +2025-07-23T19:39:15.4179591Z github.com/ava-labs/coreth/core/gaspool.go:68: String 0.0% +2025-07-23T19:39:15.4180061Z github.com/ava-labs/coreth/core/gen_genesis.go:20: MarshalJSON 0.0% +2025-07-23T19:39:15.4180542Z github.com/ava-labs/coreth/core/gen_genesis.go:63: UnmarshalJSON 0.0% +2025-07-23T19:39:15.4180990Z github.com/ava-labs/coreth/core/genesis.go:109: Error 0.0% +2025-07-23T19:39:15.4181459Z github.com/ava-labs/coreth/core/genesis.go:128: SetupGenesisBlock 77.8% +2025-07-23T19:39:15.4181946Z github.com/ava-labs/coreth/core/genesis.go:212: IsVerkle 100.0% +2025-07-23T19:39:15.4182398Z github.com/ava-labs/coreth/core/genesis.go:217: ToBlock 100.0% +2025-07-23T19:39:15.4182846Z github.com/ava-labs/coreth/core/genesis.go:222: trieConfig 100.0% +2025-07-23T19:39:15.4183302Z github.com/ava-labs/coreth/core/genesis.go:233: toBlock 90.5% +2025-07-23T19:39:15.4183741Z github.com/ava-labs/coreth/core/genesis.go:321: Commit 80.0% +2025-07-23T19:39:15.4184184Z github.com/ava-labs/coreth/core/genesis.go:344: MustCommit 75.0% +2025-07-23T19:39:15.4184690Z github.com/ava-labs/coreth/core/genesis.go:353: GenesisBlockForTesting 100.0% +2025-07-23T19:39:15.4185211Z github.com/ava-labs/coreth/core/genesis.go:363: ReadBlockByHash 75.0% +2025-07-23T19:39:15.4185714Z github.com/ava-labs/coreth/core/headerchain.go:84: NewHeaderChain 85.7% +2025-07-23T19:39:15.4186220Z github.com/ava-labs/coreth/core/headerchain.go:121: GetBlockNumber 100.0% +2025-07-23T19:39:15.4186715Z github.com/ava-labs/coreth/core/headerchain.go:134: GetHeader 100.0% +2025-07-23T19:39:15.4187210Z github.com/ava-labs/coreth/core/headerchain.go:150: GetHeaderByHash 75.0% +2025-07-23T19:39:15.4187701Z github.com/ava-labs/coreth/core/headerchain.go:161: HasHeader 66.7% +2025-07-23T19:39:15.4188310Z github.com/ava-labs/coreth/core/headerchain.go:170: GetHeaderByNumber 100.0% +2025-07-23T19:39:15.4188846Z github.com/ava-labs/coreth/core/headerchain.go:181: GetCanonicalHash 100.0% +2025-07-23T19:39:15.4189359Z github.com/ava-labs/coreth/core/headerchain.go:187: CurrentHeader 100.0% +2025-07-23T19:39:15.4189869Z github.com/ava-labs/coreth/core/headerchain.go:193: SetCurrentHeader 100.0% +2025-07-23T19:39:15.4190365Z github.com/ava-labs/coreth/core/headerchain.go:199: SetGenesis 100.0% +2025-07-23T19:39:15.4190828Z github.com/ava-labs/coreth/core/headerchain.go:204: Config 0.0% +2025-07-23T19:39:15.4191275Z github.com/ava-labs/coreth/core/headerchain.go:207: Engine 0.0% +2025-07-23T19:39:15.4191723Z github.com/ava-labs/coreth/core/headerchain.go:211: GetBlock 0.0% +2025-07-23T19:39:15.4192227Z github.com/ava-labs/coreth/core/predicate_check.go:22: CheckPredicates 100.0% +2025-07-23T19:39:15.4192766Z github.com/ava-labs/coreth/core/sender_cacher.go:61: NewTxSenderCacher 100.0% +2025-07-23T19:39:15.4193264Z github.com/ava-labs/coreth/core/sender_cacher.go:78: cache 100.0% +2025-07-23T19:39:15.4193849Z github.com/ava-labs/coreth/core/sender_cacher.go:89: Recover 90.9% +2025-07-23T19:39:15.4194318Z github.com/ava-labs/coreth/core/sender_cacher.go:119: Shutdown 100.0% +2025-07-23T19:39:15.4194812Z github.com/ava-labs/coreth/core/state/database.go:42: NewDatabase 100.0% +2025-07-23T19:39:15.4195347Z github.com/ava-labs/coreth/core/state/database.go:46: NewDatabaseWithConfig 100.0% +2025-07-23T19:39:15.4195913Z github.com/ava-labs/coreth/core/state/database.go:51: NewDatabaseWithNodeDB 0.0% +2025-07-23T19:39:15.4196457Z github.com/ava-labs/coreth/core/state/database.go:55: wrapIfFirewood 100.0% +2025-07-23T19:39:15.4196990Z github.com/ava-labs/coreth/core/state/firewood_database.go:25: OpenTrie 100.0% +2025-07-23T19:39:15.4197548Z github.com/ava-labs/coreth/core/state/firewood_database.go:30: OpenStorageTrie 75.0% +2025-07-23T19:39:15.4198309Z github.com/ava-labs/coreth/core/state/firewood_database.go:40: CopyTrie 0.0% +2025-07-23T19:39:15.4199020Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:42: stateBloomHash 100.0% +2025-07-23T19:39:15.4199606Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:69: newStateBloomWithSize 80.0% +2025-07-23T19:39:15.4200203Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:80: NewStateBloomFromDisk 0.0% +2025-07-23T19:39:15.4200745Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:90: Commit 63.6% +2025-07-23T19:39:15.4201232Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:112: Put 37.5% +2025-07-23T19:39:15.4201712Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:128: Delete 0.0% +2025-07-23T19:39:15.4202214Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:134: Contain 100.0% +2025-07-23T19:39:15.4202726Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:96: NewPruner 66.7% +2025-07-23T19:39:15.4203231Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:136: prune 38.2% +2025-07-23T19:39:15.4203733Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:261: Prune 66.7% +2025-07-23T19:39:15.4204339Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:315: RecoverPruning 26.7% +2025-07-23T19:39:15.4204895Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:344: extractGenesis 48.6% +2025-07-23T19:39:15.4205461Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:403: bloomFilterName 100.0% +2025-07-23T19:39:15.4206017Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:407: isBloomFilter 0.0% +2025-07-23T19:39:15.4206576Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:415: findBloomFilter 50.0% +2025-07-23T19:39:15.4207114Z github.com/ava-labs/coreth/core/state/snapshot/context.go:55: Info 100.0% +2025-07-23T19:39:15.4207622Z github.com/ava-labs/coreth/core/state/snapshot/context.go:61: Debug 100.0% +2025-07-23T19:39:15.4208240Z github.com/ava-labs/coreth/core/state/snapshot/context.go:67: log 45.0% +2025-07-23T19:39:15.4208837Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:65: GenerateAccountTrieRoot 0.0% +2025-07-23T19:39:15.4209494Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:70: GenerateStorageTrieRoot 0.0% +2025-07-23T19:39:15.4210102Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:77: GenerateTrie 0.0% +2025-07-23T19:39:15.4210708Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:134: newGenerateStats 100.0% +2025-07-23T19:39:15.4211321Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:143: progressAccounts 0.0% +2025-07-23T19:39:15.4211929Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:152: finishAccounts 100.0% +2025-07-23T19:39:15.4212530Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:160: progressContract 0.0% +2025-07-23T19:39:15.4213129Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:172: finishContract 100.0% +2025-07-23T19:39:15.4213831Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:182: report 42.9% +2025-07-23T19:39:15.4214394Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:222: reportDone 100.0% +2025-07-23T19:39:15.4214957Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:236: runReport 100.0% +2025-07-23T19:39:15.4215541Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:257: generateTrieRoot 79.4% +2025-07-23T19:39:15.4216149Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:375: stackTrieGenerate 75.0% +2025-07-23T19:39:15.4216715Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:92: init 80.0% +2025-07-23T19:39:15.4217284Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:140: destructBloomHash 100.0% +2025-07-23T19:39:15.4217890Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:145: accountBloomHash 100.0% +2025-07-23T19:39:15.4218706Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:150: storageBloomHash 100.0% +2025-07-23T19:39:15.4219487Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:157: newDiffLayer 83.3% +2025-07-23T19:39:15.4220064Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:201: rebloom 100.0% +2025-07-23T19:39:15.4220610Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:242: Root 100.0% +2025-07-23T19:39:15.4221156Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:247: BlockHash 100.0% +2025-07-23T19:39:15.4221738Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:252: Parent 100.0% +2025-07-23T19:39:15.4222289Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:261: Stale 100.0% +2025-07-23T19:39:15.4222834Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:267: Account 88.9% +2025-07-23T19:39:15.4223384Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:286: AccountRLP 86.7% +2025-07-23T19:39:15.4223934Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:318: accountRLP 95.0% +2025-07-23T19:39:15.4224489Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:357: Storage 60.0% +2025-07-23T19:39:15.4225028Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:389: storage 69.6% +2025-07-23T19:39:15.4225560Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:431: Update 100.0% +2025-07-23T19:39:15.4226093Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:438: flatten 95.5% +2025-07-23T19:39:15.4226646Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:497: AccountList 100.0% +2025-07-23T19:39:15.4227215Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:533: StorageList 100.0% +2025-07-23T19:39:15.4227762Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:70: Release 0.0% +2025-07-23T19:39:15.4228404Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:78: Root 100.0% +2025-07-23T19:39:15.4228950Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:83: BlockHash 100.0% +2025-07-23T19:39:15.4229504Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:88: Parent 100.0% +2025-07-23T19:39:15.4230035Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:94: Stale 100.0% +2025-07-23T19:39:15.4230575Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:103: Account 88.9% +2025-07-23T19:39:15.4231127Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:120: AccountRLP 100.0% +2025-07-23T19:39:15.4231674Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:158: Storage 100.0% +2025-07-23T19:39:15.4232214Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:199: Update 100.0% +2025-07-23T19:39:15.4232784Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:55: generateSnapshot 91.7% +2025-07-23T19:39:15.4233377Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:90: journalProgress 88.2% +2025-07-23T19:39:15.4234091Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:127: checkAndFlush 50.0% +2025-07-23T19:39:15.4234651Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:178: generate 68.9% +2025-07-23T19:39:15.4235257Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:335: newMeteredSnapshotCache 100.0% +2025-07-23T19:39:15.4235893Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:69: AccountIterator 100.0% +2025-07-23T19:39:15.4236443Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:83: Next 70.0% +2025-07-23T19:39:15.4236972Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:108: Error 100.0% +2025-07-23T19:39:15.4237501Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:113: Hash 100.0% +2025-07-23T19:39:15.4238030Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:125: Account 81.8% +2025-07-23T19:39:15.4238790Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:143: Release 0.0% +2025-07-23T19:39:15.4239493Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:153: AccountIterator 100.0% +2025-07-23T19:39:15.4240064Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:162: Next 90.0% +2025-07-23T19:39:15.4240594Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:186: Error 100.0% +2025-07-23T19:39:15.4241125Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:194: Hash 100.0% +2025-07-23T19:39:15.4241662Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:199: Account 100.0% +2025-07-23T19:39:15.4242201Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:204: Release 33.3% +2025-07-23T19:39:15.4242765Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:233: StorageIterator 100.0% +2025-07-23T19:39:15.4243322Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:250: Next 70.0% +2025-07-23T19:39:15.4243846Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:275: Error 100.0% +2025-07-23T19:39:15.4244377Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:280: Hash 100.0% +2025-07-23T19:39:15.4244886Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:292: Slot 72.7% +2025-07-23T19:39:15.4245407Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:311: Release 0.0% +2025-07-23T19:39:15.4245977Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:325: StorageIterator 100.0% +2025-07-23T19:39:15.4246528Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:341: Next 90.0% +2025-07-23T19:39:15.4247050Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:365: Error 100.0% +2025-07-23T19:39:15.4247570Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:373: Hash 100.0% +2025-07-23T19:39:15.4248317Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:378: Slot 100.0% +2025-07-23T19:39:15.4248880Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:383: Release 33.3% +2025-07-23T19:39:15.4249523Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:53: initBinaryAccountIterator 100.0% +2025-07-23T19:39:15.4250235Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:78: initBinaryStorageIterator 82.6% +2025-07-23T19:39:15.4250869Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:130: Next 100.0% +2025-07-23T19:39:15.4251441Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:162: Error 100.0% +2025-07-23T19:39:15.4252012Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:167: Hash 100.0% +2025-07-23T19:39:15.4252592Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:176: Account 57.1% +2025-07-23T19:39:15.4253170Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:194: Slot 57.1% +2025-07-23T19:39:15.4253738Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:207: Release 0.0% +2025-07-23T19:39:15.4254514Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:214: newBinaryAccountIterator 100.0% +2025-07-23T19:39:15.4255216Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:221: newBinaryStorageIterator 100.0% +2025-07-23T19:39:15.4255832Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:47: Cmp 50.0% +2025-07-23T19:39:15.4256422Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:86: newFastIterator 92.9% +2025-07-23T19:39:15.4257007Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:124: init 87.5% +2025-07-23T19:39:15.4257549Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:179: Next 83.3% +2025-07-23T19:39:15.4258242Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:235: next 100.0% +2025-07-23T19:39:15.4258860Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:296: move 100.0% +2025-07-23T19:39:15.4259424Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:304: Error 100.0% +2025-07-23T19:39:15.4260106Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:309: Hash 100.0% +2025-07-23T19:39:15.4260670Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:315: Account 100.0% +2025-07-23T19:39:15.4261233Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:321: Slot 100.0% +2025-07-23T19:39:15.4261794Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:327: Release 100.0% +2025-07-23T19:39:15.4262353Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:335: Debug 0.0% +2025-07-23T19:39:15.4262969Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:345: newFastAccountIterator 100.0% +2025-07-23T19:39:15.4263651Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:352: newFastStorageIterator 100.0% +2025-07-23T19:39:15.4264271Z github.com/ava-labs/coreth/core/state/snapshot/journal.go:61: loadSnapshot 0.0% +2025-07-23T19:39:15.4264883Z github.com/ava-labs/coreth/core/state/snapshot/journal.go:143: ResetSnapshotGeneration 0.0% +2025-07-23T19:39:15.4265459Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:205: New 0.0% +2025-07-23T19:39:15.4266000Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:254: insertSnap 100.0% +2025-07-23T19:39:15.4266554Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:266: Snapshot 100.0% +2025-07-23T19:39:15.4267112Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:272: getSnapshot 85.7% +2025-07-23T19:39:15.4267655Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:288: Snapshots 0.0% +2025-07-23T19:39:15.4268329Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:323: WithBlockHashes 0.0% +2025-07-23T19:39:15.4268898Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:329: Update 0.0% +2025-07-23T19:39:15.4269489Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:350: UpdateWithBlockHashes 81.8% +2025-07-23T19:39:15.4270125Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:386: verifyIntegrity 57.1% +2025-07-23T19:39:15.4270682Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:413: Cap 0.0% +2025-07-23T19:39:15.4271209Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:433: Flatten 83.1% +2025-07-23T19:39:15.4271775Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:533: NumStateLayers 100.0% +2025-07-23T19:39:15.4272367Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:540: NumBlockLayers 100.0% +2025-07-23T19:39:15.4272950Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:548: Discard 100.0% +2025-07-23T19:39:15.4273505Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:560: discard 78.6% +2025-07-23T19:39:15.4274073Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:592: AbortGeneration 0.0% +2025-07-23T19:39:15.4274807Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:603: abortGeneration 63.6% +2025-07-23T19:39:15.4275390Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:631: diffToDisk 75.4% +2025-07-23T19:39:15.4275937Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:779: Release 0.0% +2025-07-23T19:39:15.4276475Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:788: Rebuild 0.0% +2025-07-23T19:39:15.4277048Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:842: AccountIterator 71.4% +2025-07-23T19:39:15.4277651Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:859: StorageIterator 100.0% +2025-07-23T19:39:15.4278518Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:863: StorageIteratorWithForce 71.4% +2025-07-23T19:39:15.4279127Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:878: Verify 0.0% +2025-07-23T19:39:15.4279662Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:886: verify 66.7% +2025-07-23T19:39:15.4280336Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:918: disklayer 83.3% +2025-07-23T19:39:15.4280879Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:941: diskRoot 0.0% +2025-07-23T19:39:15.4281425Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:951: generating 87.5% +2025-07-23T19:39:15.4281968Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:965: DiskRoot 0.0% +2025-07-23T19:39:15.4282491Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:977: Size 0.0% +2025-07-23T19:39:15.4283068Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:14: DiskAccountIterator 0.0% +2025-07-23T19:39:15.4283701Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:21: DiskStorageIterator 0.0% +2025-07-23T19:39:15.4284307Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:41: NewDiskLayer 0.0% +2025-07-23T19:39:15.4284895Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:53: NewTestTree 100.0% +2025-07-23T19:39:15.4285501Z github.com/ava-labs/coreth/core/state/snapshot/utils.go:43: CheckDanglingStorage 50.0% +2025-07-23T19:39:15.4286125Z github.com/ava-labs/coreth/core/state/snapshot/utils.go:53: checkDanglingDiskStorage 76.5% +2025-07-23T19:39:15.4286710Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:45: WipeSnapshot 80.0% +2025-07-23T19:39:15.4287243Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:68: wipeContent 60.0% +2025-07-23T19:39:15.4287777Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:84: wipeKeyRange 59.4% +2025-07-23T19:39:15.4288372Z github.com/ava-labs/coreth/core/state/statedb.go:65: New 75.0% +2025-07-23T19:39:15.4288825Z github.com/ava-labs/coreth/core/state/statedb.go:81: Done 0.0% +2025-07-23T19:39:15.4289316Z github.com/ava-labs/coreth/core/state/statedb.go:87: WithConcurrentWorkers 0.0% +2025-07-23T19:39:15.4289866Z github.com/ava-labs/coreth/core/state/statedb.go:95: GetBalanceMultiCoin 100.0% +2025-07-23T19:39:15.4290395Z github.com/ava-labs/coreth/core/state/statedb.go:101: GetState 100.0% +2025-07-23T19:39:15.4290905Z github.com/ava-labs/coreth/core/state/statedb.go:107: AddBalanceMultiCoin 75.0% +2025-07-23T19:39:15.4291452Z github.com/ava-labs/coreth/core/state/statedb.go:121: SubBalanceMultiCoin 71.4% +2025-07-23T19:39:15.4291965Z github.com/ava-labs/coreth/core/state/statedb.go:136: SetState 100.0% +2025-07-23T19:39:15.4292453Z github.com/ava-labs/coreth/core/state/statedb.go:144: SetTxContext 0.0% +2025-07-23T19:39:15.4292937Z github.com/ava-labs/coreth/core/state/statedb.go:151: GetTxHash 0.0% +2025-07-23T19:39:15.4293407Z github.com/ava-labs/coreth/core/state/statedb.go:155: Copy 0.0% +2025-07-23T19:39:15.4293900Z github.com/ava-labs/coreth/core/state/statedb.go:169: NormalizeCoinID 100.0% +2025-07-23T19:39:15.4294435Z github.com/ava-labs/coreth/core/state/statedb.go:177: NormalizeStateKey 100.0% +2025-07-23T19:39:15.4295058Z github.com/ava-labs/coreth/core/state_manager.go:41: init 100.0% +2025-07-23T19:39:15.4295538Z github.com/ava-labs/coreth/core/state_manager.go:67: NewTrieWriter 100.0% +2025-07-23T19:39:15.4296036Z github.com/ava-labs/coreth/core/state_manager.go:91: InsertTrie 100.0% +2025-07-23T19:39:15.4296516Z github.com/ava-labs/coreth/core/state_manager.go:97: AcceptTrie 100.0% +2025-07-23T19:39:15.4297006Z github.com/ava-labs/coreth/core/state_manager.go:103: RejectTrie 100.0% +2025-07-23T19:39:15.4297486Z github.com/ava-labs/coreth/core/state_manager.go:107: Shutdown 100.0% +2025-07-23T19:39:15.4297966Z github.com/ava-labs/coreth/core/state_manager.go:120: InsertTrie 50.0% +2025-07-23T19:39:15.4298638Z github.com/ava-labs/coreth/core/state_manager.go:134: AcceptTrie 68.4% +2025-07-23T19:39:15.4299122Z github.com/ava-labs/coreth/core/state_manager.go:182: RejectTrie 100.0% +2025-07-23T19:39:15.4299728Z github.com/ava-labs/coreth/core/state_manager.go:187: Shutdown 100.0% +2025-07-23T19:39:15.4300243Z github.com/ava-labs/coreth/core/state_processor.go:55: NewStateProcessor 100.0% +2025-07-23T19:39:15.4300748Z github.com/ava-labs/coreth/core/state_processor.go:70: Process 90.9% +2025-07-23T19:39:15.4301259Z github.com/ava-labs/coreth/core/state_processor.go:120: applyTransaction 92.6% +2025-07-23T19:39:15.4301790Z github.com/ava-labs/coreth/core/state_processor.go:174: ApplyTransaction 83.3% +2025-07-23T19:39:15.4302345Z github.com/ava-labs/coreth/core/state_processor.go:187: ProcessBeaconBlockRoot 100.0% +2025-07-23T19:39:15.4302952Z github.com/ava-labs/coreth/core/state_processor_ext.go:24: ApplyPrecompileActivations 23.8% +2025-07-23T19:39:15.4303525Z github.com/ava-labs/coreth/core/state_processor_ext.go:77: ApplyUpgrades 100.0% +2025-07-23T19:39:15.4304069Z github.com/ava-labs/coreth/core/state_processor_ext.go:91: NewBlockContext 100.0% +2025-07-23T19:39:15.4304589Z github.com/ava-labs/coreth/core/state_processor_ext.go:98: Number 0.0% +2025-07-23T19:39:15.4305085Z github.com/ava-labs/coreth/core/state_processor_ext.go:99: Timestamp 100.0% +2025-07-23T19:39:15.4305578Z github.com/ava-labs/coreth/core/state_transition.go:56: Unwrap 0.0% +2025-07-23T19:39:15.4306057Z github.com/ava-labs/coreth/core/state_transition.go:61: Failed 100.0% +2025-07-23T19:39:15.4306526Z github.com/ava-labs/coreth/core/state_transition.go:65: Return 0.0% +2025-07-23T19:39:15.4306995Z github.com/ava-labs/coreth/core/state_transition.go:74: Revert 0.0% +2025-07-23T19:39:15.4307485Z github.com/ava-labs/coreth/core/state_transition.go:82: IntrinsicGas 88.2% +2025-07-23T19:39:15.4307995Z github.com/ava-labs/coreth/core/state_transition.go:139: accessListGas 91.3% +2025-07-23T19:39:15.4308612Z github.com/ava-labs/coreth/core/state_transition.go:179: toWordSize 66.7% +2025-07-23T19:39:15.4309157Z github.com/ava-labs/coreth/core/state_transition.go:210: TransactionToMessage 100.0% +2025-07-23T19:39:15.4309710Z github.com/ava-labs/coreth/core/state_transition.go:241: ApplyMessage 100.0% +2025-07-23T19:39:15.4310250Z github.com/ava-labs/coreth/core/state_transition.go:277: NewStateTransition 100.0% +2025-07-23T19:39:15.4310756Z github.com/ava-labs/coreth/core/state_transition.go:287: to 66.7% +2025-07-23T19:39:15.4311226Z github.com/ava-labs/coreth/core/state_transition.go:294: buyGas 77.8% +2025-07-23T19:39:15.4311712Z github.com/ava-labs/coreth/core/state_transition.go:333: preCheck 89.5% +2025-07-23T19:39:15.4312207Z github.com/ava-labs/coreth/core/state_transition.go:426: TransitionDb 88.2% +2025-07-23T19:39:15.4312711Z github.com/ava-labs/coreth/core/state_transition.go:514: refundGas 100.0% +2025-07-23T19:39:15.4313203Z github.com/ava-labs/coreth/core/state_transition.go:539: gasUsed 100.0% +2025-07-23T19:39:15.4313694Z github.com/ava-labs/coreth/core/state_transition.go:544: blobGasUsed 100.0% +2025-07-23T19:39:15.4314285Z github.com/ava-labs/coreth/core/txindexer.go:46: Done 0.0% +2025-07-23T19:39:15.4314737Z github.com/ava-labs/coreth/core/txindexer.go:68: newTxIndexer 90.9% +2025-07-23T19:39:15.4315180Z github.com/ava-labs/coreth/core/txindexer.go:97: run 90.9% +2025-07-23T19:39:15.4315592Z github.com/ava-labs/coreth/core/txindexer.go:124: loop 91.7% +2025-07-23T19:39:15.4316033Z github.com/ava-labs/coreth/core/txindexer.go:191: report 0.0% +2025-07-23T19:39:15.4316468Z github.com/ava-labs/coreth/core/txindexer.go:213: close 100.0% +2025-07-23T19:39:15.4316916Z github.com/ava-labs/coreth/core/txindexer.go:224: lockedRun 100.0% +2025-07-23T19:39:15.4317453Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:124: newBlobTxMeta 100.0% +2025-07-23T19:39:15.4318017Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:333: New 100.0% +2025-07-23T19:39:15.4318780Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:349: Filter 0.0% +2025-07-23T19:39:15.4319441Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:356: Init 78.8% +2025-07-23T19:39:15.4319979Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:458: Close 60.0% +2025-07-23T19:39:15.4320561Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:480: parseTransaction 88.0% +2025-07-23T19:39:15.4321142Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:528: recheck 90.9% +2025-07-23T19:39:15.4321713Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:779: offload 0.0% +2025-07-23T19:39:15.4322245Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:803: Reset 0.0% +2025-07-23T19:39:15.4322763Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:875: reorg 0.0% +2025-07-23T19:39:15.4323291Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1003: reinject 0.0% +2025-07-23T19:39:15.4323847Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1047: SetGasTip 97.2% +2025-07-23T19:39:15.4324435Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1112: validateTx 100.0% +2025-07-23T19:39:15.4324984Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1197: Has 0.0% +2025-07-23T19:39:15.4325508Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1205: HasLocal 0.0% +2025-07-23T19:39:15.4326039Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1211: Get 0.0% +2025-07-23T19:39:15.4326552Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1243: Add 0.0% +2025-07-23T19:39:15.4327066Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1263: add 89.3% +2025-07-23T19:39:15.4327585Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1430: drop 54.5% +2025-07-23T19:39:15.4328287Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1485: Pending 0.0% +2025-07-23T19:39:15.4328901Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1547: IteratePending 0.0% +2025-07-23T19:39:15.4329477Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1565: SetMinFee 0.0% +2025-07-23T19:39:15.4330500Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1569: updateStorageMetrics 100.0% +2025-07-23T19:39:15.4331169Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1616: updateLimboMetrics 100.0% +2025-07-23T19:39:15.4331810Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1644: SubscribeTransactions 0.0% +2025-07-23T19:39:15.4332392Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1654: Nonce 0.0% +2025-07-23T19:39:15.4332918Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1666: Stats 0.0% +2025-07-23T19:39:15.4333454Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1682: Content 0.0% +2025-07-23T19:39:15.4334012Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1691: ContentFrom 0.0% +2025-07-23T19:39:15.4334705Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1698: Locals 0.0% +2025-07-23T19:39:15.4335243Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1704: Status 0.0% +2025-07-23T19:39:15.4335778Z github.com/ava-labs/coreth/core/txpool/blobpool/config.go:50: sanitize 100.0% +2025-07-23T19:39:15.4336340Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:60: newPriceHeap 100.0% +2025-07-23T19:39:15.4336906Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:84: reinit 85.7% +2025-07-23T19:39:15.4337441Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:101: Len 100.0% +2025-07-23T19:39:15.4337972Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:107: Less 100.0% +2025-07-23T19:39:15.4338712Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:131: Swap 100.0% +2025-07-23T19:39:15.4339251Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:138: Push 100.0% +2025-07-23T19:39:15.4339905Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:148: Pop 100.0% +2025-07-23T19:39:15.4340444Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:62: newLimbo 50.0% +2025-07-23T19:39:15.4340953Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:93: Close 100.0% +2025-07-23T19:39:15.4341470Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:99: parseBlob 0.0% +2025-07-23T19:39:15.4341986Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:126: finalize 0.0% +2025-07-23T19:39:15.4342503Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:149: push 0.0% +2025-07-23T19:39:15.4343005Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:166: pull 0.0% +2025-07-23T19:39:15.4343509Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:190: update 0.0% +2025-07-23T19:39:15.4344031Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:221: getAndDrop 0.0% +2025-07-23T19:39:15.4344573Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:243: setAndIndex 0.0% +2025-07-23T19:39:15.4345162Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:45: evictionPriority 100.0% +2025-07-23T19:39:15.4345796Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:58: evictionPriority1D 100.0% +2025-07-23T19:39:15.4346423Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:77: dynamicFeeJumps 100.0% +2025-07-23T19:39:15.4346991Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:87: intLog2 50.0% +2025-07-23T19:39:15.4347542Z github.com/ava-labs/coreth/core/txpool/blobpool/slotter.go:39: newSlotter 100.0% +2025-07-23T19:39:15.4348191Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:52: Write 100.0% +2025-07-23T19:39:15.4348724Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:53: Close 0.0% +2025-07-23T19:39:15.4349278Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:63: newTxJournal 100.0% +2025-07-23T19:39:15.4349838Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:71: load 87.1% +2025-07-23T19:39:15.4350370Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:132: insert 60.0% +2025-07-23T19:39:15.4350911Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:144: rotate 76.9% +2025-07-23T19:39:15.4351442Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:189: close 100.0% +2025-07-23T19:39:15.4352001Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:186: sanitize 46.2% +2025-07-23T19:39:15.4352568Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:275: New 80.0% +2025-07-23T19:39:15.4353120Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:312: Filter 0.0% +2025-07-23T19:39:15.4353675Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:325: Init 81.0% +2025-07-23T19:39:15.4354231Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:371: loop 96.8% +2025-07-23T19:39:15.4354917Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:439: Close 100.0% +2025-07-23T19:39:15.4355471Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:455: Reset 0.0% +2025-07-23T19:39:15.4356092Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:462: SubscribeTransactions 0.0% +2025-07-23T19:39:15.4356734Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:472: SetGasTip 100.0% +2025-07-23T19:39:15.4357324Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:493: SetMinFee 0.0% +2025-07-23T19:39:15.4357893Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:502: Nonce 100.0% +2025-07-23T19:39:15.4358558Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:511: Stats 100.0% +2025-07-23T19:39:15.4359124Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:520: stats 100.0% +2025-07-23T19:39:15.4359806Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:534: Content 88.9% +2025-07-23T19:39:15.4360403Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:551: ContentFrom 0.0% +2025-07-23T19:39:15.4360988Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:571: Pending 0.0% +2025-07-23T19:39:15.4361585Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:631: IteratePending 0.0% +2025-07-23T19:39:15.4362175Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:646: Locals 0.0% +2025-07-23T19:39:15.4362740Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:656: local 100.0% +2025-07-23T19:39:15.4363345Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:673: validateTxBasics 100.0% +2025-07-23T19:39:15.4363976Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:694: validateTx 100.0% +2025-07-23T19:39:15.4364546Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:743: add 88.3% +2025-07-23T19:39:15.4365116Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:893: isGapped 100.0% +2025-07-23T19:39:15.4365701Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:919: enqueueTx 95.0% +2025-07-23T19:39:15.4366277Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:958: journalTx 75.0% +2025-07-23T19:39:15.4366853Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:972: promoteTx 58.8% +2025-07-23T19:39:15.4367447Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1009: addLocals 100.0% +2025-07-23T19:39:15.4368044Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1015: addLocal 100.0% +2025-07-23T19:39:15.4368739Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1024: addRemotes 100.0% +2025-07-23T19:39:15.4369336Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1030: addRemote 100.0% +2025-07-23T19:39:15.4369957Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1035: addRemotesSync 100.0% +2025-07-23T19:39:15.4370598Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1040: addRemoteSync 100.0% +2025-07-23T19:39:15.4371188Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1049: Add 100.0% +2025-07-23T19:39:15.4371780Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1104: addTxsLocked 100.0% +2025-07-23T19:39:15.4372378Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1120: Status 90.9% +2025-07-23T19:39:15.4372936Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1139: Get 0.0% +2025-07-23T19:39:15.4373483Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1148: get 100.0% +2025-07-23T19:39:15.4374029Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1154: Has 0.0% +2025-07-23T19:39:15.4374584Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1158: HasLocal 0.0% +2025-07-23T19:39:15.4375327Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1171: removeTx 93.3% +2025-07-23T19:39:15.4375924Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1236: requestReset 66.7% +2025-07-23T19:39:15.4376595Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1247: requestPromoteExecutables 66.7% +2025-07-23T19:39:15.4377266Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1257: queueTxEvent 100.0% +2025-07-23T19:39:15.4377904Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1267: scheduleReorgLoop 93.1% +2025-07-23T19:39:15.4378618Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1337: runReorg 84.1% +2025-07-23T19:39:15.4379193Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1420: reset 23.1% +2025-07-23T19:39:15.4379807Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1520: promoteExecutables 100.0% +2025-07-23T19:39:15.4380581Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1590: truncatePending 69.6% +2025-07-23T19:39:15.4381225Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1675: truncateQueue 100.0% +2025-07-23T19:39:15.4381878Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1726: demoteUnexecutables 96.9% +2025-07-23T19:39:15.4382565Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1781: startPeriodicFeeUpdate 85.7% +2025-07-23T19:39:15.4383255Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1797: periodicBaseFeeUpdate 100.0% +2025-07-23T19:39:15.4383909Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1820: updateBaseFee 80.0% +2025-07-23T19:39:15.4384543Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1831: updateBaseFeeAt 83.3% +2025-07-23T19:39:15.4385145Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1849: Len 100.0% +2025-07-23T19:39:15.4385715Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1850: Less 100.0% +2025-07-23T19:39:15.4386280Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1851: Swap 100.0% +2025-07-23T19:39:15.4386887Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1863: newAccountSet 100.0% +2025-07-23T19:39:15.4387506Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1875: contains 100.0% +2025-07-23T19:39:15.4388198Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1882: containsTx 66.7% +2025-07-23T19:39:15.4388785Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1890: add 100.0% +2025-07-23T19:39:15.4389355Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1896: addTx 100.0% +2025-07-23T19:39:15.4389935Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1904: flatten 100.0% +2025-07-23T19:39:15.4390509Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1916: merge 0.0% +2025-07-23T19:39:15.4391098Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1943: newLookup 100.0% +2025-07-23T19:39:15.4391679Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1953: Range 60.0% +2025-07-23T19:39:15.4392233Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1974: Get 80.0% +2025-07-23T19:39:15.4392800Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1985: GetLocal 0.0% +2025-07-23T19:39:15.4393389Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1993: GetRemote 100.0% +2025-07-23T19:39:15.4393973Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2001: Count 100.0% +2025-07-23T19:39:15.4394552Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2009: LocalCount 0.0% +2025-07-23T19:39:15.4395160Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2017: RemoteCount 100.0% +2025-07-23T19:39:15.4395888Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2025: Slots 100.0% +2025-07-23T19:39:15.4396452Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2033: Add 100.0% +2025-07-23T19:39:15.4397011Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2048: Remove 83.3% +2025-07-23T19:39:15.4397615Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2069: RemoteToLocals 66.7% +2025-07-23T19:39:15.4398361Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2085: RemotesBelowTip 100.0% +2025-07-23T19:39:15.4398982Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2097: numSlots 100.0% +2025-07-23T19:39:15.4399546Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:49: Len 100.0% +2025-07-23T19:39:15.4400060Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:50: Less 100.0% +2025-07-23T19:39:15.4400588Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:51: Swap 100.0% +2025-07-23T19:39:15.4401205Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:53: Push 100.0% +2025-07-23T19:39:15.4401726Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:57: Pop 100.0% +2025-07-23T19:39:15.4402267Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:76: newSortedMap 100.0% +2025-07-23T19:39:15.4402803Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:84: Get 100.0% +2025-07-23T19:39:15.4403302Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:90: Put 100.0% +2025-07-23T19:39:15.4403825Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:103: Forward 100.0% +2025-07-23T19:39:15.4404367Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:126: Filter 100.0% +2025-07-23T19:39:15.4404899Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:135: reheap 100.0% +2025-07-23T19:39:15.4405431Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:148: filter 100.0% +2025-07-23T19:39:15.4405958Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:168: Cap 92.3% +2025-07-23T19:39:15.4406477Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:195: Remove 100.0% +2025-07-23T19:39:15.4407004Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:223: Ready 100.0% +2025-07-23T19:39:15.4407523Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:243: Len 100.0% +2025-07-23T19:39:15.4408050Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:247: flatten 100.0% +2025-07-23T19:39:15.4408695Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:264: Flatten 100.0% +2025-07-23T19:39:15.4409247Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:274: LastElement 100.0% +2025-07-23T19:39:15.4409802Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:294: newList 100.0% +2025-07-23T19:39:15.4410341Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:305: Contains 100.0% +2025-07-23T19:39:15.4410864Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:314: Add 100.0% +2025-07-23T19:39:15.4411389Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:361: Forward 100.0% +2025-07-23T19:39:15.4411923Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:376: Filter 95.0% +2025-07-23T19:39:15.4412442Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:412: Cap 100.0% +2025-07-23T19:39:15.4412956Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:421: Remove 100.0% +2025-07-23T19:39:15.4413484Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:444: Ready 100.0% +2025-07-23T19:39:15.4413997Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:451: Len 100.0% +2025-07-23T19:39:15.4414512Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:456: Empty 100.0% +2025-07-23T19:39:15.4415036Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:463: Flatten 100.0% +2025-07-23T19:39:15.4415720Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:469: LastElement 100.0% +2025-07-23T19:39:15.4416285Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:475: subTotalCost 75.0% +2025-07-23T19:39:15.4416819Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:493: Len 100.0% +2025-07-23T19:39:15.4417335Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:494: Swap 100.0% +2025-07-23T19:39:15.4417854Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:496: Less 100.0% +2025-07-23T19:39:15.4418462Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:507: cmp 100.0% +2025-07-23T19:39:15.4418969Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:522: Push 100.0% +2025-07-23T19:39:15.4419480Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:527: Pop 100.0% +2025-07-23T19:39:15.4420025Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:563: newPricedList 100.0% +2025-07-23T19:39:15.4420695Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:570: Put 100.0% +2025-07-23T19:39:15.4421220Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:581: Removed 100.0% +2025-07-23T19:39:15.4421808Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:593: Underpriced 100.0% +2025-07-23T19:39:15.4422378Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:603: underpricedFor 70.0% +2025-07-23T19:39:15.4422936Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:628: Discard 61.9% +2025-07-23T19:39:15.4423465Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:667: Reheap 100.0% +2025-07-23T19:39:15.4424008Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:695: SetBaseFee 100.0% +2025-07-23T19:39:15.4424567Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:47: newNoncer 100.0% +2025-07-23T19:39:15.4425100Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:56: get 100.0% +2025-07-23T19:39:15.4425624Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:72: set 100.0% +2025-07-23T19:39:15.4426158Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:81: setIfLower 62.5% +2025-07-23T19:39:15.4426707Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:97: setAll 100.0% +2025-07-23T19:39:15.4427216Z github.com/ava-labs/coreth/core/txpool/subpool.go:65: Resolve 66.7% +2025-07-23T19:39:15.4427689Z github.com/ava-labs/coreth/core/txpool/txpool.go:103: New 76.9% +2025-07-23T19:39:15.4428250Z github.com/ava-labs/coreth/core/txpool/txpool.go:143: reserver 69.2% +2025-07-23T19:39:15.4428726Z github.com/ava-labs/coreth/core/txpool/txpool.go:186: Close 76.9% +2025-07-23T19:39:15.4429188Z github.com/ava-labs/coreth/core/txpool/txpool.go:215: loop 92.6% +2025-07-23T19:39:15.4429654Z github.com/ava-labs/coreth/core/txpool/txpool.go:308: GasTip 100.0% +2025-07-23T19:39:15.4430141Z github.com/ava-labs/coreth/core/txpool/txpool.go:314: SetGasTip 100.0% +2025-07-23T19:39:15.4430619Z github.com/ava-labs/coreth/core/txpool/txpool.go:323: MinFee 0.0% +2025-07-23T19:39:15.4431092Z github.com/ava-labs/coreth/core/txpool/txpool.go:329: SetMinFee 100.0% +2025-07-23T19:39:15.4431560Z github.com/ava-labs/coreth/core/txpool/txpool.go:339: Has 75.0% +2025-07-23T19:39:15.4432025Z github.com/ava-labs/coreth/core/txpool/txpool.go:350: HasLocal 0.0% +2025-07-23T19:39:15.4432483Z github.com/ava-labs/coreth/core/txpool/txpool.go:360: Get 0.0% +2025-07-23T19:39:15.4432927Z github.com/ava-labs/coreth/core/txpool/txpool.go:372: Add 90.0% +2025-07-23T19:39:15.4433415Z github.com/ava-labs/coreth/core/txpool/txpool.go:415: AddRemotesSync 100.0% +2025-07-23T19:39:15.4433914Z github.com/ava-labs/coreth/core/txpool/txpool.go:425: Pending 100.0% +2025-07-23T19:39:15.4434410Z github.com/ava-labs/coreth/core/txpool/txpool.go:439: PendingSize 100.0% +2025-07-23T19:39:15.4435046Z github.com/ava-labs/coreth/core/txpool/txpool.go:451: IteratePending 66.7% +2025-07-23T19:39:15.4435596Z github.com/ava-labs/coreth/core/txpool/txpool.go:461: SubscribeTransactions 85.7% +2025-07-23T19:39:15.4436162Z github.com/ava-labs/coreth/core/txpool/txpool.go:475: SubscribeNewReorgEvent 100.0% +2025-07-23T19:39:15.4436685Z github.com/ava-labs/coreth/core/txpool/txpool.go:481: Nonce 100.0% +2025-07-23T19:39:15.4437147Z github.com/ava-labs/coreth/core/txpool/txpool.go:496: Stats 0.0% +2025-07-23T19:39:15.4437609Z github.com/ava-labs/coreth/core/txpool/txpool.go:509: Content 0.0% +2025-07-23T19:39:15.4438080Z github.com/ava-labs/coreth/core/txpool/txpool.go:529: ContentFrom 0.0% +2025-07-23T19:39:15.4438658Z github.com/ava-labs/coreth/core/txpool/txpool.go:540: Locals 75.0% +2025-07-23T19:39:15.4439123Z github.com/ava-labs/coreth/core/txpool/txpool.go:558: Status 0.0% +2025-07-23T19:39:15.4439691Z github.com/ava-labs/coreth/core/txpool/txpool.go:574: Sync 75.0% +2025-07-23T19:39:15.4440213Z github.com/ava-labs/coreth/core/txpool/validation.go:67: ValidateTransaction 73.9% +2025-07-23T19:39:15.4440802Z github.com/ava-labs/coreth/core/txpool/validation.go:160: validateBlobSidecar 66.7% +2025-07-23T19:39:15.4441412Z github.com/ava-labs/coreth/core/txpool/validation.go:222: ValidateTransactionWithState 88.9% +2025-07-23T19:39:15.4441964Z github.com/ava-labs/coreth/core/vm/runtime/env.go:35: NewEnv 100.0% +2025-07-23T19:39:15.4442462Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:71: setDefaults 94.7% +2025-07-23T19:39:15.4442978Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:134: Execute 100.0% +2025-07-23T19:39:15.4443479Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:169: Create 77.8% +2025-07-23T19:39:15.4443968Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:203: Call 100.0% +2025-07-23T19:39:15.4444433Z github.com/ava-labs/coreth/eth/api.go:40: NewEthereumAPI 0.0% +2025-07-23T19:39:15.4444858Z github.com/ava-labs/coreth/eth/api.go:45: Etherbase 0.0% +2025-07-23T19:39:15.4445262Z github.com/ava-labs/coreth/eth/api.go:50: Coinbase 0.0% +2025-07-23T19:39:15.4445691Z github.com/ava-labs/coreth/eth/api_admin.go:50: NewAdminAPI 0.0% +2025-07-23T19:39:15.4446147Z github.com/ava-labs/coreth/eth/api_admin.go:56: ExportChain 0.0% +2025-07-23T19:39:15.4446602Z github.com/ava-labs/coreth/eth/api_admin.go:93: hasAllBlocks 0.0% +2025-07-23T19:39:15.4447049Z github.com/ava-labs/coreth/eth/api_admin.go:104: ImportChain 0.0% +2025-07-23T19:39:15.4447498Z github.com/ava-labs/coreth/eth/api_backend.go:72: ChainConfig 0.0% +2025-07-23T19:39:15.4447948Z github.com/ava-labs/coreth/eth/api_backend.go:77: IsArchive 0.0% +2025-07-23T19:39:15.4448556Z github.com/ava-labs/coreth/eth/api_backend.go:83: HistoricalProofQueryWindow 0.0% +2025-07-23T19:39:15.4449130Z github.com/ava-labs/coreth/eth/api_backend.go:87: IsAllowUnfinalizedQueries 0.0% +2025-07-23T19:39:15.4449678Z github.com/ava-labs/coreth/eth/api_backend.go:91: SetAllowUnfinalizedQueries 0.0% +2025-07-23T19:39:15.4450185Z github.com/ava-labs/coreth/eth/api_backend.go:95: CurrentBlock 0.0% +2025-07-23T19:39:15.4450665Z github.com/ava-labs/coreth/eth/api_backend.go:99: LastAcceptedBlock 0.0% +2025-07-23T19:39:15.4451154Z github.com/ava-labs/coreth/eth/api_backend.go:103: HeaderByNumber 0.0% +2025-07-23T19:39:15.4451631Z github.com/ava-labs/coreth/eth/api_backend.go:126: HeaderByHash 0.0% +2025-07-23T19:39:15.4452131Z github.com/ava-labs/coreth/eth/api_backend.go:149: HeaderByNumberOrHash 0.0% +2025-07-23T19:39:15.4452630Z github.com/ava-labs/coreth/eth/api_backend.go:166: BlockByNumber 0.0% +2025-07-23T19:39:15.4453103Z github.com/ava-labs/coreth/eth/api_backend.go:190: BlockByHash 0.0% +2025-07-23T19:39:15.4453560Z github.com/ava-labs/coreth/eth/api_backend.go:215: GetBody 0.0% +2025-07-23T19:39:15.4454164Z github.com/ava-labs/coreth/eth/api_backend.go:225: BlockByNumberOrHash 0.0% +2025-07-23T19:39:15.4454653Z github.com/ava-labs/coreth/eth/api_backend.go:245: BadBlocks 0.0% +2025-07-23T19:39:15.4455147Z github.com/ava-labs/coreth/eth/api_backend.go:249: StateAndHeaderByNumber 0.0% +2025-07-23T19:39:15.4455701Z github.com/ava-labs/coreth/eth/api_backend.go:265: StateAndHeaderByNumberOrHash 0.0% +2025-07-23T19:39:15.4456213Z github.com/ava-labs/coreth/eth/api_backend.go:289: GetReceipts 0.0% +2025-07-23T19:39:15.4456667Z github.com/ava-labs/coreth/eth/api_backend.go:296: GetLogs 0.0% +2025-07-23T19:39:15.4457109Z github.com/ava-labs/coreth/eth/api_backend.go:303: GetEVM 0.0% +2025-07-23T19:39:15.4457600Z github.com/ava-labs/coreth/eth/api_backend.go:317: SubscribeRemovedLogsEvent 0.0% +2025-07-23T19:39:15.4458237Z github.com/ava-labs/coreth/eth/api_backend.go:321: SubscribePendingLogsEvent 0.0% +2025-07-23T19:39:15.4458884Z github.com/ava-labs/coreth/eth/api_backend.go:325: SubscribeChainEvent 0.0% +2025-07-23T19:39:15.4459427Z github.com/ava-labs/coreth/eth/api_backend.go:329: SubscribeChainAcceptedEvent 0.0% +2025-07-23T19:39:15.4459971Z github.com/ava-labs/coreth/eth/api_backend.go:333: SubscribeChainHeadEvent 0.0% +2025-07-23T19:39:15.4460503Z github.com/ava-labs/coreth/eth/api_backend.go:337: SubscribeChainSideEvent 0.0% +2025-07-23T19:39:15.4461023Z github.com/ava-labs/coreth/eth/api_backend.go:341: SubscribeLogsEvent 0.0% +2025-07-23T19:39:15.4461559Z github.com/ava-labs/coreth/eth/api_backend.go:345: SubscribeAcceptedLogsEvent 0.0% +2025-07-23T19:39:15.4462132Z github.com/ava-labs/coreth/eth/api_backend.go:349: SubscribeAcceptedTransactionEvent 0.0% +2025-07-23T19:39:15.4462649Z github.com/ava-labs/coreth/eth/api_backend.go:353: SendTx 0.0% +2025-07-23T19:39:15.4463128Z github.com/ava-labs/coreth/eth/api_backend.go:367: GetPoolTransactions 0.0% +2025-07-23T19:39:15.4463646Z github.com/ava-labs/coreth/eth/api_backend.go:380: GetPoolTransaction 0.0% +2025-07-23T19:39:15.4464140Z github.com/ava-labs/coreth/eth/api_backend.go:384: GetTransaction 0.0% +2025-07-23T19:39:15.4464620Z github.com/ava-labs/coreth/eth/api_backend.go:407: GetPoolNonce 0.0% +2025-07-23T19:39:15.4465074Z github.com/ava-labs/coreth/eth/api_backend.go:411: Stats 0.0% +2025-07-23T19:39:15.4465526Z github.com/ava-labs/coreth/eth/api_backend.go:415: TxPoolContent 0.0% +2025-07-23T19:39:15.4466015Z github.com/ava-labs/coreth/eth/api_backend.go:419: TxPoolContentFrom 0.0% +2025-07-23T19:39:15.4466532Z github.com/ava-labs/coreth/eth/api_backend.go:423: SubscribeNewTxsEvent 0.0% +2025-07-23T19:39:15.4467042Z github.com/ava-labs/coreth/eth/api_backend.go:427: EstimateBaseFee 0.0% +2025-07-23T19:39:15.4467519Z github.com/ava-labs/coreth/eth/api_backend.go:431: SuggestPrice 0.0% +2025-07-23T19:39:15.4468005Z github.com/ava-labs/coreth/eth/api_backend.go:435: SuggestGasTipCap 0.0% +2025-07-23T19:39:15.4468916Z github.com/ava-labs/coreth/eth/api_backend.go:439: FeeHistory 0.0% +2025-07-23T19:39:15.4469466Z github.com/ava-labs/coreth/eth/api_backend.go:443: ChainDb 0.0% +2025-07-23T19:39:15.4469921Z github.com/ava-labs/coreth/eth/api_backend.go:447: EventMux 0.0% +2025-07-23T19:39:15.4470388Z github.com/ava-labs/coreth/eth/api_backend.go:451: AccountManager 0.0% +2025-07-23T19:39:15.4470868Z github.com/ava-labs/coreth/eth/api_backend.go:455: ExtRPCEnabled 0.0% +2025-07-23T19:39:15.4471360Z github.com/ava-labs/coreth/eth/api_backend.go:459: UnprotectedAllowed 75.0% +2025-07-23T19:39:15.4471847Z github.com/ava-labs/coreth/eth/api_backend.go:479: RPCGasCap 0.0% +2025-07-23T19:39:15.4472313Z github.com/ava-labs/coreth/eth/api_backend.go:483: RPCEVMTimeout 0.0% +2025-07-23T19:39:15.4472787Z github.com/ava-labs/coreth/eth/api_backend.go:487: RPCTxFeeCap 0.0% +2025-07-23T19:39:15.4473422Z github.com/ava-labs/coreth/eth/api_backend.go:491: PriceOptionsConfig 0.0% +2025-07-23T19:39:15.4473908Z github.com/ava-labs/coreth/eth/api_backend.go:495: BloomStatus 0.0% +2025-07-23T19:39:15.4474379Z github.com/ava-labs/coreth/eth/api_backend.go:500: ServiceFilter 0.0% +2025-07-23T19:39:15.4474834Z github.com/ava-labs/coreth/eth/api_backend.go:506: Engine 0.0% +2025-07-23T19:39:15.4475288Z github.com/ava-labs/coreth/eth/api_backend.go:510: CurrentHeader 0.0% +2025-07-23T19:39:15.4475800Z github.com/ava-labs/coreth/eth/api_backend.go:514: GetMaxBlocksPerRequest 0.0% +2025-07-23T19:39:15.4476302Z github.com/ava-labs/coreth/eth/api_backend.go:518: StateAtBlock 0.0% +2025-07-23T19:39:15.4476779Z github.com/ava-labs/coreth/eth/api_backend.go:522: StateAtNextBlock 0.0% +2025-07-23T19:39:15.4477278Z github.com/ava-labs/coreth/eth/api_backend.go:526: StateAtTransaction 0.0% +2025-07-23T19:39:15.4477772Z github.com/ava-labs/coreth/eth/api_backend.go:530: MinRequiredTip 0.0% +2025-07-23T19:39:15.4478496Z github.com/ava-labs/coreth/eth/api_backend.go:535: isLatestAndAllowed 0.0% +2025-07-23T19:39:15.4478982Z github.com/ava-labs/coreth/eth/api_debug.go:56: NewDebugAPI 0.0% +2025-07-23T19:39:15.4479435Z github.com/ava-labs/coreth/eth/api_debug.go:61: DumpBlock 0.0% +2025-07-23T19:39:15.4479870Z github.com/ava-labs/coreth/eth/api_debug.go:91: Preimage 0.0% +2025-07-23T19:39:15.4480310Z github.com/ava-labs/coreth/eth/api_debug.go:100: GetBadBlocks 0.0% +2025-07-23T19:39:15.4480766Z github.com/ava-labs/coreth/eth/api_debug.go:109: AccountRange 0.0% +2025-07-23T19:39:15.4481226Z github.com/ava-labs/coreth/eth/api_debug.go:175: StorageRangeAt 0.0% +2025-07-23T19:39:15.4481695Z github.com/ava-labs/coreth/eth/api_debug.go:194: storageRangeAt 84.0% +2025-07-23T19:39:15.4482200Z github.com/ava-labs/coreth/eth/api_debug.go:235: GetModifiedAccountsByNumber 0.0% +2025-07-23T19:39:15.4482754Z github.com/ava-labs/coreth/eth/api_debug.go:263: GetModifiedAccountsByHash 0.0% +2025-07-23T19:39:15.4483279Z github.com/ava-labs/coreth/eth/api_debug.go:285: getModifiedAccounts 0.0% +2025-07-23T19:39:15.4483773Z github.com/ava-labs/coreth/eth/api_debug.go:326: GetAccessibleState 0.0% +2025-07-23T19:39:15.4484262Z github.com/ava-labs/coreth/eth/backend.go:121: roundUpCacheSize 0.0% +2025-07-23T19:39:15.4484706Z github.com/ava-labs/coreth/eth/backend.go:128: New 0.0% +2025-07-23T19:39:15.4485107Z github.com/ava-labs/coreth/eth/backend.go:309: APIs 0.0% +2025-07-23T19:39:15.4485523Z github.com/ava-labs/coreth/eth/backend.go:349: Etherbase 0.0% +2025-07-23T19:39:15.4485968Z github.com/ava-labs/coreth/eth/backend.go:361: SetEtherbase 0.0% +2025-07-23T19:39:15.4486403Z github.com/ava-labs/coreth/eth/backend.go:369: Miner 0.0% +2025-07-23T19:39:15.4486848Z github.com/ava-labs/coreth/eth/backend.go:371: AccountManager 0.0% +2025-07-23T19:39:15.4487306Z github.com/ava-labs/coreth/eth/backend.go:372: BlockChain 0.0% +2025-07-23T19:39:15.4487742Z github.com/ava-labs/coreth/eth/backend.go:373: TxPool 0.0% +2025-07-23T19:39:15.4488259Z github.com/ava-labs/coreth/eth/backend.go:374: EventMux 0.0% +2025-07-23T19:39:15.4488804Z github.com/ava-labs/coreth/eth/backend.go:375: Engine 0.0% +2025-07-23T19:39:15.4489219Z github.com/ava-labs/coreth/eth/backend.go:376: ChainDb 0.0% +2025-07-23T19:39:15.4489650Z github.com/ava-labs/coreth/eth/backend.go:378: NetVersion 0.0% +2025-07-23T19:39:15.4490094Z github.com/ava-labs/coreth/eth/backend.go:379: ArchiveMode 0.0% +2025-07-23T19:39:15.4490543Z github.com/ava-labs/coreth/eth/backend.go:380: BloomIndexer 0.0% +2025-07-23T19:39:15.4490975Z github.com/ava-labs/coreth/eth/backend.go:384: Start 0.0% +2025-07-23T19:39:15.4491379Z github.com/ava-labs/coreth/eth/backend.go:395: Stop 0.0% +2025-07-23T19:39:15.4491819Z github.com/ava-labs/coreth/eth/backend.go:413: LastAcceptedBlock 0.0% +2025-07-23T19:39:15.4492473Z github.com/ava-labs/coreth/eth/backend.go:423: precheckPopulateMissingTries 0.0% +2025-07-23T19:39:15.4493011Z github.com/ava-labs/coreth/eth/backend.go:447: handleOfflinePruning 0.0% +2025-07-23T19:39:15.4493519Z github.com/ava-labs/coreth/eth/bloombits.go:57: startBloomHandlers 0.0% +2025-07-23T19:39:15.4494051Z github.com/ava-labs/coreth/eth/chain_with_final_block.go:20: CurrentFinalBlock 0.0% +2025-07-23T19:39:15.4494610Z github.com/ava-labs/coreth/eth/ethconfig/config.go:58: NewDefaultConfig 100.0% +2025-07-23T19:39:15.4495144Z github.com/ava-labs/coreth/eth/ethconfig/gen_config.go:18: MarshalTOML 0.0% +2025-07-23T19:39:15.4495672Z github.com/ava-labs/coreth/eth/ethconfig/gen_config.go:108: UnmarshalTOML 0.0% +2025-07-23T19:39:15.4496175Z github.com/ava-labs/coreth/eth/filters/api.go:87: NewFilterAPI 100.0% +2025-07-23T19:39:15.4496656Z github.com/ava-labs/coreth/eth/filters/api.go:101: timeoutLoop 100.0% +2025-07-23T19:39:15.4497304Z github.com/ava-labs/coreth/eth/filters/api.go:134: NewPendingTransactionFilter 100.0% +2025-07-23T19:39:15.4497869Z github.com/ava-labs/coreth/eth/filters/api.go:168: NewPendingTransactions 0.0% +2025-07-23T19:39:15.4498510Z github.com/ava-labs/coreth/eth/filters/api.go:211: NewAcceptedTransactions 0.0% +2025-07-23T19:39:15.4499050Z github.com/ava-labs/coreth/eth/filters/api.go:253: NewBlockFilter 0.0% +2025-07-23T19:39:15.4499528Z github.com/ava-labs/coreth/eth/filters/api.go:291: NewHeads 0.0% +2025-07-23T19:39:15.4499963Z github.com/ava-labs/coreth/eth/filters/api.go:328: Logs 0.0% +2025-07-23T19:39:15.4500405Z github.com/ava-labs/coreth/eth/filters/api.go:387: NewFilter 87.0% +2025-07-23T19:39:15.4500861Z github.com/ava-labs/coreth/eth/filters/api.go:432: GetLogs 90.0% +2025-07-23T19:39:15.4501344Z github.com/ava-labs/coreth/eth/filters/api.go:470: UninstallFilter 100.0% +2025-07-23T19:39:15.4501846Z github.com/ava-labs/coreth/eth/filters/api.go:486: GetFilterLogs 0.0% +2025-07-23T19:39:15.4502336Z github.com/ava-labs/coreth/eth/filters/api.go:528: GetFilterChanges 80.0% +2025-07-23T19:39:15.4502825Z github.com/ava-labs/coreth/eth/filters/api.go:581: returnHashes 0.0% +2025-07-23T19:39:15.4503292Z github.com/ava-labs/coreth/eth/filters/api.go:590: returnLogs 66.7% +2025-07-23T19:39:15.4503768Z github.com/ava-labs/coreth/eth/filters/api.go:598: UnmarshalJSON 75.5% +2025-07-23T19:39:15.4504251Z github.com/ava-labs/coreth/eth/filters/api.go:703: decodeAddress 75.0% +2025-07-23T19:39:15.4504733Z github.com/ava-labs/coreth/eth/filters/api.go:711: decodeTopic 75.0% +2025-07-23T19:39:15.4505224Z github.com/ava-labs/coreth/eth/filters/filter.go:58: NewRangeFilter 100.0% +2025-07-23T19:39:15.4505743Z github.com/ava-labs/coreth/eth/filters/filter.go:91: NewBlockFilter 100.0% +2025-07-23T19:39:15.4506245Z github.com/ava-labs/coreth/eth/filters/filter.go:100: newFilter 100.0% +2025-07-23T19:39:15.4506715Z github.com/ava-labs/coreth/eth/filters/filter.go:110: Logs 80.4% +2025-07-23T19:39:15.4507197Z github.com/ava-labs/coreth/eth/filters/filter.go:222: rangeLogsAsync 70.6% +2025-07-23T19:39:15.4507695Z github.com/ava-labs/coreth/eth/filters/filter.go:263: indexedLogs 0.0% +2025-07-23T19:39:15.4508290Z github.com/ava-labs/coreth/eth/filters/filter.go:309: unindexedLogs 81.8% +2025-07-23T19:39:15.4508783Z github.com/ava-labs/coreth/eth/filters/filter.go:331: blockLogs 100.0% +2025-07-23T19:39:15.4509273Z github.com/ava-labs/coreth/eth/filters/filter.go:340: checkMatches 82.4% +2025-07-23T19:39:15.4509757Z github.com/ava-labs/coreth/eth/filters/filter.go:370: includes 100.0% +2025-07-23T19:39:15.4510241Z github.com/ava-labs/coreth/eth/filters/filter.go:380: filterLogs 100.0% +2025-07-23T19:39:15.4510738Z github.com/ava-labs/coreth/eth/filters/filter.go:414: bloomFilter 100.0% +2025-07-23T19:39:15.4511383Z github.com/ava-labs/coreth/eth/filters/filter_system.go:55: withDefaults 100.0% +2025-07-23T19:39:15.4511944Z github.com/ava-labs/coreth/eth/filters/filter_system.go:101: NewFilterSystem 100.0% +2025-07-23T19:39:15.4512482Z github.com/ava-labs/coreth/eth/filters/filter_system.go:111: getLogs 66.7% +2025-07-23T19:39:15.4513018Z github.com/ava-labs/coreth/eth/filters/filter_system.go:209: NewEventSystem 92.3% +2025-07-23T19:39:15.4513546Z github.com/ava-labs/coreth/eth/filters/filter_system.go:253: Err 100.0% +2025-07-23T19:39:15.4514066Z github.com/ava-labs/coreth/eth/filters/filter_system.go:258: Unsubscribe 100.0% +2025-07-23T19:39:15.4514597Z github.com/ava-labs/coreth/eth/filters/filter_system.go:283: subscribe 100.0% +2025-07-23T19:39:15.4515139Z github.com/ava-labs/coreth/eth/filters/filter_system.go:292: SubscribeLogs 100.0% +2025-07-23T19:39:15.4515721Z github.com/ava-labs/coreth/eth/filters/filter_system.go:334: SubscribeAcceptedLogs 0.0% +2025-07-23T19:39:15.4516439Z github.com/ava-labs/coreth/eth/filters/filter_system.go:359: subscribeAcceptedLogs 0.0% +2025-07-23T19:39:15.4517064Z github.com/ava-labs/coreth/eth/filters/filter_system.go:376: subscribeMinedPendingLogs 100.0% +2025-07-23T19:39:15.4517656Z github.com/ava-labs/coreth/eth/filters/filter_system.go:393: subscribeLogs 100.0% +2025-07-23T19:39:15.4518335Z github.com/ava-labs/coreth/eth/filters/filter_system.go:410: subscribePendingLogs 100.0% +2025-07-23T19:39:15.4518933Z github.com/ava-labs/coreth/eth/filters/filter_system.go:427: SubscribeNewHeads 100.0% +2025-07-23T19:39:15.4519530Z github.com/ava-labs/coreth/eth/filters/filter_system.go:443: SubscribeAcceptedHeads 0.0% +2025-07-23T19:39:15.4520127Z github.com/ava-labs/coreth/eth/filters/filter_system.go:459: SubscribePendingTxs 100.0% +2025-07-23T19:39:15.4520720Z github.com/ava-labs/coreth/eth/filters/filter_system.go:475: SubscribeAcceptedTxs 0.0% +2025-07-23T19:39:15.4521309Z github.com/ava-labs/coreth/eth/filters/filter_system.go:491: handleLogs 83.3% +2025-07-23T19:39:15.4521870Z github.com/ava-labs/coreth/eth/filters/filter_system.go:503: handleAcceptedLogs 33.3% +2025-07-23T19:39:15.4522131Z github.com/ava-labs/coreth/eth/filters/filter_system.go:515: handlePendingLogs 83.3% +2025-07-23T19:39:15.4522379Z github.com/ava-labs/coreth/eth/filters/filter_system.go:527: handleTxsEvent 100.0% +2025-07-23T19:39:15.4522649Z github.com/ava-labs/coreth/eth/filters/filter_system.go:533: handleTxsAcceptedEvent 0.0% +2025-07-23T19:39:15.4522904Z github.com/ava-labs/coreth/eth/filters/filter_system.go:539: handleChainEvent 100.0% +2025-07-23T19:39:15.4523182Z github.com/ava-labs/coreth/eth/filters/filter_system.go:545: handleChainAcceptedEvent 0.0% +2025-07-23T19:39:15.4523418Z github.com/ava-labs/coreth/eth/filters/filter_system.go:552: eventLoop 53.8% +2025-07-23T19:39:15.4523659Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:63: Estimate 73.4% +2025-07-23T19:39:15.4523902Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:199: execute 88.9% +2025-07-23T19:39:15.4524133Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:218: run 91.7% +2025-07-23T19:39:15.4524410Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:63: newFeeInfoProvider 100.0% +2025-07-23T19:39:15.4524652Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:92: addHeader 100.0% +2025-07-23T19:39:15.4524883Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:125: get 100.0% +2025-07-23T19:39:15.4525140Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:136: populateCache 83.3% +2025-07-23T19:39:15.4525382Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:68: processBlock 84.6% +2025-07-23T19:39:15.4525639Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:89: processPercentiles 72.2% +2025-07-23T19:39:15.4525897Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:124: resolveBlockRange 100.0% +2025-07-23T19:39:15.4526299Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:177: FeeHistory 74.4% +2025-07-23T19:39:15.4526517Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:132: NewOracle 83.3% +2025-07-23T19:39:15.4526756Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:211: EstimateBaseFee 0.0% +2025-07-23T19:39:15.4527009Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:220: estimateNextBaseFee 57.1% +2025-07-23T19:39:15.4527235Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:239: SuggestPrice 60.0% +2025-07-23T19:39:15.4527473Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:266: SuggestTipCap 100.0% +2025-07-23T19:39:15.4527694Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:271: suggestTip 85.7% +2025-07-23T19:39:15.4527918Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:347: getFeeInfo 42.9% +2025-07-23T19:39:15.4528215Z github.com/ava-labs/coreth/eth/state_accessor.go:53: hashState 0.0% +2025-07-23T19:39:15.4528533Z github.com/ava-labs/coreth/eth/state_accessor.go:193: pathState 0.0% +2025-07-23T19:39:15.4528752Z github.com/ava-labs/coreth/eth/state_accessor.go:227: stateAtBlock 0.0% +2025-07-23T19:39:15.4528978Z github.com/ava-labs/coreth/eth/state_accessor.go:240: stateAtTransaction 0.0% +2025-07-23T19:39:15.4529196Z github.com/ava-labs/coreth/eth/state_accessor.go:287: StateAtNextBlock 0.0% +2025-07-23T19:39:15.4529395Z github.com/ava-labs/coreth/eth/tracers/api.go:115: NewAPI 100.0% +2025-07-23T19:39:15.4529610Z github.com/ava-labs/coreth/eth/tracers/api.go:127: NewFileTracerAPI 0.0% +2025-07-23T19:39:15.4529822Z github.com/ava-labs/coreth/eth/tracers/api.go:133: chainContext 100.0% +2025-07-23T19:39:15.4530031Z github.com/ava-labs/coreth/eth/tracers/api.go:139: blockByNumber 83.3% +2025-07-23T19:39:15.4530230Z github.com/ava-labs/coreth/eth/tracers/api.go:152: blockByHash 0.0% +2025-07-23T19:39:15.4530472Z github.com/ava-labs/coreth/eth/tracers/api.go:168: blockByNumberAndHash 66.7% +2025-07-23T19:39:15.4530664Z github.com/ava-labs/coreth/eth/tracers/api.go:213: String 0.0% +2025-07-23T19:39:15.4530867Z github.com/ava-labs/coreth/eth/tracers/api.go:243: TraceChain 0.0% +2025-07-23T19:39:15.4531065Z github.com/ava-labs/coreth/eth/tracers/api.go:276: traceChain 76.8% +2025-07-23T19:39:15.4531294Z github.com/ava-labs/coreth/eth/tracers/api.go:467: TraceBlockByNumber 100.0% +2025-07-23T19:39:15.4531516Z github.com/ava-labs/coreth/eth/tracers/api.go:477: TraceBlockByHash 0.0% +2025-07-23T19:39:15.4531714Z github.com/ava-labs/coreth/eth/tracers/api.go:487: TraceBlock 0.0% +2025-07-23T19:39:15.4531934Z github.com/ava-labs/coreth/eth/tracers/api.go:497: TraceBlockFromFile 0.0% +2025-07-23T19:39:15.4532145Z github.com/ava-labs/coreth/eth/tracers/api.go:508: TraceBadBlock 0.0% +2025-07-23T19:39:15.4532387Z github.com/ava-labs/coreth/eth/tracers/api.go:529: StandardTraceBlockToFile 0.0% +2025-07-23T19:39:15.4532618Z github.com/ava-labs/coreth/eth/tracers/api.go:539: IntermediateRoots 0.0% +2025-07-23T19:39:15.4532869Z github.com/ava-labs/coreth/eth/tracers/api.go:598: StandardTraceBadBlockToFile 0.0% +2025-07-23T19:39:15.4533067Z github.com/ava-labs/coreth/eth/tracers/api.go:619: traceBlock 76.0% +2025-07-23T19:39:15.4533293Z github.com/ava-labs/coreth/eth/tracers/api.go:679: traceBlockParallel 0.0% +2025-07-23T19:39:15.4533532Z github.com/ava-labs/coreth/eth/tracers/api.go:756: standardTraceBlockToFile 0.0% +2025-07-23T19:39:15.4533732Z github.com/ava-labs/coreth/eth/tracers/api.go:866: containsTx 0.0% +2025-07-23T19:39:15.4533947Z github.com/ava-labs/coreth/eth/tracers/api.go:877: TraceTransaction 73.7% +2025-07-23T19:39:15.4534141Z github.com/ava-labs/coreth/eth/tracers/api.go:920: TraceCall 80.6% +2025-07-23T19:39:15.4534337Z github.com/ava-labs/coreth/eth/tracers/api.go:996: traceTx 69.6% +2025-07-23T19:39:15.4534638Z github.com/ava-labs/coreth/eth/tracers/api.go:1042: APIs 0.0% +2025-07-23T19:39:15.4534853Z github.com/ava-labs/coreth/eth/tracers/api.go:1060: overrideConfig 0.0% +2025-07-23T19:39:15.4535091Z github.com/ava-labs/coreth/eth/tracers/tracker.go:49: newStateTracker 100.0% +2025-07-23T19:39:15.4535314Z github.com/ava-labs/coreth/eth/tracers/tracker.go:62: releaseState 100.0% +2025-07-23T19:39:15.4535535Z github.com/ava-labs/coreth/eth/tracers/tracker.go:95: callReleases 100.0% +2025-07-23T19:39:15.4535725Z github.com/ava-labs/coreth/eth/tracers/tracker.go:106: wait 87.5% +2025-07-23T19:39:15.4535969Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:53: New 0.0% +2025-07-23T19:39:15.4536271Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:59: CreateAccessList 0.0% +2025-07-23T19:39:15.4536533Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:92: GetProof 0.0% +2025-07-23T19:39:15.4536896Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:156: CallContract 0.0% +2025-07-23T19:39:15.4537163Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:166: GCStats 0.0% +2025-07-23T19:39:15.4537422Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:173: MemStats 0.0% +2025-07-23T19:39:15.4537773Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:180: SubscribePendingTransactions 0.0% +2025-07-23T19:39:15.4538041Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:184: toCallArg 0.0% +2025-07-23T19:39:15.4538420Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:219: toOverrideMap 0.0% +2025-07-23T19:39:15.4538622Z github.com/ava-labs/coreth/ethclient/ethclient.go:53: Dial 0.0% +2025-07-23T19:39:15.4538835Z github.com/ava-labs/coreth/ethclient/ethclient.go:58: DialContext 0.0% +2025-07-23T19:39:15.4539051Z github.com/ava-labs/coreth/ethclient/ethclient.go:67: NewClient 100.0% +2025-07-23T19:39:15.4539256Z github.com/ava-labs/coreth/ethclient/ethclient.go:72: Close 100.0% +2025-07-23T19:39:15.4539452Z github.com/ava-labs/coreth/ethclient/ethclient.go:77: Client 0.0% +2025-07-23T19:39:15.4539661Z github.com/ava-labs/coreth/ethclient/ethclient.go:84: ChainID 80.0% +2025-07-23T19:39:15.4539871Z github.com/ava-labs/coreth/ethclient/ethclient.go:97: BlockByHash 0.0% +2025-07-23T19:39:15.4540108Z github.com/ava-labs/coreth/ethclient/ethclient.go:106: BlockByNumber 100.0% +2025-07-23T19:39:15.4540328Z github.com/ava-labs/coreth/ethclient/ethclient.go:111: BlockNumber 100.0% +2025-07-23T19:39:15.4540547Z github.com/ava-labs/coreth/ethclient/ethclient.go:125: BlockReceipts 0.0% +2025-07-23T19:39:15.4540759Z github.com/ava-labs/coreth/ethclient/ethclient.go:141: getBlock 51.2% +2025-07-23T19:39:15.4540988Z github.com/ava-labs/coreth/ethclient/ethclient.go:221: HeaderByHash 80.0% +2025-07-23T19:39:15.4541223Z github.com/ava-labs/coreth/ethclient/ethclient.go:232: HeaderByNumber 80.0% +2025-07-23T19:39:15.4541456Z github.com/ava-labs/coreth/ethclient/ethclient.go:252: UnmarshalJSON 66.7% +2025-07-23T19:39:15.4541689Z github.com/ava-labs/coreth/ethclient/ethclient.go:260: TransactionByHash 0.0% +2025-07-23T19:39:15.4541927Z github.com/ava-labs/coreth/ethclient/ethclient.go:282: TransactionSender 0.0% +2025-07-23T19:39:15.4542155Z github.com/ava-labs/coreth/ethclient/ethclient.go:304: TransactionCount 0.0% +2025-07-23T19:39:15.4542393Z github.com/ava-labs/coreth/ethclient/ethclient.go:311: TransactionInBlock 0.0% +2025-07-23T19:39:15.4542642Z github.com/ava-labs/coreth/ethclient/ethclient.go:330: TransactionReceipt 80.0% +2025-07-23T19:39:15.4542862Z github.com/ava-labs/coreth/ethclient/ethclient.go:341: SyncProgress 0.0% +2025-07-23T19:39:15.4543094Z github.com/ava-labs/coreth/ethclient/ethclient.go:357: SubscribeNewHead 0.0% +2025-07-23T19:39:15.4543431Z github.com/ava-labs/coreth/ethclient/ethclient.go:371: NetworkID 0.0% +2025-07-23T19:39:15.4543639Z github.com/ava-labs/coreth/ethclient/ethclient.go:385: BalanceAt 0.0% +2025-07-23T19:39:15.4543869Z github.com/ava-labs/coreth/ethclient/ethclient.go:392: BalanceAtHash 0.0% +2025-07-23T19:39:15.4544075Z github.com/ava-labs/coreth/ethclient/ethclient.go:400: StorageAt 0.0% +2025-07-23T19:39:15.4544300Z github.com/ava-labs/coreth/ethclient/ethclient.go:407: StorageAtHash 0.0% +2025-07-23T19:39:15.4544501Z github.com/ava-labs/coreth/ethclient/ethclient.go:415: CodeAt 0.0% +2025-07-23T19:39:15.4544710Z github.com/ava-labs/coreth/ethclient/ethclient.go:422: CodeAtHash 0.0% +2025-07-23T19:39:15.4544920Z github.com/ava-labs/coreth/ethclient/ethclient.go:430: NonceAt 100.0% +2025-07-23T19:39:15.4545135Z github.com/ava-labs/coreth/ethclient/ethclient.go:437: NonceAtHash 0.0% +2025-07-23T19:39:15.4545341Z github.com/ava-labs/coreth/ethclient/ethclient.go:446: FilterLogs 0.0% +2025-07-23T19:39:15.4545696Z github.com/ava-labs/coreth/ethclient/ethclient.go:457: SubscribeFilterLogs 0.0% +2025-07-23T19:39:15.4545915Z github.com/ava-labs/coreth/ethclient/ethclient.go:472: toFilterArg 0.0% +2025-07-23T19:39:15.4546140Z github.com/ava-labs/coreth/ethclient/ethclient.go:539: CallContract 80.0% +2025-07-23T19:39:15.4546378Z github.com/ava-labs/coreth/ethclient/ethclient.go:550: CallContractAtHash 0.0% +2025-07-23T19:39:15.4546608Z github.com/ava-labs/coreth/ethclient/ethclient.go:572: SuggestGasPrice 0.0% +2025-07-23T19:39:15.4546845Z github.com/ava-labs/coreth/ethclient/ethclient.go:582: SuggestGasTipCap 0.0% +2025-07-23T19:39:15.4547055Z github.com/ava-labs/coreth/ethclient/ethclient.go:598: FeeHistory 0.0% +2025-07-23T19:39:15.4547274Z github.com/ava-labs/coreth/ethclient/ethclient.go:626: EstimateGas 0.0% +2025-07-23T19:39:15.4547508Z github.com/ava-labs/coreth/ethclient/ethclient.go:639: SendTransaction 75.0% +2025-07-23T19:39:15.4547738Z github.com/ava-labs/coreth/ethclient/ethclient.go:647: toBlockNumArg 85.7% +2025-07-23T19:39:15.4547952Z github.com/ava-labs/coreth/ethclient/ethclient.go:662: toCallArg 60.0% +2025-07-23T19:39:15.4548294Z github.com/ava-labs/coreth/ethclient/ethclient.go:722: toSyncProgress 0.0% +2025-07-23T19:39:15.4548538Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:44: NewClientWithHook 0.0% +2025-07-23T19:39:15.4548841Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:61: SubscribeNewAcceptedTransactions 0.0% +2025-07-23T19:39:15.4549131Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:73: SubscribeNewPendingTransactions 0.0% +2025-07-23T19:39:15.4549369Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:85: AcceptedCodeAt 0.0% +2025-07-23T19:39:15.4549601Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:91: AcceptedNonceAt 0.0% +2025-07-23T19:39:15.4549857Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:97: AcceptedCallContract 0.0% +2025-07-23T19:39:15.4550105Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:104: EstimateBaseFee 0.0% +2025-07-23T19:39:15.4550333Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:113: ToBlockNumArg 0.0% +2025-07-23T19:39:15.4550580Z github.com/ava-labs/coreth/ethclient/signer.go:48: setSenderFromServer 100.0% +2025-07-23T19:39:15.4550769Z github.com/ava-labs/coreth/ethclient/signer.go:53: Equal 0.0% +2025-07-23T19:39:15.4550961Z github.com/ava-labs/coreth/ethclient/signer.go:58: Sender 66.7% +2025-07-23T19:39:15.4551153Z github.com/ava-labs/coreth/ethclient/signer.go:65: ChainID 0.0% +2025-07-23T19:39:15.4551331Z github.com/ava-labs/coreth/ethclient/signer.go:68: Hash 0.0% +2025-07-23T19:39:15.4551545Z github.com/ava-labs/coreth/ethclient/signer.go:71: SignatureValues 0.0% +2025-07-23T19:39:15.4551765Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:48: Add 0.0% +2025-07-23T19:39:15.4552125Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:87: NewBackend 88.9% +2025-07-23T19:39:15.4552379Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:122: newWithNode 83.3% +2025-07-23T19:39:15.4552609Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:154: Close 100.0% +2025-07-23T19:39:15.4552835Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:163: Commit 75.0% +2025-07-23T19:39:15.4553077Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:171: buildBlock 73.3% +2025-07-23T19:39:15.4553346Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:196: acceptAncestors 83.3% +2025-07-23T19:39:15.4553583Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:219: Rollback 100.0% +2025-07-23T19:39:15.4553806Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:239: Fork 76.5% +2025-07-23T19:39:15.4554047Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:274: AdjustTime 100.0% +2025-07-23T19:39:15.4554386Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:280: Client 100.0% +2025-07-23T19:39:15.4554661Z github.com/ava-labs/coreth/ethclient/simulated/options.go:29: WithBlockGasLimit 100.0% +2025-07-23T19:39:15.4554927Z github.com/ava-labs/coreth/ethclient/simulated/options.go:37: WithCallGasLimit 100.0% +2025-07-23T19:39:15.4555165Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:51: NewHasher 100.0% +2025-07-23T19:39:15.4555388Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:56: Reset 100.0% +2025-07-23T19:39:15.4555619Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:61: Update 100.0% +2025-07-23T19:39:15.4555840Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:68: Hash 100.0% +2025-07-23T19:39:15.4556041Z github.com/ava-labs/coreth/internal/debug/api.go:70: Verbosity 0.0% +2025-07-23T19:39:15.4556245Z github.com/ava-labs/coreth/internal/debug/api.go:76: Vmodule 0.0% +2025-07-23T19:39:15.4556444Z github.com/ava-labs/coreth/internal/debug/api.go:81: MemStats 0.0% +2025-07-23T19:39:15.4556646Z github.com/ava-labs/coreth/internal/debug/api.go:88: GcStats 0.0% +2025-07-23T19:39:15.4556851Z github.com/ava-labs/coreth/internal/debug/api.go:96: CpuProfile 0.0% +2025-07-23T19:39:15.4557078Z github.com/ava-labs/coreth/internal/debug/api.go:106: StartCPUProfile 0.0% +2025-07-23T19:39:15.4557300Z github.com/ava-labs/coreth/internal/debug/api.go:127: StopCPUProfile 0.0% +2025-07-23T19:39:15.4557496Z github.com/ava-labs/coreth/internal/debug/api.go:143: GoTrace 0.0% +2025-07-23T19:39:15.4557712Z github.com/ava-labs/coreth/internal/debug/api.go:155: BlockProfile 0.0% +2025-07-23T19:39:15.4557949Z github.com/ava-labs/coreth/internal/debug/api.go:164: SetBlockProfileRate 0.0% +2025-07-23T19:39:15.4558272Z github.com/ava-labs/coreth/internal/debug/api.go:169: WriteBlockProfile 0.0% +2025-07-23T19:39:15.4565315Z github.com/ava-labs/coreth/internal/debug/api.go:176: MutexProfile 0.0% +2025-07-23T19:39:15.4565644Z github.com/ava-labs/coreth/internal/debug/api.go:184: SetMutexProfileFraction 0.0% +2025-07-23T19:39:15.4565898Z github.com/ava-labs/coreth/internal/debug/api.go:189: WriteMutexProfile 0.0% +2025-07-23T19:39:15.4566138Z github.com/ava-labs/coreth/internal/debug/api.go:196: WriteMemProfile 0.0% +2025-07-23T19:39:15.4566342Z github.com/ava-labs/coreth/internal/debug/api.go:203: Stacks 0.0% +2025-07-23T19:39:15.4566578Z github.com/ava-labs/coreth/internal/debug/api.go:242: FreeOSMemory 0.0% +2025-07-23T19:39:15.4566799Z github.com/ava-labs/coreth/internal/debug/api.go:248: SetGCPercent 0.0% +2025-07-23T19:39:15.4567012Z github.com/ava-labs/coreth/internal/debug/api.go:252: writeProfile 0.0% +2025-07-23T19:39:15.4567229Z github.com/ava-labs/coreth/internal/debug/api.go:265: expandHome 0.0% +2025-07-23T19:39:15.4567434Z github.com/ava-labs/coreth/internal/debug/flags.go:181: init 100.0% +2025-07-23T19:39:15.4567822Z github.com/ava-labs/coreth/internal/debug/flags.go:187: Setup 0.0% +2025-07-23T19:39:15.4568047Z github.com/ava-labs/coreth/internal/debug/flags.go:314: StartPProf 0.0% +2025-07-23T19:39:15.4568394Z github.com/ava-labs/coreth/internal/debug/flags.go:325: Exit 0.0% +2025-07-23T19:39:15.4568658Z github.com/ava-labs/coreth/internal/debug/flags.go:333: validateLogLocation 0.0% +2025-07-23T19:39:15.4568887Z github.com/ava-labs/coreth/internal/debug/loudpanic.go:33: LoudPanic 0.0% +2025-07-23T19:39:15.4569109Z github.com/ava-labs/coreth/internal/debug/trace.go:39: StartGoTrace 0.0% +2025-07-23T19:39:15.4569327Z github.com/ava-labs/coreth/internal/debug/trace.go:60: StopGoTrace 0.0% +2025-07-23T19:39:15.4569533Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:42: lock 0.0% +2025-07-23T19:39:15.4569753Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:57: LockAddr 0.0% +2025-07-23T19:39:15.4570099Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:62: UnlockAddr 0.0% +2025-07-23T19:39:15.4570381Z github.com/ava-labs/coreth/internal/ethapi/api.coreth.go:46: SuggestPriceOptions 86.7% +2025-07-23T19:39:15.4570663Z github.com/ava-labs/coreth/internal/ethapi/api.coreth.go:104: calculateFeeSpeeds 100.0% +2025-07-23T19:39:15.4570903Z github.com/ava-labs/coreth/internal/ethapi/api.go:76: NewEthereumAPI 100.0% +2025-07-23T19:39:15.4571107Z github.com/ava-labs/coreth/internal/ethapi/api.go:81: GasPrice 0.0% +2025-07-23T19:39:15.4571312Z github.com/ava-labs/coreth/internal/ethapi/api.go:91: BaseFee 0.0% +2025-07-23T19:39:15.4571560Z github.com/ava-labs/coreth/internal/ethapi/api.go:100: MaxPriorityFeePerGas 0.0% +2025-07-23T19:39:15.4571783Z github.com/ava-labs/coreth/internal/ethapi/api.go:116: FeeHistory 0.0% +2025-07-23T19:39:15.4571984Z github.com/ava-labs/coreth/internal/ethapi/api.go:148: Syncing 0.0% +2025-07-23T19:39:15.4572213Z github.com/ava-labs/coreth/internal/ethapi/api.go:158: NewTxPoolAPI 0.0% +2025-07-23T19:39:15.4572420Z github.com/ava-labs/coreth/internal/ethapi/api.go:163: Content 0.0% +2025-07-23T19:39:15.4572635Z github.com/ava-labs/coreth/internal/ethapi/api.go:191: ContentFrom 0.0% +2025-07-23T19:39:15.4572835Z github.com/ava-labs/coreth/internal/ethapi/api.go:215: Status 0.0% +2025-07-23T19:39:15.4573037Z github.com/ava-labs/coreth/internal/ethapi/api.go:225: Inspect 0.0% +2025-07-23T19:39:15.4573290Z github.com/ava-labs/coreth/internal/ethapi/api.go:265: NewEthereumAccountAPI 0.0% +2025-07-23T19:39:15.4573495Z github.com/ava-labs/coreth/internal/ethapi/api.go:270: Accounts 0.0% +2025-07-23T19:39:15.4573748Z github.com/ava-labs/coreth/internal/ethapi/api.go:284: NewPersonalAccountAPI 0.0% +2025-07-23T19:39:15.4573967Z github.com/ava-labs/coreth/internal/ethapi/api.go:293: ListAccounts 0.0% +2025-07-23T19:39:15.4574185Z github.com/ava-labs/coreth/internal/ethapi/api.go:307: ListWallets 0.0% +2025-07-23T19:39:15.4574401Z github.com/ava-labs/coreth/internal/ethapi/api.go:329: OpenWallet 0.0% +2025-07-23T19:39:15.4574629Z github.com/ava-labs/coreth/internal/ethapi/api.go:343: DeriveAccount 0.0% +2025-07-23T19:39:15.4574839Z github.com/ava-labs/coreth/internal/ethapi/api.go:359: NewAccount 0.0% +2025-07-23T19:39:15.4575059Z github.com/ava-labs/coreth/internal/ethapi/api.go:376: fetchKeystore 0.0% +2025-07-23T19:39:15.4575282Z github.com/ava-labs/coreth/internal/ethapi/api.go:385: ImportRawKey 0.0% +2025-07-23T19:39:15.4575502Z github.com/ava-labs/coreth/internal/ethapi/api.go:401: UnlockAccount 0.0% +2025-07-23T19:39:15.4575719Z github.com/ava-labs/coreth/internal/ethapi/api.go:430: LockAccount 0.0% +2025-07-23T19:39:15.4575949Z github.com/ava-labs/coreth/internal/ethapi/api.go:440: signTransaction 0.0% +2025-07-23T19:39:15.4576174Z github.com/ava-labs/coreth/internal/ethapi/api.go:460: SendTransaction 0.0% +2025-07-23T19:39:15.4576526Z github.com/ava-labs/coreth/internal/ethapi/api.go:482: SignTransaction 0.0% +2025-07-23T19:39:15.4576727Z github.com/ava-labs/coreth/internal/ethapi/api.go:526: Sign 0.0% +2025-07-23T19:39:15.4576932Z github.com/ava-labs/coreth/internal/ethapi/api.go:554: EcRecover 0.0% +2025-07-23T19:39:15.4577163Z github.com/ava-labs/coreth/internal/ethapi/api.go:571: InitializeWallet 0.0% +2025-07-23T19:39:15.4577362Z github.com/ava-labs/coreth/internal/ethapi/api.go:598: Unpair 0.0% +2025-07-23T19:39:15.4577604Z github.com/ava-labs/coreth/internal/ethapi/api.go:618: NewBlockChainAPI 100.0% +2025-07-23T19:39:15.4577805Z github.com/ava-labs/coreth/internal/ethapi/api.go:628: ChainId 0.0% +2025-07-23T19:39:15.4578018Z github.com/ava-labs/coreth/internal/ethapi/api.go:633: BlockNumber 0.0% +2025-07-23T19:39:15.4578335Z github.com/ava-labs/coreth/internal/ethapi/api.go:641: GetBalance 0.0% +2025-07-23T19:39:15.4578648Z github.com/ava-labs/coreth/internal/ethapi/api.go:671: Put 0.0% +2025-07-23T19:39:15.4578853Z github.com/ava-labs/coreth/internal/ethapi/api.go:676: Delete 0.0% +2025-07-23T19:39:15.4579056Z github.com/ava-labs/coreth/internal/ethapi/api.go:683: GetProof 0.0% +2025-07-23T19:39:15.4579260Z github.com/ava-labs/coreth/internal/ethapi/api.go:766: decodeHash 0.0% +2025-07-23T19:39:15.4579508Z github.com/ava-labs/coreth/internal/ethapi/api.go:788: GetHeaderByNumber 100.0% +2025-07-23T19:39:15.4579742Z github.com/ava-labs/coreth/internal/ethapi/api.go:805: GetHeaderByHash 100.0% +2025-07-23T19:39:15.4579975Z github.com/ava-labs/coreth/internal/ethapi/api.go:820: GetBlockByNumber 100.0% +2025-07-23T19:39:15.4580213Z github.com/ava-labs/coreth/internal/ethapi/api.go:838: GetBlockByHash 100.0% +2025-07-23T19:39:15.4580495Z github.com/ava-labs/coreth/internal/ethapi/api.go:847: GetUncleByBlockNumberAndIndex 0.0% +2025-07-23T19:39:15.4580783Z github.com/ava-labs/coreth/internal/ethapi/api.go:862: GetUncleByBlockHashAndIndex 0.0% +2025-07-23T19:39:15.4581051Z github.com/ava-labs/coreth/internal/ethapi/api.go:877: GetUncleCountByBlockNumber 0.0% +2025-07-23T19:39:15.4581314Z github.com/ava-labs/coreth/internal/ethapi/api.go:886: GetUncleCountByBlockHash 0.0% +2025-07-23T19:39:15.4581521Z github.com/ava-labs/coreth/internal/ethapi/api.go:895: GetCode 0.0% +2025-07-23T19:39:15.4581741Z github.com/ava-labs/coreth/internal/ethapi/api.go:907: GetStorageAt 0.0% +2025-07-23T19:39:15.4581978Z github.com/ava-labs/coreth/internal/ethapi/api.go:921: GetBlockReceipts 85.7% +2025-07-23T19:39:15.4582176Z github.com/ava-labs/coreth/internal/ethapi/api.go:966: Apply 84.2% +2025-07-23T19:39:15.4582377Z github.com/ava-labs/coreth/internal/ethapi/api.go:1017: Apply 56.2% +2025-07-23T19:39:15.4582620Z github.com/ava-labs/coreth/internal/ethapi/api.go:1058: NewChainContext 100.0% +2025-07-23T19:39:15.4582828Z github.com/ava-labs/coreth/internal/ethapi/api.go:1062: Engine 100.0% +2025-07-23T19:39:15.4583046Z github.com/ava-labs/coreth/internal/ethapi/api.go:1066: GetHeader 0.0% +2025-07-23T19:39:15.4583250Z github.com/ava-labs/coreth/internal/ethapi/api.go:1076: doCall 80.8% +2025-07-23T19:39:15.4583453Z github.com/ava-labs/coreth/internal/ethapi/api.go:1128: DoCall 43.8% +2025-07-23T19:39:15.4583652Z github.com/ava-labs/coreth/internal/ethapi/api.go:1163: Call 66.7% +2025-07-23T19:39:15.4583881Z github.com/ava-labs/coreth/internal/ethapi/api.go:1183: DoEstimateGas 77.8% +2025-07-23T19:39:15.4584104Z github.com/ava-labs/coreth/internal/ethapi/api.go:1227: EstimateGas 100.0% +2025-07-23T19:39:15.4584351Z github.com/ava-labs/coreth/internal/ethapi/api.go:1236: RPCMarshalHeader 80.0% +2025-07-23T19:39:15.4584594Z github.com/ava-labs/coreth/internal/ethapi/api.go:1281: RPCMarshalBlock 95.0% +2025-07-23T19:39:15.4584840Z github.com/ava-labs/coreth/internal/ethapi/api.go:1313: rpcMarshalHeader 100.0% +2025-07-23T19:39:15.4585194Z github.com/ava-labs/coreth/internal/ethapi/api.go:1323: rpcMarshalBlock 100.0% +2025-07-23T19:39:15.4585430Z github.com/ava-labs/coreth/internal/ethapi/api.go:1361: newRPCTransaction 94.9% +2025-07-23T19:39:15.4585672Z github.com/ava-labs/coreth/internal/ethapi/api.go:1438: effectiveGasPrice 0.0% +2025-07-23T19:39:15.4585907Z github.com/ava-labs/coreth/internal/ethapi/api.go:1450: NewRPCTransaction 0.0% +2025-07-23T19:39:15.4586210Z github.com/ava-labs/coreth/internal/ethapi/api.go:1463: newRPCTransactionFromBlockIndex 75.0% +2025-07-23T19:39:15.4586510Z github.com/ava-labs/coreth/internal/ethapi/api.go:1472: newRPCRawTransactionFromBlockIndex 0.0% +2025-07-23T19:39:15.4586742Z github.com/ava-labs/coreth/internal/ethapi/api.go:1492: CreateAccessList 0.0% +2025-07-23T19:39:15.4586965Z github.com/ava-labs/coreth/internal/ethapi/api.go:1511: AccessList 0.0% +2025-07-23T19:39:15.4587286Z github.com/ava-labs/coreth/internal/ethapi/api.go:1573: NewTransactionAPI 100.0% +2025-07-23T19:39:15.4587579Z github.com/ava-labs/coreth/internal/ethapi/api.go:1581: GetBlockTransactionCountByNumber 0.0% +2025-07-23T19:39:15.4587867Z github.com/ava-labs/coreth/internal/ethapi/api.go:1590: GetBlockTransactionCountByHash 0.0% +2025-07-23T19:39:15.4588259Z github.com/ava-labs/coreth/internal/ethapi/api.go:1599: GetTransactionByBlockNumberAndIndex 0.0% +2025-07-23T19:39:15.4588554Z github.com/ava-labs/coreth/internal/ethapi/api.go:1607: GetTransactionByBlockHashAndIndex 0.0% +2025-07-23T19:39:15.4588863Z github.com/ava-labs/coreth/internal/ethapi/api.go:1615: GetRawTransactionByBlockNumberAndIndex 0.0% +2025-07-23T19:39:15.4589158Z github.com/ava-labs/coreth/internal/ethapi/api.go:1623: GetRawTransactionByBlockHashAndIndex 0.0% +2025-07-23T19:39:15.4589408Z github.com/ava-labs/coreth/internal/ethapi/api.go:1631: GetTransactionCount 0.0% +2025-07-23T19:39:15.4589663Z github.com/ava-labs/coreth/internal/ethapi/api.go:1650: GetTransactionByHash 0.0% +2025-07-23T19:39:15.4589936Z github.com/ava-labs/coreth/internal/ethapi/api.go:1672: GetRawTransactionByHash 0.0% +2025-07-23T19:39:15.4590192Z github.com/ava-labs/coreth/internal/ethapi/api.go:1688: GetTransactionReceipt 75.0% +2025-07-23T19:39:15.4590426Z github.com/ava-labs/coreth/internal/ethapi/api.go:1715: marshalReceipt 84.6% +2025-07-23T19:39:15.4590633Z github.com/ava-labs/coreth/internal/ethapi/api.go:1757: sign 80.0% +2025-07-23T19:39:15.4590879Z github.com/ava-labs/coreth/internal/ethapi/api.go:1770: SubmitTransaction 0.0% +2025-07-23T19:39:15.4591113Z github.com/ava-labs/coreth/internal/ethapi/api.go:1802: SendTransaction 37.5% +2025-07-23T19:39:15.4591344Z github.com/ava-labs/coreth/internal/ethapi/api.go:1838: FillTransaction 87.5% +2025-07-23T19:39:15.4591582Z github.com/ava-labs/coreth/internal/ethapi/api.go:1856: SendRawTransaction 0.0% +2025-07-23T19:39:15.4591788Z github.com/ava-labs/coreth/internal/ethapi/api.go:1873: Sign 0.0% +2025-07-23T19:39:15.4592019Z github.com/ava-labs/coreth/internal/ethapi/api.go:1898: SignTransaction 65.0% +2025-07-23T19:39:15.4592267Z github.com/ava-labs/coreth/internal/ethapi/api.go:1932: PendingTransactions 0.0% +2025-07-23T19:39:15.4592472Z github.com/ava-labs/coreth/internal/ethapi/api.go:1957: Resend 0.0% +2025-07-23T19:39:15.4592696Z github.com/ava-labs/coreth/internal/ethapi/api.go:2014: NewDebugAPI 0.0% +2025-07-23T19:39:15.4592924Z github.com/ava-labs/coreth/internal/ethapi/api.go:2019: GetRawHeader 0.0% +2025-07-23T19:39:15.4593141Z github.com/ava-labs/coreth/internal/ethapi/api.go:2038: GetRawBlock 0.0% +2025-07-23T19:39:15.4593371Z github.com/ava-labs/coreth/internal/ethapi/api.go:2057: GetRawReceipts 0.0% +2025-07-23T19:39:15.4593613Z github.com/ava-labs/coreth/internal/ethapi/api.go:2084: GetRawTransaction 0.0% +2025-07-23T19:39:15.4593831Z github.com/ava-labs/coreth/internal/ethapi/api.go:2100: PrintBlock 0.0% +2025-07-23T19:39:15.4594170Z github.com/ava-labs/coreth/internal/ethapi/api.go:2114: NewNetAPI 0.0% +2025-07-23T19:39:15.4594380Z github.com/ava-labs/coreth/internal/ethapi/api.go:2119: Listening 0.0% +2025-07-23T19:39:15.4594586Z github.com/ava-labs/coreth/internal/ethapi/api.go:2124: PeerCount 0.0% +2025-07-23T19:39:15.4594796Z github.com/ava-labs/coreth/internal/ethapi/api.go:2129: Version 0.0% +2025-07-23T19:39:15.4595013Z github.com/ava-labs/coreth/internal/ethapi/api.go:2135: checkTxFee 28.6% +2025-07-23T19:39:15.4595256Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:20: GetChainConfig 0.0% +2025-07-23T19:39:15.4595490Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:32: CallDetailed 0.0% +2025-07-23T19:39:15.4595718Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:71: GetBadBlocks 0.0% +2025-07-23T19:39:15.4596017Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:103: stateQueryBlockNumberAllowed 90.5% +2025-07-23T19:39:15.4596384Z github.com/ava-labs/coreth/internal/ethapi/backend.go:115: GetAPIs 0.0% +2025-07-23T19:39:15.4596599Z github.com/ava-labs/coreth/internal/ethapi/errors.go:47: ErrorCode 0.0% +2025-07-23T19:39:15.4596812Z github.com/ava-labs/coreth/internal/ethapi/errors.go:52: ErrorData 0.0% +2025-07-23T19:39:15.4597045Z github.com/ava-labs/coreth/internal/ethapi/errors.go:57: newRevertError 0.0% +2025-07-23T19:39:15.4597290Z github.com/ava-labs/coreth/internal/ethapi/errors.go:75: NewTxIndexingError 0.0% +2025-07-23T19:39:15.4597492Z github.com/ava-labs/coreth/internal/ethapi/errors.go:78: Error 0.0% +2025-07-23T19:39:15.4597704Z github.com/ava-labs/coreth/internal/ethapi/errors.go:84: ErrorCode 0.0% +2025-07-23T19:39:15.4597918Z github.com/ava-labs/coreth/internal/ethapi/errors.go:89: ErrorData 0.0% +2025-07-23T19:39:15.4598260Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:91: from 100.0% +2025-07-23T19:39:15.4598510Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:99: data 100.0% +2025-07-23T19:39:15.4598778Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:110: setDefaults 61.9% +2025-07-23T19:39:15.4599054Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:203: setFeeDefaults 89.7% +2025-07-23T19:39:15.4599358Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:263: setCancunFeeDefaults 100.0% +2025-07-23T19:39:15.4599676Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:282: setApricotPhase3FeeDefault 90.9% +2025-07-23T19:39:15.4599959Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:310: setBlobTxSidecar 90.5% +2025-07-23T19:39:15.4600225Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:387: ToMessage 78.6% +2025-07-23T19:39:15.4600496Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:476: toTransaction 73.3% +2025-07-23T19:39:15.4600795Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:548: IsEIP4844 100.0% +2025-07-23T19:39:15.4601015Z github.com/ava-labs/coreth/internal/flags/categories.go:53: init 100.0% +2025-07-23T19:39:15.4601225Z github.com/ava-labs/coreth/internal/flags/helpers.go:47: NewApp 80.0% +2025-07-23T19:39:15.4601434Z github.com/ava-labs/coreth/internal/flags/helpers.go:62: Merge 0.0% +2025-07-23T19:39:15.4601678Z github.com/ava-labs/coreth/internal/flags/helpers.go:87: MigrateGlobalFlags 0.0% +2025-07-23T19:39:15.4601917Z github.com/ava-labs/coreth/internal/flags/helpers.go:114: doMigrateFlags 0.0% +2025-07-23T19:39:15.4602122Z github.com/ava-labs/coreth/internal/flags/helpers.go:149: init 50.0% +2025-07-23T19:39:15.4602340Z github.com/ava-labs/coreth/internal/flags/helpers.go:162: FlagString 0.0% +2025-07-23T19:39:15.4602551Z github.com/ava-labs/coreth/internal/flags/helpers.go:194: indent 0.0% +2025-07-23T19:39:15.4602764Z github.com/ava-labs/coreth/internal/flags/helpers.go:199: wordWrap 0.0% +2025-07-23T19:39:15.4603099Z github.com/ava-labs/coreth/internal/reexec/reexec.go:31: Register 0.0% +2025-07-23T19:39:15.4603299Z github.com/ava-labs/coreth/internal/reexec/reexec.go:40: Init 0.0% +2025-07-23T19:39:15.4603506Z github.com/ava-labs/coreth/internal/reexec/self_linux.go:23: Self 0.0% +2025-07-23T19:39:15.4603829Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:49: NewShutdownTracker 100.0% +2025-07-23T19:39:15.4604115Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:59: MarkStartup 71.4% +2025-07-23T19:39:15.4604380Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:75: Start 85.7% +2025-07-23T19:39:15.4604647Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:91: Stop 100.0% +2025-07-23T19:39:15.4604870Z github.com/ava-labs/coreth/internal/version/vcs.go:43: buildInfoVCS 36.4% +2025-07-23T19:39:15.4605085Z github.com/ava-labs/coreth/internal/version/version.go:54: VCS 83.3% +2025-07-23T19:39:15.4605410Z github.com/ava-labs/coreth/internal/version/version.go:69: ClientName 0.0% +2025-07-23T19:39:15.4605619Z github.com/ava-labs/coreth/internal/version/version.go:85: Info 42.9% +2025-07-23T19:39:15.4605857Z github.com/ava-labs/coreth/internal/version/version.go:112: versionInfo 50.0% +2025-07-23T19:39:15.4606087Z github.com/ava-labs/coreth/internal/version/version.go:142: findModule 50.0% +2025-07-23T19:39:15.4606271Z github.com/ava-labs/coreth/log/format.go:45: format 66.7% +2025-07-23T19:39:15.4606476Z github.com/ava-labs/coreth/log/format.go:103: formatAttributes 82.1% +2025-07-23T19:39:15.4606678Z github.com/ava-labs/coreth/log/format.go:150: FormatSlogValue 84.0% +2025-07-23T19:39:15.4606881Z github.com/ava-labs/coreth/log/format.go:206: appendInt64 100.0% +2025-07-23T19:39:15.4607072Z github.com/ava-labs/coreth/log/format.go:214: appendUint64 88.2% +2025-07-23T19:39:15.4607285Z github.com/ava-labs/coreth/log/format.go:249: FormatLogfmtUint64 0.0% +2025-07-23T19:39:15.4607482Z github.com/ava-labs/coreth/log/format.go:254: appendBigInt 12.5% +2025-07-23T19:39:15.4607670Z github.com/ava-labs/coreth/log/format.go:288: appendU256 50.0% +2025-07-23T19:39:15.4607892Z github.com/ava-labs/coreth/log/format.go:298: appendEscapeString 100.0% +2025-07-23T19:39:15.4608088Z github.com/ava-labs/coreth/log/format.go:331: escapeMessage 60.0% +2025-07-23T19:39:15.4608407Z github.com/ava-labs/coreth/log/format.go:352: writeTimeTermFormat 100.0% +2025-07-23T19:39:15.4608614Z github.com/ava-labs/coreth/log/format.go:372: writePosIntWidth 91.7% +2025-07-23T19:39:15.4608813Z github.com/ava-labs/coreth/log/handler.go:22: DiscardHandler 0.0% +2025-07-23T19:39:15.4608990Z github.com/ava-labs/coreth/log/handler.go:26: Handle 0.0% +2025-07-23T19:39:15.4609167Z github.com/ava-labs/coreth/log/handler.go:30: Enabled 0.0% +2025-07-23T19:39:15.4609356Z github.com/ava-labs/coreth/log/handler.go:34: WithGroup 0.0% +2025-07-23T19:39:15.4609538Z github.com/ava-labs/coreth/log/handler.go:38: WithAttrs 0.0% +2025-07-23T19:39:15.4609750Z github.com/ava-labs/coreth/log/handler.go:67: NewTerminalHandler 0.0% +2025-07-23T19:39:15.4609993Z github.com/ava-labs/coreth/log/handler.go:73: NewTerminalHandlerWithLevel 100.0% +2025-07-23T19:39:15.4610173Z github.com/ava-labs/coreth/log/handler.go:82: Handle 100.0% +2025-07-23T19:39:15.4610355Z github.com/ava-labs/coreth/log/handler.go:91: Enabled 100.0% +2025-07-23T19:39:15.4610536Z github.com/ava-labs/coreth/log/handler.go:95: WithGroup 0.0% +2025-07-23T19:39:15.4610724Z github.com/ava-labs/coreth/log/handler.go:99: WithAttrs 100.0% +2025-07-23T19:39:15.4610931Z github.com/ava-labs/coreth/log/handler.go:110: ResetFieldPadding 0.0% +2025-07-23T19:39:15.4611127Z github.com/ava-labs/coreth/log/handler.go:117: JSONHandler 0.0% +2025-07-23T19:39:15.4611473Z github.com/ava-labs/coreth/log/handler.go:123: JSONHandlerWithLevel 100.0% +2025-07-23T19:39:15.4611670Z github.com/ava-labs/coreth/log/handler.go:134: LogfmtHandler 0.0% +2025-07-23T19:39:15.4611900Z github.com/ava-labs/coreth/log/handler.go:142: LogfmtHandlerWithLevel 0.0% +2025-07-23T19:39:15.4612121Z github.com/ava-labs/coreth/log/handler.go:149: builtinReplaceLogfmt 0.0% +2025-07-23T19:39:15.4612341Z github.com/ava-labs/coreth/log/handler.go:153: builtinReplaceJSON 0.0% +2025-07-23T19:39:15.4612542Z github.com/ava-labs/coreth/log/handler.go:157: builtinReplace 0.0% +2025-07-23T19:39:15.4612740Z github.com/ava-labs/coreth/log/logger.go:46: LvlFromString 37.5% +2025-07-23T19:39:15.4612945Z github.com/ava-labs/coreth/log/logger.go:67: FromLegacyLevel 0.0% +2025-07-23T19:39:15.4613157Z github.com/ava-labs/coreth/log/logger.go:93: LevelAlignedString 37.5% +2025-07-23T19:39:15.4613351Z github.com/ava-labs/coreth/log/logger.go:113: LevelString 0.0% +2025-07-23T19:39:15.4613628Z github.com/ava-labs/coreth/log/logger.go:173: NewLogger 0.0% +2025-07-23T19:39:15.4613804Z github.com/ava-labs/coreth/log/logger.go:180: Write 0.0% +2025-07-23T19:39:15.4613974Z github.com/ava-labs/coreth/log/logger.go:196: Log 0.0% +2025-07-23T19:39:15.4614141Z github.com/ava-labs/coreth/log/logger.go:200: With 0.0% +2025-07-23T19:39:15.4614300Z github.com/ava-labs/coreth/log/logger.go:204: New 0.0% +2025-07-23T19:39:15.4614483Z github.com/ava-labs/coreth/log/logger.go:209: Enabled 0.0% +2025-07-23T19:39:15.4614649Z github.com/ava-labs/coreth/log/logger.go:213: Trace 0.0% +2025-07-23T19:39:15.4614821Z github.com/ava-labs/coreth/log/logger.go:217: Debug 0.0% +2025-07-23T19:39:15.4614983Z github.com/ava-labs/coreth/log/logger.go:221: Info 0.0% +2025-07-23T19:39:15.4615143Z github.com/ava-labs/coreth/log/logger.go:225: Warn 0.0% +2025-07-23T19:39:15.4615316Z github.com/ava-labs/coreth/log/logger.go:229: Error 0.0% +2025-07-23T19:39:15.4615477Z github.com/ava-labs/coreth/log/logger.go:233: Crit 0.0% +2025-07-23T19:39:15.4615724Z github.com/ava-labs/coreth/metrics/metricstest/metrics.go:15: WithMetrics 40.0% +2025-07-23T19:39:15.4615994Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:28: NewGatherer 100.0% +2025-07-23T19:39:15.4616237Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:36: Gather 100.0% +2025-07-23T19:39:15.4616478Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:64: ptrTo 100.0% +2025-07-23T19:39:15.4616736Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:66: metricFamily 94.1% +2025-07-23T19:39:15.4616898Z github.com/ava-labs/coreth/miner/miner.go:59: New 0.0% +2025-07-23T19:39:15.4617099Z github.com/ava-labs/coreth/miner/miner.go:65: SetEtherbase 0.0% +2025-07-23T19:39:15.4617293Z github.com/ava-labs/coreth/miner/miner.go:69: GenerateBlock 0.0% +2025-07-23T19:39:15.4617522Z github.com/ava-labs/coreth/miner/miner.go:75: SubscribePendingLogs 0.0% +2025-07-23T19:39:15.4617746Z github.com/ava-labs/coreth/miner/ordering.go:50: newTxWithMinerFee 100.0% +2025-07-23T19:39:15.4617923Z github.com/ava-labs/coreth/miner/ordering.go:72: Len 100.0% +2025-07-23T19:39:15.4618199Z github.com/ava-labs/coreth/miner/ordering.go:73: Less 100.0% +2025-07-23T19:39:15.4618378Z github.com/ava-labs/coreth/miner/ordering.go:82: Swap 100.0% +2025-07-23T19:39:15.4618556Z github.com/ava-labs/coreth/miner/ordering.go:84: Push 0.0% +2025-07-23T19:39:15.4618734Z github.com/ava-labs/coreth/miner/ordering.go:88: Pop 100.0% +2025-07-23T19:39:15.4619003Z github.com/ava-labs/coreth/miner/ordering.go:112: newTransactionsByPriceAndNonce 100.0% +2025-07-23T19:39:15.4619190Z github.com/ava-labs/coreth/miner/ordering.go:141: Peek 100.0% +2025-07-23T19:39:15.4619376Z github.com/ava-labs/coreth/miner/ordering.go:149: Shift 100.0% +2025-07-23T19:39:15.4619673Z github.com/ava-labs/coreth/miner/ordering.go:164: Pop 0.0% +2025-07-23T19:39:15.4619854Z github.com/ava-labs/coreth/miner/ordering.go:170: Empty 0.0% +2025-07-23T19:39:15.4620028Z github.com/ava-labs/coreth/miner/ordering.go:175: Clear 0.0% +2025-07-23T19:39:15.4620217Z github.com/ava-labs/coreth/miner/worker.go:116: newWorker 0.0% +2025-07-23T19:39:15.4620415Z github.com/ava-labs/coreth/miner/worker.go:133: setEtherbase 0.0% +2025-07-23T19:39:15.4620617Z github.com/ava-labs/coreth/miner/worker.go:140: commitNewWork 0.0% +2025-07-23T19:39:15.4620858Z github.com/ava-labs/coreth/miner/worker.go:264: createCurrentEnvironment 0.0% +2025-07-23T19:39:15.4621071Z github.com/ava-labs/coreth/miner/worker.go:313: commitTransaction 0.0% +2025-07-23T19:39:15.4621329Z github.com/ava-labs/coreth/miner/worker.go:327: commitBlobTransaction 0.0% +2025-07-23T19:39:15.4621657Z github.com/ava-labs/coreth/miner/worker.go:352: applyTransaction 0.0% +2025-07-23T19:39:15.4621882Z github.com/ava-labs/coreth/miner/worker.go:386: commitTransactions 0.0% +2025-07-23T19:39:15.4622060Z github.com/ava-labs/coreth/miner/worker.go:493: commit 0.0% +2025-07-23T19:39:15.4622254Z github.com/ava-labs/coreth/miner/worker.go:511: handleResult 0.0% +2025-07-23T19:39:15.4622449Z github.com/ava-labs/coreth/miner/worker.go:557: copyReceipts 0.0% +2025-07-23T19:39:15.4622642Z github.com/ava-labs/coreth/miner/worker.go:567: totalFees 0.0% +2025-07-23T19:39:15.4622928Z github.com/ava-labs/coreth/nativeasset/contract.go:36: PackNativeAssetBalanceInput 100.0% +2025-07-23T19:39:15.4623219Z github.com/ava-labs/coreth/nativeasset/contract.go:44: UnpackNativeAssetBalanceInput 100.0% +2025-07-23T19:39:15.4623414Z github.com/ava-labs/coreth/nativeasset/contract.go:55: Run 90.0% +2025-07-23T19:39:15.4623687Z github.com/ava-labs/coreth/nativeasset/contract.go:84: PackNativeAssetCallInput 100.0% +2025-07-23T19:39:15.4623974Z github.com/ava-labs/coreth/nativeasset/contract.go:94: UnpackNativeAssetCallInput 100.0% +2025-07-23T19:39:15.4624177Z github.com/ava-labs/coreth/nativeasset/contract.go:106: Run 100.0% +2025-07-23T19:39:15.4624371Z github.com/ava-labs/coreth/nativeasset/contract.go:123: run 81.0% +2025-07-23T19:39:15.4624576Z github.com/ava-labs/coreth/nativeasset/contract.go:168: Run 100.0% +2025-07-23T19:39:15.4624775Z github.com/ava-labs/coreth/network/network.go:125: NewNetwork 75.0% +2025-07-23T19:39:15.4625010Z github.com/ava-labs/coreth/network/network.go:155: SendAppRequestAny 90.0% +2025-07-23T19:39:15.4625225Z github.com/ava-labs/coreth/network/network.go:177: SendAppRequest 88.9% +2025-07-23T19:39:15.4625443Z github.com/ava-labs/coreth/network/network.go:204: sendAppRequest 70.0% +2025-07-23T19:39:15.4625646Z github.com/ava-labs/coreth/network/network.go:259: AppRequest 81.8% +2025-07-23T19:39:15.4625859Z github.com/ava-labs/coreth/network/network.go:304: AppResponse 100.0% +2025-07-23T19:39:15.4626085Z github.com/ava-labs/coreth/network/network.go:325: AppRequestFailed 71.4% +2025-07-23T19:39:15.4626341Z github.com/ava-labs/coreth/network/network.go:343: calculateTimeUntilDeadline 100.0% +2025-07-23T19:39:15.4626579Z github.com/ava-labs/coreth/network/network.go:365: markRequestFulfilled 100.0% +2025-07-23T19:39:15.4626783Z github.com/ava-labs/coreth/network/network.go:382: AppGossip 100.0% +2025-07-23T19:39:15.4626981Z github.com/ava-labs/coreth/network/network.go:387: Connected 87.5% +2025-07-23T19:39:15.4627185Z github.com/ava-labs/coreth/network/network.go:406: Disconnected 0.0% +2025-07-23T19:39:15.4627385Z github.com/ava-labs/coreth/network/network.go:424: Shutdown 100.0% +2025-07-23T19:39:15.4627628Z github.com/ava-labs/coreth/network/network.go:438: SetRequestHandler 100.0% +2025-07-23T19:39:15.4627924Z github.com/ava-labs/coreth/network/network.go:445: Size 100.0% +2025-07-23T19:39:15.4628233Z github.com/ava-labs/coreth/network/network.go:452: TrackBandwidth 0.0% +2025-07-23T19:39:15.4628490Z github.com/ava-labs/coreth/network/network.go:463: SendSyncedAppRequestAny 100.0% +2025-07-23T19:39:15.4628731Z github.com/ava-labs/coreth/network/network.go:475: SendSyncedAppRequest 75.0% +2025-07-23T19:39:15.4628924Z github.com/ava-labs/coreth/network/network.go:483: NewClient 0.0% +2025-07-23T19:39:15.4629132Z github.com/ava-labs/coreth/network/network.go:487: AddHandler 100.0% +2025-07-23T19:39:15.4629351Z github.com/ava-labs/coreth/network/network.go:492: P2PValidators 0.0% +2025-07-23T19:39:15.4629563Z github.com/ava-labs/coreth/network/network.go:501: nextRequestID 100.0% +2025-07-23T19:39:15.4629792Z github.com/ava-labs/coreth/network/network.go:511: IsNetworkRequest 100.0% +2025-07-23T19:39:15.4630024Z github.com/ava-labs/coreth/network/peer_tracker.go:55: NewPeerTracker 100.0% +2025-07-23T19:39:15.4630382Z github.com/ava-labs/coreth/network/peer_tracker.go:70: shouldTrackNewPeer 85.7% +2025-07-23T19:39:15.4630627Z github.com/ava-labs/coreth/network/peer_tracker.go:85: getResponsivePeer 75.0% +2025-07-23T19:39:15.4630847Z github.com/ava-labs/coreth/network/peer_tracker.go:98: GetAnyPeer 100.0% +2025-07-23T19:39:15.4631069Z github.com/ava-labs/coreth/network/peer_tracker.go:133: TrackPeer 100.0% +2025-07-23T19:39:15.4631298Z github.com/ava-labs/coreth/network/peer_tracker.go:138: TrackBandwidth 86.7% +2025-07-23T19:39:15.4631510Z github.com/ava-labs/coreth/network/peer_tracker.go:165: Connected 71.4% +2025-07-23T19:39:15.4631740Z github.com/ava-labs/coreth/network/peer_tracker.go:188: Disconnected 100.0% +2025-07-23T19:39:15.4631939Z github.com/ava-labs/coreth/network/peer_tracker.go:198: Size 100.0% +2025-07-23T19:39:15.4632214Z github.com/ava-labs/coreth/network/stats/stats.go:23: IncDeadlineDroppedRequest 100.0% +2025-07-23T19:39:15.4632484Z github.com/ava-labs/coreth/network/stats/stats.go:27: UpdateTimeUntilDeadline 100.0% +2025-07-23T19:39:15.4632745Z github.com/ava-labs/coreth/network/stats/stats.go:31: NewRequestHandlerStats 100.0% +2025-07-23T19:39:15.4633032Z github.com/ava-labs/coreth/network/waiting_handler.go:29: newWaitingResponseHandler 100.0% +2025-07-23T19:39:15.4633259Z github.com/ava-labs/coreth/network/waiting_handler.go:39: OnResponse 100.0% +2025-07-23T19:39:15.4633483Z github.com/ava-labs/coreth/network/waiting_handler.go:46: OnFailure 100.0% +2025-07-23T19:39:15.4633722Z github.com/ava-labs/coreth/network/waiting_handler.go:52: WaitForResult 100.0% +2025-07-23T19:39:15.4633887Z github.com/ava-labs/coreth/node/api.go:38: apis 100.0% +2025-07-23T19:39:15.4634076Z github.com/ava-labs/coreth/node/api.go:59: ClientVersion 0.0% +2025-07-23T19:39:15.4634233Z github.com/ava-labs/coreth/node/api.go:65: Sha3 0.0% +2025-07-23T19:39:15.4634441Z github.com/ava-labs/coreth/node/config.go:75: ExtRPCEnabled 100.0% +2025-07-23T19:39:15.4634642Z github.com/ava-labs/coreth/node/config.go:81: KeyDirConfig 60.0% +2025-07-23T19:39:15.4634842Z github.com/ava-labs/coreth/node/config.go:97: GetKeyStoreDir 75.0% +2025-07-23T19:39:15.4635063Z github.com/ava-labs/coreth/node/config.go:119: makeAccountManager 58.8% +2025-07-23T19:39:15.4635225Z github.com/ava-labs/coreth/node/node.go:42: New 87.5% +2025-07-23T19:39:15.4635398Z github.com/ava-labs/coreth/node/node.go:62: Config 100.0% +2025-07-23T19:39:15.4635604Z github.com/ava-labs/coreth/node/node.go:67: AccountManager 100.0% +2025-07-23T19:39:15.4635769Z github.com/ava-labs/coreth/node/node.go:72: APIs 100.0% +2025-07-23T19:39:15.4635998Z github.com/ava-labs/coreth/params/config_extra.go:34: SetEthUpgrades 79.3% +2025-07-23T19:39:15.4636206Z github.com/ava-labs/coreth/params/config_extra.go:91: GetExtra 60.0% +2025-07-23T19:39:15.4636518Z github.com/ava-labs/coreth/params/config_extra.go:100: Copy 0.0% +2025-07-23T19:39:15.4636736Z github.com/ava-labs/coreth/params/config_extra.go:107: WithExtra 100.0% +2025-07-23T19:39:15.4636947Z github.com/ava-labs/coreth/params/config_extra.go:122: MarshalJSON 0.0% +2025-07-23T19:39:15.4637166Z github.com/ava-labs/coreth/params/config_extra.go:152: UnmarshalJSON 0.0% +2025-07-23T19:39:15.4637405Z github.com/ava-labs/coreth/params/config_extra.go:174: ToWithUpgradesJSON 0.0% +2025-07-23T19:39:15.4637621Z github.com/ava-labs/coreth/params/config_libevm.go:18: libevmInit 100.0% +2025-07-23T19:39:15.4637870Z github.com/ava-labs/coreth/params/config_libevm.go:31: constructRulesExtra 53.3% +2025-07-23T19:39:15.4638088Z github.com/ava-labs/coreth/params/extras/config.go:96: copyAndSet 100.0% +2025-07-23T19:39:15.4638439Z github.com/ava-labs/coreth/params/extras/config.go:123: CheckConfigCompatible 0.0% +2025-07-23T19:39:15.4638773Z github.com/ava-labs/coreth/params/extras/config.go:145: Description 0.0% +2025-07-23T19:39:15.4639051Z github.com/ava-labs/coreth/params/extras/config.go:166: isForkTimestampIncompatible 0.0% +2025-07-23T19:39:15.4639296Z github.com/ava-labs/coreth/params/extras/config.go:172: isTimestampForked 100.0% +2025-07-23T19:39:15.4639554Z github.com/ava-labs/coreth/params/extras/config.go:179: configTimestampEqual 0.0% +2025-07-23T19:39:15.4639780Z github.com/ava-labs/coreth/params/extras/config.go:194: UnmarshalJSON 0.0% +2025-07-23T19:39:15.4640000Z github.com/ava-labs/coreth/params/extras/config.go:210: MarshalJSON 0.0% +2025-07-23T19:39:15.4640252Z github.com/ava-labs/coreth/params/extras/config.go:223: CheckConfigForkOrder 0.0% +2025-07-23T19:39:15.4640466Z github.com/ava-labs/coreth/params/extras/config.go:240: checkForks 0.0% +2025-07-23T19:39:15.4640672Z github.com/ava-labs/coreth/params/extras/config.go:281: Verify 0.0% +2025-07-23T19:39:15.4640924Z github.com/ava-labs/coreth/params/extras/config.go:291: IsPrecompileEnabled 0.0% +2025-07-23T19:39:15.4641172Z github.com/ava-labs/coreth/params/extras/config.go:303: IsForkTransition 100.0% +2025-07-23T19:39:15.4641401Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:61: Equal 0.0% +2025-07-23T19:39:15.4641720Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:65: checkNetworkUpgradesCompatible 0.0% +2025-07-23T19:39:15.4641966Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:112: forkOrder 0.0% +2025-07-23T19:39:15.4642232Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:133: IsApricotPhase1 0.0% +2025-07-23T19:39:15.4642495Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:139: IsApricotPhase2 0.0% +2025-07-23T19:39:15.4642762Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:145: IsApricotPhase3 0.0% +2025-07-23T19:39:15.4643021Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:151: IsApricotPhase4 0.0% +2025-07-23T19:39:15.4643293Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:157: IsApricotPhase5 0.0% +2025-07-23T19:39:15.4643568Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:163: IsApricotPhasePre6 0.0% +2025-07-23T19:39:15.4643828Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:169: IsApricotPhase6 0.0% +2025-07-23T19:39:15.4644114Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:175: IsApricotPhasePost6 0.0% +2025-07-23T19:39:15.4644352Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:181: IsBanff 0.0% +2025-07-23T19:39:15.4644597Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:187: IsCortina 0.0% +2025-07-23T19:39:15.4644835Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:193: IsDurango 0.0% +2025-07-23T19:39:15.4645066Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:199: IsEtna 0.0% +2025-07-23T19:39:15.4645427Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:205: IsFortuna 0.0% +2025-07-23T19:39:15.4645666Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:211: IsGranite 0.0% +2025-07-23T19:39:15.4645920Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:215: Description 0.0% +2025-07-23T19:39:15.4646191Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:234: GetNetworkUpgrades 0.0% +2025-07-23T19:39:15.4646458Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:264: GetAvalancheRules 0.0% +2025-07-23T19:39:15.4646711Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:283: ptrToString 0.0% +2025-07-23T19:39:15.4646980Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:32: UnmarshalJSON 0.0% +2025-07-23T19:39:15.4647243Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:59: MarshalJSON 0.0% +2025-07-23T19:39:15.4647549Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:71: verifyPrecompileUpgrades 0.0% +2025-07-23T19:39:15.4647936Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:137: GetActivePrecompileConfig 0.0% +2025-07-23T19:39:15.4648371Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:147: GetActivatingPrecompileConfigs 0.0% +2025-07-23T19:39:15.4648690Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:176: checkPrecompilesCompatible 0.0% +2025-07-23T19:39:15.4648998Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:192: checkPrecompileCompatible 0.0% +2025-07-23T19:39:15.4649316Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:230: EnabledStatefulPrecompiles 0.0% +2025-07-23T19:39:15.4649560Z github.com/ava-labs/coreth/params/extras/precompiles.go:18: UnmarshalJSON 0.0% +2025-07-23T19:39:15.4649795Z github.com/ava-labs/coreth/params/extras/rules.go:28: PredicatersExist 0.0% +2025-07-23T19:39:15.4650023Z github.com/ava-labs/coreth/params/extras/rules.go:32: PredicaterExists 0.0% +2025-07-23T19:39:15.4650268Z github.com/ava-labs/coreth/params/extras/rules.go:38: IsPrecompileEnabled 0.0% +2025-07-23T19:39:15.4650497Z github.com/ava-labs/coreth/params/hooks_libevm.go:28: GetRulesExtra 100.0% +2025-07-23T19:39:15.4650736Z github.com/ava-labs/coreth/params/hooks_libevm.go:33: CanCreateContract 0.0% +2025-07-23T19:39:15.4650988Z github.com/ava-labs/coreth/params/hooks_libevm.go:37: CanExecuteTransaction 0.0% +2025-07-23T19:39:15.4651236Z github.com/ava-labs/coreth/params/hooks_libevm.go:42: MinimumGasConsumption 0.0% +2025-07-23T19:39:15.4651465Z github.com/ava-labs/coreth/params/hooks_libevm.go:70: ActivePrecompiles 0.0% +2025-07-23T19:39:15.4651732Z github.com/ava-labs/coreth/params/hooks_libevm.go:92: precompileOverrideBuiltin 0.0% +2025-07-23T19:39:15.4651957Z github.com/ava-labs/coreth/params/hooks_libevm.go:113: makePrecompile 0.0% +2025-07-23T19:39:15.4652190Z github.com/ava-labs/coreth/params/hooks_libevm.go:140: PrecompileOverride 0.0% +2025-07-23T19:39:15.4652414Z github.com/ava-labs/coreth/params/hooks_libevm.go:160: GetStateDB 0.0% +2025-07-23T19:39:15.4652639Z github.com/ava-labs/coreth/params/hooks_libevm.go:172: GetBlockContext 0.0% +2025-07-23T19:39:15.4652863Z github.com/ava-labs/coreth/params/hooks_libevm.go:176: GetChainConfig 0.0% +2025-07-23T19:39:15.4653083Z github.com/ava-labs/coreth/params/hooks_libevm.go:180: GetSnowContext 0.0% +2025-07-23T19:39:15.4653309Z github.com/ava-labs/coreth/params/hooks_libevm.go:184: GetPrecompileEnv 0.0% +2025-07-23T19:39:15.4653516Z github.com/ava-labs/coreth/params/hooks_libevm.go:194: Number 0.0% +2025-07-23T19:39:15.4653722Z github.com/ava-labs/coreth/params/hooks_libevm.go:198: Timestamp 0.0% +2025-07-23T19:39:15.4653960Z github.com/ava-labs/coreth/params/hooks_libevm.go:202: GetPredicateResults 0.0% +2025-07-23T19:39:15.4654179Z github.com/ava-labs/coreth/params/version.go:53: VersionWithCommit 0.0% +2025-07-23T19:39:15.4654516Z github.com/ava-labs/coreth/plugin/evm/admin.go:22: NewAdminService 0.0% +2025-07-23T19:39:15.4654738Z github.com/ava-labs/coreth/plugin/evm/admin.go:30: StartCPUProfiler 0.0% +2025-07-23T19:39:15.4654955Z github.com/ava-labs/coreth/plugin/evm/admin.go:40: StopCPUProfiler 0.0% +2025-07-23T19:39:15.4655163Z github.com/ava-labs/coreth/plugin/evm/admin.go:50: MemoryProfile 0.0% +2025-07-23T19:39:15.4655369Z github.com/ava-labs/coreth/plugin/evm/admin.go:60: LockProfile 0.0% +2025-07-23T19:39:15.4655567Z github.com/ava-labs/coreth/plugin/evm/admin.go:69: SetLogLevel 0.0% +2025-07-23T19:39:15.4655768Z github.com/ava-labs/coreth/plugin/evm/admin.go:81: GetVMConfig 0.0% +2025-07-23T19:39:15.4656057Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/ops.go:12: ConvertToAtomicOps 75.0% +2025-07-23T19:39:15.4656443Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:26: AddItemsToBeRemovedToPeerChain 87.5% +2025-07-23T19:39:15.4656884Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:40: AssertOpsApplied 100.0% +2025-07-23T19:39:15.4657234Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:58: AssertOpsNotApplied 100.0% +2025-07-23T19:39:15.4657575Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:76: NewSharedMemories 100.0% +2025-07-23T19:39:15.4657896Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:85: TestSharedMemory 100.0% +2025-07-23T19:39:15.4658315Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:28: init 83.3% +2025-07-23T19:39:15.4658624Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:58: GasUsed 100.0% +2025-07-23T19:39:15.4658866Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:61: Verify 0.0% +2025-07-23T19:39:15.4659119Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:64: AtomicOps 100.0% +2025-07-23T19:39:15.4659377Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:69: Initialize 0.0% +2025-07-23T19:39:15.4659607Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:72: ID 100.0% +2025-07-23T19:39:15.4659855Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:75: Burned 100.0% +2025-07-23T19:39:15.4660087Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:78: Bytes 0.0% +2025-07-23T19:39:15.4660337Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:81: SignedBytes 0.0% +2025-07-23T19:39:15.4660600Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:84: InputUTXOs 100.0% +2025-07-23T19:39:15.4660829Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:87: Visit 0.0% +2025-07-23T19:39:15.4661109Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:92: EVMStateTransfer 0.0% +2025-07-23T19:39:15.4661432Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:98: GenerateTestImportTxWithGas 100.0% +2025-07-23T19:39:15.4661741Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:115: GenerateTestImportTx 100.0% +2025-07-23T19:39:15.4662041Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:130: GenerateTestExportTx 100.0% +2025-07-23T19:39:15.4662289Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:151: NewTestTx 80.0% +2025-07-23T19:39:15.4662555Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:163: NewTestTxs 100.0% +2025-07-23T19:39:15.4662765Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:25: init 85.7% +2025-07-23T19:39:15.4663006Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:57: ExtractAtomicTxs 0.0% +2025-07-23T19:39:15.4663252Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:76: ExtractAtomicTx 66.7% +2025-07-23T19:39:15.4663515Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:89: ExtractAtomicTxsBatch 0.0% +2025-07-23T19:39:15.4663755Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:60: InputUTXOs 0.0% +2025-07-23T19:39:15.4664108Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:75: Verify 0.0% +2025-07-23T19:39:15.4664336Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:134: GasUsed 0.0% +2025-07-23T19:39:15.4664566Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:156: Burned 0.0% +2025-07-23T19:39:15.4664786Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:182: Visit 0.0% +2025-07-23T19:39:15.4665017Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:185: AtomicOps 0.0% +2025-07-23T19:39:15.4665262Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:219: NewExportTx 0.0% +2025-07-23T19:39:15.4665519Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:313: EVMStateTransfer 0.0% +2025-07-23T19:39:15.4665787Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:352: getSpendableFunds 0.0% +2025-07-23T19:39:15.4666218Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:409: getSpendableAVAXWithFee 0.0% +2025-07-23T19:39:15.4666466Z github.com/ava-labs/coreth/plugin/evm/atomic/gossip.go:12: MarshalGossip 100.0% +2025-07-23T19:39:15.4666722Z github.com/ava-labs/coreth/plugin/evm/atomic/gossip.go:16: UnmarshalGossip 100.0% +2025-07-23T19:39:15.4666955Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:63: InputUTXOs 0.0% +2025-07-23T19:39:15.4667180Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:72: Verify 0.0% +2025-07-23T19:39:15.4667405Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:136: GasUsed 0.0% +2025-07-23T19:39:15.4667630Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:161: Burned 0.0% +2025-07-23T19:39:15.4667867Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:192: AtomicOps 0.0% +2025-07-23T19:39:15.4668213Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:202: NewImportTx 0.0% +2025-07-23T19:39:15.4668482Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:335: EVMStateTransfer 0.0% +2025-07-23T19:39:15.4668710Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:352: Visit 0.0% +2025-07-23T19:39:15.4668945Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:18: Initialize 100.0% +2025-07-23T19:39:15.4669165Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:25: ID 100.0% +2025-07-23T19:39:15.4669383Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:30: Bytes 0.0% +2025-07-23T19:39:15.4669625Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:35: SignedBytes 100.0% +2025-07-23T19:39:15.4669925Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:42: NewAtomicBackend 75.0% +2025-07-23T19:39:15.4670203Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:79: initialize 72.0% +2025-07-23T19:39:15.4670523Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:182: ApplyToSharedMemory 63.3% +2025-07-23T19:39:15.4670885Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:303: MarkApplyToSharedMemoryCursor 100.0% +2025-07-23T19:39:15.4671206Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:309: GetVerifiedAtomicState 0.0% +2025-07-23T19:39:15.4671505Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:320: getAtomicRootAt 0.0% +2025-07-23T19:39:15.4671796Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:332: SetLastAccepted 0.0% +2025-07-23T19:39:15.4672072Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:343: InsertTxs 0.0% +2025-07-23T19:39:15.4672337Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:393: IsBonus 0.0% +2025-07-23T19:39:15.4672619Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:400: AtomicTrie 100.0% +2025-07-23T19:39:15.4672915Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:406: mergeAtomicOps 91.7% +2025-07-23T19:39:15.4673352Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:428: mergeAtomicOpsToMap 100.0% +2025-07-23T19:39:15.4673647Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:438: AddBonusBlock 0.0% +2025-07-23T19:39:15.4673977Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:65: NewAtomicTxRepository 75.0% +2025-07-23T19:39:15.4674305Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:85: initializeHeightIndex 59.6% +2025-07-23T19:39:15.4674608Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:185: GetIndexHeight 0.0% +2025-07-23T19:39:15.4674891Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:201: GetByTxID 0.0% +2025-07-23T19:39:15.4675191Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:229: GetByHeight 100.0% +2025-07-23T19:39:15.4675505Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:236: getByHeightBytes 100.0% +2025-07-23T19:39:15.4675888Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:248: Write 100.0% +2025-07-23T19:39:15.4676184Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:254: WriteBonus 0.0% +2025-07-23T19:39:15.4676456Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:258: write 72.2% +2025-07-23T19:39:15.4676746Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:300: indexTxByID 80.0% +2025-07-23T19:39:15.4677058Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:320: indexTxsAtHeight 66.7% +2025-07-23T19:39:15.4677392Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:335: appendTxToHeightIndex 75.0% +2025-07-23T19:39:15.4677711Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:356: IterateByHeight 100.0% +2025-07-23T19:39:15.4677960Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:28: Root 0.0% +2025-07-23T19:39:15.4678326Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:35: Accept 0.0% +2025-07-23T19:39:15.4678586Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:78: Reject 0.0% +2025-07-23T19:39:15.4678864Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:52: newAtomicTrie 58.3% +2025-07-23T19:39:15.4679196Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:103: lastCommittedRootIfExists 72.7% +2025-07-23T19:39:15.4679500Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:126: nearestCommitHeight 100.0% +2025-07-23T19:39:15.4679766Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:130: OpenTrie 100.0% +2025-07-23T19:39:15.4680030Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:135: Commit 75.0% +2025-07-23T19:39:15.4680301Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:143: UpdateTrie 80.0% +2025-07-23T19:39:15.4680596Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:165: LastCommitted 100.0% +2025-07-23T19:39:15.4680903Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:171: updateLastCommitted 75.0% +2025-07-23T19:39:15.4681165Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:191: Iterator 75.0% +2025-07-23T19:39:15.4681423Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:205: TrieDB 0.0% +2025-07-23T19:39:15.4681673Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:212: Root 100.0% +2025-07-23T19:39:15.4681938Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:218: getRoot 62.5% +2025-07-23T19:39:15.4682233Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:237: LastAcceptedRoot 100.0% +2025-07-23T19:39:15.4682499Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:241: InsertTrie 55.6% +2025-07-23T19:39:15.4682889Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:263: AcceptTrie 83.3% +2025-07-23T19:39:15.4683155Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:293: RejectTrie 0.0% +2025-07-23T19:39:15.4683504Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:28: NewAtomicTrieIterator 100.0% +2025-07-23T19:39:15.4683789Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:33: Error 100.0% +2025-07-23T19:39:15.4684067Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:42: Next 81.0% +2025-07-23T19:39:15.4684371Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:81: resetFields 100.0% +2025-07-23T19:39:15.4684667Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:90: BlockNumber 100.0% +2025-07-23T19:39:15.4684978Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:95: BlockchainID 100.0% +2025-07-23T19:39:15.4685385Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:101: AtomicOps 100.0% +2025-07-23T19:39:15.4685659Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:107: Key 0.0% +2025-07-23T19:39:15.4685944Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:112: Value 0.0% +2025-07-23T19:39:15.4686177Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:29: MarshalJSON 0.0% +2025-07-23T19:39:15.4686419Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:37: UnmarshalJSON 0.0% +2025-07-23T19:39:15.4686635Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:58: Valid 0.0% +2025-07-23T19:39:15.4686848Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:67: String 0.0% +2025-07-23T19:39:15.4687100Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:29: Initialize 0.0% +2025-07-23T19:39:15.4687329Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:36: Sync 0.0% +2025-07-23T19:39:15.4687624Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:69: OnFinishBeforeCommit 0.0% +2025-07-23T19:39:15.4687909Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:81: OnFinishAfterCommit 0.0% +2025-07-23T19:39:15.4688281Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:28: OnLeafsRequest 0.0% +2025-07-23T19:39:15.4688566Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:38: NewLeafHandler 0.0% +2025-07-23T19:39:15.4688829Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:45: Initialize 0.0% +2025-07-23T19:39:15.4689080Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:32: NewSummary 80.0% +2025-07-23T19:39:15.4689322Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:57: Bytes 100.0% +2025-07-23T19:39:15.4689548Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:61: ID 100.0% +2025-07-23T19:39:15.4689790Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:65: String 0.0% +2025-07-23T19:39:15.4690022Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:69: Accept 66.7% +2025-07-23T19:39:15.4690321Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_parser.go:17: NewSummaryParser 100.0% +2025-07-23T19:39:15.4690586Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_parser.go:21: Parse 80.0% +2025-07-23T19:39:15.4690862Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_provider.go:25: Initialize 0.0% +2025-07-23T19:39:15.4691173Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_provider.go:30: StateSummaryAtBlock 0.0% +2025-07-23T19:39:15.4691422Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:88: Validate 100.0% +2025-07-23T19:39:15.4691665Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:162: addZeroes 100.0% +2025-07-23T19:39:15.4691911Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:170: newSyncer 86.7% +2025-07-23T19:39:15.4692263Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:211: Start 100.0% +2025-07-23T19:39:15.4692499Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:219: onLeafs 70.8% +2025-07-23T19:39:15.4692740Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:267: onFinish 58.3% +2025-07-23T19:39:15.4693004Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:293: onSyncFailure 100.0% +2025-07-23T19:39:15.4693239Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:300: Wait 100.0% +2025-07-23T19:39:15.4693468Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:318: Start 100.0% +2025-07-23T19:39:15.4693692Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:319: End 100.0% +2025-07-23T19:39:15.4693938Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:320: NodeType 100.0% +2025-07-23T19:39:15.4694175Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:321: OnFinish 100.0% +2025-07-23T19:39:15.4694527Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:322: OnStart 100.0% +2025-07-23T19:39:15.4694762Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:323: Root 100.0% +2025-07-23T19:39:15.4694997Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:324: Account 100.0% +2025-07-23T19:39:15.4695244Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:325: OnLeafs 100.0% +2025-07-23T19:39:15.4695452Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:70: Compare 0.0% +2025-07-23T19:39:15.4695657Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:86: Compare 0.0% +2025-07-23T19:39:15.4695861Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:95: Verify 0.0% +2025-07-23T19:39:15.4696060Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:108: Verify 0.0% +2025-07-23T19:39:15.4696271Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:183: Compare 0.0% +2025-07-23T19:39:15.4696475Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:197: Sign 82.4% +2025-07-23T19:39:15.4696726Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:231: BlockFeeContribution 0.0% +2025-07-23T19:39:15.4696947Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:261: GossipID 100.0% +2025-07-23T19:39:15.4697146Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:271: Less 0.0% +2025-07-23T19:39:15.4697346Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:279: Len 0.0% +2025-07-23T19:39:15.4697542Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:281: Swap 0.0% +2025-07-23T19:39:15.4697805Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:287: SortEVMInputsAndSigners 0.0% +2025-07-23T19:39:15.4698058Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:293: CalculateDynamicFee 0.0% +2025-07-23T19:39:15.4698383Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:309: calcBytesCost 0.0% +2025-07-23T19:39:15.4698682Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:48: newMempoolMetrics 100.0% +2025-07-23T19:39:15.4698956Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:89: Initialize 93.3% +2025-07-23T19:39:15.4699220Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:114: PendingLen 0.0% +2025-07-23T19:39:15.4699463Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:119: Len 0.0% +2025-07-23T19:39:15.4699714Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:127: length 100.0% +2025-07-23T19:39:15.4699997Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:133: atomicTxGasPrice 77.8% +2025-07-23T19:39:15.4700240Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:148: Add 100.0% +2025-07-23T19:39:15.4700510Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:157: AddRemoteTx 100.0% +2025-07-23T19:39:15.4700770Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:180: AddLocalTx 0.0% +2025-07-23T19:39:15.4701150Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:193: ForceAddTx 0.0% +2025-07-23T19:39:15.4701429Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:203: checkConflictTx 26.7% +2025-07-23T19:39:15.4701676Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:234: addTx 64.6% +2025-07-23T19:39:15.4701927Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:352: Iterate 100.0% +2025-07-23T19:39:15.4702184Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:363: GetFilter 0.0% +2025-07-23T19:39:15.4702429Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:371: NextTx 88.9% +2025-07-23T19:39:15.4702693Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:391: GetPendingTx 0.0% +2025-07-23T19:39:15.4702939Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:401: GetTx 72.7% +2025-07-23T19:39:15.4703177Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:422: Has 100.0% +2025-07-23T19:39:15.4703562Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:428: IssueCurrentTxs 88.9% +2025-07-23T19:39:15.4703849Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:451: CancelCurrentTx 0.0% +2025-07-23T19:39:15.4704125Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:464: CancelCurrentTxs 0.0% +2025-07-23T19:39:15.4704380Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:484: cancelTx 0.0% +2025-07-23T19:39:15.4704652Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:505: DiscardCurrentTx 0.0% +2025-07-23T19:39:15.4704929Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:515: DiscardCurrentTxs 0.0% +2025-07-23T19:39:15.4705203Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:526: discardCurrentTx 0.0% +2025-07-23T19:39:15.4705456Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:540: removeTx 91.7% +2025-07-23T19:39:15.4705740Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:565: removeSpenders 50.0% +2025-07-23T19:39:15.4705986Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:573: RemoveTx 0.0% +2025-07-23T19:39:15.4706250Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:581: addPending 100.0% +2025-07-23T19:39:15.4706548Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:590: SubscribePendingTxs 0.0% +2025-07-23T19:39:15.4706831Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:29: newInternalTxHeap 100.0% +2025-07-23T19:39:15.4707070Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:37: Len 100.0% +2025-07-23T19:39:15.4707310Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:39: Less 100.0% +2025-07-23T19:39:15.4707545Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:46: Swap 100.0% +2025-07-23T19:39:15.4707785Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:52: Push 80.0% +2025-07-23T19:39:15.4708024Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:61: Pop 100.0% +2025-07-23T19:39:15.4708382Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:70: Get 100.0% +2025-07-23T19:39:15.4708620Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:78: Has 100.0% +2025-07-23T19:39:15.4708875Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:88: newTxHeap 100.0% +2025-07-23T19:39:15.4709117Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:95: Push 100.0% +2025-07-23T19:39:15.4709362Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:113: PeekMax 0.0% +2025-07-23T19:39:15.4709614Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:119: PeekMin 100.0% +2025-07-23T19:39:15.4709866Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:125: PopMax 100.0% +2025-07-23T19:39:15.4710236Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:130: PopMin 100.0% +2025-07-23T19:39:15.4710482Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:134: Remove 75.0% +2025-07-23T19:39:15.4710716Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:150: Len 100.0% +2025-07-23T19:39:15.4710957Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:154: Get 100.0% +2025-07-23T19:39:15.4711194Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:162: Has 100.0% +2025-07-23T19:39:15.4711415Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:43: Version 0.0% +2025-07-23T19:39:15.4711637Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:53: GetUTXOs 0.0% +2025-07-23T19:39:15.4711859Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:141: IssueTx 0.0% +2025-07-23T19:39:15.4712108Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:170: GetAtomicTxStatus 0.0% +2025-07-23T19:39:15.4712453Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:205: GetAtomicTx 0.0% +2025-07-23T19:39:15.4712755Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:48: newBlockExtender 100.0% +2025-07-23T19:39:15.4713045Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:61: NewBlockExtension 75.0% +2025-07-23T19:39:15.4713340Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:82: SyntacticVerify 66.7% +2025-07-23T19:39:15.4713623Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:172: SemanticVerify 100.0% +2025-07-23T19:39:15.4713888Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:193: Accept 85.7% +2025-07-23T19:39:15.4714148Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:213: Reject 77.8% +2025-07-23T19:39:15.4714447Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:231: CleanupVerified 100.0% +2025-07-23T19:39:15.4714725Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:239: AtomicTxs 100.0% +2025-07-23T19:39:15.4715026Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:245: verifyUTXOsPresent 92.9% +2025-07-23T19:39:15.4715324Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/bonus_blocks.go:9: readMainnetBonusBlocks 0.0% +2025-07-23T19:39:15.4715570Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/ext_data_hashes.go:23: init 66.7% +2025-07-23T19:39:15.4715854Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:18: ParseServiceAddress 0.0% +2025-07-23T19:39:15.4716136Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:27: ParseLocalAddress 0.0% +2025-07-23T19:39:15.4716413Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:40: FormatLocalAddress 0.0% +2025-07-23T19:39:15.4716674Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:51: ParseAddress 0.0% +2025-07-23T19:39:15.4716982Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:50: NewVerifierBackend 100.0% +2025-07-23T19:39:15.4717279Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:62: SemanticVerify 100.0% +2025-07-23T19:39:15.4717558Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:80: ImportTx 95.7% +2025-07-23T19:39:15.4717836Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:167: conflicts 88.2% +2025-07-23T19:39:15.4718210Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:205: ExportTx 86.8% +2025-07-23T19:39:15.4718436Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:108: WrapVM 100.0% +2025-07-23T19:39:15.4718665Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:113: Initialize 74.4% +2025-07-23T19:39:15.4718888Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:231: SetState 57.1% +2025-07-23T19:39:15.4719148Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:248: onBootstrapStarted 100.0% +2025-07-23T19:39:15.4719545Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:253: onNormalOperationsStarted 83.9% +2025-07-23T19:39:15.4719767Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:342: Shutdown 75.0% +2025-07-23T19:39:15.4720005Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:356: CreateHandlers 0.0% +2025-07-23T19:39:15.4720247Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:371: verifyTxAtTip 77.3% +2025-07-23T19:39:15.4720463Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:414: verifyTx 85.7% +2025-07-23T19:39:15.4720686Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:428: verifyTxs 88.2% +2025-07-23T19:39:15.4720933Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:464: CodecRegistry 100.0% +2025-07-23T19:39:15.4721151Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:467: Clock 100.0% +2025-07-23T19:39:15.4721404Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:470: Logger 100.0% +2025-07-23T19:39:15.4721791Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:472: createConsensusCallbacks 100.0% +2025-07-23T19:39:15.4722092Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:479: preBatchOnFinalizeAndAssemble 84.0% +2025-07-23T19:39:15.4722391Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:526: postBatchOnFinalizeAndAssemble 84.1% +2025-07-23T19:39:15.4722660Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:636: onFinalizeAndAssemble 100.0% +2025-07-23T19:39:15.4722923Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:648: onExtraStateChange 83.9% +2025-07-23T19:39:15.4723154Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:721: BuildBlock 100.0% +2025-07-23T19:39:15.4723420Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:725: BuildBlockWithContext 50.0% +2025-07-23T19:39:15.4723675Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:744: chainConfigExtra 100.0% +2025-07-23T19:39:15.4723891Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:748: rules 100.0% +2025-07-23T19:39:15.4724134Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:754: CurrentRules 100.0% +2025-07-23T19:39:15.4724369Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:763: GetAtomicTx 22.2% +2025-07-23T19:39:15.4724597Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:780: NewImportTx 85.7% +2025-07-23T19:39:15.4724823Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:800: NewExportTx 71.4% +2025-07-23T19:39:15.4725070Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:49: NewBlockBuilder 100.0% +2025-07-23T19:39:15.4725336Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:62: handleGenerateBlock 100.0% +2025-07-23T19:39:15.4725575Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:70: needToBuild 100.0% +2025-07-23T19:39:15.4725817Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:78: signalCanBuild 100.0% +2025-07-23T19:39:15.4726078Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:87: awaitSubmittedTxs 100.0% +2025-07-23T19:39:15.4726313Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:119: waitForEvent 91.7% +2025-07-23T19:39:15.4726576Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:145: waitForNeedToBuild 100.0% +2025-07-23T19:39:15.4726803Z github.com/ava-labs/coreth/plugin/evm/client/client.go:49: NewClient 0.0% +2025-07-23T19:39:15.4727047Z github.com/ava-labs/coreth/plugin/evm/client/client.go:57: NewCChainClient 0.0% +2025-07-23T19:39:15.4727268Z github.com/ava-labs/coreth/plugin/evm/client/client.go:62: IssueTx 0.0% +2025-07-23T19:39:15.4727517Z github.com/ava-labs/coreth/plugin/evm/client/client.go:82: GetAtomicTxStatus 0.0% +2025-07-23T19:39:15.4727745Z github.com/ava-labs/coreth/plugin/evm/client/client.go:91: GetAtomicTx 0.0% +2025-07-23T19:39:15.4727990Z github.com/ava-labs/coreth/plugin/evm/client/client.go:106: GetAtomicUTXOs 0.0% +2025-07-23T19:39:15.4728437Z github.com/ava-labs/coreth/plugin/evm/client/client.go:138: StartCPUProfiler 0.0% +2025-07-23T19:39:15.4728687Z github.com/ava-labs/coreth/plugin/evm/client/client.go:142: StopCPUProfiler 0.0% +2025-07-23T19:39:15.4728936Z github.com/ava-labs/coreth/plugin/evm/client/client.go:146: MemoryProfile 0.0% +2025-07-23T19:39:15.4729164Z github.com/ava-labs/coreth/plugin/evm/client/client.go:150: LockProfile 0.0% +2025-07-23T19:39:15.4729397Z github.com/ava-labs/coreth/plugin/evm/client/client.go:159: SetLogLevel 0.0% +2025-07-23T19:39:15.4729624Z github.com/ava-labs/coreth/plugin/evm/client/client.go:170: GetVMConfig 0.0% +2025-07-23T19:39:15.4729859Z github.com/ava-labs/coreth/plugin/evm/client/utils.go:8: ParseEthAddress 0.0% +2025-07-23T19:39:15.4730085Z github.com/ava-labs/coreth/plugin/evm/config/config.go:265: EthAPIs 0.0% +2025-07-23T19:39:15.4730313Z github.com/ava-labs/coreth/plugin/evm/config/config.go:269: SetDefaults 0.0% +2025-07-23T19:39:15.4730673Z github.com/ava-labs/coreth/plugin/evm/config/config.go:327: UnmarshalJSON 80.0% +2025-07-23T19:39:15.4730893Z github.com/ava-labs/coreth/plugin/evm/config/config.go:337: String 0.0% +2025-07-23T19:39:15.4731119Z github.com/ava-labs/coreth/plugin/evm/config/config.go:342: MarshalJSON 0.0% +2025-07-23T19:39:15.4731341Z github.com/ava-labs/coreth/plugin/evm/config/config.go:347: Validate 0.0% +2025-07-23T19:39:15.4731570Z github.com/ava-labs/coreth/plugin/evm/config/config.go:382: Deprecate 57.1% +2025-07-23T19:39:15.4731815Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:28: New 0.0% +2025-07-23T19:39:15.4732068Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:35: Dial 0.0% +2025-07-23T19:39:15.4732344Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:40: DialContext 0.0% +2025-07-23T19:39:15.4732641Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:60: OnBlockDecoded 0.0% +2025-07-23T19:39:15.4732899Z github.com/ava-labs/coreth/plugin/evm/customlogs/log_ext.go:8: FlattenLogs 100.0% +2025-07-23T19:39:15.4733252Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:16: writeCurrentTimeMarker 0.0% +2025-07-23T19:39:15.4733578Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:25: readTimeMarker 0.0% +2025-07-23T19:39:15.4733915Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:44: WriteOfflinePruning 0.0% +2025-07-23T19:39:15.4734252Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:50: ReadOfflinePruning 0.0% +2025-07-23T19:39:15.4734594Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:55: DeleteOfflinePruning 0.0% +2025-07-23T19:39:15.4734956Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:61: WritePopulateMissingTries 0.0% +2025-07-23T19:39:15.4735313Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:67: ReadPopulateMissingTries 0.0% +2025-07-23T19:39:15.4735679Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:73: DeletePopulateMissingTries 0.0% +2025-07-23T19:39:15.4736027Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:79: WritePruningDisabled 0.0% +2025-07-23T19:39:15.4736361Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:85: HasPruningDisabled 0.0% +2025-07-23T19:39:15.4736690Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:90: WriteAcceptorTip 0.0% +2025-07-23T19:39:15.4737020Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:97: ReadAcceptorTip 0.0% +2025-07-23T19:39:15.4737365Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:15: ReadSnapshotBlockHash 0.0% +2025-07-23T19:39:15.4737721Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:25: WriteSnapshotBlockHash 50.0% +2025-07-23T19:39:15.4738325Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:35: DeleteSnapshotBlockHash 0.0% +2025-07-23T19:39:15.4738675Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:42: IterateAccountSnapshots 0.0% +2025-07-23T19:39:15.4738985Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:18: ReadSyncRoot 0.0% +2025-07-23T19:39:15.4739292Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:31: WriteSyncRoot 0.0% +2025-07-23T19:39:15.4739609Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:36: AddCodeToFetch 50.0% +2025-07-23T19:39:15.4739925Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:43: DeleteCodeToFetch 0.0% +2025-07-23T19:39:15.4740262Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:52: NewCodeToFetchIterator 0.0% +2025-07-23T19:39:15.4740578Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:59: codeToFetchKey 100.0% +2025-07-23T19:39:15.4741029Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:69: NewSyncSegmentsIterator 0.0% +2025-07-23T19:39:15.4741357Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:81: WriteSyncSegment 100.0% +2025-07-23T19:39:15.4741670Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:86: ClearSyncSegments 0.0% +2025-07-23T19:39:15.4742004Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:94: ClearAllSyncSegments 100.0% +2025-07-23T19:39:15.4742344Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:100: UnpackSyncSegmentKey 0.0% +2025-07-23T19:39:15.4742675Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:108: packSyncSegmentKey 100.0% +2025-07-23T19:39:15.4743042Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:119: NewSyncStorageTriesIterator 0.0% +2025-07-23T19:39:15.4743385Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:124: WriteSyncStorageTrie 100.0% +2025-07-23T19:39:15.4743716Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:130: ClearSyncStorageTrie 0.0% +2025-07-23T19:39:15.4744065Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:138: ClearAllSyncStorageTries 0.0% +2025-07-23T19:39:15.4744410Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:144: UnpackSyncStorageTrieKey 0.0% +2025-07-23T19:39:15.4744761Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:152: packSyncStorageTrieKey 100.0% +2025-07-23T19:39:15.4745091Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:161: WriteSyncPerformed 100.0% +2025-07-23T19:39:15.4745431Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:171: NewSyncPerformedIterator 0.0% +2025-07-23T19:39:15.4745780Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:177: UnpackSyncPerformedKey 0.0% +2025-07-23T19:39:15.4746121Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:182: GetLatestSyncPerformed 0.0% +2025-07-23T19:39:15.4746429Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:198: clearPrefix 68.8% +2025-07-23T19:39:15.4746723Z github.com/ava-labs/coreth/plugin/evm/customrawdb/database_ext.go:17: InspectDatabase 100.0% +2025-07-23T19:39:15.4747022Z github.com/ava-labs/coreth/plugin/evm/customrawdb/database_ext.go:67: ParseStateSchemeExt 0.0% +2025-07-23T19:39:15.4747301Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:16: SetBlockExtra 100.0% +2025-07-23T19:39:15.4747542Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:33: Copy 100.0% +2025-07-23T19:39:15.4747856Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:48: BodyRLPFieldsForEncoding 100.0% +2025-07-23T19:39:15.4748414Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:61: BodyRLPFieldPointersForDecoding 100.0% +2025-07-23T19:39:15.4748739Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:78: BlockRLPFieldsForEncoding 100.0% +2025-07-23T19:39:15.4749078Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:92: BlockRLPFieldPointersForDecoding 100.0% +2025-07-23T19:39:15.4749349Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:104: BlockExtData 100.0% +2025-07-23T19:39:15.4749620Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:111: BlockVersion 100.0% +2025-07-23T19:39:15.4749917Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:115: BlockExtDataGasUsed 100.0% +2025-07-23T19:39:15.4750183Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:123: BlockGasCost 100.0% +2025-07-23T19:39:15.4750466Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:131: CalcExtDataHash 66.7% +2025-07-23T19:39:15.4750874Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:138: NewBlockWithExtData 100.0% +2025-07-23T19:39:15.4751207Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_json.go:18: MarshalJSON 100.0% +2025-07-23T19:39:15.4751539Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_json.go:72: UnmarshalJSON 76.2% +2025-07-23T19:39:15.4751847Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_rlp.go:8: EncodeRLP 85.9% +2025-07-23T19:39:15.4752127Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:17: GetHeaderExtra 100.0% +2025-07-23T19:39:15.4752406Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:22: SetHeaderExtra 100.0% +2025-07-23T19:39:15.4752692Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:28: WithHeaderExtra 100.0% +2025-07-23T19:39:15.4752960Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:45: EncodeRLP 100.0% +2025-07-23T19:39:15.4753223Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:56: DecodeRLP 100.0% +2025-07-23T19:39:15.4753491Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:70: EncodeJSON 100.0% +2025-07-23T19:39:15.4753746Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:81: DecodeJSON 83.3% +2025-07-23T19:39:15.4754002Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:93: PostCopy 100.0% +2025-07-23T19:39:15.4754282Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:106: updateFromEth 100.0% +2025-07-23T19:39:15.4754552Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:128: updateToEth 100.0% +2025-07-23T19:39:15.4754843Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:150: updateFromExtras 100.0% +2025-07-23T19:39:15.4755123Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:156: updateToExtras 100.0% +2025-07-23T19:39:15.4755378Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:233: Hash 100.0% +2025-07-23T19:39:15.4755662Z github.com/ava-labs/coreth/plugin/evm/customtypes/state_account_ext.go:14: IsMultiCoin 0.0% +2025-07-23T19:39:15.4755947Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:22: WrapDatabase 100.0% +2025-07-23T19:39:15.4756199Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:25: Stat 0.0% +2025-07-23T19:39:15.4756470Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:28: NewBatch 100.0% +2025-07-23T19:39:15.4756757Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:32: NewBatchWithSize 0.0% +2025-07-23T19:39:15.4757030Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:36: NewSnapshot 0.0% +2025-07-23T19:39:15.4757304Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:44: NewIterator 100.0% +2025-07-23T19:39:15.4757610Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:57: NewIteratorWithStart 0.0% +2025-07-23T19:39:15.4757994Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:65: ValueSize 100.0% +2025-07-23T19:39:15.4758353Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:68: Replay 100.0% +2025-07-23T19:39:15.4758608Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:38: NewGossipEthTxPool 75.0% +2025-07-23T19:39:15.4758840Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:70: IsSubscribed 100.0% +2025-07-23T19:39:15.4759058Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:74: Subscribe 92.6% +2025-07-23T19:39:15.4759267Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:119: Add 100.0% +2025-07-23T19:39:15.4759468Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:125: Has 100.0% +2025-07-23T19:39:15.4759693Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:129: Iterate 100.0% +2025-07-23T19:39:15.4759909Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:135: GetFilter 0.0% +2025-07-23T19:39:15.4760256Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:144: MarshalGossip 100.0% +2025-07-23T19:39:15.4760510Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:148: UnmarshalGossip 100.0% +2025-07-23T19:39:15.4760731Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:160: GossipID 100.0% +2025-07-23T19:39:15.4760938Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:170: Add 75.0% +2025-07-23T19:39:15.4761173Z github.com/ava-labs/coreth/plugin/evm/extension/config.go:161: Validate 55.6% +2025-07-23T19:39:15.4761437Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:19: NewTxGossipHandler 100.0% +2025-07-23T19:39:15.4761672Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:61: AppGossip 100.0% +2025-07-23T19:39:15.4761903Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:65: AppRequest 100.0% +2025-07-23T19:39:15.4762131Z github.com/ava-labs/coreth/plugin/evm/header/base_fee.go:21: BaseFee 100.0% +2025-07-23T19:39:15.4762408Z github.com/ava-labs/coreth/plugin/evm/header/base_fee.go:50: EstimateNextBaseFee 100.0% +2025-07-23T19:39:15.4762669Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:28: BlockGasCost 100.0% +2025-07-23T19:39:15.4762964Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:60: BlockGasCostWithStep 100.0% +2025-07-23T19:39:15.4763249Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:88: EstimateRequiredTip 100.0% +2025-07-23T19:39:15.4763547Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_state.go:19: feeStateBeforeBlock 100.0% +2025-07-23T19:39:15.4763845Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_state.go:51: feeStateAfterBlock 100.0% +2025-07-23T19:39:15.4764134Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:40: baseFeeFromWindow 97.4% +2025-07-23T19:39:15.4764407Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:148: feeWindow 100.0% +2025-07-23T19:39:15.4764734Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:221: selectBigWithinBounds 100.0% +2025-07-23T19:39:15.4764964Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:29: ExtraPrefix 100.0% +2025-07-23T19:39:15.4765217Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:61: VerifyExtraPrefix 100.0% +2025-07-23T19:39:15.4765450Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:116: VerifyExtra 100.0% +2025-07-23T19:39:15.4765733Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:169: PredicateBytesFromExtra 100.0% +2025-07-23T19:39:15.4766005Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:187: SetPredicateBytesInExtra 100.0% +2025-07-23T19:39:15.4766236Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:28: GasLimit 100.0% +2025-07-23T19:39:15.4766489Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:61: VerifyGasUsed 100.0% +2025-07-23T19:39:15.4766858Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:97: VerifyGasLimit 100.0% +2025-07-23T19:39:15.4767109Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:159: GasCapacity 100.0% +2025-07-23T19:39:15.4767401Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:179: RemainingAtomicGasCapacity 100.0% +2025-07-23T19:39:15.4767608Z github.com/ava-labs/coreth/plugin/evm/health.go:11: HealthCheck 0.0% +2025-07-23T19:39:15.4767819Z github.com/ava-labs/coreth/plugin/evm/log/log.go:26: InitLogger 55.0% +2025-07-23T19:39:15.4768035Z github.com/ava-labs/coreth/plugin/evm/log/log.go:62: SetLogLevel 100.0% +2025-07-23T19:39:15.4768343Z github.com/ava-labs/coreth/plugin/evm/log/log.go:77: trimPrefixes 88.9% +2025-07-23T19:39:15.4768548Z github.com/ava-labs/coreth/plugin/evm/log/log.go:92: getSource 0.0% +2025-07-23T19:39:15.4768744Z github.com/ava-labs/coreth/plugin/evm/log/log.go:104: Handle 0.0% +2025-07-23T19:39:15.4769099Z github.com/ava-labs/coreth/plugin/evm/message/block_request.go:24: String 0.0% +2025-07-23T19:39:15.4769339Z github.com/ava-labs/coreth/plugin/evm/message/block_request.go:31: Handle 0.0% +2025-07-23T19:39:15.4769640Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:31: NewBlockSyncSummary 80.0% +2025-07-23T19:39:15.4769922Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:53: GetBlockHash 100.0% +2025-07-23T19:39:15.4770202Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:57: GetBlockRoot 100.0% +2025-07-23T19:39:15.4770468Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:61: Bytes 100.0% +2025-07-23T19:39:15.4770730Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:65: Height 100.0% +2025-07-23T19:39:15.4770971Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:69: ID 0.0% +2025-07-23T19:39:15.4771231Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:73: String 0.0% +2025-07-23T19:39:15.4771498Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:77: Accept 66.7% +2025-07-23T19:39:15.4771859Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_parser.go:14: NewBlockSyncSummaryParser 100.0% +2025-07-23T19:39:15.4772138Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_parser.go:18: Parse 80.0% +2025-07-23T19:39:15.4772462Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_provider.go:14: StateSummaryAtBlock 0.0% +2025-07-23T19:39:15.4772701Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:23: String 0.0% +2025-07-23T19:39:15.4772934Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:31: Handle 0.0% +2025-07-23T19:39:15.4773191Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:35: NewCodeRequest 0.0% +2025-07-23T19:39:15.4773410Z github.com/ava-labs/coreth/plugin/evm/message/codec.go:20: init 88.9% +2025-07-23T19:39:15.4773679Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:35: HandleLeafsRequest 0.0% +2025-07-23T19:39:15.4773944Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:39: HandleBlockRequest 0.0% +2025-07-23T19:39:15.4774197Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:43: HandleCodeRequest 0.0% +2025-07-23T19:39:15.4774435Z github.com/ava-labs/coreth/plugin/evm/message/leafs_request.go:40: String 0.0% +2025-07-23T19:39:15.4774675Z github.com/ava-labs/coreth/plugin/evm/message/leafs_request.go:47: Handle 0.0% +2025-07-23T19:39:15.4774920Z github.com/ava-labs/coreth/plugin/evm/message/request.go:25: RequestToBytes 0.0% +2025-07-23T19:39:15.4775184Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:39: newNetworkHandler 100.0% +2025-07-23T19:39:15.4775439Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:54: HandleLeafsRequest 60.0% +2025-07-23T19:39:15.4775700Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:63: HandleBlockRequest 100.0% +2025-07-23T19:39:15.4776069Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:67: HandleCodeRequest 0.0% +2025-07-23T19:39:15.4776291Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:99: NewClient 100.0% +2025-07-23T19:39:15.4776542Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:127: StateSyncEnabled 100.0% +2025-07-23T19:39:15.4776819Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:134: GetOngoingSyncStateSummary 0.0% +2025-07-23T19:39:15.4777073Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:153: ClearOngoingSummary 60.0% +2025-07-23T19:39:15.4777329Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:165: ParseStateSummary 100.0% +2025-07-23T19:39:15.4777550Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:171: stateSync 71.4% +2025-07-23T19:39:15.4777793Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:189: acceptSyncSummary 92.0% +2025-07-23T19:39:15.4778023Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:257: syncBlocks 89.3% +2025-07-23T19:39:15.4778463Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:304: syncStateTrie 77.8% +2025-07-23T19:39:15.4778694Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:326: Shutdown 100.0% +2025-07-23T19:39:15.4778916Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:336: finishSync 66.7% +2025-07-23T19:39:15.4779153Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:405: commitVMMarkers 66.7% +2025-07-23T19:39:15.4779370Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:420: Error 100.0% +2025-07-23T19:39:15.4779585Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:36: NewServer 100.0% +2025-07-23T19:39:15.4779851Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:48: GetLastStateSummary 75.0% +2025-07-23T19:39:15.4780085Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:64: GetStateSummary 66.7% +2025-07-23T19:39:15.4780337Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:82: stateSummaryAtHeight 62.5% +2025-07-23T19:39:15.4780610Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:53: ParseState 100.0% +2025-07-23T19:39:15.4780851Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:74: Target 100.0% +2025-07-23T19:39:15.4781119Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:83: MaxCapacity 100.0% +2025-07-23T19:39:15.4781367Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:91: GasPrice 100.0% +2025-07-23T19:39:15.4781630Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:99: AdvanceTime 100.0% +2025-07-23T19:39:15.4781893Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:114: ConsumeGas 100.0% +2025-07-23T19:39:15.4782187Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:144: UpdateTargetExcess 100.0% +2025-07-23T19:39:15.4782429Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:160: Bytes 100.0% +2025-07-23T19:39:15.4782736Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:170: DesiredTargetExcess 100.0% +2025-07-23T19:39:15.4783006Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:184: targetExcess 100.0% +2025-07-23T19:39:15.4783274Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:195: scaleExcess 100.0% +2025-07-23T19:39:15.4783561Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:214: mulWithUpperBound 100.0% +2025-07-23T19:39:15.4783817Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:67: ParseWindow 100.0% +2025-07-23T19:39:15.4784052Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:87: Add 100.0% +2025-07-23T19:39:15.4784285Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:94: Shift 100.0% +2025-07-23T19:39:15.4784516Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:108: Sum 100.0% +2025-07-23T19:39:15.4784749Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:112: Bytes 100.0% +2025-07-23T19:39:15.4785091Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:121: add 100.0% +2025-07-23T19:39:15.4785344Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap4/cost.go:53: BlockGasCost 93.3% +2025-07-23T19:39:15.4785538Z github.com/ava-labs/coreth/plugin/evm/version.go:15: init 50.0% +2025-07-23T19:39:15.4785724Z github.com/ava-labs/coreth/plugin/evm/vm.go:175: init 100.0% +2025-07-23T19:39:15.4785919Z github.com/ava-labs/coreth/plugin/evm/vm.go:271: Initialize 80.3% +2025-07-23T19:39:15.4786127Z github.com/ava-labs/coreth/plugin/evm/vm.go:500: parseGenesis 76.9% +2025-07-23T19:39:15.4786350Z github.com/ava-labs/coreth/plugin/evm/vm.go:530: initializeMetrics 54.5% +2025-07-23T19:39:15.4786560Z github.com/ava-labs/coreth/plugin/evm/vm.go:549: initializeChain 84.2% +2025-07-23T19:39:15.4786784Z github.com/ava-labs/coreth/plugin/evm/vm.go:604: initializeStateSync 76.7% +2025-07-23T19:39:15.4787075Z github.com/ava-labs/coreth/plugin/evm/vm.go:704: initChainState 75.0% +2025-07-23T19:39:15.4787268Z github.com/ava-labs/coreth/plugin/evm/vm.go:737: SetState 83.3% +2025-07-23T19:39:15.4787494Z github.com/ava-labs/coreth/plugin/evm/vm.go:752: onBootstrapStarted 71.4% +2025-07-23T19:39:15.4787736Z github.com/ava-labs/coreth/plugin/evm/vm.go:768: onNormalOperationsStarted 75.0% +2025-07-23T19:39:15.4787952Z github.com/ava-labs/coreth/plugin/evm/vm.go:779: initBlockBuilding 91.3% +2025-07-23T19:39:15.4788255Z github.com/ava-labs/coreth/plugin/evm/vm.go:886: WaitForEvent 77.8% +2025-07-23T19:39:15.4788443Z github.com/ava-labs/coreth/plugin/evm/vm.go:907: Shutdown 76.9% +2025-07-23T19:39:15.4788643Z github.com/ava-labs/coreth/plugin/evm/vm.go:929: buildBlock 100.0% +2025-07-23T19:39:15.4788873Z github.com/ava-labs/coreth/plugin/evm/vm.go:933: buildBlockWithContext 86.7% +2025-07-23T19:39:15.4789068Z github.com/ava-labs/coreth/plugin/evm/vm.go:978: parseBlock 77.8% +2025-07-23T19:39:15.4789282Z github.com/ava-labs/coreth/plugin/evm/vm.go:997: ParseEthBlock 75.0% +2025-07-23T19:39:15.4789474Z github.com/ava-labs/coreth/plugin/evm/vm.go:1008: getBlock 100.0% +2025-07-23T19:39:15.4789687Z github.com/ava-labs/coreth/plugin/evm/vm.go:1021: GetAcceptedBlock 90.0% +2025-07-23T19:39:15.4789898Z github.com/ava-labs/coreth/plugin/evm/vm.go:1041: SetPreference 75.0% +2025-07-23T19:39:15.4790119Z github.com/ava-labs/coreth/plugin/evm/vm.go:1057: GetBlockIDAtHeight 85.7% +2025-07-23T19:39:15.4790309Z github.com/ava-labs/coreth/plugin/evm/vm.go:1070: Version 0.0% +2025-07-23T19:39:15.4790515Z github.com/ava-labs/coreth/plugin/evm/vm.go:1075: CreateHandlers 0.0% +2025-07-23T19:39:15.4790717Z github.com/ava-labs/coreth/plugin/evm/vm.go:1122: NewHTTPHandler 0.0% +2025-07-23T19:39:15.4790937Z github.com/ava-labs/coreth/plugin/evm/vm.go:1126: chainConfigExtra 100.0% +2025-07-23T19:39:15.4791124Z github.com/ava-labs/coreth/plugin/evm/vm.go:1130: rules 100.0% +2025-07-23T19:39:15.4791331Z github.com/ava-labs/coreth/plugin/evm/vm.go:1136: currentRules 100.0% +2025-07-23T19:39:15.4791590Z github.com/ava-labs/coreth/plugin/evm/vm.go:1144: requirePrimaryNetworkSigners 0.0% +2025-07-23T19:39:15.4791829Z github.com/ava-labs/coreth/plugin/evm/vm.go:1153: startContinuousProfiler 91.7% +2025-07-23T19:39:15.4792048Z github.com/ava-labs/coreth/plugin/evm/vm.go:1183: ReadLastAccepted 70.0% +2025-07-23T19:39:15.4792261Z github.com/ava-labs/coreth/plugin/evm/vm.go:1207: attachEthService 0.0% +2025-07-23T19:39:15.4792478Z github.com/ava-labs/coreth/plugin/evm/vm.go:1242: stateSyncEnabled 100.0% +2025-07-23T19:39:15.4792706Z github.com/ava-labs/coreth/plugin/evm/vm.go:1252: PutLastAcceptedID 100.0% +2025-07-23T19:39:15.4792936Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:20: initializeDBs 100.0% +2025-07-23T19:39:15.4793171Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:35: inspectDatabases 0.0% +2025-07-23T19:39:15.4793502Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:54: inspectDB 0.0% +2025-07-23T19:39:15.4793755Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:28: SetExtensionConfig 66.7% +2025-07-23T19:39:15.4794000Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:41: GetExtendedBlock 75.0% +2025-07-23T19:39:15.4794281Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:53: LastAcceptedExtendedBlock 75.0% +2025-07-23T19:39:15.4794514Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:64: ChainConfig 100.0% +2025-07-23T19:39:15.4794738Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:68: Blockchain 100.0% +2025-07-23T19:39:15.4794952Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:72: Config 100.0% +2025-07-23T19:39:15.4795195Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:76: MetricRegistry 100.0% +2025-07-23T19:39:15.4795518Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:80: Validators 0.0% +2025-07-23T19:39:15.4795751Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:84: VersionDB 100.0% +2025-07-23T19:39:15.4795983Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:88: SyncerClient 0.0% +2025-07-23T19:39:15.4796205Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:58: wrapBlock 85.7% +2025-07-23T19:39:15.4796420Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:75: ID 100.0% +2025-07-23T19:39:15.4796634Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:78: Accept 76.5% +2025-07-23T19:39:15.4796912Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:125: handlePrecompileAccept 78.6% +2025-07-23T19:39:15.4797132Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:159: Reject 83.3% +2025-07-23T19:39:15.4797353Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:176: Parent 100.0% +2025-07-23T19:39:15.4797573Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:181: Height 100.0% +2025-07-23T19:39:15.4797804Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:186: Timestamp 100.0% +2025-07-23T19:39:15.4798023Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:191: Verify 100.0% +2025-07-23T19:39:15.4798401Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:199: ShouldVerifyWithContext 72.7% +2025-07-23T19:39:15.4798664Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:223: VerifyWithContext 100.0% +2025-07-23T19:39:15.4798884Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:233: verify 100.0% +2025-07-23T19:39:15.4799136Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:279: semanticVerify 100.0% +2025-07-23T19:39:15.4799381Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:295: syntacticVerify 71.0% +2025-07-23T19:39:15.4799633Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:434: verifyPredicates 85.0% +2025-07-23T19:39:15.4799854Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:468: Bytes 75.0% +2025-07-23T19:39:15.4800068Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:476: String 0.0% +2025-07-23T19:39:15.4800307Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:478: GetEthBlock 100.0% +2025-07-23T19:39:15.4800561Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:482: GetBlockExtension 100.0% +2025-07-23T19:39:15.4800767Z github.com/ava-labs/coreth/plugin/factory/factory.go:25: New 0.0% +2025-07-23T19:39:15.4800990Z github.com/ava-labs/coreth/plugin/factory/factory.go:29: NewPluginVM 0.0% +2025-07-23T19:39:15.4801163Z github.com/ava-labs/coreth/plugin/main.go:19: main 0.0% +2025-07-23T19:39:15.4801377Z github.com/ava-labs/coreth/plugin/params.go:13: corethFlagSet 0.0% +2025-07-23T19:39:15.4801567Z github.com/ava-labs/coreth/plugin/params.go:22: getViper 0.0% +2025-07-23T19:39:15.4801768Z github.com/ava-labs/coreth/plugin/params.go:35: PrintVersion 0.0% +2025-07-23T19:39:15.4802141Z github.com/ava-labs/coreth/precompile/contract/contract.go:32: IsActivated 0.0% +2025-07-23T19:39:15.4802457Z github.com/ava-labs/coreth/precompile/contract/contract.go:40: NewStatefulPrecompileFunction 0.0% +2025-07-23T19:39:15.4802820Z github.com/ava-labs/coreth/precompile/contract/contract.go:47: NewStatefulPrecompileFunctionWithActivator 0.0% +2025-07-23T19:39:15.4803130Z github.com/ava-labs/coreth/precompile/contract/contract.go:65: NewStatefulPrecompileContract 0.0% +2025-07-23T19:39:15.4803352Z github.com/ava-labs/coreth/precompile/contract/contract.go:84: Run 0.0% +2025-07-23T19:39:15.4803604Z github.com/ava-labs/coreth/precompile/contract/mocks.go:38: NewMockStateDB 0.0% +2025-07-23T19:39:15.4803821Z github.com/ava-labs/coreth/precompile/contract/mocks.go:45: EXPECT 0.0% +2025-07-23T19:39:15.4804056Z github.com/ava-labs/coreth/precompile/contract/mocks.go:50: AddBalance 0.0% +2025-07-23T19:39:15.4804284Z github.com/ava-labs/coreth/precompile/contract/mocks.go:56: AddBalance 0.0% +2025-07-23T19:39:15.4804652Z github.com/ava-labs/coreth/precompile/contract/mocks.go:62: AddBalanceMultiCoin 0.0% +2025-07-23T19:39:15.4804925Z github.com/ava-labs/coreth/precompile/contract/mocks.go:68: AddBalanceMultiCoin 0.0% +2025-07-23T19:39:15.4805145Z github.com/ava-labs/coreth/precompile/contract/mocks.go:74: AddLog 0.0% +2025-07-23T19:39:15.4805364Z github.com/ava-labs/coreth/precompile/contract/mocks.go:80: AddLog 0.0% +2025-07-23T19:39:15.4805607Z github.com/ava-labs/coreth/precompile/contract/mocks.go:86: CreateAccount 0.0% +2025-07-23T19:39:15.4805846Z github.com/ava-labs/coreth/precompile/contract/mocks.go:92: CreateAccount 0.0% +2025-07-23T19:39:15.4806062Z github.com/ava-labs/coreth/precompile/contract/mocks.go:98: Exist 0.0% +2025-07-23T19:39:15.4806276Z github.com/ava-labs/coreth/precompile/contract/mocks.go:106: Exist 0.0% +2025-07-23T19:39:15.4806508Z github.com/ava-labs/coreth/precompile/contract/mocks.go:112: GetBalance 0.0% +2025-07-23T19:39:15.4806756Z github.com/ava-labs/coreth/precompile/contract/mocks.go:120: GetBalance 0.0% +2025-07-23T19:39:15.4807028Z github.com/ava-labs/coreth/precompile/contract/mocks.go:126: GetBalanceMultiCoin 0.0% +2025-07-23T19:39:15.4807302Z github.com/ava-labs/coreth/precompile/contract/mocks.go:134: GetBalanceMultiCoin 0.0% +2025-07-23T19:39:15.4807527Z github.com/ava-labs/coreth/precompile/contract/mocks.go:140: GetNonce 0.0% +2025-07-23T19:39:15.4807750Z github.com/ava-labs/coreth/precompile/contract/mocks.go:148: GetNonce 0.0% +2025-07-23T19:39:15.4808042Z github.com/ava-labs/coreth/precompile/contract/mocks.go:154: GetPredicateStorageSlots 0.0% +2025-07-23T19:39:15.4808424Z github.com/ava-labs/coreth/precompile/contract/mocks.go:163: GetPredicateStorageSlots 0.0% +2025-07-23T19:39:15.4808653Z github.com/ava-labs/coreth/precompile/contract/mocks.go:169: GetState 0.0% +2025-07-23T19:39:15.4808882Z github.com/ava-labs/coreth/precompile/contract/mocks.go:177: GetState 0.0% +2025-07-23T19:39:15.4809110Z github.com/ava-labs/coreth/precompile/contract/mocks.go:183: GetTxHash 0.0% +2025-07-23T19:39:15.4809341Z github.com/ava-labs/coreth/precompile/contract/mocks.go:191: GetTxHash 0.0% +2025-07-23T19:39:15.4809557Z github.com/ava-labs/coreth/precompile/contract/mocks.go:197: Logs 0.0% +2025-07-23T19:39:15.4809779Z github.com/ava-labs/coreth/precompile/contract/mocks.go:205: Logs 0.0% +2025-07-23T19:39:15.4810031Z github.com/ava-labs/coreth/precompile/contract/mocks.go:211: RevertToSnapshot 0.0% +2025-07-23T19:39:15.4810283Z github.com/ava-labs/coreth/precompile/contract/mocks.go:217: RevertToSnapshot 0.0% +2025-07-23T19:39:15.4810512Z github.com/ava-labs/coreth/precompile/contract/mocks.go:223: SetNonce 0.0% +2025-07-23T19:39:15.4810733Z github.com/ava-labs/coreth/precompile/contract/mocks.go:229: SetNonce 0.0% +2025-07-23T19:39:15.4810956Z github.com/ava-labs/coreth/precompile/contract/mocks.go:235: SetState 0.0% +2025-07-23T19:39:15.4811350Z github.com/ava-labs/coreth/precompile/contract/mocks.go:241: SetState 0.0% +2025-07-23T19:39:15.4811574Z github.com/ava-labs/coreth/precompile/contract/mocks.go:247: Snapshot 0.0% +2025-07-23T19:39:15.4811803Z github.com/ava-labs/coreth/precompile/contract/mocks.go:255: Snapshot 0.0% +2025-07-23T19:39:15.4812070Z github.com/ava-labs/coreth/precompile/contract/mocks.go:261: SubBalanceMultiCoin 0.0% +2025-07-23T19:39:15.4812337Z github.com/ava-labs/coreth/precompile/contract/mocks.go:267: SubBalanceMultiCoin 0.0% +2025-07-23T19:39:15.4812621Z github.com/ava-labs/coreth/precompile/contract/mocks.go:285: NewMockAccessibleState 0.0% +2025-07-23T19:39:15.4812846Z github.com/ava-labs/coreth/precompile/contract/mocks.go:292: EXPECT 0.0% +2025-07-23T19:39:15.4813100Z github.com/ava-labs/coreth/precompile/contract/mocks.go:297: GetBlockContext 0.0% +2025-07-23T19:39:15.4813451Z github.com/ava-labs/coreth/precompile/contract/mocks.go:305: GetBlockContext 0.0% +2025-07-23T19:39:15.4813701Z github.com/ava-labs/coreth/precompile/contract/mocks.go:311: GetChainConfig 0.0% +2025-07-23T19:39:15.4813951Z github.com/ava-labs/coreth/precompile/contract/mocks.go:319: GetChainConfig 0.0% +2025-07-23T19:39:15.4814204Z github.com/ava-labs/coreth/precompile/contract/mocks.go:325: GetPrecompileEnv 0.0% +2025-07-23T19:39:15.4814456Z github.com/ava-labs/coreth/precompile/contract/mocks.go:333: GetPrecompileEnv 0.0% +2025-07-23T19:39:15.4814700Z github.com/ava-labs/coreth/precompile/contract/mocks.go:339: GetSnowContext 0.0% +2025-07-23T19:39:15.4814945Z github.com/ava-labs/coreth/precompile/contract/mocks.go:347: GetSnowContext 0.0% +2025-07-23T19:39:15.4815183Z github.com/ava-labs/coreth/precompile/contract/mocks.go:353: GetStateDB 0.0% +2025-07-23T19:39:15.4815416Z github.com/ava-labs/coreth/precompile/contract/mocks.go:361: GetStateDB 0.0% +2025-07-23T19:39:15.4815690Z github.com/ava-labs/coreth/precompile/contract/mocks.go:379: NewMockBlockContext 0.0% +2025-07-23T19:39:15.4815919Z github.com/ava-labs/coreth/precompile/contract/mocks.go:386: EXPECT 0.0% +2025-07-23T19:39:15.4816184Z github.com/ava-labs/coreth/precompile/contract/mocks.go:391: GetPredicateResults 0.0% +2025-07-23T19:39:15.4816455Z github.com/ava-labs/coreth/precompile/contract/mocks.go:399: GetPredicateResults 0.0% +2025-07-23T19:39:15.4816675Z github.com/ava-labs/coreth/precompile/contract/mocks.go:405: Number 0.0% +2025-07-23T19:39:15.4816894Z github.com/ava-labs/coreth/precompile/contract/mocks.go:413: Number 0.0% +2025-07-23T19:39:15.4817129Z github.com/ava-labs/coreth/precompile/contract/mocks.go:419: Timestamp 0.0% +2025-07-23T19:39:15.4817355Z github.com/ava-labs/coreth/precompile/contract/mocks.go:427: Timestamp 0.0% +2025-07-23T19:39:15.4817646Z github.com/ava-labs/coreth/precompile/contract/utils.go:35: CalculateFunctionSelector 0.0% +2025-07-23T19:39:15.4817879Z github.com/ava-labs/coreth/precompile/contract/utils.go:44: DeductGas 0.0% +2025-07-23T19:39:15.4818192Z github.com/ava-labs/coreth/precompile/contract/utils.go:53: ParseABI 0.0% +2025-07-23T19:39:15.4818460Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:57: NewConfig 100.0% +2025-07-23T19:39:15.4818744Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:67: NewDefaultConfig 100.0% +2025-07-23T19:39:15.4819023Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:73: NewDisableConfig 0.0% +2025-07-23T19:39:15.4819258Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:84: Key 0.0% +2025-07-23T19:39:15.4819505Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:87: Verify 100.0% +2025-07-23T19:39:15.4819754Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:107: Equal 100.0% +2025-07-23T19:39:15.4819999Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:117: Accept 0.0% +2025-07-23T19:39:15.4820412Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:145: PredicateGas 84.6% +2025-07-23T19:39:15.4820698Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:186: VerifyPredicate 80.0% +2025-07-23T19:39:15.4821009Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:85: PackGetBlockchainID 100.0% +2025-07-23T19:39:15.4821372Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:91: PackGetBlockchainIDOutput 100.0% +2025-07-23T19:39:15.4821664Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:96: getBlockchainID 83.3% +2025-07-23T19:39:15.4822029Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:111: UnpackGetVerifiedWarpBlockHashInput 0.0% +2025-07-23T19:39:15.4822379Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:125: PackGetVerifiedWarpBlockHash 100.0% +2025-07-23T19:39:15.4822843Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:131: PackGetVerifiedWarpBlockHashOutput 100.0% +2025-07-23T19:39:15.4823218Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:140: UnpackGetVerifiedWarpBlockHashOutput 0.0% +2025-07-23T19:39:15.4823547Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:147: getVerifiedWarpBlockHash 100.0% +2025-07-23T19:39:15.4823903Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:153: UnpackGetVerifiedWarpMessageInput 100.0% +2025-07-23T19:39:15.4824246Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:167: PackGetVerifiedWarpMessage 100.0% +2025-07-23T19:39:15.4824601Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:173: PackGetVerifiedWarpMessageOutput 100.0% +2025-07-23T19:39:15.4824959Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:182: UnpackGetVerifiedWarpMessageOutput 0.0% +2025-07-23T19:39:15.4825283Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:191: getVerifiedWarpMessage 100.0% +2025-07-23T19:39:15.4825624Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:197: UnpackSendWarpMessageInput 100.0% +2025-07-23T19:39:15.4825942Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:209: PackSendWarpMessage 100.0% +2025-07-23T19:39:15.4826272Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:215: PackSendWarpMessageOutput 100.0% +2025-07-23T19:39:15.4826616Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:221: UnpackSendWarpMessageOutput 0.0% +2025-07-23T19:39:15.4826910Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:232: sendWarpMessage 81.5% +2025-07-23T19:39:15.4827234Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:301: PackSendWarpMessageEvent 100.0% +2025-07-23T19:39:15.4827592Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:306: UnpackSendWarpEventDataToMessage 80.0% +2025-07-23T19:39:15.4827903Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:316: createWarpPrecompile 81.8% +2025-07-23T19:39:15.4828297Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:29: init 75.0% +2025-07-23T19:39:15.4828636Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:48: handleWarpMessage 96.7% +2025-07-23T19:39:15.4828954Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:98: packFailed 100.0% +2025-07-23T19:39:15.4829286Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:102: handleMessage 100.0% +2025-07-23T19:39:15.4829600Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:119: packFailed 100.0% +2025-07-23T19:39:15.4829931Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:123: handleMessage 100.0% +2025-07-23T19:39:15.4830173Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:35: init 50.0% +2025-07-23T19:39:15.4830553Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:45: MakeConfig 0.0% +2025-07-23T19:39:15.4830808Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:50: Configure 0.0% +2025-07-23T19:39:15.4831025Z github.com/ava-labs/coreth/precompile/modules/module.go:27: Len 100.0% +2025-07-23T19:39:15.4831246Z github.com/ava-labs/coreth/precompile/modules/module.go:31: Swap 100.0% +2025-07-23T19:39:15.4831469Z github.com/ava-labs/coreth/precompile/modules/module.go:35: Less 100.0% +2025-07-23T19:39:15.4831746Z github.com/ava-labs/coreth/precompile/modules/registerer.go:37: ReservedAddress 75.0% +2025-07-23T19:39:15.4832020Z github.com/ava-labs/coreth/precompile/modules/registerer.go:48: RegisterModule 46.2% +2025-07-23T19:39:15.4832336Z github.com/ava-labs/coreth/precompile/modules/registerer.go:72: GetPrecompileModuleByAddress 0.0% +2025-07-23T19:39:15.4832619Z github.com/ava-labs/coreth/precompile/modules/registerer.go:81: GetPrecompileModule 0.0% +2025-07-23T19:39:15.4833000Z github.com/ava-labs/coreth/precompile/modules/registerer.go:90: RegisteredModules 0.0% +2025-07-23T19:39:15.4833310Z github.com/ava-labs/coreth/precompile/modules/registerer.go:94: insertSortedByAddress 100.0% +2025-07-23T19:39:15.4833601Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:32: NewMockPredicater 0.0% +2025-07-23T19:39:15.4833854Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:39: EXPECT 0.0% +2025-07-23T19:39:15.4834127Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:44: PredicateGas 0.0% +2025-07-23T19:39:15.4834402Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:53: PredicateGas 0.0% +2025-07-23T19:39:15.4834683Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:59: VerifyPredicate 0.0% +2025-07-23T19:39:15.4834969Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:67: VerifyPredicate 0.0% +2025-07-23T19:39:15.4835249Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:85: NewMockConfig 0.0% +2025-07-23T19:39:15.4835497Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:92: EXPECT 0.0% +2025-07-23T19:39:15.4835747Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:97: Equal 0.0% +2025-07-23T19:39:15.4835993Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:105: Equal 0.0% +2025-07-23T19:39:15.4836266Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:111: IsDisabled 0.0% +2025-07-23T19:39:15.4836532Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:119: IsDisabled 0.0% +2025-07-23T19:39:15.4836773Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:125: Key 0.0% +2025-07-23T19:39:15.4837016Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:133: Key 0.0% +2025-07-23T19:39:15.4837278Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:139: Timestamp 0.0% +2025-07-23T19:39:15.4837542Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:147: Timestamp 0.0% +2025-07-23T19:39:15.4837799Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:153: Verify 0.0% +2025-07-23T19:39:15.4838048Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:161: Verify 0.0% +2025-07-23T19:39:15.4838445Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:179: NewMockChainConfig 0.0% +2025-07-23T19:39:15.4838697Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:186: EXPECT 0.0% +2025-07-23T19:39:15.4838955Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:191: IsDurango 0.0% +2025-07-23T19:39:15.4839218Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:199: IsDurango 0.0% +2025-07-23T19:39:15.4839505Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:217: NewMockAccepter 0.0% +2025-07-23T19:39:15.4839761Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:224: EXPECT 0.0% +2025-07-23T19:39:15.4840129Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:229: Accept 0.0% +2025-07-23T19:39:15.4840377Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:237: Accept 0.0% +2025-07-23T19:39:15.4840662Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:17: Timestamp 0.0% +2025-07-23T19:39:15.4840945Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:22: IsDisabled 0.0% +2025-07-23T19:39:15.4841217Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:28: Equal 0.0% +2025-07-23T19:39:15.4841530Z github.com/ava-labs/coreth/precompile/precompiletest/test_config.go:28: RunVerifyTests 100.0% +2025-07-23T19:39:15.4841828Z github.com/ava-labs/coreth/precompile/precompiletest/test_config.go:51: RunEqualTests 100.0% +2025-07-23T19:39:15.4842104Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:66: Run 100.0% +2025-07-23T19:39:15.4842489Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:88: setup 96.0% +2025-07-23T19:39:15.4842828Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:135: RunPrecompileTests 100.0% +2025-07-23T19:39:15.4843142Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:153: newTestStateDB 100.0% +2025-07-23T19:39:15.4843493Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:163: GetPredicateStorageSlots 100.0% +2025-07-23T19:39:15.4843766Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:26: Run 100.0% +2025-07-23T19:39:15.4844079Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:43: RunPredicateTests 100.0% +2025-07-23T19:39:15.4844371Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:53: RunBenchmark 0.0% +2025-07-23T19:39:15.4844705Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:73: RunPredicateBenchmarks 0.0% +2025-07-23T19:39:15.4844957Z github.com/ava-labs/coreth/predicate/predicate_bytes.go:28: PackPredicate 100.0% +2025-07-23T19:39:15.4845213Z github.com/ava-labs/coreth/predicate/predicate_bytes.go:36: UnpackPredicate 87.5% +2025-07-23T19:39:15.4845437Z github.com/ava-labs/coreth/predicate/predicate_results.go:24: init 83.3% +2025-07-23T19:39:15.4845704Z github.com/ava-labs/coreth/predicate/predicate_results.go:47: GetPredicateResults 0.0% +2025-07-23T19:39:15.4845950Z github.com/ava-labs/coreth/predicate/predicate_results.go:56: NewResults 100.0% +2025-07-23T19:39:15.4846212Z github.com/ava-labs/coreth/predicate/predicate_results.go:62: NewResultsFromMap 100.0% +2025-07-23T19:39:15.4846460Z github.com/ava-labs/coreth/predicate/predicate_results.go:69: ParseResults 71.4% +2025-07-23T19:39:15.4846702Z github.com/ava-labs/coreth/predicate/predicate_results.go:82: GetResults 100.0% +2025-07-23T19:39:15.4846950Z github.com/ava-labs/coreth/predicate/predicate_results.go:91: SetTxResults 100.0% +2025-07-23T19:39:15.4847221Z github.com/ava-labs/coreth/predicate/predicate_results.go:101: DeleteTxResults 100.0% +2025-07-23T19:39:15.4847452Z github.com/ava-labs/coreth/predicate/predicate_results.go:106: Bytes 100.0% +2025-07-23T19:39:15.4847684Z github.com/ava-labs/coreth/predicate/predicate_results.go:110: String 0.0% +2025-07-23T19:39:15.4847981Z github.com/ava-labs/coreth/predicate/predicate_slots.go:20: PreparePredicateStorageSlots 0.0% +2025-07-23T19:39:15.4848308Z github.com/ava-labs/coreth/predicate/predicate_tx.go:16: NewPredicateTx 0.0% +2025-07-23T19:39:15.4848522Z github.com/ava-labs/coreth/rpc/client.go:128: newClientConn 100.0% +2025-07-23T19:39:15.4848702Z github.com/ava-labs/coreth/rpc/client.go:141: close 100.0% +2025-07-23T19:39:15.4848875Z github.com/ava-labs/coreth/rpc/client.go:161: wait 100.0% +2025-07-23T19:39:15.4849046Z github.com/ava-labs/coreth/rpc/client.go:189: Dial 100.0% +2025-07-23T19:39:15.4849366Z github.com/ava-labs/coreth/rpc/client.go:197: DialContext 100.0% +2025-07-23T19:39:15.4849565Z github.com/ava-labs/coreth/rpc/client.go:208: DialOptions 80.0% +2025-07-23T19:39:15.4849779Z github.com/ava-labs/coreth/rpc/client.go:242: ClientFromContext 100.0% +2025-07-23T19:39:15.4849967Z github.com/ava-labs/coreth/rpc/client.go:247: newClient 100.0% +2025-07-23T19:39:15.4850163Z github.com/ava-labs/coreth/rpc/client.go:257: initClient 100.0% +2025-07-23T19:39:15.4850351Z github.com/ava-labs/coreth/rpc/client.go:293: RegisterName 0.0% +2025-07-23T19:39:15.4850533Z github.com/ava-labs/coreth/rpc/client.go:297: nextID 100.0% +2025-07-23T19:39:15.4850741Z github.com/ava-labs/coreth/rpc/client.go:304: SupportedModules 100.0% +2025-07-23T19:39:15.4850915Z github.com/ava-labs/coreth/rpc/client.go:313: Close 100.0% +2025-07-23T19:39:15.4851100Z github.com/ava-labs/coreth/rpc/client.go:327: SetHeader 83.3% +2025-07-23T19:39:15.4851382Z github.com/ava-labs/coreth/rpc/client.go:342: Call 100.0% +2025-07-23T19:39:15.4851574Z github.com/ava-labs/coreth/rpc/client.go:352: CallContext 95.2% +2025-07-23T19:39:15.4851764Z github.com/ava-labs/coreth/rpc/client.go:400: BatchCall 100.0% +2025-07-23T19:39:15.4851969Z github.com/ava-labs/coreth/rpc/client.go:414: BatchCallContext 85.7% +2025-07-23T19:39:15.4852145Z github.com/ava-labs/coreth/rpc/client.go:485: Notify 75.0% +2025-07-23T19:39:15.4852341Z github.com/ava-labs/coreth/rpc/client.go:500: EthSubscribe 100.0% +2025-07-23T19:39:15.4852528Z github.com/ava-labs/coreth/rpc/client.go:506: ShhSubscribe 0.0% +2025-07-23T19:39:15.4852715Z github.com/ava-labs/coreth/rpc/client.go:522: Subscribe 81.2% +2025-07-23T19:39:15.4852941Z github.com/ava-labs/coreth/rpc/client.go:559: SupportsSubscriptions 0.0% +2025-07-23T19:39:15.4853124Z github.com/ava-labs/coreth/rpc/client.go:563: newMessage 83.3% +2025-07-23T19:39:15.4853303Z github.com/ava-labs/coreth/rpc/client.go:576: send 100.0% +2025-07-23T19:39:15.4853474Z github.com/ava-labs/coreth/rpc/client.go:591: write 100.0% +2025-07-23T19:39:15.4853658Z github.com/ava-labs/coreth/rpc/client.go:608: reconnect 93.3% +2025-07-23T19:39:15.4853834Z github.com/ava-labs/coreth/rpc/client.go:636: dispatch 94.1% +2025-07-23T19:39:15.4854014Z github.com/ava-labs/coreth/rpc/client.go:717: drainRead 100.0% +2025-07-23T19:39:15.4854185Z github.com/ava-labs/coreth/rpc/client.go:728: read 100.0% +2025-07-23T19:39:15.4854388Z github.com/ava-labs/coreth/rpc/client_opt.go:57: initHeaders 100.0% +2025-07-23T19:39:15.4854586Z github.com/ava-labs/coreth/rpc/client_opt.go:63: setHeader 100.0% +2025-07-23T19:39:15.4854788Z github.com/ava-labs/coreth/rpc/client_opt.go:70: applyOption 100.0% +2025-07-23T19:39:15.4855011Z github.com/ava-labs/coreth/rpc/client_opt.go:75: WithWebsocketDialer 0.0% +2025-07-23T19:39:15.4855278Z github.com/ava-labs/coreth/rpc/client_opt.go:83: WithWebsocketMessageSizeLimit 100.0% +2025-07-23T19:39:15.4855469Z github.com/ava-labs/coreth/rpc/client_opt.go:91: WithHeader 0.0% +2025-07-23T19:39:15.4855666Z github.com/ava-labs/coreth/rpc/client_opt.go:100: WithHeaders 0.0% +2025-07-23T19:39:15.4855881Z github.com/ava-labs/coreth/rpc/client_opt.go:110: WithHTTPClient 0.0% +2025-07-23T19:39:15.4856079Z github.com/ava-labs/coreth/rpc/client_opt.go:119: WithHTTPAuth 0.0% +2025-07-23T19:39:15.4856303Z github.com/ava-labs/coreth/rpc/client_opt.go:139: WithBatchItemLimit 0.0% +2025-07-23T19:39:15.4856548Z github.com/ava-labs/coreth/rpc/client_opt.go:151: WithBatchResponseSizeLimit 0.0% +2025-07-23T19:39:15.4856800Z github.com/ava-labs/coreth/rpc/context_headers.go:39: NewContextWithHeaders 87.5% +2025-07-23T19:39:15.4857047Z github.com/ava-labs/coreth/rpc/context_headers.go:56: headersFromContext 100.0% +2025-07-23T19:39:15.4857351Z github.com/ava-labs/coreth/rpc/context_headers.go:62: setHeaders 100.0% +2025-07-23T19:39:15.4857527Z github.com/ava-labs/coreth/rpc/errors.go:40: Error 66.7% +2025-07-23T19:39:15.4857711Z github.com/ava-labs/coreth/rpc/errors.go:89: ErrorCode 100.0% +2025-07-23T19:39:15.4857880Z github.com/ava-labs/coreth/rpc/errors.go:91: Error 100.0% +2025-07-23T19:39:15.4858055Z github.com/ava-labs/coreth/rpc/errors.go:97: Error 0.0% +2025-07-23T19:39:15.4858331Z github.com/ava-labs/coreth/rpc/errors.go:101: ErrorCode 0.0% +2025-07-23T19:39:15.4858492Z github.com/ava-labs/coreth/rpc/errors.go:111: Is 0.0% +2025-07-23T19:39:15.4858685Z github.com/ava-labs/coreth/rpc/errors.go:125: ErrorCode 100.0% +2025-07-23T19:39:15.4858857Z github.com/ava-labs/coreth/rpc/errors.go:127: Error 100.0% +2025-07-23T19:39:15.4859046Z github.com/ava-labs/coreth/rpc/errors.go:134: ErrorCode 100.0% +2025-07-23T19:39:15.4859221Z github.com/ava-labs/coreth/rpc/errors.go:136: Error 100.0% +2025-07-23T19:39:15.4859528Z github.com/ava-labs/coreth/rpc/errors.go:141: ErrorCode 100.0% +2025-07-23T19:39:15.4859708Z github.com/ava-labs/coreth/rpc/errors.go:143: Error 100.0% +2025-07-23T19:39:15.4859883Z github.com/ava-labs/coreth/rpc/errors.go:148: ErrorCode 0.0% +2025-07-23T19:39:15.4860051Z github.com/ava-labs/coreth/rpc/errors.go:150: Error 0.0% +2025-07-23T19:39:15.4860237Z github.com/ava-labs/coreth/rpc/errors.go:155: ErrorCode 100.0% +2025-07-23T19:39:15.4860406Z github.com/ava-labs/coreth/rpc/errors.go:157: Error 100.0% +2025-07-23T19:39:15.4860590Z github.com/ava-labs/coreth/rpc/errors.go:165: ErrorCode 100.0% +2025-07-23T19:39:15.4860758Z github.com/ava-labs/coreth/rpc/errors.go:167: Error 100.0% +2025-07-23T19:39:15.4860949Z github.com/ava-labs/coreth/rpc/handler.go:96: newHandler 100.0% +2025-07-23T19:39:15.4861135Z github.com/ava-labs/coreth/rpc/handler.go:130: nextCall 100.0% +2025-07-23T19:39:15.4861343Z github.com/ava-labs/coreth/rpc/handler.go:144: pushResponse 100.0% +2025-07-23T19:39:15.4861518Z github.com/ava-labs/coreth/rpc/handler.go:155: write 100.0% +2025-07-23T19:39:15.4861738Z github.com/ava-labs/coreth/rpc/handler.go:164: respondWithError 100.0% +2025-07-23T19:39:15.4861919Z github.com/ava-labs/coreth/rpc/handler.go:178: doWrite 100.0% +2025-07-23T19:39:15.4862110Z github.com/ava-labs/coreth/rpc/handler.go:193: addLimiter 66.7% +2025-07-23T19:39:15.4862300Z github.com/ava-labs/coreth/rpc/handler.go:201: handleBatch 84.1% +2025-07-23T19:39:15.4862542Z github.com/ava-labs/coreth/rpc/handler.go:283: respondWithBatchTooLarge 100.0% +2025-07-23T19:39:15.4862736Z github.com/ava-labs/coreth/rpc/handler.go:298: handleMsg 100.0% +2025-07-23T19:39:15.4862953Z github.com/ava-labs/coreth/rpc/handler.go:307: handleNonBatchCall 66.7% +2025-07-23T19:39:15.4863131Z github.com/ava-labs/coreth/rpc/handler.go:346: close 100.0% +2025-07-23T19:39:15.4863334Z github.com/ava-labs/coreth/rpc/handler.go:354: addRequestOp 100.0% +2025-07-23T19:39:15.4863543Z github.com/ava-labs/coreth/rpc/handler.go:361: removeRequestOp 100.0% +2025-07-23T19:39:15.4863761Z github.com/ava-labs/coreth/rpc/handler.go:368: cancelAllRequests 100.0% +2025-07-23T19:39:15.4863972Z github.com/ava-labs/coreth/rpc/handler.go:390: addSubscriptions 100.0% +2025-07-23T19:39:15.4864210Z github.com/ava-labs/coreth/rpc/handler.go:402: cancelServerSubscriptions 100.0% +2025-07-23T19:39:15.4864403Z github.com/ava-labs/coreth/rpc/handler.go:415: awaitLimit 22.2% +2025-07-23T19:39:15.4864599Z github.com/ava-labs/coreth/rpc/handler.go:435: consumeLimit 28.6% +2025-07-23T19:39:15.4864801Z github.com/ava-labs/coreth/rpc/handler.go:450: startCallProc 87.5% +2025-07-23T19:39:15.4865010Z github.com/ava-labs/coreth/rpc/handler.go:484: handleResponses 93.3% +2025-07-23T19:39:15.4865361Z github.com/ava-labs/coreth/rpc/handler.go:541: handleSubscriptionResult 66.7% +2025-07-23T19:39:15.4865572Z github.com/ava-labs/coreth/rpc/handler.go:553: handleCallMsg 100.0% +2025-07-23T19:39:15.4865758Z github.com/ava-labs/coreth/rpc/handler.go:595: handleCall 95.5% +2025-07-23T19:39:15.4865969Z github.com/ava-labs/coreth/rpc/handler.go:635: handleSubscribe 83.3% +2025-07-23T19:39:15.4866156Z github.com/ava-labs/coreth/rpc/handler.go:668: runMethod 100.0% +2025-07-23T19:39:15.4866347Z github.com/ava-labs/coreth/rpc/handler.go:677: unsubscribe 87.5% +2025-07-23T19:39:15.4866525Z github.com/ava-labs/coreth/rpc/handler.go:692: String 0.0% +2025-07-23T19:39:15.4866696Z github.com/ava-labs/coreth/rpc/handler.go:706: Write 66.7% +2025-07-23T19:39:15.4866902Z github.com/ava-labs/coreth/rpc/handler.go:716: formatErrorData 66.7% +2025-07-23T19:39:15.4867075Z github.com/ava-labs/coreth/rpc/http.go:68: writeJSON 0.0% +2025-07-23T19:39:15.4867363Z github.com/ava-labs/coreth/rpc/http.go:72: writeJSONSkipDeadline 0.0% +2025-07-23T19:39:15.4867539Z github.com/ava-labs/coreth/rpc/http.go:76: peerInfo 0.0% +2025-07-23T19:39:15.4867711Z github.com/ava-labs/coreth/rpc/http.go:80: remoteAddr 0.0% +2025-07-23T19:39:15.4867877Z github.com/ava-labs/coreth/rpc/http.go:84: readBatch 0.0% +2025-07-23T19:39:15.4868041Z github.com/ava-labs/coreth/rpc/http.go:89: close 0.0% +2025-07-23T19:39:15.4868298Z github.com/ava-labs/coreth/rpc/http.go:93: closed 0.0% +2025-07-23T19:39:15.4868472Z github.com/ava-labs/coreth/rpc/http.go:139: DialHTTP 100.0% +2025-07-23T19:39:15.4868681Z github.com/ava-labs/coreth/rpc/http.go:147: DialHTTPWithClient 85.7% +2025-07-23T19:39:15.4868899Z github.com/ava-labs/coreth/rpc/http.go:160: newClientTransportHTTP 90.9% +2025-07-23T19:39:15.4869076Z github.com/ava-labs/coreth/rpc/http.go:186: sendHTTP 90.9% +2025-07-23T19:39:15.4869271Z github.com/ava-labs/coreth/rpc/http.go:203: sendBatchHTTP 80.0% +2025-07-23T19:39:15.4869445Z github.com/ava-labs/coreth/rpc/http.go:219: doRequest 81.5% +2025-07-23T19:39:15.4869650Z github.com/ava-labs/coreth/rpc/http.go:271: newHTTPServerConn 47.1% +2025-07-23T19:39:15.4869812Z github.com/ava-labs/coreth/rpc/http.go:313: Close 100.0% +2025-07-23T19:39:15.4869996Z github.com/ava-labs/coreth/rpc/http.go:316: RemoteAddr 100.0% +2025-07-23T19:39:15.4870196Z github.com/ava-labs/coreth/rpc/http.go:321: SetWriteDeadline 100.0% +2025-07-23T19:39:15.4870371Z github.com/ava-labs/coreth/rpc/http.go:324: ServeHTTP 100.0% +2025-07-23T19:39:15.4870572Z github.com/ava-labs/coreth/rpc/http.go:355: validateRequest 92.3% +2025-07-23T19:39:15.4870786Z github.com/ava-labs/coreth/rpc/http.go:381: ContextRequestTimeout 50.0% +2025-07-23T19:39:15.4870971Z github.com/ava-labs/coreth/rpc/inproc.go:36: DialInProc 100.0% +2025-07-23T19:39:15.4871173Z github.com/ava-labs/coreth/rpc/json.go:82: isNotification 100.0% +2025-07-23T19:39:15.4871339Z github.com/ava-labs/coreth/rpc/json.go:86: isCall 100.0% +2025-07-23T19:39:15.4871520Z github.com/ava-labs/coreth/rpc/json.go:90: isResponse 100.0% +2025-07-23T19:39:15.4871695Z github.com/ava-labs/coreth/rpc/json.go:94: hasValidID 100.0% +2025-07-23T19:39:15.4871891Z github.com/ava-labs/coreth/rpc/json.go:98: hasValidVersion 100.0% +2025-07-23T19:39:15.4872079Z github.com/ava-labs/coreth/rpc/json.go:102: isSubscribe 100.0% +2025-07-23T19:39:15.4872269Z github.com/ava-labs/coreth/rpc/json.go:106: isUnsubscribe 100.0% +2025-07-23T19:39:15.4872440Z github.com/ava-labs/coreth/rpc/json.go:110: namespace 100.0% +2025-07-23T19:39:15.4872610Z github.com/ava-labs/coreth/rpc/json.go:115: String 0.0% +2025-07-23T19:39:15.4872801Z github.com/ava-labs/coreth/rpc/json.go:120: errorResponse 100.0% +2025-07-23T19:39:15.4872979Z github.com/ava-labs/coreth/rpc/json.go:126: response 100.0% +2025-07-23T19:39:15.4873292Z github.com/ava-labs/coreth/rpc/json.go:134: errorMessage 100.0% +2025-07-23T19:39:15.4873455Z github.com/ava-labs/coreth/rpc/json.go:156: Error 66.7% +2025-07-23T19:39:15.4873634Z github.com/ava-labs/coreth/rpc/json.go:163: ErrorCode 100.0% +2025-07-23T19:39:15.4873808Z github.com/ava-labs/coreth/rpc/json.go:167: ErrorData 100.0% +2025-07-23T19:39:15.4874000Z github.com/ava-labs/coreth/rpc/json.go:208: NewFuncCodec 100.0% +2025-07-23T19:39:15.4874173Z github.com/ava-labs/coreth/rpc/json.go:223: NewCodec 100.0% +2025-07-23T19:39:15.4874346Z github.com/ava-labs/coreth/rpc/json.go:234: peerInfo 100.0% +2025-07-23T19:39:15.4874528Z github.com/ava-labs/coreth/rpc/json.go:239: remoteAddr 100.0% +2025-07-23T19:39:15.4874702Z github.com/ava-labs/coreth/rpc/json.go:243: readBatch 100.0% +2025-07-23T19:39:15.4874873Z github.com/ava-labs/coreth/rpc/json.go:261: writeJSON 100.0% +2025-07-23T19:39:15.4875239Z github.com/ava-labs/coreth/rpc/json.go:265: writeJSONSkipDeadline 100.0% +2025-07-23T19:39:15.4875409Z github.com/ava-labs/coreth/rpc/json.go:280: close 100.0% +2025-07-23T19:39:15.4875585Z github.com/ava-labs/coreth/rpc/json.go:288: closed 100.0% +2025-07-23T19:39:15.4875776Z github.com/ava-labs/coreth/rpc/json.go:296: parseMessage 100.0% +2025-07-23T19:39:15.4875945Z github.com/ava-labs/coreth/rpc/json.go:313: isBatch 60.0% +2025-07-23T19:39:15.4876173Z github.com/ava-labs/coreth/rpc/json.go:327: parsePositionalArguments 84.6% +2025-07-23T19:39:15.4876379Z github.com/ava-labs/coreth/rpc/json.go:355: parseArgumentArray 75.0% +2025-07-23T19:39:15.4876594Z github.com/ava-labs/coreth/rpc/json.go:376: parseSubscriptionName 75.0% +2025-07-23T19:39:15.4876830Z github.com/ava-labs/coreth/rpc/metrics.go:58: updateServeTimeHistogram 0.0% +2025-07-23T19:39:15.4877011Z github.com/ava-labs/coreth/rpc/server.go:74: NewServer 100.0% +2025-07-23T19:39:15.4877223Z github.com/ava-labs/coreth/rpc/server.go:95: SetBatchLimits 100.0% +2025-07-23T19:39:15.4877425Z github.com/ava-labs/coreth/rpc/server.go:103: SetHTTPBodyLimit 0.0% +2025-07-23T19:39:15.4877622Z github.com/ava-labs/coreth/rpc/server.go:111: RegisterName 100.0% +2025-07-23T19:39:15.4877814Z github.com/ava-labs/coreth/rpc/server.go:120: ServeCodec 87.5% +2025-07-23T19:39:15.4877999Z github.com/ava-labs/coreth/rpc/server.go:138: trackCodec 83.3% +2025-07-23T19:39:15.4878293Z github.com/ava-labs/coreth/rpc/server.go:149: untrackCodec 100.0% +2025-07-23T19:39:15.4878505Z github.com/ava-labs/coreth/rpc/server.go:159: serveSingleRequest 60.0% +2025-07-23T19:39:15.4878673Z github.com/ava-labs/coreth/rpc/server.go:188: Stop 100.0% +2025-07-23T19:39:15.4878856Z github.com/ava-labs/coreth/rpc/server.go:207: Modules 100.0% +2025-07-23T19:39:15.4879076Z github.com/ava-labs/coreth/rpc/server.go:248: PeerInfoFromContext 100.0% +2025-07-23T19:39:15.4879278Z github.com/ava-labs/coreth/rpc/service.go:71: registerName 89.5% +2025-07-23T19:39:15.4879462Z github.com/ava-labs/coreth/rpc/service.go:106: callback 83.3% +2025-07-23T19:39:15.4879660Z github.com/ava-labs/coreth/rpc/service.go:117: subscription 100.0% +2025-07-23T19:39:15.4879874Z github.com/ava-labs/coreth/rpc/service.go:126: suitableCallbacks 91.7% +2025-07-23T19:39:15.4880068Z github.com/ava-labs/coreth/rpc/service.go:146: newCallback 100.0% +2025-07-23T19:39:15.4880263Z github.com/ava-labs/coreth/rpc/service.go:175: makeArgTypes 100.0% +2025-07-23T19:39:15.4880438Z github.com/ava-labs/coreth/rpc/service.go:194: call 100.0% +2025-07-23T19:39:15.4880633Z github.com/ava-labs/coreth/rpc/service.go:229: isErrorType 100.0% +2025-07-23T19:39:15.4880852Z github.com/ava-labs/coreth/rpc/service.go:234: isSubscriptionType 100.0% +2025-07-23T19:39:15.4881040Z github.com/ava-labs/coreth/rpc/service.go:243: isPubSub 100.0% +2025-07-23T19:39:15.4881364Z github.com/ava-labs/coreth/rpc/service.go:254: formatName 100.0% +2025-07-23T19:39:15.4881561Z github.com/ava-labs/coreth/rpc/subscription.go:67: NewID 100.0% +2025-07-23T19:39:15.4881787Z github.com/ava-labs/coreth/rpc/subscription.go:72: randomIDGenerator 91.7% +2025-07-23T19:39:15.4881981Z github.com/ava-labs/coreth/rpc/subscription.go:94: encodeID 80.0% +2025-07-23T19:39:15.4882229Z github.com/ava-labs/coreth/rpc/subscription.go:106: NotifierFromContext 100.0% +2025-07-23T19:39:15.4882465Z github.com/ava-labs/coreth/rpc/subscription.go:128: CreateSubscription 75.0% +2025-07-23T19:39:15.4882663Z github.com/ava-labs/coreth/rpc/subscription.go:143: Notify 80.0% +2025-07-23T19:39:15.4882858Z github.com/ava-labs/coreth/rpc/subscription.go:161: Closed 100.0% +2025-07-23T19:39:15.4883086Z github.com/ava-labs/coreth/rpc/subscription.go:167: takeSubscription 100.0% +2025-07-23T19:39:15.4883392Z github.com/ava-labs/coreth/rpc/subscription.go:177: activate 100.0% +2025-07-23T19:39:15.4883586Z github.com/ava-labs/coreth/rpc/subscription.go:190: send 100.0% +2025-07-23T19:39:15.4883771Z github.com/ava-labs/coreth/rpc/subscription.go:211: Err 100.0% +2025-07-23T19:39:15.4883989Z github.com/ava-labs/coreth/rpc/subscription.go:216: MarshalJSON 100.0% +2025-07-23T19:39:15.4884237Z github.com/ava-labs/coreth/rpc/subscription.go:248: newClientSubscription 100.0% +2025-07-23T19:39:15.4884425Z github.com/ava-labs/coreth/rpc/subscription.go:271: Err 100.0% +2025-07-23T19:39:15.4884635Z github.com/ava-labs/coreth/rpc/subscription.go:277: Unsubscribe 100.0% +2025-07-23T19:39:15.4884834Z github.com/ava-labs/coreth/rpc/subscription.go:289: deliver 100.0% +2025-07-23T19:39:15.4885030Z github.com/ava-labs/coreth/rpc/subscription.go:299: close 100.0% +2025-07-23T19:39:15.4885212Z github.com/ava-labs/coreth/rpc/subscription.go:308: run 100.0% +2025-07-23T19:39:15.4885419Z github.com/ava-labs/coreth/rpc/subscription.go:335: forward 95.7% +2025-07-23T19:39:15.4885624Z github.com/ava-labs/coreth/rpc/subscription.go:383: unmarshal 100.0% +2025-07-23T19:39:15.4885860Z github.com/ava-labs/coreth/rpc/subscription.go:389: requestUnsubscribe 100.0% +2025-07-23T19:39:15.4886055Z github.com/ava-labs/coreth/rpc/types.go:90: UnmarshalJSON 81.0% +2025-07-23T19:39:15.4886220Z github.com/ava-labs/coreth/rpc/types.go:127: Int64 0.0% +2025-07-23T19:39:15.4886405Z github.com/ava-labs/coreth/rpc/types.go:134: MarshalText 100.0% +2025-07-23T19:39:15.4886579Z github.com/ava-labs/coreth/rpc/types.go:138: String 66.7% +2025-07-23T19:39:15.4886756Z github.com/ava-labs/coreth/rpc/types.go:159: IsAccepted 0.0% +2025-07-23T19:39:15.4886929Z github.com/ava-labs/coreth/rpc/types.go:163: IsLatest 0.0% +2025-07-23T19:39:15.4887122Z github.com/ava-labs/coreth/rpc/types.go:173: UnmarshalJSON 84.4% +2025-07-23T19:39:15.4887298Z github.com/ava-labs/coreth/rpc/types.go:237: Number 100.0% +2025-07-23T19:39:15.4887469Z github.com/ava-labs/coreth/rpc/types.go:244: String 80.0% +2025-07-23T19:39:15.4887633Z github.com/ava-labs/coreth/rpc/types.go:254: Hash 100.0% +2025-07-23T19:39:15.4887872Z github.com/ava-labs/coreth/rpc/types.go:261: BlockNumberOrHashWithNumber 100.0% +2025-07-23T19:39:15.4888213Z github.com/ava-labs/coreth/rpc/types.go:269: BlockNumberOrHashWithHash 100.0% +2025-07-23T19:39:15.4888439Z github.com/ava-labs/coreth/rpc/websocket.go:61: WebsocketHandler 100.0% +2025-07-23T19:39:15.4888703Z github.com/ava-labs/coreth/rpc/websocket.go:65: WebsocketHandlerWithDuration 100.0% +2025-07-23T19:39:15.4888937Z github.com/ava-labs/coreth/rpc/websocket.go:86: wsHandshakeValidator 100.0% +2025-07-23T19:39:15.4889113Z github.com/ava-labs/coreth/rpc/websocket.go:132: Error 0.0% +2025-07-23T19:39:15.4889333Z github.com/ava-labs/coreth/rpc/websocket.go:140: originIsAllowed 100.0% +2025-07-23T19:39:15.4889662Z github.com/ava-labs/coreth/rpc/websocket.go:150: ruleAllowsOrigin 62.5% +2025-07-23T19:39:15.4889879Z github.com/ava-labs/coreth/rpc/websocket.go:178: parseOriginURL 92.9% +2025-07-23T19:39:15.4890115Z github.com/ava-labs/coreth/rpc/websocket.go:205: DialWebsocketWithDialer 0.0% +2025-07-23T19:39:15.4890319Z github.com/ava-labs/coreth/rpc/websocket.go:223: DialWebsocket 85.7% +2025-07-23T19:39:15.4890551Z github.com/ava-labs/coreth/rpc/websocket.go:235: newClientTransportWS 87.5% +2025-07-23T19:39:15.4890761Z github.com/ava-labs/coreth/rpc/websocket.go:278: wsClientHeaders 90.9% +2025-07-23T19:39:15.4890976Z github.com/ava-labs/coreth/rpc/websocket.go:305: newWebsocketCodec 84.6% +2025-07-23T19:39:15.4891166Z github.com/ava-labs/coreth/rpc/websocket.go:337: close 100.0% +2025-07-23T19:39:15.4891358Z github.com/ava-labs/coreth/rpc/websocket.go:342: peerInfo 100.0% +2025-07-23T19:39:15.4891674Z github.com/ava-labs/coreth/rpc/websocket.go:346: writeJSON 100.0% +2025-07-23T19:39:15.4891912Z github.com/ava-labs/coreth/rpc/websocket.go:350: writeJSONSkipDeadline 100.0% +2025-07-23T19:39:15.4892103Z github.com/ava-labs/coreth/rpc/websocket.go:363: pingLoop 50.0% +2025-07-23T19:39:15.4892324Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:55: Crit 0.0% +2025-07-23T19:39:15.4892578Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:58: Warn 0.0% +2025-07-23T19:39:15.4892970Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:61: Info 0.0% +2025-07-23T19:39:15.4893369Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:66: GetWarnings 0.0% +2025-07-23T19:39:15.4893606Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:103: String 0.0% +2025-07-23T19:39:15.4893864Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:112: ToTransaction 0.0% +2025-07-23T19:39:15.4894075Z github.com/ava-labs/coreth/sync/client/client.go:99: NewClient 100.0% +2025-07-23T19:39:15.4894287Z github.com/ava-labs/coreth/sync/client/client.go:114: GetLeafs 100.0% +2025-07-23T19:39:15.4894540Z github.com/ava-labs/coreth/sync/client/client.go:132: parseLeafsResponse 88.5% +2025-07-23T19:39:15.4894747Z github.com/ava-labs/coreth/sync/client/client.go:188: GetBlocks 100.0% +2025-07-23T19:39:15.4894972Z github.com/ava-labs/coreth/sync/client/client.go:207: parseBlocks 100.0% +2025-07-23T19:39:15.4895176Z github.com/ava-labs/coreth/sync/client/client.go:243: GetCode 100.0% +2025-07-23T19:39:15.4895381Z github.com/ava-labs/coreth/sync/client/client.go:257: parseCode 93.3% +2025-07-23T19:39:15.4895576Z github.com/ava-labs/coreth/sync/client/client.go:289: get 72.1% +2025-07-23T19:39:15.4895837Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:51: NewCallbackLeafSyncer 0.0% +2025-07-23T19:39:15.4896064Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:62: workerLoop 0.0% +2025-07-23T19:39:15.4896277Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:80: syncTask 0.0% +2025-07-23T19:39:15.4896480Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:149: Start 0.0% +2025-07-23T19:39:15.4896685Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:171: Done 0.0% +2025-07-23T19:39:15.4896931Z github.com/ava-labs/coreth/sync/client/stats/stats.go:42: NewMessageMetric 100.0% +2025-07-23T19:39:15.4897162Z github.com/ava-labs/coreth/sync/client/stats/stats.go:53: IncRequested 100.0% +2025-07-23T19:39:15.4897398Z github.com/ava-labs/coreth/sync/client/stats/stats.go:57: IncSucceeded 100.0% +2025-07-23T19:39:15.4897620Z github.com/ava-labs/coreth/sync/client/stats/stats.go:61: IncFailed 100.0% +2025-07-23T19:39:15.4897871Z github.com/ava-labs/coreth/sync/client/stats/stats.go:65: IncInvalidResponse 0.0% +2025-07-23T19:39:15.4898214Z github.com/ava-labs/coreth/sync/client/stats/stats.go:69: IncReceived 100.0% +2025-07-23T19:39:15.4898637Z github.com/ava-labs/coreth/sync/client/stats/stats.go:73: UpdateRequestLatency 100.0% +2025-07-23T19:39:15.4898916Z github.com/ava-labs/coreth/sync/client/stats/stats.go:84: NewClientSyncerStats 100.0% +2025-07-23T19:39:15.4899136Z github.com/ava-labs/coreth/sync/client/stats/stats.go:97: GetMetric 62.5% +2025-07-23T19:39:15.4899369Z github.com/ava-labs/coreth/sync/client/stats/stats.go:121: IncRequested 0.0% +2025-07-23T19:39:15.4899597Z github.com/ava-labs/coreth/sync/client/stats/stats.go:122: IncSucceeded 0.0% +2025-07-23T19:39:15.4899814Z github.com/ava-labs/coreth/sync/client/stats/stats.go:123: IncFailed 0.0% +2025-07-23T19:39:15.4900072Z github.com/ava-labs/coreth/sync/client/stats/stats.go:124: IncInvalidResponse 0.0% +2025-07-23T19:39:15.4900298Z github.com/ava-labs/coreth/sync/client/stats/stats.go:125: IncReceived 0.0% +2025-07-23T19:39:15.4900562Z github.com/ava-labs/coreth/sync/client/stats/stats.go:126: UpdateRequestLatency 0.0% +2025-07-23T19:39:15.4900906Z github.com/ava-labs/coreth/sync/client/stats/stats.go:128: NewNoOpStats 100.0% +2025-07-23T19:39:15.4901138Z github.com/ava-labs/coreth/sync/client/stats/stats.go:132: GetMetric 100.0% +2025-07-23T19:39:15.4901368Z github.com/ava-labs/coreth/sync/client/test_client.go:44: NewTestClient 0.0% +2025-07-23T19:39:15.4901577Z github.com/ava-labs/coreth/sync/client/test_client.go:58: GetLeafs 0.0% +2025-07-23T19:39:15.4901806Z github.com/ava-labs/coreth/sync/client/test_client.go:77: LeavesReceived 0.0% +2025-07-23T19:39:15.4902018Z github.com/ava-labs/coreth/sync/client/test_client.go:81: GetCode 0.0% +2025-07-23T19:39:15.4902242Z github.com/ava-labs/coreth/sync/client/test_client.go:105: CodeReceived 0.0% +2025-07-23T19:39:15.4902461Z github.com/ava-labs/coreth/sync/client/test_client.go:109: GetBlocks 0.0% +2025-07-23T19:39:15.4902694Z github.com/ava-labs/coreth/sync/client/test_client.go:136: BlocksReceived 0.0% +2025-07-23T19:39:15.4902953Z github.com/ava-labs/coreth/sync/client/test_client.go:142: newTestBlockParser 100.0% +2025-07-23T19:39:15.4903194Z github.com/ava-labs/coreth/sync/client/test_client.go:146: ParseEthBlock 100.0% +2025-07-23T19:39:15.4903468Z github.com/ava-labs/coreth/sync/client/test_network.go:31: SendSyncedAppRequestAny 80.0% +2025-07-23T19:39:15.4903735Z github.com/ava-labs/coreth/sync/client/test_network.go:42: SendSyncedAppRequest 75.0% +2025-07-23T19:39:15.4903962Z github.com/ava-labs/coreth/sync/client/test_network.go:52: processTest 84.6% +2025-07-23T19:39:15.4904173Z github.com/ava-labs/coreth/sync/client/test_network.go:76: Gossip 0.0% +2025-07-23T19:39:15.4904410Z github.com/ava-labs/coreth/sync/client/test_network.go:80: testResponse 100.0% +2025-07-23T19:39:15.4904644Z github.com/ava-labs/coreth/sync/client/test_network.go:89: testResponses 100.0% +2025-07-23T19:39:15.4904878Z github.com/ava-labs/coreth/sync/client/test_network.go:95: TrackBandwidth 0.0% +2025-07-23T19:39:15.4905180Z github.com/ava-labs/coreth/sync/handlers/block_request.go:36: NewBlockRequestHandler 100.0% +2025-07-23T19:39:15.4905436Z github.com/ava-labs/coreth/sync/handlers/block_request.go:49: OnBlockRequest 87.8% +2025-07-23T19:39:15.4905715Z github.com/ava-labs/coreth/sync/handlers/code_request.go:29: NewCodeRequestHandler 100.0% +2025-07-23T19:39:15.4905960Z github.com/ava-labs/coreth/sync/handlers/code_request.go:43: OnCodeRequest 82.1% +2025-07-23T19:39:15.4906185Z github.com/ava-labs/coreth/sync/handlers/code_request.go:85: isUnique 100.0% +2025-07-23T19:39:15.4906475Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:58: NewLeafsRequestHandler 100.0% +2025-07-23T19:39:15.4906723Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:81: OnLeafsRequest 89.8% +2025-07-23T19:39:15.4906976Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:186: handleRequest 73.9% +2025-07-23T19:39:15.4907324Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:230: fillFromSnapshot 69.5% +2025-07-23T19:39:15.4907593Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:333: generateRangeProof 73.3% +2025-07-23T19:39:15.4907861Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:360: verifyRangeProof 100.0% +2025-07-23T19:39:15.4908196Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:372: iterateVals 87.5% +2025-07-23T19:39:15.4908451Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:393: isRangeValid 88.9% +2025-07-23T19:39:15.4908686Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:410: nextKey 100.0% +2025-07-23T19:39:15.4908931Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:424: fillFromTrie 94.4% +2025-07-23T19:39:15.4909218Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:459: readLeafsFromSnapshot 92.3% +2025-07-23T19:39:15.4909471Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:88: IncBlockRequest 100.0% +2025-07-23T19:39:15.4909849Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:92: IncMissingBlockHash 0.0% +2025-07-23T19:39:15.4910125Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:96: UpdateBlocksReturned 100.0% +2025-07-23T19:39:15.4910443Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:100: UpdateBlockRequestProcessingTime 100.0% +2025-07-23T19:39:15.4910691Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:104: IncCodeRequest 0.0% +2025-07-23T19:39:15.4910949Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:108: IncMissingCodeHash 0.0% +2025-07-23T19:39:15.4911237Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:112: IncTooManyHashesRequested 0.0% +2025-07-23T19:39:15.4911532Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:116: IncDuplicateHashesRequested 0.0% +2025-07-23T19:39:15.4911790Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:120: UpdateCodeReadTime 0.0% +2025-07-23T19:39:15.4912081Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:124: UpdateCodeBytesReturned 0.0% +2025-07-23T19:39:15.4912334Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:128: IncLeafsRequest 100.0% +2025-07-23T19:39:15.4912609Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:132: IncInvalidLeafsRequest 0.0% +2025-07-23T19:39:15.4912927Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:136: UpdateLeafsRequestProcessingTime 100.0% +2025-07-23T19:39:15.4913198Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:140: UpdateLeafsReturned 100.0% +2025-07-23T19:39:15.4913470Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:144: UpdateReadLeafsTime 100.0% +2025-07-23T19:39:15.4913752Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:148: UpdateSnapshotReadTime 100.0% +2025-07-23T19:39:15.4914052Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:152: UpdateGenerateRangeProofTime 100.0% +2025-07-23T19:39:15.4914360Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:156: UpdateRangeProofValsReturned 100.0% +2025-07-23T19:39:15.4914603Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:160: IncMissingRoot 0.0% +2025-07-23T19:39:15.4914844Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:161: IncTrieError 0.0% +2025-07-23T19:39:15.4915087Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:162: IncProofError 0.0% +2025-07-23T19:39:15.4915353Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:163: IncSnapshotReadError 0.0% +2025-07-23T19:39:15.4915671Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:164: IncSnapshotReadAttempt 100.0% +2025-07-23T19:39:15.4916085Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:165: IncSnapshotReadSuccess 0.0% +2025-07-23T19:39:15.4916374Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:166: IncSnapshotSegmentValid 0.0% +2025-07-23T19:39:15.4916664Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:167: IncSnapshotSegmentInvalid 100.0% +2025-07-23T19:39:15.4917078Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:172: GetOrRegisterHandlerStats 66.7% +2025-07-23T19:39:15.4917353Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:214: NewNoopHandlerStats 100.0% +2025-07-23T19:39:15.4917603Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:219: IncBlockRequest 0.0% +2025-07-23T19:39:15.4917865Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:220: IncMissingBlockHash 0.0% +2025-07-23T19:39:15.4918247Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:221: UpdateBlocksReturned 0.0% +2025-07-23T19:39:15.4918559Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:222: UpdateBlockRequestProcessingTime 0.0% +2025-07-23T19:39:15.4918808Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:223: IncCodeRequest 0.0% +2025-07-23T19:39:15.4919064Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:224: IncMissingCodeHash 0.0% +2025-07-23T19:39:15.4919459Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:225: IncTooManyHashesRequested 0.0% +2025-07-23T19:39:15.4919759Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:226: IncDuplicateHashesRequested 0.0% +2025-07-23T19:39:15.4920016Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:227: UpdateCodeReadTime 0.0% +2025-07-23T19:39:15.4920299Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:228: UpdateCodeBytesReturned 0.0% +2025-07-23T19:39:15.4920548Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:229: IncLeafsRequest 0.0% +2025-07-23T19:39:15.4920820Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:230: IncInvalidLeafsRequest 0.0% +2025-07-23T19:39:15.4921130Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:231: UpdateLeafsRequestProcessingTime 0.0% +2025-07-23T19:39:15.4921425Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:232: UpdateLeafsReturned 0.0% +2025-07-23T19:39:15.4921702Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:233: UpdateReadLeafsTime 0.0% +2025-07-23T19:39:15.4921982Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:234: UpdateSnapshotReadTime 0.0% +2025-07-23T19:39:15.4922281Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:235: UpdateGenerateRangeProofTime 0.0% +2025-07-23T19:39:15.4922582Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:236: UpdateRangeProofValsReturned 0.0% +2025-07-23T19:39:15.4922827Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:237: IncMissingRoot 0.0% +2025-07-23T19:39:15.4923069Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:238: IncTrieError 0.0% +2025-07-23T19:39:15.4923313Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:239: IncProofError 0.0% +2025-07-23T19:39:15.4923580Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:240: IncSnapshotReadError 0.0% +2025-07-23T19:39:15.4923861Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:241: IncSnapshotReadAttempt 0.0% +2025-07-23T19:39:15.4924139Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:242: IncSnapshotReadSuccess 0.0% +2025-07-23T19:39:15.4924421Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:243: IncSnapshotSegmentValid 0.0% +2025-07-23T19:39:15.4924709Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:244: IncSnapshotSegmentInvalid 0.0% +2025-07-23T19:39:15.4924981Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:49: Reset 100.0% +2025-07-23T19:39:15.4925294Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:80: IncBlockRequest 100.0% +2025-07-23T19:39:15.4925618Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:86: IncMissingBlockHash 100.0% +2025-07-23T19:39:15.4925942Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:92: UpdateBlocksReturned 100.0% +2025-07-23T19:39:15.4926331Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:98: UpdateBlockRequestProcessingTime 100.0% +2025-07-23T19:39:15.4926751Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:104: IncCodeRequest 100.0% +2025-07-23T19:39:15.4927071Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:110: IncMissingCodeHash 0.0% +2025-07-23T19:39:15.4927421Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:116: IncTooManyHashesRequested 100.0% +2025-07-23T19:39:15.4927775Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:122: IncDuplicateHashesRequested 100.0% +2025-07-23T19:39:15.4928195Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:128: UpdateCodeReadTime 100.0% +2025-07-23T19:39:15.4928541Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:134: UpdateCodeBytesReturned 100.0% +2025-07-23T19:39:15.4928859Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:140: IncLeafsRequest 100.0% +2025-07-23T19:39:15.4929307Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:146: IncInvalidLeafsRequest 100.0% +2025-07-23T19:39:15.4929635Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:152: UpdateLeafsReturned 100.0% +2025-07-23T19:39:15.4930011Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:158: UpdateLeafsRequestProcessingTime 100.0% +2025-07-23T19:39:15.4930330Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:164: UpdateReadLeafsTime 100.0% +2025-07-23T19:39:15.4930693Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:170: UpdateGenerateRangeProofTime 100.0% +2025-07-23T19:39:15.4931135Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:176: UpdateSnapshotReadTime 100.0% +2025-07-23T19:39:15.4931499Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:182: UpdateRangeProofValsReturned 100.0% +2025-07-23T19:39:15.4931823Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:188: IncMissingRoot 100.0% +2025-07-23T19:39:15.4932123Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:194: IncTrieError 100.0% +2025-07-23T19:39:15.4932423Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:200: IncProofError 0.0% +2025-07-23T19:39:15.4932743Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:206: IncSnapshotReadError 0.0% +2025-07-23T19:39:15.4933081Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:212: IncSnapshotReadAttempt 100.0% +2025-07-23T19:39:15.4933422Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:218: IncSnapshotReadSuccess 100.0% +2025-07-23T19:39:15.4933764Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:224: IncSnapshotSegmentValid 100.0% +2025-07-23T19:39:15.4934114Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:230: IncSnapshotSegmentInvalid 100.0% +2025-07-23T19:39:15.4934361Z github.com/ava-labs/coreth/sync/handlers/test_providers.go:21: GetBlock 100.0% +2025-07-23T19:39:15.4934603Z github.com/ava-labs/coreth/sync/handlers/test_providers.go:29: Snapshots 100.0% +2025-07-23T19:39:15.4934858Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:63: newCodeSyncer 100.0% +2025-07-23T19:39:15.4935081Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:75: start 93.3% +2025-07-23T19:39:15.4935381Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:107: addCodeToFetchFromDBToQueue 55.0% +2025-07-23T19:39:15.4935603Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:143: work 100.0% +2025-07-23T19:39:15.4935867Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:180: fulfillCodeRequest 92.3% +2025-07-23T19:39:15.4936102Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:204: addCode 91.7% +2025-07-23T19:39:15.4936403Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:230: notifyAccountTrieCompleted 100.0% +2025-07-23T19:39:15.4936860Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:236: addHashesToQueue 100.0% +2025-07-23T19:39:15.4937093Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:249: setError 100.0% +2025-07-23T19:39:15.4937315Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:257: Done 100.0% +2025-07-23T19:39:15.4937577Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:65: NewStateSyncer 84.6% +2025-07-23T19:39:15.4937858Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:113: onStorageTrieFinished 80.0% +2025-07-23T19:39:15.4946933Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:136: onMainTrieFinished 87.5% +2025-07-23T19:39:15.4947391Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:156: onSyncComplete 100.0% +2025-07-23T19:39:15.4947749Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:165: storageTrieProducer 82.6% +2025-07-23T19:39:15.4948435Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:220: Start 100.0% +2025-07-23T19:39:15.4948704Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:247: Done 100.0% +2025-07-23T19:39:15.4948995Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:250: addTrieInProgress 100.0% +2025-07-23T19:39:15.4949284Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:259: removeTrieInProgress 85.7% +2025-07-23T19:39:15.4949544Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:274: onSyncFailure 85.7% +2025-07-23T19:39:15.4949936Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_sync.go:21: FillAccountsWithOverlappingStorage 100.0% +2025-07-23T19:39:15.4950234Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:29: GenerateTrie 66.7% +2025-07-23T19:39:15.4950513Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:39: FillTrie 95.7% +2025-07-23T19:39:15.4950859Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:78: AssertTrieConsistency 81.5% +2025-07-23T19:39:15.4951173Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:118: CorruptTrie 71.4% +2025-07-23T19:39:15.4951482Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:146: FillAccounts 77.3% +2025-07-23T19:39:15.4951772Z github.com/ava-labs/coreth/sync/statesync/sync_helpers.go:16: writeAccountSnapshot 100.0% +2025-07-23T19:39:15.4952100Z github.com/ava-labs/coreth/sync/statesync/sync_helpers.go:23: writeAccountStorageSnapshotFromTrie 0.0% +2025-07-23T19:39:15.4952353Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:20: NewTrieQueue 100.0% +2025-07-23T19:39:15.4952635Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:28: clearIfRootDoesNotMatch 66.7% +2025-07-23T19:39:15.4952906Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:50: RegisterStorageTrie 100.0% +2025-07-23T19:39:15.4953164Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:56: StorageTrieDone 100.0% +2025-07-23T19:39:15.4953408Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:65: getNextTrie 100.0% +2025-07-23T19:39:15.4953645Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:97: countTries 100.0% +2025-07-23T19:39:15.4953901Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:66: NewTrieToSync 100.0% +2025-07-23T19:39:15.4954154Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:86: loadSegments 76.0% +2025-07-23T19:39:15.4954405Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:142: startSyncing 100.0% +2025-07-23T19:39:15.4954649Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:152: addSegment 100.0% +2025-07-23T19:39:15.4954914Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:166: segmentFinished 76.9% +2025-07-23T19:39:15.4955202Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:245: createSegmentsIfNeeded 66.7% +2025-07-23T19:39:15.4955579Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:254: shouldSegment 83.3% +2025-07-23T19:39:15.4955833Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:277: createSegments 0.0% +2025-07-23T19:39:15.4956065Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:336: String 0.0% +2025-07-23T19:39:15.4956296Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:346: Root 100.0% +2025-07-23T19:39:15.4956534Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:347: Account 100.0% +2025-07-23T19:39:15.4956759Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:348: End 100.0% +2025-07-23T19:39:15.4957005Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:349: NodeType 100.0% +2025-07-23T19:39:15.4957237Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:350: OnStart 100.0% +2025-07-23T19:39:15.4957477Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:351: OnFinish 100.0% +2025-07-23T19:39:15.4957817Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:353: Start 100.0% +2025-07-23T19:39:15.4958064Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:360: OnLeafs 92.9% +2025-07-23T19:39:15.4958457Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:391: estimateSize 83.3% +2025-07-23T19:39:15.4958699Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:415: addPadding 0.0% +2025-07-23T19:39:15.4958973Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:45: newTrieSyncStats 100.0% +2025-07-23T19:39:15.4959259Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:59: incTriesSegmented 0.0% +2025-07-23T19:39:15.4959513Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:65: incLeafs 72.7% +2025-07-23T19:39:15.4959897Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:84: estimateSegmentsInProgressTime 25.0% +2025-07-23T19:39:15.4960236Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:101: trieDone 100.0% +2025-07-23T19:39:15.4963218Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:118: updateETA 76.9% +2025-07-23T19:39:15.4963523Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:145: setTriesRemaining 100.0% +2025-07-23T19:39:15.4963771Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:155: roundETA 80.0% +2025-07-23T19:39:15.4964048Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:41: NewMainTrieTask 100.0% +2025-07-23T19:39:15.4964303Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:47: IterateLeafs 100.0% +2025-07-23T19:39:15.4964554Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:53: OnStart 100.0% +2025-07-23T19:39:15.4964791Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:57: OnFinish 100.0% +2025-07-23T19:39:15.4965026Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:61: OnLeafs 92.3% +2025-07-23T19:39:15.4965314Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:97: NewStorageTrieTask 100.0% +2025-07-23T19:39:15.4965572Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:105: IterateLeafs 100.0% +2025-07-23T19:39:15.4965804Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:111: OnStart 54.5% +2025-07-23T19:39:15.4966044Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:138: OnFinish 100.0% +2025-07-23T19:39:15.4966280Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:142: OnLeafs 100.0% +2025-07-23T19:39:15.4966501Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:25: Next 85.7% +2025-07-23T19:39:15.4966711Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:37: Key 66.7% +2025-07-23T19:39:15.4966925Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:44: Value 66.7% +2025-07-23T19:39:15.4967134Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:51: Error 66.7% +2025-07-23T19:39:15.4967506Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:63: Key 100.0% +2025-07-23T19:39:15.4967733Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:67: Value 100.0% +2025-07-23T19:39:15.4967997Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:38: NewAccountTrie 100.0% +2025-07-23T19:39:15.4968373Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:53: GetAccount 87.5% +2025-07-23T19:39:15.4968615Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:87: GetStorage 72.2% +2025-07-23T19:39:15.4968869Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:123: UpdateAccount 88.9% +2025-07-23T19:39:15.4969122Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:138: UpdateStorage 92.3% +2025-07-23T19:39:15.4969375Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:159: DeleteAccount 100.0% +2025-07-23T19:39:15.4969626Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:170: DeleteStorage 100.0% +2025-07-23T19:39:15.4969975Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:186: Hash 60.0% +2025-07-23T19:39:15.4970202Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:195: hash 85.7% +2025-07-23T19:39:15.4970434Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:209: Commit 85.7% +2025-07-23T19:39:15.4970713Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:229: UpdateContractCode 100.0% +2025-07-23T19:39:15.4970941Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:234: GetKey 0.0% +2025-07-23T19:39:15.4971188Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:239: NodeIterator 0.0% +2025-07-23T19:39:15.4971419Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:244: Prove 0.0% +2025-07-23T19:39:15.4971652Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:248: Copy 57.1% +2025-07-23T19:39:15.4971913Z github.com/ava-labs/coreth/triedb/firewood/database.go:79: BackendConstructor 100.0% +2025-07-23T19:39:15.4972120Z github.com/ava-labs/coreth/triedb/firewood/database.go:97: New 66.7% +2025-07-23T19:39:15.4972356Z github.com/ava-labs/coreth/triedb/firewood/database.go:126: validatePath 50.0% +2025-07-23T19:39:15.4972577Z github.com/ava-labs/coreth/triedb/firewood/database.go:163: Scheme 100.0% +2025-07-23T19:39:15.4972807Z github.com/ava-labs/coreth/triedb/firewood/database.go:168: Initialized 66.7% +2025-07-23T19:39:15.4973029Z github.com/ava-labs/coreth/triedb/firewood/database.go:182: Update 93.8% +2025-07-23T19:39:15.4973249Z github.com/ava-labs/coreth/triedb/firewood/database.go:226: propose 82.6% +2025-07-23T19:39:15.4973465Z github.com/ava-labs/coreth/triedb/firewood/database.go:291: Commit 82.8% +2025-07-23T19:39:15.4973678Z github.com/ava-labs/coreth/triedb/firewood/database.go:353: Size 100.0% +2025-07-23T19:39:15.4973898Z github.com/ava-labs/coreth/triedb/firewood/database.go:358: Reference 0.0% +2025-07-23T19:39:15.4974133Z github.com/ava-labs/coreth/triedb/firewood/database.go:370: Dereference 0.0% +2025-07-23T19:39:15.4974336Z github.com/ava-labs/coreth/triedb/firewood/database.go:374: Cap 0.0% +2025-07-23T19:39:15.4974550Z github.com/ava-labs/coreth/triedb/firewood/database.go:378: Close 100.0% +2025-07-23T19:39:15.4974794Z github.com/ava-labs/coreth/triedb/firewood/database.go:392: createProposal 66.7% +2025-07-23T19:39:15.4975083Z github.com/ava-labs/coreth/triedb/firewood/database.go:432: cleanupCommittedProposal 100.0% +2025-07-23T19:39:15.4975312Z github.com/ava-labs/coreth/triedb/firewood/database.go:452: dereference 85.7% +2025-07-23T19:39:15.4975584Z github.com/ava-labs/coreth/triedb/firewood/database.go:471: removeProposalFromMap 100.0% +2025-07-23T19:39:15.4975800Z github.com/ava-labs/coreth/triedb/firewood/database.go:490: Reader 100.0% +2025-07-23T19:39:15.4976009Z github.com/ava-labs/coreth/triedb/firewood/database.go:505: Node 66.7% +2025-07-23T19:39:15.4976386Z github.com/ava-labs/coreth/triedb/firewood/database.go:519: getProposalHash 81.8% +2025-07-23T19:39:15.4976661Z github.com/ava-labs/coreth/triedb/firewood/database.go:563: arrangeKeyValuePairs 100.0% +2025-07-23T19:39:15.4976923Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:18: NewStorageTrie 100.0% +2025-07-23T19:39:15.4977156Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:28: Commit 100.0% +2025-07-23T19:39:15.4977377Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:33: Hash 100.0% +2025-07-23T19:39:15.4977592Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:39: Copy 0.0% +2025-07-23T19:39:15.4977851Z github.com/ava-labs/coreth/triedb/hashdb/database.go:119: BackendConstructor 100.0% +2025-07-23T19:39:15.4978078Z github.com/ava-labs/coreth/triedb/hashdb/database.go:181: forChildren 100.0% +2025-07-23T19:39:15.4978398Z github.com/ava-labs/coreth/triedb/hashdb/database.go:189: New 83.3% +2025-07-23T19:39:15.4978736Z github.com/ava-labs/coreth/triedb/hashdb/database.go:209: insert 100.0% +2025-07-23T19:39:15.4978944Z github.com/ava-labs/coreth/triedb/hashdb/database.go:239: node 89.3% +2025-07-23T19:39:15.4979169Z github.com/ava-labs/coreth/triedb/hashdb/database.go:295: Reference 100.0% +2025-07-23T19:39:15.4979389Z github.com/ava-labs/coreth/triedb/hashdb/database.go:303: reference 100.0% +2025-07-23T19:39:15.4979614Z github.com/ava-labs/coreth/triedb/hashdb/database.go:328: Dereference 88.2% +2025-07-23T19:39:15.4979842Z github.com/ava-labs/coreth/triedb/hashdb/database.go:357: dereference 100.0% +2025-07-23T19:39:15.4980082Z github.com/ava-labs/coreth/triedb/hashdb/database.go:410: writeFlushItems 71.4% +2025-07-23T19:39:15.4980288Z github.com/ava-labs/coreth/triedb/hashdb/database.go:438: Cap 0.0% +2025-07-23T19:39:15.4980497Z github.com/ava-labs/coreth/triedb/hashdb/database.go:518: Commit 87.9% +2025-07-23T19:39:15.4980710Z github.com/ava-labs/coreth/triedb/hashdb/database.go:576: commit 90.9% +2025-07-23T19:39:15.4980966Z github.com/ava-labs/coreth/triedb/hashdb/database.go:607: removeFromDirties 100.0% +2025-07-23T19:39:15.4981190Z github.com/ava-labs/coreth/triedb/hashdb/database.go:646: Initialized 100.0% +2025-07-23T19:39:15.4981401Z github.com/ava-labs/coreth/triedb/hashdb/database.go:654: Update 80.0% +2025-07-23T19:39:15.4981606Z github.com/ava-labs/coreth/triedb/hashdb/database.go:674: update 95.2% +2025-07-23T19:39:15.4981809Z github.com/ava-labs/coreth/triedb/hashdb/database.go:721: Size 100.0% +2025-07-23T19:39:15.4982019Z github.com/ava-labs/coreth/triedb/hashdb/database.go:733: Close 100.0% +2025-07-23T19:39:15.4982230Z github.com/ava-labs/coreth/triedb/hashdb/database.go:741: Scheme 100.0% +2025-07-23T19:39:15.4982444Z github.com/ava-labs/coreth/triedb/hashdb/database.go:747: Reader 100.0% +2025-07-23T19:39:15.4982648Z github.com/ava-labs/coreth/triedb/hashdb/database.go:761: Node 100.0% +2025-07-23T19:39:15.4982902Z github.com/ava-labs/coreth/triedb/pathdb/database.go:108: BackendConstructor 0.0% +2025-07-23T19:39:15.4983121Z github.com/ava-labs/coreth/triedb/pathdb/database.go:114: sanitize 60.0% +2025-07-23T19:39:15.4983321Z github.com/ava-labs/coreth/triedb/pathdb/database.go:163: New 100.0% +2025-07-23T19:39:15.4983530Z github.com/ava-labs/coreth/triedb/pathdb/database.go:231: Reader 100.0% +2025-07-23T19:39:15.4983745Z github.com/ava-labs/coreth/triedb/pathdb/database.go:246: Update 71.4% +2025-07-23T19:39:15.4983950Z github.com/ava-labs/coreth/triedb/pathdb/database.go:269: Commit 80.0% +2025-07-23T19:39:15.4984162Z github.com/ava-labs/coreth/triedb/pathdb/database.go:284: Disable 72.7% +2025-07-23T19:39:15.4984366Z github.com/ava-labs/coreth/triedb/pathdb/database.go:310: Enable 88.2% +2025-07-23T19:39:15.4984582Z github.com/ava-labs/coreth/triedb/pathdb/database.go:356: Recover 100.0% +2025-07-23T19:39:15.4984927Z github.com/ava-labs/coreth/triedb/pathdb/database.go:362: Recoverable 100.0% +2025-07-23T19:39:15.4985131Z github.com/ava-labs/coreth/triedb/pathdb/database.go:394: Close 100.0% +2025-07-23T19:39:15.4985338Z github.com/ava-labs/coreth/triedb/pathdb/database.go:416: Size 0.0% +2025-07-23T19:39:15.4985561Z github.com/ava-labs/coreth/triedb/pathdb/database.go:430: Initialized 0.0% +2025-07-23T19:39:15.4985789Z github.com/ava-labs/coreth/triedb/pathdb/database.go:445: SetBufferSize 0.0% +2025-07-23T19:39:15.4985995Z github.com/ava-labs/coreth/triedb/pathdb/database.go:458: Scheme 0.0% +2025-07-23T19:39:15.4986226Z github.com/ava-labs/coreth/triedb/pathdb/database.go:464: modifyAllowed 60.0% +2025-07-23T19:39:15.4986458Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:59: newDiffLayer 100.0% +2025-07-23T19:39:15.4986683Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:91: rootHash 100.0% +2025-07-23T19:39:15.4986978Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:96: stateID 100.0% +2025-07-23T19:39:15.4987219Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:102: parentLayer 100.0% +2025-07-23T19:39:15.4987423Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:112: node 82.4% +2025-07-23T19:39:15.4987629Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:146: Node 100.0% +2025-07-23T19:39:15.4987851Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:152: update 100.0% +2025-07-23T19:39:15.4988067Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:157: persist 77.8% +2025-07-23T19:39:15.4988510Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:179: diffToDisk 75.0% +2025-07-23T19:39:15.4988747Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:57: newDiskLayer 100.0% +2025-07-23T19:39:15.4988965Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:74: rootHash 100.0% +2025-07-23T19:39:15.4989190Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:79: stateID 100.0% +2025-07-23T19:39:15.4989425Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:85: parentLayer 100.0% +2025-07-23T19:39:15.4989642Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:91: isStale 100.0% +2025-07-23T19:39:15.4989863Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:99: markStale 80.0% +2025-07-23T19:39:15.4990067Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:111: Node 81.1% +2025-07-23T19:39:15.4990290Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:175: update 100.0% +2025-07-23T19:39:15.4990504Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:182: commit 85.7% +2025-07-23T19:39:15.4990712Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:252: revert 0.0% +2025-07-23T19:39:15.4990947Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:300: setBufferSize 0.0% +2025-07-23T19:39:15.4991148Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:311: size 0.0% +2025-07-23T19:39:15.4991383Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:322: resetCache 83.3% +2025-07-23T19:39:15.4991609Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:342: newHasher 100.0% +2025-07-23T19:39:15.4991815Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:346: hash 100.0% +2025-07-23T19:39:15.4992038Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:350: release 100.0% +2025-07-23T19:39:15.4992298Z github.com/ava-labs/coreth/triedb/pathdb/errors.go:67: newUnexpectedNodeError 0.0% +2025-07-23T19:39:15.4992507Z github.com/ava-labs/coreth/triedb/pathdb/history.go:158: encode 100.0% +2025-07-23T19:39:15.4992716Z github.com/ava-labs/coreth/triedb/pathdb/history.go:169: decode 100.0% +2025-07-23T19:39:15.4992919Z github.com/ava-labs/coreth/triedb/pathdb/history.go:185: encode 100.0% +2025-07-23T19:39:15.4993129Z github.com/ava-labs/coreth/triedb/pathdb/history.go:194: decode 100.0% +2025-07-23T19:39:15.4993459Z github.com/ava-labs/coreth/triedb/pathdb/history.go:210: encode 87.5% +2025-07-23T19:39:15.4993661Z github.com/ava-labs/coreth/triedb/pathdb/history.go:223: decode 62.5% +2025-07-23T19:39:15.4993882Z github.com/ava-labs/coreth/triedb/pathdb/history.go:263: newHistory 92.9% +2025-07-23T19:39:15.4994087Z github.com/ava-labs/coreth/triedb/pathdb/history.go:304: encode 100.0% +2025-07-23T19:39:15.4994294Z github.com/ava-labs/coreth/triedb/pathdb/history.go:365: verify 60.0% +2025-07-23T19:39:15.4994514Z github.com/ava-labs/coreth/triedb/pathdb/history.go:376: readAccount 75.0% +2025-07-23T19:39:15.4994734Z github.com/ava-labs/coreth/triedb/pathdb/history.go:409: readStorage 76.2% +2025-07-23T19:39:15.4994941Z github.com/ava-labs/coreth/triedb/pathdb/history.go:456: decode 85.0% +2025-07-23T19:39:15.4995158Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:85: loadJournal 77.3% +2025-07-23T19:39:15.4995481Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:127: loadLayers 100.0% +2025-07-23T19:39:15.4995715Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:149: loadDiskLayer 81.8% +2025-07-23T19:39:15.4995940Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:190: loadDiffLayer 83.3% +2025-07-23T19:39:15.4996154Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:257: journal 77.8% +2025-07-23T19:39:15.4996361Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:291: journal 80.0% +2025-07-23T19:39:15.4996569Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:350: Journal 76.0% +2025-07-23T19:39:15.4996805Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:52: newLayerTree 100.0% +2025-07-23T19:39:15.4997010Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:60: reset 100.0% +2025-07-23T19:39:15.4997212Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:73: get 100.0% +2025-07-23T19:39:15.4997419Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:82: forEach 0.0% +2025-07-23T19:39:15.4997624Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:92: len 100.0% +2025-07-23T19:39:15.4997829Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:100: add 81.8% +2025-07-23T19:39:15.4998028Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:125: cap 79.0% +2025-07-23T19:39:15.4998353Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:236: bottom 90.9% +2025-07-23T19:39:15.4998606Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:54: newNodeBuffer 100.0% +2025-07-23T19:39:15.4998811Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:73: node 72.7% +2025-07-23T19:39:15.4999033Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:94: commit 100.0% +2025-07-23T19:39:15.4999246Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:139: revert 0.0% +2025-07-23T19:39:15.4999472Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:189: updateSize 57.1% +2025-07-23T19:39:15.4999702Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:201: reset 100.0% +2025-07-23T19:39:15.4999910Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:209: empty 0.0% +2025-07-23T19:39:15.5000130Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:215: setSize 0.0% +2025-07-23T19:39:15.5000342Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:222: flush 88.2% +2025-07-23T19:39:15.5000573Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:254: writeNodes 100.0% +2025-07-23T19:39:15.5000805Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:283: cacheKey 100.0% +2025-07-23T19:39:15.5001036Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:55: newTestHasher 80.0% +2025-07-23T19:39:15.5001236Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:71: Get 0.0% +2025-07-23T19:39:15.5001455Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:81: Update 100.0% +2025-07-23T19:39:15.5001795Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:87: Delete 100.0% +2025-07-23T19:39:15.5002009Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:94: Commit 93.8% +2025-07-23T19:39:15.5002214Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:126: hash 100.0% +2025-07-23T19:39:15.5002453Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:152: newHashLoader 100.0% +2025-07-23T19:39:15.5002671Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:160: OpenTrie 0.0% +2025-07-23T19:39:15.5002909Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:165: OpenStorageTrie 0.0% +2025-07-23T19:39:15.5003111Z github.com/ava-labs/coreth/utils/address_range.go:20: Contains 0.0% +2025-07-23T19:39:15.5003349Z github.com/ava-labs/coreth/utils/bounded_workers.go:22: NewBoundedWorkers 0.0% +2025-07-23T19:39:15.5003567Z github.com/ava-labs/coreth/utils/bounded_workers.go:31: startWorker 0.0% +2025-07-23T19:39:15.5003774Z github.com/ava-labs/coreth/utils/bounded_workers.go:51: Execute 0.0% +2025-07-23T19:39:15.5004073Z github.com/ava-labs/coreth/utils/bounded_workers.go:75: Wait 0.0% +2025-07-23T19:39:15.5004259Z github.com/ava-labs/coreth/utils/bytes.go:9: IncrOne 100.0% +2025-07-23T19:39:15.5004469Z github.com/ava-labs/coreth/utils/bytes.go:23: HashSliceToBytes 100.0% +2025-07-23T19:39:15.5004671Z github.com/ava-labs/coreth/utils/bytes.go:33: BytesToHashSlice 100.0% +2025-07-23T19:39:15.5004899Z github.com/ava-labs/coreth/utils/metered_cache.go:37: NewMeteredCache 0.0% +2025-07-23T19:39:15.5005134Z github.com/ava-labs/coreth/utils/metered_cache.go:60: updateStatsIfNeeded 0.0% +2025-07-23T19:39:15.5005322Z github.com/ava-labs/coreth/utils/metered_cache.go:81: Del 0.0% +2025-07-23T19:39:15.5005507Z github.com/ava-labs/coreth/utils/metered_cache.go:86: Get 0.0% +2025-07-23T19:39:15.5005701Z github.com/ava-labs/coreth/utils/metered_cache.go:91: GetBig 0.0% +2025-07-23T19:39:15.5005893Z github.com/ava-labs/coreth/utils/metered_cache.go:96: Has 0.0% +2025-07-23T19:39:15.5006092Z github.com/ava-labs/coreth/utils/metered_cache.go:101: HasGet 0.0% +2025-07-23T19:39:15.5006283Z github.com/ava-labs/coreth/utils/metered_cache.go:106: Set 0.0% +2025-07-23T19:39:15.5006483Z github.com/ava-labs/coreth/utils/metered_cache.go:111: SetBig 0.0% +2025-07-23T19:39:15.5006664Z github.com/ava-labs/coreth/utils/numbers.go:11: NewUint64 0.0% +2025-07-23T19:39:15.5006869Z github.com/ava-labs/coreth/utils/numbers.go:13: TimeToNewUint64 0.0% +2025-07-23T19:39:15.5007066Z github.com/ava-labs/coreth/utils/numbers.go:18: Uint64ToTime 0.0% +2025-07-23T19:39:15.5007266Z github.com/ava-labs/coreth/utils/numbers.go:25: Uint64PtrEqual 0.0% +2025-07-23T19:39:15.5007458Z github.com/ava-labs/coreth/utils/numbers.go:34: BigEqual 100.0% +2025-07-23T19:39:15.5007664Z github.com/ava-labs/coreth/utils/numbers.go:43: BigEqualUint64 100.0% +2025-07-23T19:39:15.5007899Z github.com/ava-labs/coreth/utils/numbers.go:51: BigLessOrEqualUint64 100.0% +2025-07-23T19:39:15.5008210Z github.com/ava-labs/coreth/utils/rpc/handler.go:16: NewHandler 0.0% +2025-07-23T19:39:15.5008435Z github.com/ava-labs/coreth/utils/snow.go:17: NewTestValidatorState 0.0% +2025-07-23T19:39:15.5008637Z github.com/ava-labs/coreth/utils/utilstest/key.go:24: NewKey 100.0% +2025-07-23T19:39:15.5008839Z github.com/ava-labs/coreth/warp/backend.go:65: NewBackend 100.0% +2025-07-23T19:39:15.5009066Z github.com/ava-labs/coreth/warp/backend.go:88: initOffChainMessages 76.9% +2025-07-23T19:39:15.5009261Z github.com/ava-labs/coreth/warp/backend.go:113: AddMessage 71.4% +2025-07-23T19:39:15.5009486Z github.com/ava-labs/coreth/warp/backend.go:130: GetMessageSignature 100.0% +2025-07-23T19:39:15.5009700Z github.com/ava-labs/coreth/warp/backend.go:144: GetBlockSignature 73.3% +2025-07-23T19:39:15.5009893Z github.com/ava-labs/coreth/warp/backend.go:172: GetMessage 83.3% +2025-07-23T19:39:15.5010206Z github.com/ava-labs/coreth/warp/backend.go:194: signMessage 80.0% +2025-07-23T19:39:15.5010393Z github.com/ava-labs/coreth/warp/client.go:31: NewClient 0.0% +2025-07-23T19:39:15.5010577Z github.com/ava-labs/coreth/warp/client.go:41: GetMessage 0.0% +2025-07-23T19:39:15.5010788Z github.com/ava-labs/coreth/warp/client.go:49: GetMessageSignature 0.0% +2025-07-23T19:39:15.5011033Z github.com/ava-labs/coreth/warp/client.go:57: GetMessageAggregateSignature 0.0% +2025-07-23T19:39:15.5011238Z github.com/ava-labs/coreth/warp/client.go:65: GetBlockSignature 0.0% +2025-07-23T19:39:15.5011473Z github.com/ava-labs/coreth/warp/client.go:73: GetBlockAggregateSignature 0.0% +2025-07-23T19:39:15.5011664Z github.com/ava-labs/coreth/warp/service.go:32: NewAPI 0.0% +2025-07-23T19:39:15.5011849Z github.com/ava-labs/coreth/warp/service.go:42: GetMessage 0.0% +2025-07-23T19:39:15.5012072Z github.com/ava-labs/coreth/warp/service.go:51: GetMessageSignature 0.0% +2025-07-23T19:39:15.5012430Z github.com/ava-labs/coreth/warp/service.go:64: GetBlockSignature 0.0% +2025-07-23T19:39:15.5012678Z github.com/ava-labs/coreth/warp/service.go:73: GetMessageAggregateSignature 0.0% +2025-07-23T19:39:15.5012918Z github.com/ava-labs/coreth/warp/service.go:82: GetBlockAggregateSignature 0.0% +2025-07-23T19:39:15.5013133Z github.com/ava-labs/coreth/warp/service.go:95: aggregateSignatures 0.0% +2025-07-23T19:39:15.5013351Z github.com/ava-labs/coreth/warp/validators/state.go:31: NewState 100.0% +2025-07-23T19:39:15.5013589Z github.com/ava-labs/coreth/warp/validators/state.go:40: GetValidatorSet 100.0% +2025-07-23T19:39:15.5013792Z github.com/ava-labs/coreth/warp/verifier_backend.go:23: Verify 76.9% +2025-07-23T19:39:15.5014045Z github.com/ava-labs/coreth/warp/verifier_backend.go:58: verifyBlockMessage 100.0% +2025-07-23T19:39:15.5014273Z github.com/ava-labs/coreth/warp/verifier_stats.go:14: newVerifierStats 100.0% +2025-07-23T19:39:15.5014536Z github.com/ava-labs/coreth/warp/verifier_stats.go:21: IncBlockValidationFail 100.0% +2025-07-23T19:39:15.5014784Z github.com/ava-labs/coreth/warp/verifier_stats.go:25: IncMessageParseFail 100.0% +2025-07-23T19:39:15.5015041Z github.com/ava-labs/coreth/warp/warptest/block_client.go:23: GetAcceptedBlock 100.0% +2025-07-23T19:39:15.5015300Z github.com/ava-labs/coreth/warp/warptest/block_client.go:30: MakeBlockClient 100.0% +2025-07-23T19:39:15.5015402Z total: (statements) 60.0% +2025-07-23T19:39:15.5068982Z Post job cleanup. +2025-07-23T19:39:15.7636350Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:39:15.7681429Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:39:15.7711611Z /home/runner/go/pkg/mod +2025-07-23T19:39:15.7771677Z /home/runner/.cache/go-build +2025-07-23T19:39:15.7777386Z Cache hit occurred on the primary key setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d, not saving cache. +2025-07-23T19:39:15.7894902Z Post job cleanup. +2025-07-23T19:39:15.8866322Z [command]/usr/bin/git version +2025-07-23T19:39:15.8901688Z git version 2.50.1 +2025-07-23T19:39:15.8944148Z Temporarily overriding HOME='/home/runner/work/_temp/101d9922-e92b-4888-8039-5f9f345795cc' before making global git config changes +2025-07-23T19:39:15.8945238Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:39:15.8956709Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:39:15.8990426Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:39:15.9021345Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:39:15.9258074Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:39:15.9278974Z http.https://github.com/.extraheader +2025-07-23T19:39:15.9291554Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +2025-07-23T19:39:15.9323388Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:39:15.9663704Z Cleaning up orphan processes diff --git a/logs_42241282643/AvalancheGo E2E Tests/11_Post Run actions_setup-go@v5.txt b/logs_42241282643/AvalancheGo E2E Tests/11_Post Run actions_setup-go@v5.txt new file mode 100644 index 0000000000..94a009111a --- /dev/null +++ b/logs_42241282643/AvalancheGo E2E Tests/11_Post Run actions_setup-go@v5.txt @@ -0,0 +1,6 @@ +2025-07-23T19:36:16.5502312Z Post job cleanup. +2025-07-23T19:36:16.7055412Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:36:16.7094737Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:36:16.7119387Z /home/runner/go/pkg/mod +2025-07-23T19:36:16.7148069Z /home/runner/.cache/go-build +2025-07-23T19:36:16.7153294Z Cache hit occurred on the primary key setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d, not saving cache. diff --git a/logs_42241282643/AvalancheGo E2E Tests/12_Post Run actions_checkout@v4.txt b/logs_42241282643/AvalancheGo E2E Tests/12_Post Run actions_checkout@v4.txt new file mode 100644 index 0000000000..91963f3195 --- /dev/null +++ b/logs_42241282643/AvalancheGo E2E Tests/12_Post Run actions_checkout@v4.txt @@ -0,0 +1,12 @@ +2025-07-23T19:36:16.7264777Z Post job cleanup. +2025-07-23T19:36:16.8293459Z [command]/usr/bin/git version +2025-07-23T19:36:16.8331899Z git version 2.50.1 +2025-07-23T19:36:16.8384846Z Temporarily overriding HOME='/home/runner/work/_temp/f2e259d2-b225-4571-8771-c6ad4dd8d0d9' before making global git config changes +2025-07-23T19:36:16.8386230Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:36:16.8390966Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:36:16.8427225Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:36:16.8459484Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:36:16.8682878Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:36:16.8703604Z http.https://github.com/.extraheader +2025-07-23T19:36:16.8716599Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +2025-07-23T19:36:16.8746206Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" diff --git a/logs_42241282643/AvalancheGo E2E Tests/13_Complete job.txt b/logs_42241282643/AvalancheGo E2E Tests/13_Complete job.txt new file mode 100644 index 0000000000..f2d3144f1d --- /dev/null +++ b/logs_42241282643/AvalancheGo E2E Tests/13_Complete job.txt @@ -0,0 +1 @@ +2025-07-23T19:36:16.9075794Z Cleaning up orphan processes diff --git a/logs_42241282643/AvalancheGo E2E Tests/1_Set up job.txt b/logs_42241282643/AvalancheGo E2E Tests/1_Set up job.txt new file mode 100644 index 0000000000..e3c17ed0cb --- /dev/null +++ b/logs_42241282643/AvalancheGo E2E Tests/1_Set up job.txt @@ -0,0 +1,58 @@ +2025-07-23T19:28:54.4430728Z Current runner version: '2.326.0' +2025-07-23T19:28:54.4462787Z ##[group]Runner Image Provisioner +2025-07-23T19:28:54.4464394Z Hosted Compute Agent +2025-07-23T19:28:54.4465203Z Version: 20250711.363 +2025-07-23T19:28:54.4466161Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c +2025-07-23T19:28:54.4467445Z Build Date: 2025-07-11T20:04:25Z +2025-07-23T19:28:54.4468317Z ##[endgroup] +2025-07-23T19:28:54.4469139Z ##[group]Operating System +2025-07-23T19:28:54.4470052Z Ubuntu +2025-07-23T19:28:54.4470811Z 24.04.2 +2025-07-23T19:28:54.4471448Z LTS +2025-07-23T19:28:54.4472326Z ##[endgroup] +2025-07-23T19:28:54.4473119Z ##[group]Runner Image +2025-07-23T19:28:54.4474194Z Image: ubuntu-24.04 +2025-07-23T19:28:54.4475126Z Version: 20250720.1.0 +2025-07-23T19:28:54.4476784Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md +2025-07-23T19:28:54.4479225Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 +2025-07-23T19:28:54.4481081Z ##[endgroup] +2025-07-23T19:28:54.4485448Z ##[group]GITHUB_TOKEN Permissions +2025-07-23T19:28:54.4488092Z Actions: write +2025-07-23T19:28:54.4489051Z Attestations: write +2025-07-23T19:28:54.4489997Z Checks: write +2025-07-23T19:28:54.4490729Z Contents: write +2025-07-23T19:28:54.4491560Z Deployments: write +2025-07-23T19:28:54.4492439Z Discussions: write +2025-07-23T19:28:54.4493224Z Issues: write +2025-07-23T19:28:54.4494316Z Metadata: read +2025-07-23T19:28:54.4495146Z Models: read +2025-07-23T19:28:54.4496000Z Packages: write +2025-07-23T19:28:54.4496843Z Pages: write +2025-07-23T19:28:54.4497638Z PullRequests: write +2025-07-23T19:28:54.4498436Z RepositoryProjects: write +2025-07-23T19:28:54.4499453Z SecurityEvents: write +2025-07-23T19:28:54.4500509Z Statuses: write +2025-07-23T19:28:54.4501247Z ##[endgroup] +2025-07-23T19:28:54.4504769Z Secret source: Actions +2025-07-23T19:28:54.4505836Z Prepare workflow directory +2025-07-23T19:28:54.4966786Z Prepare all required actions +2025-07-23T19:28:54.5021008Z Getting action download info +2025-07-23T19:28:54.8461134Z ##[group]Download immutable action package 'actions/checkout@v4' +2025-07-23T19:28:54.8462330Z Version: 4.2.2 +2025-07-23T19:28:54.8463424Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 +2025-07-23T19:28:54.8464902Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 +2025-07-23T19:28:54.8465670Z ##[endgroup] +2025-07-23T19:28:54.9311898Z ##[group]Download immutable action package 'actions/setup-go@v5' +2025-07-23T19:28:54.9312821Z Version: 5.5.0 +2025-07-23T19:28:54.9313661Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb +2025-07-23T19:28:54.9314926Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 +2025-07-23T19:28:54.9315686Z ##[endgroup] +2025-07-23T19:28:55.2881084Z Download action repository 'ava-labs/avalanchego@66ce7a7701db0c4b370f97b339478d5b5ebe919a' (SHA:66ce7a7701db0c4b370f97b339478d5b5ebe919a) +2025-07-23T19:28:56.0641017Z Getting action download info +2025-07-23T19:28:56.2208611Z Download action repository 'cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f' (SHA:02a151ada4993995686f9ed4f1be7cfbb229e56f) +2025-07-23T19:28:56.4585993Z ##[group]Download immutable action package 'actions/upload-artifact@v4' +2025-07-23T19:28:56.4587588Z Version: 4.6.2 +2025-07-23T19:28:56.4588969Z Digest: sha256:290722aa3281d5caf23d0acdc3dbeb3424786a1a01a9cc97e72f147225e37c38 +2025-07-23T19:28:56.4590832Z Source commit SHA: ea165f8d65b6e75b540449e92b4886f43607fa02 +2025-07-23T19:28:56.4592111Z ##[endgroup] +2025-07-23T19:28:56.6324539Z Complete job name: AvalancheGo E2E Tests diff --git a/logs_42241282643/AvalancheGo E2E Tests/2_Run actions_checkout@v4.txt b/logs_42241282643/AvalancheGo E2E Tests/2_Run actions_checkout@v4.txt new file mode 100644 index 0000000000..247916c76b --- /dev/null +++ b/logs_42241282643/AvalancheGo E2E Tests/2_Run actions_checkout@v4.txt @@ -0,0 +1,85 @@ +2025-07-23T19:28:56.7103785Z ##[group]Run actions/checkout@v4 +2025-07-23T19:28:56.7105254Z with: +2025-07-23T19:28:56.7106004Z repository: ava-labs/coreth +2025-07-23T19:28:56.7107138Z token: *** +2025-07-23T19:28:56.7107858Z ssh-strict: true +2025-07-23T19:28:56.7108586Z ssh-user: git +2025-07-23T19:28:56.7109348Z persist-credentials: true +2025-07-23T19:28:56.7110192Z clean: true +2025-07-23T19:28:56.7110959Z sparse-checkout-cone-mode: true +2025-07-23T19:28:56.7112129Z fetch-depth: 1 +2025-07-23T19:28:56.7112880Z fetch-tags: false +2025-07-23T19:28:56.7113674Z show-progress: true +2025-07-23T19:28:56.7114592Z lfs: false +2025-07-23T19:28:56.7115305Z submodules: false +2025-07-23T19:28:56.7116076Z set-safe-directory: true +2025-07-23T19:28:56.7117183Z ##[endgroup] +2025-07-23T19:28:56.8200486Z Syncing repository: ava-labs/coreth +2025-07-23T19:28:56.8204318Z ##[group]Getting Git version info +2025-07-23T19:28:56.8206027Z Working directory is '/home/runner/work/coreth/coreth' +2025-07-23T19:28:56.8207794Z [command]/usr/bin/git version +2025-07-23T19:28:56.8228715Z git version 2.50.1 +2025-07-23T19:28:56.8255210Z ##[endgroup] +2025-07-23T19:28:56.8270082Z Temporarily overriding HOME='/home/runner/work/_temp/e6e1d5ba-725b-4693-bf98-a6df7228bb99' before making global git config changes +2025-07-23T19:28:56.8272690Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:28:56.8276005Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:28:56.8311951Z Deleting the contents of '/home/runner/work/coreth/coreth' +2025-07-23T19:28:56.8315831Z ##[group]Initializing the repository +2025-07-23T19:28:56.8320640Z [command]/usr/bin/git init /home/runner/work/coreth/coreth +2025-07-23T19:28:56.8379491Z hint: Using 'master' as the name for the initial branch. This default branch name +2025-07-23T19:28:56.8382122Z hint: is subject to change. To configure the initial branch name to use in all +2025-07-23T19:28:56.8384448Z hint: of your new repositories, which will suppress this warning, call: +2025-07-23T19:28:56.8386057Z hint: +2025-07-23T19:28:56.8387243Z hint: git config --global init.defaultBranch +2025-07-23T19:28:56.8388615Z hint: +2025-07-23T19:28:56.8389862Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2025-07-23T19:28:56.8392155Z hint: 'development'. The just-created branch can be renamed via this command: +2025-07-23T19:28:56.8393602Z hint: +2025-07-23T19:28:56.8394597Z hint: git branch -m +2025-07-23T19:28:56.8395446Z hint: +2025-07-23T19:28:56.8396550Z hint: Disable this message with "git config set advice.defaultBranchName false" +2025-07-23T19:28:56.8398334Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ +2025-07-23T19:28:56.8401060Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth +2025-07-23T19:28:56.8426216Z ##[endgroup] +2025-07-23T19:28:56.8427557Z ##[group]Disabling automatic garbage collection +2025-07-23T19:28:56.8429609Z [command]/usr/bin/git config --local gc.auto 0 +2025-07-23T19:28:56.8457931Z ##[endgroup] +2025-07-23T19:28:56.8459191Z ##[group]Setting up auth +2025-07-23T19:28:56.8464304Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:28:56.8493988Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:28:56.8746094Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:28:56.8778579Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:28:56.8995425Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2025-07-23T19:28:56.9030184Z ##[endgroup] +2025-07-23T19:28:56.9031500Z ##[group]Fetching the repository +2025-07-23T19:28:56.9039753Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge +2025-07-23T19:28:57.4567062Z From https://github.com/ava-labs/coreth +2025-07-23T19:28:57.4570747Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge +2025-07-23T19:28:57.4597173Z ##[endgroup] +2025-07-23T19:28:57.4599308Z ##[group]Determining the checkout info +2025-07-23T19:28:57.4601655Z ##[endgroup] +2025-07-23T19:28:57.4603103Z [command]/usr/bin/git sparse-checkout disable +2025-07-23T19:28:57.4641079Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig +2025-07-23T19:28:57.4670644Z ##[group]Checking out the ref +2025-07-23T19:28:57.4673115Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge +2025-07-23T19:28:57.5786182Z Note: switching to 'refs/remotes/pull/1065/merge'. +2025-07-23T19:28:57.5787932Z +2025-07-23T19:28:57.5789029Z You are in 'detached HEAD' state. You can look around, make experimental +2025-07-23T19:28:57.5791542Z changes and commit them, and you can discard any commits you make in this +2025-07-23T19:28:57.5795011Z state without impacting any branches by switching back to a branch. +2025-07-23T19:28:57.5796366Z +2025-07-23T19:28:57.5797262Z If you want to create a new branch to retain commits you create, you may +2025-07-23T19:28:57.5799827Z do so (now or later) by using -c with the switch command. Example: +2025-07-23T19:28:57.5801113Z +2025-07-23T19:28:57.5801703Z git switch -c +2025-07-23T19:28:57.5802685Z +2025-07-23T19:28:57.5803373Z Or undo this operation with: +2025-07-23T19:28:57.5804499Z +2025-07-23T19:28:57.5805059Z git switch - +2025-07-23T19:28:57.5805730Z +2025-07-23T19:28:57.5806715Z Turn off this advice by setting config variable advice.detachedHead to false +2025-07-23T19:28:57.5808144Z +2025-07-23T19:28:57.5809687Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 +2025-07-23T19:28:57.5813332Z ##[endgroup] +2025-07-23T19:28:57.5838894Z [command]/usr/bin/git log -1 --format=%H +2025-07-23T19:28:57.5860754Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 diff --git a/logs_42241282643/AvalancheGo E2E Tests/4_Run actions_setup-go@v5.txt b/logs_42241282643/AvalancheGo E2E Tests/4_Run actions_setup-go@v5.txt new file mode 100644 index 0000000000..07d7881b00 --- /dev/null +++ b/logs_42241282643/AvalancheGo E2E Tests/4_Run actions_setup-go@v5.txt @@ -0,0 +1,79 @@ +2025-07-23T19:28:57.6130274Z ##[group]Run actions/setup-go@v5 +2025-07-23T19:28:57.6131145Z with: +2025-07-23T19:28:57.6131826Z go-version-file: go.mod +2025-07-23T19:28:57.6132623Z check-latest: false +2025-07-23T19:28:57.6133582Z token: *** +2025-07-23T19:28:57.6134588Z cache: true +2025-07-23T19:28:57.6135295Z ##[endgroup] +2025-07-23T19:28:57.7711690Z Setup go version spec 1.23.9 +2025-07-23T19:28:57.7723778Z Attempting to download 1.23.9... +2025-07-23T19:28:58.0689910Z matching 1.23.9... +2025-07-23T19:28:58.0730148Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz +2025-07-23T19:28:58.6556491Z Extracting Go... +2025-07-23T19:28:58.6663452Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/e1b386e0-cf78-4423-a894-16dd3b169dd8 -f /home/runner/work/_temp/e9bce400-3df8-4e37-853e-84874916e6d1 +2025-07-23T19:29:00.3591411Z Successfully extracted go to /home/runner/work/_temp/e1b386e0-cf78-4423-a894-16dd3b169dd8 +2025-07-23T19:29:00.3592287Z Adding to the cache ... +2025-07-23T19:29:04.5969324Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 +2025-07-23T19:29:04.5970252Z Added go to the path +2025-07-23T19:29:04.5971368Z Successfully set up Go version 1.23.9 +2025-07-23T19:29:04.6158248Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:29:04.6188074Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:29:04.6219814Z /home/runner/go/pkg/mod +2025-07-23T19:29:04.6235360Z /home/runner/.cache/go-build +2025-07-23T19:29:04.6856353Z Cache hit for: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:05.7180210Z Received 209715200 of 743127682 (28.2%), 199.8 MBs/sec +2025-07-23T19:29:06.7285547Z Received 415236096 of 743127682 (55.9%), 197.0 MBs/sec +2025-07-23T19:29:07.7904404Z Received 671088640 of 743127682 (90.3%), 208.2 MBs/sec +2025-07-23T19:29:08.1520049Z Received 743127682 of 743127682 (100.0%), 206.3 MBs/sec +2025-07-23T19:29:08.1521194Z Cache Size: ~709 MB (743127682 B) +2025-07-23T19:29:08.1557819Z [command]/usr/bin/tar -xf /home/runner/work/_temp/33e68bb1-dff2-424c-a5b6-4cbc0ab6eb76/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd +2025-07-23T19:29:16.0199200Z Cache restored successfully +2025-07-23T19:29:16.1618752Z Cache restored from key: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:16.1642136Z go version go1.23.9 linux/amd64 +2025-07-23T19:29:16.1642389Z +2025-07-23T19:29:16.1642725Z ##[group]go env +2025-07-23T19:29:16.3334675Z GO111MODULE='' +2025-07-23T19:29:16.3335258Z GOARCH='amd64' +2025-07-23T19:29:16.3335691Z GOBIN='' +2025-07-23T19:29:16.3336127Z GOCACHE='/home/runner/.cache/go-build' +2025-07-23T19:29:16.3336610Z GOENV='/home/runner/.config/go/env' +2025-07-23T19:29:16.3336985Z GOEXE='' +2025-07-23T19:29:16.3337284Z GOEXPERIMENT='' +2025-07-23T19:29:16.3337584Z GOFLAGS='' +2025-07-23T19:29:16.3337993Z GOHOSTARCH='amd64' +2025-07-23T19:29:16.3338475Z GOHOSTOS='linux' +2025-07-23T19:29:16.3338857Z GOINSECURE='' +2025-07-23T19:29:16.3339273Z GOMODCACHE='/home/runner/go/pkg/mod' +2025-07-23T19:29:16.3339963Z GONOPROXY='' +2025-07-23T19:29:16.3340302Z GONOSUMDB='' +2025-07-23T19:29:16.3340575Z GOOS='linux' +2025-07-23T19:29:16.3340865Z GOPATH='/home/runner/go' +2025-07-23T19:29:16.3341191Z GOPRIVATE='' +2025-07-23T19:29:16.3341586Z GOPROXY='https://proxy.golang.org,direct' +2025-07-23T19:29:16.3342122Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' +2025-07-23T19:29:16.3342557Z GOSUMDB='sum.golang.org' +2025-07-23T19:29:16.3342889Z GOTMPDIR='' +2025-07-23T19:29:16.3343177Z GOTOOLCHAIN='auto' +2025-07-23T19:29:16.3343657Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' +2025-07-23T19:29:16.3344392Z GOVCS='' +2025-07-23T19:29:16.3344675Z GOVERSION='go1.23.9' +2025-07-23T19:29:16.3344977Z GODEBUG='' +2025-07-23T19:29:16.3345247Z GOTELEMETRY='local' +2025-07-23T19:29:16.3345650Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' +2025-07-23T19:29:16.3346398Z GCCGO='gccgo' +2025-07-23T19:29:16.3346670Z GOAMD64='v1' +2025-07-23T19:29:16.3346943Z AR='ar' +2025-07-23T19:29:16.3347193Z CC='gcc' +2025-07-23T19:29:16.3347452Z CXX='g++' +2025-07-23T19:29:16.3347716Z CGO_ENABLED='1' +2025-07-23T19:29:16.3348072Z GOMOD='/home/runner/work/coreth/coreth/go.mod' +2025-07-23T19:29:16.3348477Z GOWORK='' +2025-07-23T19:29:16.3348754Z CGO_CFLAGS='-O2 -g' +2025-07-23T19:29:16.3349057Z CGO_CPPFLAGS='' +2025-07-23T19:29:16.3349348Z CGO_CXXFLAGS='-O2 -g' +2025-07-23T19:29:16.3349669Z CGO_FFLAGS='-O2 -g' +2025-07-23T19:29:16.3349987Z CGO_LDFLAGS='-O2 -g' +2025-07-23T19:29:16.3350320Z PKG_CONFIG='pkg-config' +2025-07-23T19:29:16.3351249Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build3893342323=/tmp/go-build -gno-record-gcc-switches' +2025-07-23T19:29:16.3351906Z +2025-07-23T19:29:16.3352271Z ##[endgroup] diff --git a/logs_42241282643/AvalancheGo E2E Tests/5_Build AvalancheGo and update Coreth dependency.txt b/logs_42241282643/AvalancheGo E2E Tests/5_Build AvalancheGo and update Coreth dependency.txt new file mode 100644 index 0000000000..2a5b18b503 --- /dev/null +++ b/logs_42241282643/AvalancheGo E2E Tests/5_Build AvalancheGo and update Coreth dependency.txt @@ -0,0 +1,46 @@ +2025-07-23T19:29:16.3514509Z ##[group]Run ./scripts/run_task.sh build-avalanchego-with-coreth +2025-07-23T19:29:16.3515065Z ./scripts/run_task.sh build-avalanchego-with-coreth +2025-07-23T19:29:16.3548456Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:16.3548758Z ##[endgroup] +2025-07-23T19:29:17.2237048Z task: [build-avalanchego-with-coreth] ./scripts/build_avalanchego_with_coreth.sh +2025-07-23T19:29:17.2365734Z checking out target AvalancheGo version v1.13.3-rc.1 +2025-07-23T19:29:17.2366347Z creating new clone +2025-07-23T19:29:17.2378420Z Cloning into 'avalanchego'... +2025-07-23T19:29:24.4778701Z Switched to a new branch 'test-v1.13.3-rc.1' +2025-07-23T19:29:24.4793304Z updating coreth dependency to point to /home/runner/work/coreth/coreth +2025-07-23T19:29:24.5306661Z go: downloading connectrpc.com/connect v1.18.1 +2025-07-23T19:29:24.5409403Z go: downloading github.com/prometheus/client_golang v1.16.0 +2025-07-23T19:29:24.5414562Z go: downloading github.com/prometheus/client_model v0.3.0 +2025-07-23T19:29:24.5415554Z go: downloading github.com/prometheus/common v0.42.0 +2025-07-23T19:29:24.6036650Z go: downloading google.golang.org/protobuf v1.35.2 +2025-07-23T19:29:24.7943087Z go: downloading github.com/jackpal/gateway v1.0.6 +2025-07-23T19:29:24.7989040Z go: downloading github.com/ava-labs/simplex v0.0.0-20250626192006-220e6aeacdc1 +2025-07-23T19:29:24.8131426Z go: downloading github.com/antithesishq/antithesis-sdk-go v0.3.8 +2025-07-23T19:29:24.8247858Z go: downloading github.com/compose-spec/compose-go v1.20.2 +2025-07-23T19:29:24.8338441Z go: downloading github.com/ava-labs/ledger-avalanche/go v0.0.0-20241009183145-e6f90a8a1a60 +2025-07-23T19:29:24.8349461Z go: downloading github.com/tyler-smith/go-bip32 v1.0.0 +2025-07-23T19:29:24.8491121Z go: downloading github.com/nbutton23/zxcvbn-go v0.0.0-20180912185939-ae427f1e4c1d +2025-07-23T19:29:24.8588174Z go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.4 +2025-07-23T19:29:24.8670647Z go: downloading connectrpc.com/grpcreflect v1.3.0 +2025-07-23T19:29:24.8758103Z go: downloading github.com/prometheus/procfs v0.10.1 +2025-07-23T19:29:24.9214098Z go: downloading github.com/inconshreveable/mousetrap v1.1.0 +2025-07-23T19:29:24.9311038Z go: downloading github.com/zondax/ledger-go v1.0.0 +2025-07-23T19:29:24.9321236Z go: downloading github.com/FactomProject/basen v0.0.0-20150613233007-fe3947df716e +2025-07-23T19:29:24.9359211Z go: downloading github.com/FactomProject/btcutilecc v0.0.0-20130527213604-d3a63a5752ec +2025-07-23T19:29:24.9439240Z go: downloading github.com/distribution/reference v0.5.0 +2025-07-23T19:29:24.9442925Z go: downloading github.com/docker/go-connections v0.4.0 +2025-07-23T19:29:24.9462404Z go: downloading github.com/docker/go-units v0.5.0 +2025-07-23T19:29:24.9469897Z go: downloading github.com/mattn/go-shellwords v1.0.12 +2025-07-23T19:29:24.9653275Z go: downloading github.com/opencontainers/go-digest v1.0.0 +2025-07-23T19:29:24.9663137Z go: downloading gotest.tools/v3 v3.4.0 +2025-07-23T19:29:24.9753294Z go: downloading github.com/klauspost/compress v1.15.15 +2025-07-23T19:29:25.0043269Z go: downloading github.com/ava-labs/firewood-go-ethhash/ffi v0.0.8 +2025-07-23T19:29:25.0078262Z go: downloading golang.org/x/oauth2 v0.21.0 +2025-07-23T19:29:25.0106249Z go: downloading github.com/golang-jwt/jwt/v4 v4.5.0 +2025-07-23T19:29:25.0297335Z go: downloading github.com/golang-jwt/jwt v3.2.2+incompatible +2025-07-23T19:29:25.0444200Z go: downloading github.com/cmars/basen v0.0.0-20150613233007-fe3947df716e +2025-07-23T19:29:25.0530049Z go: downloading launchpad.net/gocheck v0.0.0-20140225173054-000000000087 +2025-07-23T19:29:25.0538623Z go: downloading github.com/zondax/hid v0.9.2 +2025-07-23T19:29:25.0886213Z go: downloading github.com/sirupsen/logrus v1.9.0 +2025-07-23T19:29:27.1622813Z building avalanchego +2025-07-23T19:29:27.1741516Z Building AvalancheGo with [go version go1.23.9 linux/amd64]... diff --git a/logs_42241282643/AvalancheGo E2E Tests/6_Run e2e tests.txt b/logs_42241282643/AvalancheGo E2E Tests/6_Run e2e tests.txt new file mode 100644 index 0000000000..6b063455be --- /dev/null +++ b/logs_42241282643/AvalancheGo E2E Tests/6_Run e2e tests.txt @@ -0,0 +1,963 @@ +2025-07-23T19:30:43.7222424Z ##[group]Run ava-labs/avalanchego/.github/actions/run-monitored-tmpnet-cmd@66ce7a7701db0c4b370f97b339478d5b5ebe919a +2025-07-23T19:30:43.7222947Z with: +2025-07-23T19:30:43.7223134Z run: ./scripts/run_task.sh test-e2e +2025-07-23T19:30:43.7223394Z run_env: AVALANCHEGO_CLONE_PATH=avalanchego +2025-07-23T19:30:43.7223636Z runtime: process +2025-07-23T19:30:43.7223848Z repository_owner: ava-labs +2025-07-23T19:30:43.7224307Z repository_name: coreth +2025-07-23T19:30:43.7224499Z workflow: CI +2025-07-23T19:30:43.7224674Z run_id: 16480013789 +2025-07-23T19:30:43.7224852Z run_number: 5026 +2025-07-23T19:30:43.7225017Z run_attempt: 1 +2025-07-23T19:30:43.7225188Z job: avalanchego_e2e +2025-07-23T19:30:43.7225384Z ##[endgroup] +2025-07-23T19:30:43.7329515Z ##[group]Run cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f +2025-07-23T19:30:43.7329899Z with: +2025-07-23T19:30:43.7330068Z enable_kvm: true +2025-07-23T19:30:43.7330251Z ##[endgroup] +2025-07-23T19:30:43.7351860Z ##[group]Run ${GITHUB_ACTION_PATH}/install-nix.sh +2025-07-23T19:30:43.7352247Z ${GITHUB_ACTION_PATH}/install-nix.sh +2025-07-23T19:30:43.7381163Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-07-23T19:30:43.7381476Z env: +2025-07-23T19:30:43.7381659Z INPUT_EXTRA_NIX_CONFIG: +2025-07-23T19:30:43.7381876Z INPUT_GITHUB_ACCESS_TOKEN: +2025-07-23T19:30:43.7382278Z INPUT_INSTALL_OPTIONS: +2025-07-23T19:30:43.7382484Z INPUT_INSTALL_URL: +2025-07-23T19:30:43.7382670Z INPUT_NIX_PATH: +2025-07-23T19:30:43.7382854Z INPUT_ENABLE_KVM: true +2025-07-23T19:30:43.7383446Z GITHUB_TOKEN: *** +2025-07-23T19:30:43.7383642Z ##[endgroup] +2025-07-23T19:30:43.7459293Z ##[group]Enabling KVM support +2025-07-23T19:30:43.7528601Z KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm" +2025-07-23T19:30:43.7825708Z Enabled KVM +2025-07-23T19:30:43.7826302Z ##[endgroup] +2025-07-23T19:30:43.7828400Z ##[group]Installing Nix +2025-07-23T19:30:43.8115711Z installer options: --no-channel-add --darwin-use-unencrypted-nix-store-volume --nix-extra-conf-file /tmp/tmp.ms8QZXhwC8/nix.conf --daemon --daemon-user-count 8 +2025-07-23T19:30:44.0860299Z * Host releases.nixos.org:443 was resolved. +2025-07-23T19:30:44.0860958Z * IPv6: 2a04:4e42:77::729 +2025-07-23T19:30:44.0861363Z * IPv4: 146.75.30.217 +2025-07-23T19:30:44.0861741Z * Trying 146.75.30.217:443... +2025-07-23T19:30:44.0911792Z * Connected to releases.nixos.org (146.75.30.217) port 443 +2025-07-23T19:30:44.0930230Z * ALPN: curl offers h2,http/1.1 +2025-07-23T19:30:44.0932424Z } [5 bytes data] +2025-07-23T19:30:44.0932902Z * TLSv1.3 (OUT), TLS handshake, Client hello (1): +2025-07-23T19:30:44.0933424Z } [512 bytes data] +2025-07-23T19:30:44.1142928Z * CAfile: /etc/ssl/certs/ca-certificates.crt +2025-07-23T19:30:44.1143496Z * CApath: /etc/ssl/certs +2025-07-23T19:30:44.1144204Z { [5 bytes data] +2025-07-23T19:30:44.1144669Z * TLSv1.3 (IN), TLS handshake, Server hello (2): +2025-07-23T19:30:44.1145193Z { [104 bytes data] +2025-07-23T19:30:44.1145619Z * TLSv1.2 (IN), TLS handshake, Certificate (11): +2025-07-23T19:30:44.1146148Z { [2827 bytes data] +2025-07-23T19:30:44.1150438Z * TLSv1.2 (IN), TLS handshake, Server key exchange (12): +2025-07-23T19:30:44.1151010Z { [300 bytes data] +2025-07-23T19:30:44.1154414Z * TLSv1.2 (IN), TLS handshake, Server finished (14): +2025-07-23T19:30:44.1154968Z { [4 bytes data] +2025-07-23T19:30:44.1155428Z * TLSv1.2 (OUT), TLS handshake, Client key exchange (16): +2025-07-23T19:30:44.1155983Z } [37 bytes data] +2025-07-23T19:30:44.1156450Z * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1): +2025-07-23T19:30:44.1157035Z } [1 bytes data] +2025-07-23T19:30:44.1157457Z * TLSv1.2 (OUT), TLS handshake, Finished (20): +2025-07-23T19:30:44.1157940Z } [16 bytes data] +2025-07-23T19:30:44.1205620Z * TLSv1.2 (IN), TLS handshake, Finished (20): +2025-07-23T19:30:44.1206114Z { [16 bytes data] +2025-07-23T19:30:44.1206732Z * SSL connection using TLSv1.2 / ECDHE-RSA-CHACHA20-POLY1305 / X25519 / RSASSA-PSS +2025-07-23T19:30:44.1207403Z * ALPN: server accepted h2 +2025-07-23T19:30:44.1208663Z * Server certificate: +2025-07-23T19:30:44.1209092Z * subject: CN=releases.nixos.org +2025-07-23T19:30:44.1209523Z * start date: Oct 11 20:56:16 2024 GMT +2025-07-23T19:30:44.1209950Z * expire date: Nov 12 20:56:15 2025 GMT +2025-07-23T19:30:44.1210634Z * subjectAltName: host "releases.nixos.org" matched cert's "releases.nixos.org" +2025-07-23T19:30:44.1211554Z * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2024 Q4 +2025-07-23T19:30:44.1212179Z * SSL certificate verify ok. +2025-07-23T19:30:44.1212922Z * Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption +2025-07-23T19:30:44.1214203Z * Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption +2025-07-23T19:30:44.1214852Z * Certificate level 2: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption +2025-07-23T19:30:44.1215292Z } [5 bytes data] +2025-07-23T19:30:44.1215475Z * using HTTP/2 +2025-07-23T19:30:44.1215811Z * [HTTP/2] [1] OPENED stream for https://releases.nixos.org/nix/nix-2.26.3/install +2025-07-23T19:30:44.1216181Z * [HTTP/2] [1] [:method: GET] +2025-07-23T19:30:44.1216407Z * [HTTP/2] [1] [:scheme: https] +2025-07-23T19:30:44.1216677Z * [HTTP/2] [1] [:authority: releases.nixos.org] +2025-07-23T19:30:44.1216973Z * [HTTP/2] [1] [:path: /nix/nix-2.26.3/install] +2025-07-23T19:30:44.1217460Z * [HTTP/2] [1] [user-agent: curl/8.5.0] +2025-07-23T19:30:44.1217712Z * [HTTP/2] [1] [accept: */*] +2025-07-23T19:30:44.1217925Z } [5 bytes data] +2025-07-23T19:30:44.1218127Z > GET /nix/nix-2.26.3/install HTTP/2 +2025-07-23T19:30:44.1218375Z > Host: releases.nixos.org +2025-07-23T19:30:44.1218596Z > User-Agent: curl/8.5.0 +2025-07-23T19:30:44.1218799Z > Accept: */* +2025-07-23T19:30:44.1218965Z > +2025-07-23T19:30:44.1255787Z { [5 bytes data] +2025-07-23T19:30:44.1273021Z < HTTP/2 200 +2025-07-23T19:30:44.1273487Z < last-modified: Wed, 05 Mar 2025 18:21:15 GMT +2025-07-23T19:30:44.1274211Z < etag: "c6753896884bce9b95ec3ca7be157ef6" +2025-07-23T19:30:44.1274712Z < x-amz-server-side-encryption: AES256 +2025-07-23T19:30:44.1275155Z < content-type: text/plain +2025-07-23T19:30:44.1275425Z < server: AmazonS3 +2025-07-23T19:30:44.1275640Z < via: 1.1 varnish, 1.1 varnish +2025-07-23T19:30:44.1275893Z < access-control-allow-origin: * +2025-07-23T19:30:44.1276141Z < accept-ranges: bytes +2025-07-23T19:30:44.1276360Z < date: Wed, 23 Jul 2025 19:30:44 GMT +2025-07-23T19:30:44.1276589Z < age: 9620 +2025-07-23T19:30:44.1276846Z < x-served-by: cache-dub4357-DUB, cache-iad-kiad7000128-IAD +2025-07-23T19:30:44.1277150Z < x-cache: HIT, HIT +2025-07-23T19:30:44.1277341Z < x-cache-hits: 3, 1 +2025-07-23T19:30:44.1277540Z < content-length: 4267 +2025-07-23T19:30:44.1277722Z < +2025-07-23T19:30:44.1277879Z { [4267 bytes data] +2025-07-23T19:30:44.1278125Z * Connection #0 to host releases.nixos.org left intact +2025-07-23T19:30:44.1353038Z downloading Nix 2.26.3 binary tarball for x86_64-linux from 'https://releases.nixos.org/nix/nix-2.26.3/nix-2.26.3-x86_64-linux.tar.xz' to '/tmp/nix-binary-tarball-unpack.APbj8s7Zdj'... +2025-07-23T19:30:44.1402868Z % Total % Received % Xferd Average Speed Time Time Time Current +2025-07-23T19:30:44.1404401Z Dload Upload Total Spent Left Speed +2025-07-23T19:30:44.1404781Z +2025-07-23T19:30:44.3121369Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 +2025-07-23T19:30:44.3122095Z 100 22.6M 100 22.6M 0 0 131M 0 --:--:-- --:--:-- --:--:-- 132M +2025-07-23T19:30:45.8649060Z Note: a multi-user installation is possible. See https://nixos.org/manual/nix/stable/installation/installing-binary.html#multi-user-installation +2025-07-23T19:30:45.8658608Z Warning: the flag --darwin-use-unencrypted-nix-store-volume +2025-07-23T19:30:45.8659509Z is no longer needed and will be removed in the future. +2025-07-23T19:30:45.8659789Z +2025-07-23T19:30:45.8669592Z Switching to the Multi-user Installer +2025-07-23T19:30:45.8770176Z Welcome to the Multi-User Nix Installation +2025-07-23T19:30:45.8780326Z  +2025-07-23T19:30:45.8780945Z This installation tool will set up your computer with the Nix package +2025-07-23T19:30:45.8781544Z manager. This will happen in a few stages: +2025-07-23T19:30:45.8781800Z +2025-07-23T19:30:45.8782026Z 1. Make sure your computer doesn't already have Nix. If it does, I +2025-07-23T19:30:45.8782787Z will show you instructions on how to clean up your old install. +2025-07-23T19:30:45.8783284Z +2025-07-23T19:30:45.8783614Z 2. Show you what I am going to install and where. Then I will ask +2025-07-23T19:30:45.8784293Z if you are ready to continue. +2025-07-23T19:30:45.8784501Z +2025-07-23T19:30:45.8784894Z 3. Create the system users (uids [30001..30008]) and groups (gid 30000) +2025-07-23T19:30:45.8785538Z that the Nix daemon uses to run builds. To create system users +2025-07-23T19:30:45.8786066Z in a different range, exit and run this tool again with +2025-07-23T19:30:45.8786467Z NIX_FIRST_BUILD_UID set. +2025-07-23T19:30:45.8786660Z +2025-07-23T19:30:45.8786852Z 4. Perform the basic installation of the Nix files daemon. +2025-07-23T19:30:45.8787145Z +2025-07-23T19:30:45.8787384Z 5. Configure your shell to import special Nix Profile files, so you +2025-07-23T19:30:45.8787813Z can use Nix. +2025-07-23T19:30:45.8787956Z +2025-07-23T19:30:45.8788264Z 6. Start the Nix daemon. +2025-07-23T19:30:45.8788440Z +2025-07-23T19:30:45.8788758Z Would you like to see a more detailed list of what I will do? +2025-07-23T19:30:45.8789274Z No TTY, assuming you would say yes :) +2025-07-23T19:30:45.8792593Z +2025-07-23T19:30:45.8792751Z I will: +2025-07-23T19:30:45.8792945Z +2025-07-23T19:30:45.8793269Z - make sure your computer doesn't already have Nix files +2025-07-23T19:30:45.8794067Z (if it does, I will tell you how to clean them up.) +2025-07-23T19:30:45.8794608Z - create local users (see the list above for the users I'll make) +2025-07-23T19:30:45.8795052Z - create a local group (nixbld) +2025-07-23T19:30:45.8795373Z - install Nix in /nix +2025-07-23T19:30:45.8795677Z - create a configuration file in /etc/nix +2025-07-23T19:30:45.8796082Z - set up the "default profile" by creating some Nix-related files in +2025-07-23T19:30:45.8796444Z /root +2025-07-23T19:30:45.8807872Z - back up /etc/bash.bashrc to /etc/bash.bashrc.backup-before-nix +2025-07-23T19:30:45.8808732Z - update /etc/bash.bashrc to include some Nix configuration +2025-07-23T19:30:45.8819543Z - load and start a service (at /etc/systemd/system/nix-daemon.service +2025-07-23T19:30:45.8820424Z and /etc/systemd/system/nix-daemon.socket) for nix-daemon +2025-07-23T19:30:45.8820706Z +2025-07-23T19:30:45.8821567Z Ready to continue? +2025-07-23T19:30:45.8822094Z No TTY, assuming you would say yes :) +2025-07-23T19:30:45.8844843Z +2025-07-23T19:30:45.8845464Z ---- let's talk about sudo ----------------------------------------------------- +2025-07-23T19:30:45.8855841Z This script is going to call sudo a lot. Normally, it would show you +2025-07-23T19:30:45.8856629Z exactly what commands it is running and why. However, the script is +2025-07-23T19:30:45.8857096Z run in a headless fashion, like this: +2025-07-23T19:30:45.8857313Z +2025-07-23T19:30:45.8857532Z $ curl -L https://nixos.org/nix/install | sh +2025-07-23T19:30:45.8857934Z +2025-07-23T19:30:45.8858272Z or maybe in a CI pipeline. Because of that, I'm going to skip the +2025-07-23T19:30:45.8858942Z verbose output in the interest of brevity. +2025-07-23T19:30:45.8859175Z +2025-07-23T19:30:45.8859282Z If you would like to +2025-07-23T19:30:45.8859552Z see the output, try like this: +2025-07-23T19:30:45.8859744Z +2025-07-23T19:30:45.8859970Z $ curl -L -o install-nix https://nixos.org/nix/install +2025-07-23T19:30:45.8860379Z $ sh ./install-nix +2025-07-23T19:30:45.8860530Z +2025-07-23T19:30:45.8860535Z +2025-07-23T19:30:45.8860757Z ~~> Checking for artifacts of previous installs +2025-07-23T19:30:45.8868005Z Before I try to install, I'll check for signs Nix already is or has +2025-07-23T19:30:45.8868842Z been installed on this system. +2025-07-23T19:30:45.8900869Z +2025-07-23T19:30:45.8901983Z ---- Nix config report --------------------------------------------------------- +2025-07-23T19:30:45.8902860Z  Temp Dir: /tmp/tmp.CUrud6LmxM +2025-07-23T19:30:45.8903474Z  Nix Root: /nix +2025-07-23T19:30:45.8904158Z  Build Users: 8 +2025-07-23T19:30:45.8904635Z  Build Group ID: 30000 +2025-07-23T19:30:45.8904977Z Build Group Name: nixbld +2025-07-23T19:30:45.8905178Z +2025-07-23T19:30:45.8905303Z build users: +2025-07-23T19:30:45.8905589Z  Username: UID +2025-07-23T19:30:45.8931932Z  nixbld1: 30001 +2025-07-23T19:30:45.8942324Z  nixbld2: 30002 +2025-07-23T19:30:45.8952646Z  nixbld3: 30003 +2025-07-23T19:30:45.8963225Z  nixbld4: 30004 +2025-07-23T19:30:45.8973705Z  nixbld5: 30005 +2025-07-23T19:30:45.8984418Z  nixbld6: 30006 +2025-07-23T19:30:45.8994842Z  nixbld7: 30007 +2025-07-23T19:30:45.9005443Z  nixbld8: 30008 +2025-07-23T19:30:45.9005817Z +2025-07-23T19:30:45.9006128Z Ready to continue? +2025-07-23T19:30:45.9006868Z No TTY, assuming you would say yes :) +2025-07-23T19:30:45.9007332Z +2025-07-23T19:30:45.9007707Z ~~> Setting up the build group nixbld +2025-07-23T19:30:45.9627443Z  Created: Yes +2025-07-23T19:30:45.9661211Z +2025-07-23T19:30:45.9661874Z ~~> Setting up the build user nixbld1 +2025-07-23T19:30:45.9839479Z useradd warning: nixbld1's uid 30001 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:45.9937924Z  Created: Yes +2025-07-23T19:30:45.9945807Z  Hidden: Yes +2025-07-23T19:30:45.9967815Z  Home Directory: /var/empty +2025-07-23T19:30:45.9990193Z  Note: Nix build user 1 +2025-07-23T19:30:46.0010618Z  Logins Disabled: Yes +2025-07-23T19:30:46.0038258Z  Member of nixbld: Yes +2025-07-23T19:30:46.0063120Z  PrimaryGroupID: 30000 +2025-07-23T19:30:46.0076015Z +2025-07-23T19:30:46.0077412Z ~~> Setting up the build user nixbld2 +2025-07-23T19:30:46.0214593Z useradd warning: nixbld2's uid 30002 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:46.0312858Z  Created: Yes +2025-07-23T19:30:46.0320419Z  Hidden: Yes +2025-07-23T19:30:46.0347772Z  Home Directory: /var/empty +2025-07-23T19:30:46.0373219Z  Note: Nix build user 2 +2025-07-23T19:30:46.0394651Z  Logins Disabled: Yes +2025-07-23T19:30:46.0417364Z  Member of nixbld: Yes +2025-07-23T19:30:46.0435715Z  PrimaryGroupID: 30000 +2025-07-23T19:30:46.0446922Z +2025-07-23T19:30:46.0447281Z ~~> Setting up the build user nixbld3 +2025-07-23T19:30:46.0580716Z useradd warning: nixbld3's uid 30003 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:46.0679666Z  Created: Yes +2025-07-23T19:30:46.0685474Z  Hidden: Yes +2025-07-23T19:30:46.0703861Z  Home Directory: /var/empty +2025-07-23T19:30:46.0724915Z  Note: Nix build user 3 +2025-07-23T19:30:46.0742805Z  Logins Disabled: Yes +2025-07-23T19:30:46.0761907Z  Member of nixbld: Yes +2025-07-23T19:30:46.0780067Z  PrimaryGroupID: 30000 +2025-07-23T19:30:46.0791232Z +2025-07-23T19:30:46.0791688Z ~~> Setting up the build user nixbld4 +2025-07-23T19:30:46.0924314Z useradd warning: nixbld4's uid 30004 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:46.1013378Z  Created: Yes +2025-07-23T19:30:46.1019257Z  Hidden: Yes +2025-07-23T19:30:46.1037791Z  Home Directory: /var/empty +2025-07-23T19:30:46.1058449Z  Note: Nix build user 4 +2025-07-23T19:30:46.1076799Z  Logins Disabled: Yes +2025-07-23T19:30:46.1095661Z  Member of nixbld: Yes +2025-07-23T19:30:46.1113703Z  PrimaryGroupID: 30000 +2025-07-23T19:30:46.1125610Z +2025-07-23T19:30:46.1126041Z ~~> Setting up the build user nixbld5 +2025-07-23T19:30:46.1259107Z useradd warning: nixbld5's uid 30005 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:46.1351106Z  Created: Yes +2025-07-23T19:30:46.1357180Z  Hidden: Yes +2025-07-23T19:30:46.1377362Z  Home Directory: /var/empty +2025-07-23T19:30:46.1398619Z  Note: Nix build user 5 +2025-07-23T19:30:46.1416567Z  Logins Disabled: Yes +2025-07-23T19:30:46.1435732Z  Member of nixbld: Yes +2025-07-23T19:30:46.1453855Z  PrimaryGroupID: 30000 +2025-07-23T19:30:46.1464980Z +2025-07-23T19:30:46.1465415Z ~~> Setting up the build user nixbld6 +2025-07-23T19:30:46.1597846Z useradd warning: nixbld6's uid 30006 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:46.1681527Z  Created: Yes +2025-07-23T19:30:46.1687416Z  Hidden: Yes +2025-07-23T19:30:46.1705759Z  Home Directory: /var/empty +2025-07-23T19:30:46.1726435Z  Note: Nix build user 6 +2025-07-23T19:30:46.1745306Z  Logins Disabled: Yes +2025-07-23T19:30:46.1763214Z  Member of nixbld: Yes +2025-07-23T19:30:46.1781338Z  PrimaryGroupID: 30000 +2025-07-23T19:30:46.1791880Z +2025-07-23T19:30:46.1792326Z ~~> Setting up the build user nixbld7 +2025-07-23T19:30:46.1923157Z useradd warning: nixbld7's uid 30007 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:46.2013669Z  Created: Yes +2025-07-23T19:30:46.2019914Z  Hidden: Yes +2025-07-23T19:30:46.2038360Z  Home Directory: /var/empty +2025-07-23T19:30:46.2059075Z  Note: Nix build user 7 +2025-07-23T19:30:46.2077037Z  Logins Disabled: Yes +2025-07-23T19:30:46.2095636Z  Member of nixbld: Yes +2025-07-23T19:30:46.2113383Z  PrimaryGroupID: 30000 +2025-07-23T19:30:46.2124173Z +2025-07-23T19:30:46.2124711Z ~~> Setting up the build user nixbld8 +2025-07-23T19:30:46.2258160Z useradd warning: nixbld8's uid 30008 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:46.2347321Z  Created: Yes +2025-07-23T19:30:46.2353450Z  Hidden: Yes +2025-07-23T19:30:46.2374246Z  Home Directory: /var/empty +2025-07-23T19:30:46.2394845Z  Note: Nix build user 8 +2025-07-23T19:30:46.2412446Z  Logins Disabled: Yes +2025-07-23T19:30:46.2431769Z  Member of nixbld: Yes +2025-07-23T19:30:46.2450204Z  PrimaryGroupID: 30000 +2025-07-23T19:30:46.2450578Z +2025-07-23T19:30:46.2451166Z ~~> Setting up the basic directory structure +2025-07-23T19:30:46.2587139Z install: creating directory '/nix' +2025-07-23T19:30:46.2587811Z install: creating directory '/nix/var' +2025-07-23T19:30:46.2588417Z install: creating directory '/nix/var/log' +2025-07-23T19:30:46.2589106Z install: creating directory '/nix/var/log/nix' +2025-07-23T19:30:46.2589828Z install: creating directory '/nix/var/log/nix/drvs' +2025-07-23T19:30:46.2590606Z install: creating directory '/nix/var/nix' +2025-07-23T19:30:46.2591311Z install: creating directory '/nix/var/nix/db' +2025-07-23T19:30:46.2592072Z install: creating directory '/nix/var/nix/gcroots' +2025-07-23T19:30:46.2593000Z install: creating directory '/nix/var/nix/profiles' +2025-07-23T19:30:46.2594087Z install: creating directory '/nix/var/nix/temproots' +2025-07-23T19:30:46.2595111Z install: creating directory '/nix/var/nix/userpool' +2025-07-23T19:30:46.2596172Z install: creating directory '/nix/var/nix/daemon-socket' +2025-07-23T19:30:46.2597317Z install: creating directory '/nix/var/nix/gcroots/per-user' +2025-07-23T19:30:46.2598506Z install: creating directory '/nix/var/nix/profiles/per-user' +2025-07-23T19:30:46.2671530Z install: creating directory '/nix/store' +2025-07-23T19:30:46.2750133Z install: creating directory '/etc/nix' +2025-07-23T19:30:46.2760000Z +2025-07-23T19:30:46.2760313Z ~~> Installing Nix +2025-07-23T19:30:46.4754686Z  Alright! We have our first nix at /nix/store/x3235311q3n51rppm2y2ycwd7nb3mgpn-nix-2.26.3 +2025-07-23T19:30:46.5188989Z Just finished getting the nix database ready. +2025-07-23T19:30:46.5191772Z +2025-07-23T19:30:46.5193001Z ~~> Setting up shell profiles: /etc/bashrc /etc/profile.d/nix.sh /etc/zshrc /etc/bash.bashrc /etc/zsh/zshrc +2025-07-23T19:30:46.5367115Z  +2025-07-23T19:30:46.5367513Z # Nix +2025-07-23T19:30:46.5368100Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-07-23T19:30:46.5369097Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-07-23T19:30:46.5369710Z fi +2025-07-23T19:30:46.5370004Z # End Nix +2025-07-23T19:30:46.5370187Z +2025-07-23T19:30:46.5543077Z +2025-07-23T19:30:46.5543374Z # Nix +2025-07-23T19:30:46.5544190Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-07-23T19:30:46.5545083Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-07-23T19:30:46.5545466Z fi +2025-07-23T19:30:46.5545647Z # End Nix +2025-07-23T19:30:46.5545788Z +2025-07-23T19:30:46.5715264Z +2025-07-23T19:30:46.5715446Z # Nix +2025-07-23T19:30:46.5716075Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-07-23T19:30:46.5716814Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-07-23T19:30:46.5717185Z fi +2025-07-23T19:30:46.5717393Z # End Nix +2025-07-23T19:30:46.5717844Z +2025-07-23T19:30:46.5876929Z +2025-07-23T19:30:46.5877109Z # Nix +2025-07-23T19:30:46.5877706Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-07-23T19:30:46.5878614Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-07-23T19:30:46.5879241Z fi +2025-07-23T19:30:46.5879528Z # End Nix +2025-07-23T19:30:46.5879737Z +2025-07-23T19:30:46.5902073Z +2025-07-23T19:30:46.5903095Z ~~> Setting up shell profiles for Fish with conf.d/nix.fish inside /etc/fish /usr/local/etc/fish /opt/homebrew/etc/fish /opt/local/etc/fish +2025-07-23T19:30:46.5970366Z  +2025-07-23T19:30:46.5971968Z ~~> Setting up the default profile +2025-07-23T19:30:46.6275335Z installing 'nix-2.26.3' +2025-07-23T19:30:46.6410078Z building '/nix/store/5afca9ydks0pp5szkwwhi7a6m2zmgk9g-user-environment.drv'... +2025-07-23T19:30:46.6820309Z installing 'nss-cacert-3.107' +2025-07-23T19:30:46.6953201Z building '/nix/store/ilxzpc39hcw5jr229rmajjkyz1a0fym1-user-environment.drv'... +2025-07-23T19:30:46.7165967Z  +2025-07-23T19:30:46.7166530Z ~~> Setting up the nix-daemon systemd service +2025-07-23T19:30:46.7549858Z Created symlink /etc/systemd/system/nix-daemon.service → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.service. +2025-07-23T19:30:47.0366293Z Created symlink /etc/systemd/system/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. +2025-07-23T19:30:47.0368199Z Created symlink /etc/systemd/system/sockets.target.wants/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. +2025-07-23T19:30:47.6339402Z Alright! We're done! +2025-07-23T19:30:47.6363433Z Try it! Open a new terminal, and type: +2025-07-23T19:30:47.6364131Z +2025-07-23T19:30:47.6364999Z $ nix-shell -p nix-info --run "nix-info -m" +2025-07-23T19:30:47.6365483Z +2025-07-23T19:30:47.6366019Z Thank you for using this installer. If you have any feedback or need +2025-07-23T19:30:47.6366649Z help, don't hesitate: +2025-07-23T19:30:47.6366902Z +2025-07-23T19:30:47.6367070Z You can open an issue at +2025-07-23T19:30:47.6367728Z https://github.com/NixOS/nix/issues/new?labels=installer&template=installer.md +2025-07-23T19:30:47.6368209Z +2025-07-23T19:30:47.6368483Z Or get in touch with the community: https://nixos.org/community +2025-07-23T19:30:47.6386412Z +2025-07-23T19:30:47.6387360Z ---- Reminders ----------------------------------------------------------------- +2025-07-23T19:30:47.6388102Z [ 1 ] +2025-07-23T19:30:47.6388657Z Nix won't work in active shell sessions until you restart them. +2025-07-23T19:30:47.6389142Z +2025-07-23T19:30:47.7090812Z ##[endgroup] +2025-07-23T19:30:47.7168802Z ##[group]Run /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --command echo "dependencies installed" +2025-07-23T19:30:47.7170404Z /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --command echo "dependencies installed" +2025-07-23T19:30:47.7204362Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-07-23T19:30:47.7204743Z env: +2025-07-23T19:30:47.7204956Z TMPDIR: /home/runner/work/_temp +2025-07-23T19:30:47.7205227Z ##[endgroup] +2025-07-23T19:30:47.7276813Z No local flake found, will attempt to use avalanchego flake +2025-07-23T19:30:47.7364470Z Starting nix shell for github:ava-labs/avalanchego?ref=v1.13.3-rc.1 +2025-07-23T19:30:47.9648370Z unpacking 'github:ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a' into the Git cache... +2025-07-23T19:30:49.6609353Z copying path '/nix/store/i99indk3y6pc3sm0k1xx3nakm193lqzb-source' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4888737Z copying path '/nix/store/899rx4l5zz1za8nx7ijp7swv5ibc8wx2-git-2.47.2-doc' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4894813Z copying path '/nix/store/zpab59ialz19x6f65jbjf5xb8waa54av-iana-etc-20240318' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4920216Z copying path '/nix/store/dgzz9k53hz1qgklnj9667xzliyidj9cs-mailcap-2.1.54' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4926683Z copying path '/nix/store/hnpph37w6p5jfspwf5pksljpf0wqwjg3-perl5.40.0-Digest-HMAC-1.04' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4929944Z copying path '/nix/store/cnb01qfmg8c3irp630nplhwa201d7xsr-perl5.40.0-FCGI-ProcManager-0.28' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4933213Z copying path '/nix/store/v657ak4hdkixvq99rk3qvyh28in945dv-perl5.40.0-HTML-TagCloud-0.38' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4947822Z copying path '/nix/store/9qrv0d0yd9wss610gjzv3507ry6v9mzw-perl5.40.0-URI-5.21' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4951260Z copying path '/nix/store/pz7y4qd8lyhg9y6wmb9hynivx36f53zp-perl5.40.0-libnet-3.15' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4956786Z copying path '/nix/store/l6mypzy4rvkxd5kwzs18d88syirislib-tzdata-2024b' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4969874Z copying path '/nix/store/czlhi3r9b6ip4xyynwibfhm458ljwsir-gcc-13.3.0-libgcc' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4974496Z copying path '/nix/store/d8qbcrirc6jidfacy0qa50zy07i15xcz-gnu-config-2024-01-01' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4997643Z copying path '/nix/store/rscnjwdmhya0wcdmbygr3jpz6p39kvhr-perl5.40.0-Encode-Locale-1.05' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.4999886Z copying path '/nix/store/74bbxwiamv62d2l089f1r8apv295vsry-perl5.40.0-HTML-Tagset-3.20' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5003808Z copying path '/nix/store/krx6xw6wxakapdkviirq57yh3nl3227h-perl5.40.0-IO-HTML-1.004' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5008455Z copying path '/nix/store/w9yrswzdifcjhg0righ76aqb6bpslhkb-perl5.40.0-Mozilla-CA-20230821' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5010630Z copying path '/nix/store/3r0pprxsd9n52nb2yqq3idwb75d0spzd-perl5.40.0-LWP-MediaTypes-6.04' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5216395Z copying path '/nix/store/swnhrfysvmwjvibcafm0im377pcfs80v-curl-8.12.1-man' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5279884Z copying path '/nix/store/x6i8jiz3yv3h209xfbz9a3ch1sm16167-dns-root-data-2024-06-20' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5286584Z copying path '/nix/store/maxa3xhmxggrc5v2vc0c3pjb79hjlkp9-glibc-2.40-66' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5306793Z copying path '/nix/store/dvsai0ym9czjl5mcsarcdwccb70615n4-linux-headers-6.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5318008Z copying path '/nix/store/vlfgix8rcbj3l9yk0rna1damxkafbq18-perl5.40.0-Net-HTTP-6.23' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5321817Z copying path '/nix/store/5ahjfkydg49xvbr3vghhv317prgspnf3-mirrors-list' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5325295Z copying path '/nix/store/970fk2m63qra4ybkpp99rw7mld9fphlv-nghttp2-1.64.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5338879Z copying path '/nix/store/frpqzb3223826xq72s0fcjmjmj50wpyn-perl5.40.0-Authen-SASL-2.1700' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5341825Z copying path '/nix/store/ldlsmrf2rrq28s08mzjk245vr26dwwhi-perl5.40.0-Test-RequiresInternet-0.05' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5343524Z copying path '/nix/store/5xvxvpl9armf0p6y9m4g1zl1mypvr9m7-perl5.40.0-TimeDate-2.33' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5348169Z copying path '/nix/store/hz5m52dx8x6vvi5pp0yikxb3b05bmi2j-perl5.40.0-Test-Needs-0.002010' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5386052Z copying path '/nix/store/6aqxgf5ygcscqsh4p9krd0dz2hc1cn0w-perl5.40.0-WWW-RobotRules-6.02' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5388383Z copying path '/nix/store/vvjpgyk6jgd6k74pgpjrln6m6aqyiaig-perl5.40.0-Try-Tiny-0.31' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5410496Z copying path '/nix/store/lj7p9q5kgmdcq768rvsgvjndi42mjcn8-publicsuffix-list-0-unstable-2024-10-25' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5492069Z copying path '/nix/store/i9ymkbklv1q9yzl7wwx7300wbkqdln0r-update-autotools-gnu-config-scripts-hook' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5614608Z copying path '/nix/store/2h648f4xlzszyc01yf67xd2rgira65js-perl5.40.0-Test-Fatal-0.017' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.5675727Z copying path '/nix/store/shx8jax9b662cd9nlml731hh9wks24v1-perl5.40.0-HTTP-Date-6.06' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.6090359Z copying path '/nix/store/0m34prvcx3d3vd9f4djbaqji7yb9swsh-perl5.40.0-HTTP-CookieJar-0.014' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.6098443Z copying path '/nix/store/i9hiqc4dfksm9cpqvff39smfpn49zbj6-perl5.40.0-File-Listing-6.16' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.6241374Z copying path '/nix/store/19402vwa1rndilww6fpbviz0lza8846p-kind-0.24.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.6248053Z copying path '/nix/store/i7r45jjmvfxiw8j7ihjx51jachylq1si-protoc-gen-go-1.35.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.6251337Z copying path '/nix/store/1fqgvq0i498w4ynywyj224i49izzzqrk-protoc-gen-go-grpc-1.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.6255165Z copying path '/nix/store/as8g73awbgrhpf5p6qjnrd5v9anw74ix-go-task-3.39.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:05.6261744Z copying path '/nix/store/23cshhh8k7z46gadr86krv15xphggawm-kubectl-1.31.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1072195Z copying path '/nix/store/vlgwyb076hkz7yv96sjnj9msb1jn1ggz-attr-2.5.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1078584Z copying path '/nix/store/c9z2sp8dyx1k0zk374v1142hmphashd0-buf-1.47.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1080230Z copying path '/nix/store/wg9gg3zkwcqhyycj0vkfnhgk5a4z9faq-ed-1.20.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1081802Z copying path '/nix/store/qiisx6c7qpyzq522j3icsfhj8ayw6ah4-bzip2-1.0.8' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1084407Z copying path '/nix/store/83s1wqvrx7yvy3g6dmdr2icgg3qqbjcp-brotli-1.1.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1086265Z copying path '/nix/store/3p3fwczck2yn1wwfjnymzkz8w11vbvg7-gawk-5.3.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1092215Z copying path '/nix/store/mhd0rk497xm0xnip7262xdw9bylvzh99-gcc-13.3.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1094212Z copying path '/nix/store/7zv1sq1k25gk2rvgxnm262vp5hydkv1a-gdbm-1.24-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1098733Z copying path '/nix/store/fcqfyri9kljs5jd7h556f004qmci1qin-expand-response-params' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1100601Z copying path '/nix/store/2kiskq24j06g4qw3xs8zsy2dkawh4gxk-glibc-2.40-66-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1101994Z copying path '/nix/store/8vpg72ik2kgxfj05lc56hkqrdrfl8xi9-bash-5.2p37' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1103345Z copying path '/nix/store/8k19h07hh2g1w5kp5yglzddswnvdmxpy-gmp-6.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1104920Z copying path '/nix/store/m3da56j3r7h4hp0kr8v1xsnk16x900yf-gnumake-4.4.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1106351Z copying path '/nix/store/0hv5ymwkczx3ak8h3yldfbwbab33jnrw-expat-2.6.4' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1107601Z copying path '/nix/store/cfb4pxnfh2sf4csk8xh7abfqv96k66nh-glibc-2.40-66-getent' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1319332Z copying path '/nix/store/3ks7b6p43dpvnlnxgvlcy2jaf1np37p2-gnused-4.9' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1323293Z copying path '/nix/store/yyfzan4mn874v885jy6fs598gjb31c4l-bzip2-1.0.8-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1357904Z copying path '/nix/store/dyizbk50iglbibrbwbgw2mhgskwb6ham-acl-2.3.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1402397Z copying path '/nix/store/1fby1pxf0z16lgl728i2sqwqr2hrw2h8-json-c-0.17' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1405900Z copying path '/nix/store/r4p475lxvaklr9rj8l2a4sahkx5c0209-getent-glibc-2.40-66' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1471050Z copying path '/nix/store/mwwpv4k7skbx4vr2qjc89pvs7mhmgapb-k9s-0.32.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1516089Z copying path '/nix/store/79kh226vw8rrk62jbs27hdad1clwy447-keyutils-1.6.3-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1851175Z copying path '/nix/store/wnsn67xb3i072b6i496y002byvc3ipa3-kubernetes-helm-3.16.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.1937167Z copying path '/nix/store/q57zi48njdcgxy4n8d5lm5pf746drc8f-isl-0.20' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2027264Z copying path '/nix/store/bpzy7snv1xr7s1z2xi7bw0q5z9j6g1gg-libantlr3c-3.4' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2073585Z copying path '/nix/store/ky06iawcwsvxmx8yw66y2a7iy7b14yii-libapparmor-4.0.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2241357Z copying path '/nix/store/0iabf1jhsfrrxkdi599kb8m37p82yr1z-audit-4.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2246241Z copying path '/nix/store/nc394xps4al1r99ziabqvajbkrhxr5b7-gzip-1.13' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2363837Z copying path '/nix/store/81awch8mhqanda1vy0c09bflgra4cxh0-glibc-2.40-66-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2370012Z copying path '/nix/store/fx6mfndjsbb0dqn9jzf1ksz9wf1dlrq7-libcap-2.70-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2409283Z copying path '/nix/store/pmg7hw4ar16dhx5hk6jswvxy349wzsm7-gnutar-1.35' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2473076Z copying path '/nix/store/7yf5ijcl2lh90xs5nkrdpfdvcmc9fnc5-libcbor-0.11.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2597881Z copying path '/nix/store/bldybfhh9v9dvpms8kh87v1a6jp6i28p-libevent-2.1.12' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2721596Z copying path '/nix/store/wxgvd9mivxdbahxidq751gxyz7x7jb8n-libffi-3.4.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2859136Z copying path '/nix/store/p0c3g3dxr818lggbk6ms3nhm97g0pir9-libgpg-error-1.50' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.2893355Z copying path '/nix/store/2w8a5z0rcs4fk3ds3fnd03x6syjjl1hb-libmnl-1.0.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.3141650Z copying path '/nix/store/ywvi2y4yv3qyh0phw9y2ji17smh8nawj-libnfnetlink-1.0.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.3270653Z copying path '/nix/store/dg6d7zs1bwnhwb3sd3xdbldvpa163a5z-libnl-3.10.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.3354850Z copying path '/nix/store/xxc6rkndd68cq1225asn380bbj0512dg-libpsl-0.21.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.3441707Z copying path '/nix/store/qhs6zflzhdr11j6byf1c1j52z39hnaaw-db-4.8.30' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.3618291Z copying path '/nix/store/8g8wdqid20924fbppbljsl6l7gr0p21j-gettext-0.21.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.3688909Z copying path '/nix/store/dsxb6qvi21bzy21c98kb71wfbdj4lmz7-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.3948871Z copying path '/nix/store/nn7nj7xq8gdfyxqhchphzia7i34rwb0v-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.4119664Z copying path '/nix/store/96m2mjx55syyky6zymjnbl3pvgxlwchb-libnftnl-1.2.8' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.4124937Z copying path '/nix/store/rq8lq7r8vjqrbn2bgfglm9dxfi83gdg9-icu4c-74.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.4458651Z copying path '/nix/store/17195j62sjxjn0xwnmj3icr01n3d678r-libnetfilter_conntrack-1.1.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.4501040Z copying path '/nix/store/68vmpyiabh89l7hbp9z2hmwci74vnfi4-libseccomp-2.5.5-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.4723244Z copying path '/nix/store/wr7w1x0x1j4qli60wm22q3bc02dga08c-libtasn1-4.20.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.4886357Z copying path '/nix/store/hnh6ivl105y4sw0ifv4kbihrvbddmlkm-libxcrypt-4.4.36' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.5065307Z copying path '/nix/store/9yh47sg27z9263ll65d414rgcyrclk57-libxml2-2.13.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.5555145Z copying path '/nix/store/99jfkvhck3c2675n2cy71g40km6m0pf9-libassuan-2.5.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.5616502Z copying path '/nix/store/h9c111ckc8wg3ksxb7kj8cwhgaj52118-libgcrypt-1.10.3-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.5646799Z copying path '/nix/store/p9k3wzaw6d3wjgcbrfv2g1chj0mj2inb-lz4-1.10.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.5907568Z copying path '/nix/store/yh2c9f04q1vcfhpkamidrg3sdnwk5bvy-mpdecimal-4.0.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.5909216Z copying path '/nix/store/1h2yigiwy6bgpyzlywj36s5nqkgca8bv-libpcap-1.10.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.6077462Z copying path '/nix/store/9m68vvhnsq5cpkskphgw84ikl9m6wjwp-coreutils-9.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.6080493Z copying path '/nix/store/b75dbfz0gria25kn2qlfpnmp39h31spw-mpfr-4.2.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.6357218Z copying path '/nix/store/qvrp85i3yc9vw5x1vyx714m03jsf60rc-cvc4-1.8' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.6365662Z copying path '/nix/store/mgpn83jmnf37ky77a8qy6m466qqmlyqk-cln-1.3.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.7113405Z copying path '/nix/store/6s0zzvp9in28jkmzwh5p69v1zwpi5mi4-linux-pam-1.6.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.7438754Z copying path '/nix/store/z7ndn3k8zfjrf713gq443q7a2ixzaab5-ncurses-6.4.20221231' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.7917130Z copying path '/nix/store/q95qgxy40rx1ifa13j8l38sx3myvkhb9-nettle-3.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.7963161Z copying path '/nix/store/1w5jm9zaxwr5b8nvh41c7iz236my185m-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.8275011Z copying path '/nix/store/j4377imdqpm27h5hspds1skgsazyj0d9-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.8427292Z copying path '/nix/store/n9ya3i584zvcw6696326sdlg61d6lamf-npth-1.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.8541860Z copying path '/nix/store/isk8l71r4d1nl39mpv92ank2rs4cx3w9-openssl-3.3.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.8726260Z copying path '/nix/store/mqvgaq2bnb1701l7zcn0d6vd7w8b0z7l-openssl-3.3.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.8785780Z copying path '/nix/store/pbjp09wrnbklrfy7n2h5qix15fl5ylhj-libmpc-1.3.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.9293497Z copying path '/nix/store/kavgc464axad77kj4x4bza7s345nrhin-iptables-1.8.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.9302767Z copying path '/nix/store/lr3cvmq5ahqcj29p8c6m0fdl1y8krc86-diffutils-3.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.9305881Z copying path '/nix/store/vc2d1bfy1a5y1195nq7k6p0zcm6q89nx-findutils-4.10.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.9361507Z copying path '/nix/store/smd33cbgm2pwwnwj9l4b4fk39bdxfsfv-p11-kit-0.25.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.9406699Z copying path '/nix/store/w8xb93nwhnhlkqd9kwahkzqvbg98qs74-nghttp2-1.64.0-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.9592609Z copying path '/nix/store/cjg4jmnnf26367irpagiiffrni9bk7z0-gnupg-2.4.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:06.9605148Z copying path '/nix/store/zfjv48ikkqn3yhi8zi7lvqvxyscbg87n-patch-2.7.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.0196057Z copying path '/nix/store/9wwkzvmrlv43y71rbw8sbh9bamc62a16-patchelf-0.15.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.0201786Z copying path '/nix/store/5md7gyz45fm4bmkg2kb9a1hnmg8ryk9j-pcre2-10.44' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.0549746Z copying path '/nix/store/pgq4agv5wpanzr9a8mqlkncdbick7mn2-pcsclite-2.3.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.0813481Z copying path '/nix/store/9sqpmkq9fcycsrldbsdxw93hvspy8pr9-perl5.40.0-Clone-0.46' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.0899225Z copying path '/nix/store/jpk7s673pli65raimpl43jbhbg6ja4kx-perl5.40.0-FCGI-0.82' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.0954464Z copying path '/nix/store/x4kgvzlrndlsc9mn2gyrx9dla0a5y7y3-perl5.40.0-TermReadKey-2.38' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.1029665Z copying path '/nix/store/gda0f0dw64h74i98vkk7b7jwzxbkigzs-prometheus-2.55.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.1179073Z copying path '/nix/store/6hrwqlqxzvn3lry7fjyz4i6dkdmg38m6-perl5.40.0-HTTP-Message-6.45' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.1292511Z copying path '/nix/store/mfj2pd4n7vbczdx381margrm9b9jkbpq-protoc-gen-connect-go-1.17.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.1459153Z copying path '/nix/store/zwh1q2r2a1prmw4xxfpqa06ic7dl31yd-qrencode-4.1.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.1525788Z copying path '/nix/store/flw2dwllbq50954bk1qm6xwdzp8ikacl-systemd-minimal-libs-256.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.1527894Z copying path '/nix/store/mcr5gqxgkknqxa2vhnhixzd97vdsnsxi-perl5.40.0-HTML-Parser-3.81' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.1568536Z copying path '/nix/store/q73n7qdcl9yvlwh6p4n414vkxgnjjryp-perl5.40.0-HTTP-Cookies-6.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.2089206Z copying path '/nix/store/qjsj5vnbfpbg6r7jhd7znfgmcy0arn8n-gnugrep-3.11' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.2607430Z copying path '/nix/store/qxp4rv76dpjbvs37c3sfq33ial7mxgb0-perl5.40.0-HTTP-Daemon-6.16' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.3014920Z copying path '/nix/store/dwyr8xvjby2l1zz92a5pfl6bq27jhrm6-krb5-1.21.3-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.3018779Z copying path '/nix/store/q0fgny8kpagi6blmzyw15n4cmfx647kn-perl5.40.0-HTTP-Negotiate-6.01' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.3036928Z copying path '/nix/store/7f8vg8z0q721jyahy1vjbg2x3irbk5az-unbound-1.22.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.3091378Z copying path '/nix/store/6k8v1ffagipraln3nn12h1n22d5l9dvr-perl5.40.0-Net-SSLeay-1.92' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.3389212Z copying path '/nix/store/0z09m6fwgmc2a0zazp6lhyadfig10fd6-perl5.40.0-CGI-4.59' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.3886734Z copying path '/nix/store/bhvah40258cfi5sj1wiy2zmdn5xgj4m1-krb5-1.21.3-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.4114573Z copying path '/nix/store/09pyjyjdr5mwmki9gb0yf809l54xr8p2-openssl-3.3.3-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.4460802Z copying path '/nix/store/53rkjnnkbgg8pfn6ffpcdx4xbrl98yh8-readline-8.2p13' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.4516284Z copying path '/nix/store/88x6dfa5gnls0pmbvp4b9ci3bqqfja0n-util-linux-minimal-2.39.4-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5119090Z copying path '/nix/store/fvm65iknlk5kx9938xsc5485s9wzz1ig-lvm2-2.03.27-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5461446Z copying path '/nix/store/xv2bvwf6zv1hhlm9w4x0f7n0idhbsjh7-perl5.40.0-CGI-Fast-2.16' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5483366Z copying path '/nix/store/j7k6mzbdydimzw4mf23ahq6a7rz2f7w2-util-linux-minimal-2.39.4-login' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5535073Z copying path '/nix/store/73pq792gn6i9qfywsnd347vg0152w8rw-perl5.40.0-IO-Socket-SSL-2.083' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5576424Z copying path '/nix/store/pa7plncc30fhm909bis9haakh7gi0qbl-bash-interactive-5.2p37' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5578034Z copying path '/nix/store/sf31nmjhlsdp2h26vbwbpa7gwfn4i4na-xz-5.6.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5755685Z copying path '/nix/store/xxssfwyz4l32wiadvsrcf259nkb91myn-z3-4.11.2-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5759309Z copying path '/nix/store/vpg96mfr1jw5arlqg831i69g29v0sdb3-zlib-1.3.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5778113Z copying path '/nix/store/hgq0ircylcm0mx6y7ml9chcbwgrz9xg7-openssl-3.3.3-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.5908353Z copying path '/nix/store/6cf2yj12gf51jn5vdbdw01gmgvyj431s-zstd-1.5.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.6267056Z copying path '/nix/store/lmfya9by589b0qgc2pqps1zy4jhldkvq-cryptsetup-2.7.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.6279199Z copying path '/nix/store/a9vgxnafcgb1khpjgn87ixmyv4dsqlp0-util-linux-minimal-2.39.4-mount' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.6545882Z copying path '/nix/store/f2sjbvr2gbp1dl1fwak6b77j18wv2rm8-perl5.40.0-Net-SMTP-SSL-1.04' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.6796210Z copying path '/nix/store/23j515bg7lgis34f0jkm9j6g00dpp2sh-binutils-2.43.1-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.6847883Z copying path '/nix/store/yk246qv4bbmr0mmh9y3gnfdkra5nnjgi-cracklib-2.10.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.6864555Z copying path '/nix/store/p751fjd81h3926ivxsq0x20lz5j7yscc-file-5.45' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.7161688Z copying path '/nix/store/yg4ahy7gahx91nq80achmzilrjyv0scj-gcc-13.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.7588268Z copying path '/nix/store/nfdnparxrnv6sy627lw1c27pdqzpbfs2-kexec-tools-2.0.29' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.7605709Z copying path '/nix/store/1md58p5vm4dixcwwpwrs78a7kjf6nnqk-gnutls-3.8.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.7772679Z copying path '/nix/store/yr9xanc3bgp95fj9kvbrrq47zhzni2i6-kmod-31' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.8760319Z copying path '/nix/store/qdypipr8zp0nkyrwqnakn3q3xhpghsrb-kmod-31-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.8941574Z copying path '/nix/store/6m49g3aqk5d5vdxp7chpgim5l6cfm7d6-libarchive-3.7.7-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.8953574Z copying path '/nix/store/n6zw4496n0bd9r6gjwkjmf5ja6757q32-krb5-1.21.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.9909647Z copying path '/nix/store/22qnvg3zddkf7rbpckv676qpsc2najv9-binutils-2.43.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.9936378Z copying path '/nix/store/kc1sdzqnymjwy74chlnkq2xlxnmrg30x-libfido2-1.15.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:07.9978455Z copying path '/nix/store/pvyhn761hgn17fpr6fy168vcv1ciwsgl-libssh2-1.11.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.0678770Z copying path '/nix/store/qmz79v7x18zmi6g2iagxwazqfwbxzhra-libssh2-1.11.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.1304995Z copying path '/nix/store/q4j9jj8jw74216cw4chsqlwdnglwly6p-perl-5.40.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.1407809Z copying path '/nix/store/i7gfv740vcygvl9pgqwq29nkzmsp09ww-sqlite-3.46.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.1428814Z copying path '/nix/store/blkjagm7k01k9sghpyckw4y6dd6z0knl-util-linux-minimal-2.39.4-swap' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.1732281Z copying path '/nix/store/17rp2wzkp8xfhxcd5zihx6qmnbaadlhs-libmicrohttpd-1.0.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.2275239Z copying path '/nix/store/zfk4v9lxal3ch98qnf7zlciwgmk4w1ij-krb5-1.21.3-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.2407976Z copying path '/nix/store/w2m5p0fb6pmqq6dz2jqlvnyw7n4vcbpx-curl-8.12.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.2450067Z copying path '/nix/store/sh26c2jcz7w2gii2px77bqy64fd026jd-boost-1.81.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.2957243Z copying path '/nix/store/rbns8mzghhqxih4hj2js4mb4s6ivy5d1-xz-5.6.3-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.3241438Z copying path '/nix/store/ccrjbcfl5zcdp0n5mh69f4airrb9g8m4-zlib-1.3.1-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.3562067Z copying path '/nix/store/lgfp6sl5hpykmld29rqvi9pam8ji8k24-curl-8.12.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.4958445Z copying path '/nix/store/gnnac2vpa466p2lpzskmbj5vjr6ikzhg-libpwquality-1.4.5-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.5028971Z copying path '/nix/store/0rg4nqym82ngd29dy8qm1bggm94dkry3-libssh2-1.11.1-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.5137109Z copying path '/nix/store/hsxp8g7zdr6wxk1mp812g8nbzvajzn4w-stdenv-linux' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.5422575Z copying path '/nix/store/xmmli2ijsz2br6573z3sqsgg0spnj7i9-zstd-1.5.6-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.5809040Z copying path '/nix/store/lhpwdis5hkyljz1d200bj1s6g51ljq9k-python3-3.12.8' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.6148148Z copying path '/nix/store/awbfciyq3cjvw6x8wd8wdjy8z2qxm98n-elfutils-0.191' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.6661987Z copying path '/nix/store/3hgwjb5hp0jm8fyi4vx9s4f3hjvp0n1r-tpm2-tss-4.1.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.7079169Z copying path '/nix/store/8qf68jid6rr2f4c8ppyp0ixdlv0axnpn-curl-8.12.1-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.7523318Z copying path '/nix/store/z9lnvmqymg80hk671fm2533ncczkf7z2-kbd-2.6.4' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.8224717Z copying path '/nix/store/04shrm4bvxw1yam87da7y9k872kqn777-curl-8.12.1-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.8917150Z copying path '/nix/store/007wiy8x5irdxzsdx3bdqx0k0a8hp6ji-shellcheck-0.10.0-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.8919039Z copying path '/nix/store/f95nqmgp2vaz1h68n36k605ay1ixnj0a-libbpf-1.4.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:08.9926653Z building '/nix/store/rkn5fk95kmnbxk65bxlyzqnmsmafh1f1-kind-with-registry.sh.drv'... +2025-07-23T19:31:09.2408492Z copying path '/nix/store/00x4qvjp4kcm932rv281v8n9y4xk9dv1-solc-0.8.21' from 'https://cache.nixos.org'... +2025-07-23T19:31:09.3243271Z copying path '/nix/store/w9qcpyhjrxsqrps91wkz8r4mqvg9zrxc-systemd-256.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:09.3953663Z copying path '/nix/store/1mv8pj4nxwnd9bbxshljc9p4cnl3rakj-binutils-wrapper-2.43.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:09.3972151Z copying path '/nix/store/ch1brsi5xwxgyv23csmvw1am9l40rf1c-shellcheck-0.10.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:10.2051318Z copying path '/nix/store/99accs107rzm78z74cj1wns59d0m1nh8-perl5.40.0-libwww-perl-6.72' from 'https://cache.nixos.org'... +2025-07-23T19:31:10.3334998Z copying path '/nix/store/7s649psqfmp6bf2ij6kba3nbwjp50z0w-promtail-3.2.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:11.2474225Z copying path '/nix/store/1fwh9nv8n93rjc7i7j9gcm3whdqpgy84-git-2.47.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:12.1379906Z copying path '/nix/store/gnd8f9h2ycxrfrvrga508c4n9cxy6720-gcc-wrapper-13.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:12.1522600Z copying path '/nix/store/szfi0xd0cwdaldhkp8vlgi7jfv662nmd-stdenv-linux' from 'https://cache.nixos.org'... +2025-07-23T19:31:12.2111949Z building '/nix/store/mbmxfdxryq3wr2wxm5brh42mcad1gvzy-kind-with-registry-1.0.0.drv'... +2025-07-23T19:31:12.3023593Z building '/nix/store/gvy0rwami6li8s64cb1q1hv75mnglnjn-nix-shell-env.drv'... +2025-07-23T19:31:12.7581977Z this path will be fetched (0.10 MiB download, 0.10 MiB unpacked): +2025-07-23T19:31:12.7583756Z /nix/store/hlv28jlwzk6kqj6vljm9cn8i7pw030nx-bash-interactive-5.2p37-man +2025-07-23T19:31:12.7594113Z copying path '/nix/store/hlv28jlwzk6kqj6vljm9cn8i7pw030nx-bash-interactive-5.2p37-man' from 'https://cache.nixos.org'... +2025-07-23T19:31:12.8902336Z dependencies installed +2025-07-23T19:31:12.8946303Z ##[group]Run echo "::warning::Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch?" +2025-07-23T19:31:12.8947038Z echo "::warning::Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch?" +2025-07-23T19:31:12.8975890Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-07-23T19:31:12.8976209Z env: +2025-07-23T19:31:12.8976397Z TMPDIR: /home/runner/work/_temp +2025-07-23T19:31:12.8976629Z ##[endgroup] +2025-07-23T19:31:12.9039775Z ##[warning]Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch? +2025-07-23T19:31:12.9060964Z ##[group]Run AVALANCHEGO_CLONE_PATH=avalanchego /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --impure --command bash -x ./scripts/run_task.sh test-e2e +2025-07-23T19:31:12.9062728Z AVALANCHEGO_CLONE_PATH=avalanchego /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --impure --command bash -x ./scripts/run_task.sh test-e2e +2025-07-23T19:31:12.9088978Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-07-23T19:31:12.9089303Z env: +2025-07-23T19:31:12.9089483Z TMPDIR: /home/runner/work/_temp +2025-07-23T19:31:12.9089735Z TMPNET_START_METRICS_COLLECTOR: false +2025-07-23T19:31:12.9089991Z TMPNET_START_LOGS_COLLECTOR: false +2025-07-23T19:31:12.9090232Z TMPNET_CHECK_METRICS_COLLECTED: false +2025-07-23T19:31:12.9090495Z TMPNET_CHECK_LOGS_COLLECTED: false +2025-07-23T19:31:12.9090725Z LOKI_USERNAME: +2025-07-23T19:31:12.9090898Z LOKI_PASSWORD: +2025-07-23T19:31:12.9091082Z PROMETHEUS_USERNAME: +2025-07-23T19:31:12.9091286Z PROMETHEUS_PASSWORD: +2025-07-23T19:31:12.9091481Z GH_REPO: ava-labs/coreth +2025-07-23T19:31:12.9091682Z GH_WORKFLOW: CI +2025-07-23T19:31:12.9091857Z GH_RUN_ID: 16480013789 +2025-07-23T19:31:12.9092044Z GH_RUN_NUMBER: 5026 +2025-07-23T19:31:12.9092228Z GH_RUN_ATTEMPT: 1 +2025-07-23T19:31:12.9092413Z GH_JOB_ID: avalanchego_e2e +2025-07-23T19:31:12.9092617Z ##[endgroup] +2025-07-23T19:31:12.9158353Z No local flake found, will attempt to use avalanchego flake +2025-07-23T19:31:12.9250894Z Starting nix shell for github:ava-labs/avalanchego?ref=v1.13.3-rc.1 +2025-07-23T19:31:15.2910753Z + set -euo pipefail +2025-07-23T19:31:15.2911141Z + command -v task +2025-07-23T19:31:15.2911431Z + exec task test-e2e +2025-07-23T19:31:15.3097836Z task: [test-e2e] ./scripts/tests.e2e.sh +2025-07-23T19:31:15.3162735Z running AvalancheGo e2e tests +2025-07-23T19:31:15.3392016Z task: [build-race] ./scripts/build.sh -r +2025-07-23T19:31:15.3431140Z Building with race detection enabled +2025-07-23T19:31:15.3540758Z Building AvalancheGo with [go version go1.23.9 linux/amd64]... +2025-07-23T19:32:40.6626206Z task: [build-xsvm] ./scripts/build_xsvm.sh +2025-07-23T19:32:40.6689430Z Building xsvm plugin... +2025-07-23T19:33:26.6500964Z Symlinking ./build/xsvm to /home/runner/.avalanchego/plugins/v3m4wPxaHpvGr8qfMeyK6PRW3idZrPHmYcMTt7oXdK47yurVH +2025-07-23T19:33:26.6530699Z Symlinking ./build/xsvm to /home/runner/work/coreth/coreth/avalanchego/build/plugins/v3m4wPxaHpvGr8qfMeyK6PRW3idZrPHmYcMTt7oXdK47yurVH +2025-07-23T19:33:26.6557996Z task: [test-e2e-ci] bash -x ./scripts/tests.e2e.sh '--ginkgo.label-filter=c || uses-c' +2025-07-23T19:33:26.6589332Z + set -euo pipefail +2025-07-23T19:33:26.6589824Z + [[ ./scripts/tests.e2e.sh =~ scripts/tests.e2e.sh ]] +2025-07-23T19:33:26.6590388Z + source ./scripts/constants.sh +2025-07-23T19:33:26.6590824Z ++ set -euo pipefail +2025-07-23T19:33:26.6595860Z ++++ dirname ./scripts/constants.sh +2025-07-23T19:33:26.6607901Z +++ cd ./scripts +2025-07-23T19:33:26.6608236Z +++ cd .. +2025-07-23T19:33:26.6608526Z +++ pwd +2025-07-23T19:33:26.6610666Z ++ AVALANCHE_PATH=/home/runner/work/coreth/coreth/avalanchego +2025-07-23T19:33:26.6611462Z ++ avalanchego_path=/home/runner/work/coreth/coreth/avalanchego/build/avalanchego +2025-07-23T19:33:26.6612157Z ++ static_ld_flags= +2025-07-23T19:33:26.6612474Z ++ '[' '' = 1 ']' +2025-07-23T19:33:26.6612977Z ++ export 'CGO_CFLAGS=-O2 -D__BLST_PORTABLE__' +2025-07-23T19:33:26.6613827Z ++ CGO_CFLAGS='-O2 -D__BLST_PORTABLE__' +2025-07-23T19:33:26.6614489Z ++ export CGO_ENABLED=1 +2025-07-23T19:33:26.6614831Z ++ CGO_ENABLED=1 +2025-07-23T19:33:26.6615236Z ++ export GOPROXY=https://proxy.golang.org +2025-07-23T19:33:26.6615752Z ++ GOPROXY=https://proxy.golang.org +2025-07-23T19:33:26.6616177Z + E2E_ARGS=("${@}") +2025-07-23T19:33:26.6618070Z + [[ --ginkgo.label-filter=c || uses-c =~ --runtime=kube ]] +2025-07-23T19:33:26.6619003Z ++ realpath ./build/avalanchego +2025-07-23T19:33:26.6631277Z + AVALANCHEGO_PATH=/home/runner/work/coreth/coreth/avalanchego/build/avalanchego +2025-07-23T19:33:26.6632323Z + E2E_ARGS+=("--avalanchego-path=${AVALANCHEGO_PATH}") +2025-07-23T19:33:26.6632901Z + GINKGO_ARGS= +2025-07-23T19:33:26.6633244Z + [[ -n 1 ]] +2025-07-23T19:33:26.6633669Z + echo 'tests will be executed serially to minimize resource requirements' +2025-07-23T19:33:26.6634318Z + [[ -n '' ]] +2025-07-23T19:33:26.6634558Z + GINKGO_ARGS+=' --randomize-all' +2025-07-23T19:33:26.6635370Z + ./bin/ginkgo --randomize-all -v ./tests/e2e -- '--ginkgo.label-filter=c || uses-c' --avalanchego-path=/home/runner/work/coreth/coreth/avalanchego/build/avalanchego +2025-07-23T19:33:26.6636270Z tests will be executed serially to minimize resource requirements +2025-07-23T19:33:47.7357852Z Running Suite: e2e test suites - /home/runner/work/coreth/coreth/avalanchego/tests/e2e +2025-07-23T19:33:47.7358651Z ====================================================================================== +2025-07-23T19:33:47.7359351Z Random Seed: 1753299207 - will randomize all specs +2025-07-23T19:33:47.7359604Z +2025-07-23T19:33:47.7359775Z Will run 4 of 14 specs +2025-07-23T19:33:47.7360127Z ------------------------------ +2025-07-23T19:33:47.7360487Z [SynchronizedBeforeSuite]  +2025-07-23T19:33:47.7361093Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/e2e_test.go:40 +2025-07-23T19:33:47.7449151Z [07-23|19:33:47.744] INFO e2e/e2e_test.go:56 setting upgrades {"upgrades": {"apricotPhase1Time":"2020-12-05T05:00:00Z","apricotPhase2Time":"2020-12-05T05:00:00Z","apricotPhase3Time":"2020-12-05T05:00:00Z","apricotPhase4Time":"2020-12-05T05:00:00Z","apricotPhase4MinPChainHeight":0,"apricotPhase5Time":"2020-12-05T05:00:00Z","apricotPhasePre6Time":"2020-12-05T05:00:00Z","apricotPhase6Time":"2020-12-05T05:00:00Z","apricotPhasePost6Time":"2020-12-05T05:00:00Z","banffTime":"2020-12-05T05:00:00Z","cortinaTime":"2020-12-05T05:00:00Z","cortinaXChainStopVertexID":"11111111111111111111111111111111LpoYY","durangoTime":"2020-12-05T05:00:00Z","etnaTime":"2020-12-05T05:00:00Z","fortunaTime":"2020-12-05T05:00:00Z","graniteTime":"9999-12-01T00:00:00Z"}} +2025-07-23T19:33:47.7454720Z [07-23|19:33:47.744] INFO e2e/helpers.go:287 waiting for network to start {"timeoutSeconds": 120} +2025-07-23T19:33:50.4809486Z [07-23|19:33:50.480] INFO tmpnet/network.go:238 preparing configuration for new network {"runtimeConfig": {"process":{"avalancheGoPath":"/home/runner/work/coreth/coreth/avalanchego/build/avalanchego","pluginDir":"/home/runner/.avalanchego/plugins"}}} +2025-07-23T19:33:50.4859407Z [07-23|19:33:50.485] INFO tmpnet/network.go:430 starting a single-node network with sybil protection disabled for quicker subnet creation +2025-07-23T19:33:50.4860960Z [07-23|19:33:50.485] INFO tmpnet/network.go:369 starting network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e", "uuid": "4a81e2e0-9ddd-4e4b-9042-64c43cc0602a"} +2025-07-23T19:33:55.0910496Z [07-23|19:33:55.090] INFO tmpnet/process_runtime.go:147 started local node {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "isEphemeral": false} +2025-07-23T19:33:55.0913677Z [07-23|19:33:55.091] INFO tmpnet/network.go:384 waiting for nodes to report healthy +2025-07-23T19:33:57.0932579Z [07-23|19:33:57.092] INFO tmpnet/network.go:955 node is healthy {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "uri": "http://127.0.0.1:41211"} +2025-07-23T19:33:57.0937442Z [07-23|19:33:57.092] INFO tmpnet/network.go:388 started network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e", "uuid": "4a81e2e0-9ddd-4e4b-9042-64c43cc0602a"} +2025-07-23T19:33:57.0944204Z [07-23|19:33:57.093] INFO tmpnet/network.go:402 metrics and logs available via grafana (collectors must be running) {"url": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299230485&to=now", "linkPath": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/metrics.txt"} +2025-07-23T19:33:57.0946634Z [07-23|19:33:57.093] INFO tmpnet/network.go:620 creating subnet {"name": "xsvm-a"} +2025-07-23T19:33:57.3579413Z [07-23|19:33:57.357] INFO tmpnet/network.go:639 created subnet {"name": "xsvm-a", "id": "azXA5XPTPqjPYN4pzBaHofqZLC3ZrEY13eM1iuYp3oVdRxV69"} +2025-07-23T19:33:57.3581528Z [07-23|19:33:57.357] INFO tmpnet/network.go:649 wrote subnet configuration {"name": "xsvm-a"} +2025-07-23T19:33:57.3582960Z [07-23|19:33:57.357] INFO tmpnet/network.go:620 creating subnet {"name": "xsvm-b"} +2025-07-23T19:33:57.4806169Z [07-23|19:33:57.480] INFO tmpnet/network.go:639 created subnet {"name": "xsvm-b", "id": "2DhzsRdU1B2qy2BZ4WgR2AKmHMfPSSmd8djFkH1y9edhMMrAD8"} +2025-07-23T19:33:57.4808254Z [07-23|19:33:57.480] INFO tmpnet/network.go:649 wrote subnet configuration {"name": "xsvm-b"} +2025-07-23T19:33:57.4817462Z [07-23|19:33:57.481] INFO tmpnet/network.go:697 adding validators for subnet {"name": "xsvm-a"} +2025-07-23T19:33:57.6071046Z [07-23|19:33:57.606] INFO tmpnet/subnet.go:196 added validator to subnet {"subnet": "xsvm-a", "nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi"} +2025-07-23T19:33:57.6072541Z [07-23|19:33:57.606] INFO tmpnet/network.go:697 adding validators for subnet {"name": "xsvm-b"} +2025-07-23T19:33:57.7309324Z [07-23|19:33:57.730] INFO tmpnet/subnet.go:196 added validator to subnet {"subnet": "xsvm-b", "nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y"} +2025-07-23T19:33:57.7311693Z [07-23|19:33:57.730] INFO tmpnet/subnet.go:261 waiting for subnet validators to become active {"subnet": "xsvm-a"} +2025-07-23T19:33:57.7319704Z [07-23|19:33:57.731] INFO tmpnet/subnet.go:281 saw the expected active validators of the subnet {"subnet": "xsvm-a"} +2025-07-23T19:33:57.7478793Z [07-23|19:33:57.747] INFO tmpnet/subnet.go:127 creating chains for subnet {"subnet": "xsvm-a"} +2025-07-23T19:33:57.8558467Z [07-23|19:33:57.855] INFO tmpnet/subnet.go:145 created chain {"chain": "SbBAb8nfj4xoTe6k1e7vhVWJ88bLNCtFEp1vPhCmKSjC9T1tc", "subnet": "xsvm-a", "vm": "v3m4wPxaHpvGr8qfMeyK6PRW3idZrPHmYcMTt7oXdK47yurVH"} +2025-07-23T19:33:57.8560997Z [07-23|19:33:57.855] INFO tmpnet/network.go:733 wrote subnet configuration {"name": "xsvm-a", "id": "azXA5XPTPqjPYN4pzBaHofqZLC3ZrEY13eM1iuYp3oVdRxV69"} +2025-07-23T19:33:57.8562660Z [07-23|19:33:57.855] INFO tmpnet/subnet.go:261 waiting for subnet validators to become active {"subnet": "xsvm-b"} +2025-07-23T19:33:57.8569697Z [07-23|19:33:57.856] INFO tmpnet/subnet.go:281 saw the expected active validators of the subnet {"subnet": "xsvm-b"} +2025-07-23T19:33:57.8749651Z [07-23|19:33:57.874] INFO tmpnet/subnet.go:127 creating chains for subnet {"subnet": "xsvm-b"} +2025-07-23T19:33:57.9852388Z [07-23|19:33:57.984] INFO tmpnet/subnet.go:145 created chain {"chain": "UtRoikpD9kByqTNfMq4xyERctyq8YyXg9nqQtmNzVRRyGbLzm", "subnet": "xsvm-b", "vm": "v3m4wPxaHpvGr8qfMeyK6PRW3idZrPHmYcMTt7oXdK47yurVH"} +2025-07-23T19:33:57.9855575Z [07-23|19:33:57.985] INFO tmpnet/network.go:733 wrote subnet configuration {"name": "xsvm-b", "id": "2DhzsRdU1B2qy2BZ4WgR2AKmHMfPSSmd8djFkH1y9edhMMrAD8"} +2025-07-23T19:33:57.9857385Z [07-23|19:33:57.985] INFO tmpnet/network.go:455 re-enabling sybil protection {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi"} +2025-07-23T19:33:57.9859259Z [07-23|19:33:57.985] INFO tmpnet/network.go:472 restarting bootstrap node {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi"} +2025-07-23T19:34:02.7079228Z [07-23|19:34:02.707] INFO tmpnet/process_runtime.go:147 started local node {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "isEphemeral": false} +2025-07-23T19:34:02.7085306Z [07-23|19:34:02.707] INFO tmpnet/network.go:483 starting remaining nodes +2025-07-23T19:34:07.3640499Z [07-23|19:34:07.363] INFO tmpnet/process_runtime.go:147 started local node {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "isEphemeral": false} +2025-07-23T19:34:07.3643726Z [07-23|19:34:07.363] INFO tmpnet/network.go:384 waiting for nodes to report healthy +2025-07-23T19:34:09.3683531Z [07-23|19:34:09.368] INFO tmpnet/network.go:955 node is healthy {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "uri": "http://127.0.0.1:34983"} +2025-07-23T19:34:12.7662833Z [07-23|19:34:12.765] INFO tmpnet/network.go:955 node is healthy {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "uri": "http://127.0.0.1:43559"} +2025-07-23T19:34:12.7665484Z [07-23|19:34:12.766] INFO tmpnet/network.go:388 started network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e", "uuid": "4a81e2e0-9ddd-4e4b-9042-64c43cc0602a"} +2025-07-23T19:34:12.7671155Z [07-23|19:34:12.766] INFO tmpnet/network.go:402 metrics and logs available via grafana (collectors must be running) {"url": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299242707&to=now", "linkPath": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/metrics.txt"} +2025-07-23T19:34:12.7674322Z [07-23|19:34:12.766] INFO e2e/helpers.go:308 network started successfully +2025-07-23T19:34:12.7680774Z [07-23|19:34:12.767] INFO e2e/env.go:229 network nodes are available {"uris": [{"NodeID":"NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y","URI":"http://127.0.0.1:34983"},{"NodeID":"NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi","URI":"http://127.0.0.1:43559"}]} +2025-07-23T19:34:12.7691585Z [SynchronizedBeforeSuite] PASSED [25.033 seconds] +2025-07-23T19:34:12.7692275Z ------------------------------ +2025-07-23T19:34:12.7692888Z SSSS +2025-07-23T19:34:12.7693478Z ------------------------------ +2025-07-23T19:34:12.7694889Z [C-Chain] [Interchain Workflow] should ensure that funds can be transferred from the C-Chain to the X-Chain and the P-Chain [c] +2025-07-23T19:34:12.7696429Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/c/interchain_workflow.go:28 +2025-07-23T19:34:12.7697385Z STEP: initializing a new eth client @ 07/23/25 19:34:12.769 +2025-07-23T19:34:12.7706381Z INFO targeting random node {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "uri": "http://127.0.0.1:34983"} +2025-07-23T19:34:12.7708052Z INFO initializing a new eth client {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "URI": "http://127.0.0.1:34983"} +2025-07-23T19:34:12.7713067Z STEP: allocating a pre-funded key to send from and a recipient key to deliver to @ 07/23/25 19:34:12.771 +2025-07-23T19:34:12.7714679Z STEP: sending funds from one address to another on the C-Chain @ 07/23/25 19:34:12.771 +2025-07-23T19:34:12.7730612Z INFO suggested gas price {"price": "2"} +2025-07-23T19:34:12.7737223Z INFO sending eth transaction {"txID": "0x5407ba46e9f63cc2fc094478fabd80fd54b68f233a34c02de7b93d529f3d42af"} +2025-07-23T19:34:13.2776975Z INFO eth transaction accepted {"txID": "0x5407ba46e9f63cc2fc094478fabd80fd54b68f233a34c02de7b93d529f3d42af", "gasUsed": 21000, "gasPrice": "4", "blockNumber": "1"} +2025-07-23T19:34:13.2780183Z STEP: waiting for the C-Chain recipient address to have received the sent funds @ 07/23/25 19:34:13.277 +2025-07-23T19:34:13.2783653Z STEP: initializing a keychain and associated wallet @ 07/23/25 19:34:13.278 +2025-07-23T19:34:13.2785762Z INFO initializing a new wallet {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "URI": "http://127.0.0.1:34983"} +2025-07-23T19:34:13.2958369Z INFO wallet balances in nAVAX {"xChain": 30000000000000000, "pChain": 20000000000000000} +2025-07-23T19:34:13.2959557Z STEP: defining common configuration @ 07/23/25 19:34:13.295 +2025-07-23T19:34:13.2960676Z STEP: exporting AVAX from the C-Chain to the X-Chain @ 07/23/25 19:34:13.295 +2025-07-23T19:34:13.2967419Z INFO suggested gas price {"price": "2"} +2025-07-23T19:34:13.4557531Z INFO issued transaction {"chainAlias": "C", "txID": "2uUxFDhG8ruqfKpxJuLq68HbAJtWgzUKMHMu9MeedJcKtT76d", "duration": "158.523888ms"} +2025-07-23T19:34:14.1777311Z INFO confirmed transaction {"chainAlias": "C", "txID": "2uUxFDhG8ruqfKpxJuLq68HbAJtWgzUKMHMu9MeedJcKtT76d", "totalDuration": "880.572225ms", "confirmationDuration": "722.048337ms"} +2025-07-23T19:34:14.1779578Z STEP: importing AVAX from the C-Chain to the X-Chain @ 07/23/25 19:34:14.177 +2025-07-23T19:34:14.1837184Z INFO issued transaction {"chainAlias": "X", "txID": "KgJHaeFk7kKLkS35bCEu4Yv5p6Ja6b34N8gKE1xDEvA396BHF", "duration": "5.767616ms"} +2025-07-23T19:34:14.2351604Z INFO confirmed transaction {"chainAlias": "X", "txID": "KgJHaeFk7kKLkS35bCEu4Yv5p6Ja6b34N8gKE1xDEvA396BHF", "totalDuration": "57.167164ms", "confirmationDuration": "51.399548ms"} +2025-07-23T19:34:14.2352970Z STEP: checking that the recipient address has received imported funds on the X-Chain @ 07/23/25 19:34:14.234 +2025-07-23T19:34:14.2353815Z STEP: exporting AVAX from the C-Chain to the P-Chain @ 07/23/25 19:34:14.234 +2025-07-23T19:34:14.2356915Z INFO suggested gas price {"price": "2"} +2025-07-23T19:34:14.2461672Z INFO issued transaction {"chainAlias": "C", "txID": "2HxdBSFBNJtEJcg2hquiwbF6z6uVzuWpGpnsKvTXvhabUP1WiQ", "duration": "10.113417ms"} +2025-07-23T19:34:16.1793006Z INFO confirmed transaction {"chainAlias": "C", "txID": "2HxdBSFBNJtEJcg2hquiwbF6z6uVzuWpGpnsKvTXvhabUP1WiQ", "totalDuration": "1.94258288s", "confirmationDuration": "1.932469463s"} +2025-07-23T19:34:16.1795402Z STEP: importing AVAX from the C-Chain to the P-Chain @ 07/23/25 19:34:16.178 +2025-07-23T19:34:16.1851377Z INFO issued transaction {"chainAlias": "P", "txID": "fBiCpBcpJ1oBL21CmxLb7bhksfYhAGtwwi8ek61qUQCtQK43R", "duration": "6.199959ms"} +2025-07-23T19:34:16.3466786Z INFO confirmed transaction {"chainAlias": "P", "txID": "fBiCpBcpJ1oBL21CmxLb7bhksfYhAGtwwi8ek61qUQCtQK43R", "totalDuration": "167.535408ms", "confirmationDuration": "161.335449ms"} +2025-07-23T19:34:16.3469709Z STEP: checking that the recipient address has received imported funds on the P-Chain @ 07/23/25 19:34:16.346 +2025-07-23T19:34:16.3478853Z STEP: checking if bootstrap is possible with the current network state @ 07/23/25 19:34:16.347 +2025-07-23T19:34:21.1576975Z INFO started local node {"nodeID": "NodeID-QAv9x5ptL42tbpP8ojrEcjYQNEEbpCB2B", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-QAv9x5ptL42tbpP8ojrEcjYQNEEbpCB2B", "isEphemeral": true} +2025-07-23T19:34:23.0636672Z INFO metrics and logs available via grafana (collectors must be running) {"uri": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299252769&to=1753299275062"} +2025-07-23T19:34:23.2756637Z • [10.506 seconds] +2025-07-23T19:34:23.2757627Z ------------------------------ +2025-07-23T19:34:23.2759918Z [P-Chain] [Interchain Workflow] should ensure that funds can be transferred from the P-Chain to the X-Chain and the C-Chain [uses-c, p] +2025-07-23T19:34:23.2762148Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/p/interchain_workflow.go:34 +2025-07-23T19:34:23.2772730Z STEP: checking that the network has a compatible minimum stake duration @ 07/23/25 19:34:23.277 +2025-07-23T19:34:23.2774534Z STEP: creating wallet with a funded key to send from and recipient key to deliver to @ 07/23/25 19:34:23.277 +2025-07-23T19:34:23.2789671Z INFO targeting random node {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "uri": "http://127.0.0.1:34983"} +2025-07-23T19:34:23.2791498Z INFO initializing a new wallet {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "URI": "http://127.0.0.1:34983"} +2025-07-23T19:34:23.2971723Z INFO wallet balances in nAVAX {"xChain": 30000000000000000, "pChain": 20000000000000000} +2025-07-23T19:34:23.2972945Z STEP: defining common configuration @ 07/23/25 19:34:23.296 +2025-07-23T19:34:23.2980373Z STEP: adding new node and waiting for it to report healthy @ 07/23/25 19:34:23.296 +2025-07-23T19:34:28.1179084Z INFO started local node {"nodeID": "NodeID-8zk2K7Bj2G9iZznu7zywcz1Z76x8bsmGj", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-8zk2K7Bj2G9iZznu7zywcz1Z76x8bsmGj", "isEphemeral": true} +2025-07-23T19:34:30.0190888Z STEP: retrieving new node's id and pop @ 07/23/25 19:34:30.018 +2025-07-23T19:34:30.0200225Z STEP: adding the new node as a validator @ 07/23/25 19:34:30.019 +2025-07-23T19:34:30.0296785Z INFO issued transaction {"chainAlias": "P", "txID": "2MsXTphp868AE3cYav2MjXuD2N6gFp3Z33Vjx5Pjit937aF9SN", "duration": "9.275622ms"} +2025-07-23T19:34:30.3536912Z INFO confirmed transaction {"chainAlias": "P", "txID": "2MsXTphp868AE3cYav2MjXuD2N6gFp3Z33Vjx5Pjit937aF9SN", "totalDuration": "331.877623ms", "confirmationDuration": "322.602001ms"} +2025-07-23T19:34:30.3539177Z STEP: adding a delegator to the new node @ 07/23/25 19:34:30.352 +2025-07-23T19:34:30.3647150Z INFO issued transaction {"chainAlias": "P", "txID": "cixyaagzkWQHbhMee9RGYAa4RKiyFCNbKYVnBvPzX3QQ81Hu7", "duration": "12.016242ms"} +2025-07-23T19:34:30.8463163Z INFO confirmed transaction {"chainAlias": "P", "txID": "cixyaagzkWQHbhMee9RGYAa4RKiyFCNbKYVnBvPzX3QQ81Hu7", "totalDuration": "493.497018ms", "confirmationDuration": "481.480776ms"} +2025-07-23T19:34:30.8464568Z STEP: exporting AVAX from the P-Chain to the X-Chain @ 07/23/25 19:34:30.846 +2025-07-23T19:34:30.8526235Z INFO issued transaction {"chainAlias": "P", "txID": "PvhrWKfrL49y26v9Lo6PNYLFbbauSig4fsyDwJx5jyVuzJXnx", "duration": "6.120529ms"} +2025-07-23T19:34:30.9161450Z INFO confirmed transaction {"chainAlias": "P", "txID": "PvhrWKfrL49y26v9Lo6PNYLFbbauSig4fsyDwJx5jyVuzJXnx", "totalDuration": "68.311332ms", "confirmationDuration": "62.190803ms"} +2025-07-23T19:34:30.9164062Z STEP: importing AVAX from the P-Chain to the X-Chain @ 07/23/25 19:34:30.914 +2025-07-23T19:34:30.9244909Z INFO issued transaction {"chainAlias": "X", "txID": "zJrgtN1tRQvWS4tC2wKvfoNJCvze4oZLbWLLWs8FFC9WdgdAS", "duration": "9.206996ms"} +2025-07-23T19:34:30.9969216Z INFO confirmed transaction {"chainAlias": "X", "txID": "zJrgtN1tRQvWS4tC2wKvfoNJCvze4oZLbWLLWs8FFC9WdgdAS", "totalDuration": "80.550747ms", "confirmationDuration": "71.343751ms"} +2025-07-23T19:34:30.9971598Z STEP: checking that the recipient address has received imported funds on the X-Chain @ 07/23/25 19:34:30.995 +2025-07-23T19:34:30.9973289Z STEP: exporting AVAX from the P-Chain to the C-Chain @ 07/23/25 19:34:30.995 +2025-07-23T19:34:31.0040078Z INFO issued transaction {"chainAlias": "P", "txID": "uk8oAgAT8VEvSmtEXhbjGyazLe8UC4vg7hFxYjYr6CvPYYZxu", "duration": "7.842388ms"} +2025-07-23T19:34:31.0883047Z INFO confirmed transaction {"chainAlias": "P", "txID": "uk8oAgAT8VEvSmtEXhbjGyazLe8UC4vg7hFxYjYr6CvPYYZxu", "totalDuration": "91.799036ms", "confirmationDuration": "83.956648ms"} +2025-07-23T19:34:31.0893634Z STEP: initializing a new eth client @ 07/23/25 19:34:31.087 +2025-07-23T19:34:31.0895845Z INFO initializing a new eth client {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "URI": "http://127.0.0.1:34983"} +2025-07-23T19:34:31.0897846Z STEP: importing AVAX from the P-Chain to the C-Chain @ 07/23/25 19:34:31.089 +2025-07-23T19:34:31.0930522Z INFO suggested gas price {"price": "2"} +2025-07-23T19:34:31.1016917Z INFO issued transaction {"chainAlias": "C", "txID": "22SdoY9fepXtuoW6Jbe8MF98iQcHpTQWHSTQAJ8AoF3yXxJoC3", "duration": "8.609553ms"} +2025-07-23T19:34:31.1656268Z INFO confirmed transaction {"chainAlias": "C", "txID": "22SdoY9fepXtuoW6Jbe8MF98iQcHpTQWHSTQAJ8AoF3yXxJoC3", "totalDuration": "70.189424ms", "confirmationDuration": "61.579871ms"} +2025-07-23T19:34:31.1659204Z STEP: checking that the recipient address has received imported funds on the C-Chain @ 07/23/25 19:34:31.163 +2025-07-23T19:34:31.1666865Z STEP: stopping validator node to free up resources for a bootstrap check @ 07/23/25 19:34:31.166 +2025-07-23T19:34:31.3460803Z STEP: checking if bootstrap is possible with the current network state @ 07/23/25 19:34:31.345 +2025-07-23T19:34:36.0866850Z INFO started local node {"nodeID": "NodeID-LTVxsGkZ8smzUCEVMEmaxQbE2g2SyWoY5", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-LTVxsGkZ8smzUCEVMEmaxQbE2g2SyWoY5", "isEphemeral": true} +2025-07-23T19:34:43.9932858Z INFO metrics and logs available via grafana (collectors must be running) {"uri": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299263275&to=1753299295990"} +2025-07-23T19:34:44.1868002Z INFO shutting down ephemeral node {"nodeID": "NodeID-8zk2K7Bj2G9iZznu7zywcz1Z76x8bsmGj"} +2025-07-23T19:34:44.1869408Z • [20.911 seconds] +2025-07-23T19:34:44.1870194Z ------------------------------ +2025-07-23T19:34:44.1871094Z SSS +2025-07-23T19:34:44.1871962Z ------------------------------ +2025-07-23T19:34:44.1873797Z [C-Chain] [Dynamic Fees] should ensure that the gas price is affected by load [c] +2025-07-23T19:34:44.1876198Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/c/dynamic_fees.go:58 +2025-07-23T19:34:44.1877815Z STEP: creating a new private network to ensure isolation from other tests @ 07/23/25 19:34:44.186 +2025-07-23T19:34:44.1906215Z INFO waiting for network to start {"timeoutSeconds": 120} +2025-07-23T19:34:44.1908616Z INFO preparing configuration for new network {"runtimeConfig": {"process":{"avalancheGoPath":"/home/runner/work/coreth/coreth/avalanchego/build/avalanchego","pluginDir":"/home/runner/.avalanchego/plugins"}}} +2025-07-23T19:34:44.1956723Z INFO starting network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees", "uuid": "bfb8e363-92fb-4e6b-a37c-4d53693fdcce"} +2025-07-23T19:34:46.1471689Z INFO started local node {"nodeID": "NodeID-JuB2rckCL8FLYwVy1N5fcwdUvEtCvzdNd", "dataDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees/NodeID-JuB2rckCL8FLYwVy1N5fcwdUvEtCvzdNd", "isEphemeral": false} +2025-07-23T19:34:48.0493579Z INFO started local node {"nodeID": "NodeID-Dz4rLAGba3Mnd9d7gUMvx8VxutZxXY5C4", "dataDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees/NodeID-Dz4rLAGba3Mnd9d7gUMvx8VxutZxXY5C4", "isEphemeral": false} +2025-07-23T19:34:48.0497224Z INFO waiting for nodes to report healthy +2025-07-23T19:34:50.0525144Z INFO node is healthy {"nodeID": "NodeID-Dz4rLAGba3Mnd9d7gUMvx8VxutZxXY5C4", "uri": "http://127.0.0.1:35543"} +2025-07-23T19:34:54.0519188Z INFO node is healthy {"nodeID": "NodeID-JuB2rckCL8FLYwVy1N5fcwdUvEtCvzdNd", "uri": "http://127.0.0.1:36927"} +2025-07-23T19:34:54.0522715Z INFO started network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees", "uuid": "bfb8e363-92fb-4e6b-a37c-4d53693fdcce"} +2025-07-23T19:34:54.0529962Z INFO metrics and logs available via grafana (collectors must be running) {"url": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7Cbfb8e363-92fb-4e6b-a37c-4d53693fdcce&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299284195&to=now", "linkPath": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees/metrics.txt"} +2025-07-23T19:34:54.0534161Z INFO network started successfully +2025-07-23T19:34:54.0535042Z STEP: allocating a pre-funded key @ 07/23/25 19:34:54.051 +2025-07-23T19:34:54.0536062Z STEP: initializing a coreth client @ 07/23/25 19:34:54.051 +2025-07-23T19:34:54.0537692Z INFO initializing a new eth client {"nodeID": "NodeID-JuB2rckCL8FLYwVy1N5fcwdUvEtCvzdNd", "URI": "http://127.0.0.1:36927"} +2025-07-23T19:34:54.0538988Z STEP: initializing a transaction signer @ 07/23/25 19:34:54.052 +2025-07-23T19:34:54.0540148Z STEP: checking if Fortuna is activated @ 07/23/25 19:34:54.053 +2025-07-23T19:34:54.0548069Z INFO set gas limit {"gasLimit": 10000000} +2025-07-23T19:34:54.0548936Z STEP: deploying an expensive contract @ 07/23/25 19:34:54.054 +2025-07-23T19:34:54.0558817Z INFO sending eth transaction {"txID": "0x3fecd6016dfff7e035adf798f9687c45aba5fa5a0254ccb2cf1f8e69474a8c82"} +2025-07-23T19:34:54.5598210Z INFO eth transaction accepted {"txID": "0x3fecd6016dfff7e035adf798f9687c45aba5fa5a0254ccb2cf1f8e69474a8c82", "gasUsed": 79365, "gasPrice": "2", "blockNumber": "1"} +2025-07-23T19:34:54.5601782Z INFO initializing gas prices {"initialPrice": "1", "targetPrice": "2"} +2025-07-23T19:34:54.5603082Z STEP: calling the contract repeatedly until a sufficient gas price increase is detected @ 07/23/25 19:34:54.56 +2025-07-23T19:34:54.5609084Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:34:54.5616728Z INFO sending eth transaction {"txID": "0x3dd9f7ff4dcbab12d2b65af8b7aaae3f1e410c53a1abb0122a86fc1a9252432c"} +2025-07-23T19:34:57.5656774Z INFO eth transaction accepted {"txID": "0x3dd9f7ff4dcbab12d2b65af8b7aaae3f1e410c53a1abb0122a86fc1a9252432c", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "2"} +2025-07-23T19:34:57.5659790Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:34:57.5668457Z INFO sending eth transaction {"txID": "0x0d407c5d1067a2139ad301731c6a62a93c0e8c800f1cb9818f736d226e12693a"} +2025-07-23T19:35:02.5709491Z INFO eth transaction accepted {"txID": "0x0d407c5d1067a2139ad301731c6a62a93c0e8c800f1cb9818f736d226e12693a", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "3"} +2025-07-23T19:35:02.5713743Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:02.5720920Z INFO sending eth transaction {"txID": "0xa4135274bdb8ebae625783f21673c746acfa8e4785d9646b7566f96aa92a6729"} +2025-07-23T19:35:07.5760117Z INFO eth transaction accepted {"txID": "0xa4135274bdb8ebae625783f21673c746acfa8e4785d9646b7566f96aa92a6729", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "4"} +2025-07-23T19:35:07.5764693Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:07.5772038Z INFO sending eth transaction {"txID": "0x22759d8e43ecbb528caeabf8131f99541bfe2c557df068a0fb670dd19c6a42bd"} +2025-07-23T19:35:12.5812938Z INFO eth transaction accepted {"txID": "0x22759d8e43ecbb528caeabf8131f99541bfe2c557df068a0fb670dd19c6a42bd", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "5"} +2025-07-23T19:35:12.5816576Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:12.5823124Z INFO sending eth transaction {"txID": "0xacd2073e0db59b33c9dcd24716a09257121fe4644e7acb2e2ba0a60c350141dc"} +2025-07-23T19:35:17.0887138Z INFO eth transaction accepted {"txID": "0xacd2073e0db59b33c9dcd24716a09257121fe4644e7acb2e2ba0a60c350141dc", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "6"} +2025-07-23T19:35:17.0897005Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:17.0906015Z INFO sending eth transaction {"txID": "0x2399d91a6ccf44e852b5bf752067910f02400363116ff702466c9e7fb7be1a8b"} +2025-07-23T19:35:22.5944396Z INFO eth transaction accepted {"txID": "0x2399d91a6ccf44e852b5bf752067910f02400363116ff702466c9e7fb7be1a8b", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "7"} +2025-07-23T19:35:22.5952936Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:22.5961653Z INFO sending eth transaction {"txID": "0xa5ad42c9657853d0306332feaf6b077f9b0f87bb7b15c9e4b709c299fb64d271"} +2025-07-23T19:35:27.5996059Z INFO eth transaction accepted {"txID": "0xa5ad42c9657853d0306332feaf6b077f9b0f87bb7b15c9e4b709c299fb64d271", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "8"} +2025-07-23T19:35:27.6000601Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:27.6008886Z INFO sending eth transaction {"txID": "0x873fbd4217601bc5f7f68668f2f963d76e432cf4b059af71e1cc693edfec9e15"} +2025-07-23T19:35:32.6041137Z INFO eth transaction accepted {"txID": "0x873fbd4217601bc5f7f68668f2f963d76e432cf4b059af71e1cc693edfec9e15", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "9"} +2025-07-23T19:35:32.6044409Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:32.6052141Z INFO sending eth transaction {"txID": "0x6528cb3bb120573c71b298b40003ee25fec891026b46b38273472825a1884e7f"} +2025-07-23T19:35:37.6084533Z INFO eth transaction accepted {"txID": "0x6528cb3bb120573c71b298b40003ee25fec891026b46b38273472825a1884e7f", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "10"} +2025-07-23T19:35:37.6088178Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:37.6094766Z INFO sending eth transaction {"txID": "0x106e6cb6e0ca075337548329e16b002658a1bd6d866af4676227227e6733e028"} +2025-07-23T19:35:42.1126558Z INFO eth transaction accepted {"txID": "0x106e6cb6e0ca075337548329e16b002658a1bd6d866af4676227227e6733e028", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "11"} +2025-07-23T19:35:42.1130002Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:42.1137117Z INFO sending eth transaction {"txID": "0xc8a4fdb11a27e1aafc69d48c7bba2c71ebc4ca2b2f8a258f1191bbb0466a6cc0"} +2025-07-23T19:35:47.6183861Z INFO eth transaction accepted {"txID": "0xc8a4fdb11a27e1aafc69d48c7bba2c71ebc4ca2b2f8a258f1191bbb0466a6cc0", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "12"} +2025-07-23T19:35:47.6189060Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} +2025-07-23T19:35:47.6195328Z INFO sending eth transaction {"txID": "0xdfefbf7ba237069e65f75c54fbdd9c8f1744fc543ff6c9f330d4da0f4a36b4ca"} +2025-07-23T19:35:52.6230817Z INFO eth transaction accepted {"txID": "0xdfefbf7ba237069e65f75c54fbdd9c8f1744fc543ff6c9f330d4da0f4a36b4ca", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "13"} +2025-07-23T19:35:52.6234339Z INFO gas price has increased {"initialPrice": "1", "targetPrice": "2", "newPrice": "2"} +2025-07-23T19:35:52.6236188Z STEP: sending small transactions until a sufficient gas price decrease is detected @ 07/23/25 19:35:52.623 +2025-07-23T19:35:52.6239818Z INFO gas price hasn't sufficiently decreased {"initialPrice": "1", "newPrice": "2"} +2025-07-23T19:35:52.6247988Z INFO sending eth transaction {"txID": "0x6ee6c0a4e194c46c958beff957b484edacb4e4cbb30ffa08a6609057b3bd73f3"} +2025-07-23T19:35:54.6288217Z INFO eth transaction accepted {"txID": "0x6ee6c0a4e194c46c958beff957b484edacb4e4cbb30ffa08a6609057b3bd73f3", "gasUsed": 21000, "gasPrice": "3", "blockNumber": "14"} +2025-07-23T19:35:54.6292193Z INFO gas price hasn't sufficiently decreased {"initialPrice": "1", "newPrice": "2"} +2025-07-23T19:35:54.6299486Z INFO sending eth transaction {"txID": "0x3c0ee96a4070a08e6f9722e1473d45f88ef93623181536112594404cb2f55df5"} +2025-07-23T19:35:56.6339830Z INFO eth transaction accepted {"txID": "0x3c0ee96a4070a08e6f9722e1473d45f88ef93623181536112594404cb2f55df5", "gasUsed": 21000, "gasPrice": "2", "blockNumber": "15"} +2025-07-23T19:35:56.6344279Z INFO gas price has decreased {"initialPrice": "1", "newPrice": "1"} +2025-07-23T19:35:56.6346621Z STEP: checking if bootstrap is possible with the current network state @ 07/23/25 19:35:56.634 +2025-07-23T19:35:58.6365825Z INFO started local node {"nodeID": "NodeID-L9kznVCrLKpnSNVGhs7Q9AjyxXnALFs1z", "dataDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees/NodeID-L9kznVCrLKpnSNVGhs7Q9AjyxXnALFs1z", "isEphemeral": true} +2025-07-23T19:36:06.7039428Z INFO shutting down network +2025-07-23T19:36:06.9767739Z • [82.790 seconds] +2025-07-23T19:36:06.9768580Z ------------------------------ +2025-07-23T19:36:06.9770714Z [X-Chain] [Interchain Workflow] should ensure that funds can be transferred from the X-Chain to the C-Chain and the P-Chain [uses-c, x] +2025-07-23T19:36:06.9773223Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/x/interchain_workflow.go:28 +2025-07-23T19:36:06.9790510Z INFO targeting random node {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "uri": "http://127.0.0.1:43559"} +2025-07-23T19:36:06.9792283Z STEP: creating wallet with a funded key to send from and recipient key to deliver to @ 07/23/25 19:36:06.978 +2025-07-23T19:36:06.9794369Z INFO initializing a new wallet {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "URI": "http://127.0.0.1:43559"} +2025-07-23T19:36:06.9981103Z INFO wallet balances in nAVAX {"xChain": 30000000000000000, "pChain": 19999979999918852} +2025-07-23T19:36:06.9982289Z STEP: defining common configuration @ 07/23/25 19:36:06.997 +2025-07-23T19:36:06.9983684Z STEP: sending funds from one address to another on the X-Chain @ 07/23/25 19:36:06.998 +2025-07-23T19:36:07.0036150Z INFO issued transaction {"chainAlias": "X", "txID": "2agMtTCCVt5pYgY86u1XAP4P9T6pQo7ByGaZMuJsPm2HC3oWiZ", "duration": "5.170109ms"} +2025-07-23T19:36:07.0450873Z INFO confirmed transaction {"chainAlias": "X", "txID": "2agMtTCCVt5pYgY86u1XAP4P9T6pQo7ByGaZMuJsPm2HC3oWiZ", "totalDuration": "46.549486ms", "confirmationDuration": "41.379377ms"} +2025-07-23T19:36:07.0454258Z STEP: checking that the X-Chain recipient address has received the sent funds @ 07/23/25 19:36:07.044 +2025-07-23T19:36:07.0456185Z STEP: exporting AVAX from the X-Chain to the C-Chain @ 07/23/25 19:36:07.044 +2025-07-23T19:36:07.0564809Z INFO issued transaction {"chainAlias": "X", "txID": "2MNiwCxtDiuWKPD8hVe6DazmMiJjMLn9z8A46B44nTJrW9MSdG", "duration": "10.870273ms"} +2025-07-23T19:36:07.1125085Z INFO confirmed transaction {"chainAlias": "X", "txID": "2MNiwCxtDiuWKPD8hVe6DazmMiJjMLn9z8A46B44nTJrW9MSdG", "totalDuration": "66.102652ms", "confirmationDuration": "55.232379ms"} +2025-07-23T19:36:07.1127081Z STEP: initializing a new eth client @ 07/23/25 19:36:07.111 +2025-07-23T19:36:07.1129137Z INFO initializing a new eth client {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "URI": "http://127.0.0.1:43559"} +2025-07-23T19:36:07.1130836Z STEP: importing AVAX from the X-Chain to the C-Chain @ 07/23/25 19:36:07.111 +2025-07-23T19:36:07.1133245Z INFO suggested gas price {"price": "2"} +2025-07-23T19:36:07.1204882Z INFO issued transaction {"chainAlias": "C", "txID": "2g4rUn1YRdmGyP5vcEEvVWyAuq3amXSgT675x1MxWQmpruVV3c", "duration": "6.980125ms"} +2025-07-23T19:36:07.1719323Z INFO confirmed transaction {"chainAlias": "C", "txID": "2g4rUn1YRdmGyP5vcEEvVWyAuq3amXSgT675x1MxWQmpruVV3c", "totalDuration": "58.376929ms", "confirmationDuration": "51.396804ms"} +2025-07-23T19:36:07.1721036Z STEP: checking that the recipient address has received imported funds on the C-Chain @ 07/23/25 19:36:07.171 +2025-07-23T19:36:07.1725348Z STEP: exporting AVAX from the X-Chain to the P-Chain @ 07/23/25 19:36:07.172 +2025-07-23T19:36:07.1787012Z INFO issued transaction {"chainAlias": "X", "txID": "UJdMohTjLmQnbGqSCLGDDkpzvECpDQDybUMnoBGWRKmautcmz", "duration": "5.908658ms"} +2025-07-23T19:36:07.7204406Z INFO confirmed transaction {"chainAlias": "X", "txID": "UJdMohTjLmQnbGqSCLGDDkpzvECpDQDybUMnoBGWRKmautcmz", "totalDuration": "547.497751ms", "confirmationDuration": "541.589093ms"} +2025-07-23T19:36:07.7205870Z STEP: importing AVAX from the X-Chain to the P-Chain @ 07/23/25 19:36:07.72 +2025-07-23T19:36:07.7290180Z INFO issued transaction {"chainAlias": "P", "txID": "gug3S9tdw2ZAFCBcNkD5dMrNCNd9gKNpdk8DKaF6sAC1zrkjD", "duration": "5.735355ms"} +2025-07-23T19:36:08.1603350Z INFO confirmed transaction {"chainAlias": "P", "txID": "gug3S9tdw2ZAFCBcNkD5dMrNCNd9gKNpdk8DKaF6sAC1zrkjD", "totalDuration": "439.524931ms", "confirmationDuration": "433.789576ms"} +2025-07-23T19:36:08.1606087Z STEP: checking that the recipient address has received imported funds on the P-Chain @ 07/23/25 19:36:08.159 +2025-07-23T19:36:08.1622548Z STEP: checking if bootstrap is possible with the current network state @ 07/23/25 19:36:08.162 +2025-07-23T19:36:12.9117326Z INFO started local node {"nodeID": "NodeID-Mrw4ywPLFpxivCZyoGELNcNnFqiyAbEhK", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-Mrw4ywPLFpxivCZyoGELNcNnFqiyAbEhK", "isEphemeral": true} +2025-07-23T19:36:14.8187674Z INFO metrics and logs available via grafana (collectors must be running) {"uri": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299366976&to=1753299386816"} +2025-07-23T19:36:15.0137304Z • [8.037 seconds] +2025-07-23T19:36:15.0138290Z ------------------------------ +2025-07-23T19:36:15.0139155Z SSS +2025-07-23T19:36:15.0140231Z ------------------------------ +2025-07-23T19:36:15.0140977Z [DeferCleanup (Suite)]  +2025-07-23T19:36:15.0142430Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:36:15.0145327Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:36:15.0146279Z ------------------------------ +2025-07-23T19:36:15.0146866Z [DeferCleanup (Suite)]  +2025-07-23T19:36:15.0148193Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:36:15.0149434Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:36:15.0150517Z ------------------------------ +2025-07-23T19:36:15.0151504Z [DeferCleanup (Suite)]  +2025-07-23T19:36:15.0153227Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:36:15.0154719Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:36:15.0155300Z ------------------------------ +2025-07-23T19:36:15.0155772Z [DeferCleanup (Suite)]  +2025-07-23T19:36:15.0156686Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:36:15.0157961Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:36:15.0158606Z ------------------------------ +2025-07-23T19:36:15.0159067Z [DeferCleanup (Suite)]  +2025-07-23T19:36:15.0159946Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:36:15.0161001Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:36:15.0161811Z ------------------------------ +2025-07-23T19:36:15.0162449Z [DeferCleanup (Suite)]  +2025-07-23T19:36:15.0163698Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:36:15.0165603Z [07-23|19:36:15.013] INFO e2e/helpers.go:346 shutting down network +2025-07-23T19:36:15.3482533Z [DeferCleanup (Suite)] PASSED [0.334 seconds] +2025-07-23T19:36:15.3483824Z ------------------------------ +2025-07-23T19:36:15.3484837Z [DeferCleanup (Suite)]  +2025-07-23T19:36:15.3486017Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:36:15.3487195Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:36:15.3487893Z ------------------------------ +2025-07-23T19:36:15.3488520Z +2025-07-23T19:36:15.3488852Z Ran 4 of 14 Specs in 147.613 seconds +2025-07-23T19:36:15.3490046Z SUCCESS! -- 4 Passed | 0 Failed | 0 Pending | 10 Skipped +2025-07-23T19:36:15.3490891Z PASS +2025-07-23T19:36:15.3648398Z +2025-07-23T19:36:15.3648753Z Ginkgo ran 1 suite in 2m47.789871904s +2025-07-23T19:36:15.3649247Z Test Suite Passed +2025-07-23T19:36:15.3730149Z ##[group]Run actions/upload-artifact@v4 +2025-07-23T19:36:15.3730422Z with: +2025-07-23T19:36:15.3730596Z name: -tmpnet-data +2025-07-23T19:36:15.3731000Z path: ~/.tmpnet/networks +~/.tmpnet/prometheus/prometheus.log +~/.tmpnet/promtail/promtail.log + +2025-07-23T19:36:15.3731464Z if-no-files-found: error +2025-07-23T19:36:15.3731678Z compression-level: 6 +2025-07-23T19:36:15.3731877Z overwrite: false +2025-07-23T19:36:15.3732080Z include-hidden-files: false +2025-07-23T19:36:15.3732307Z env: +2025-07-23T19:36:15.3732482Z TMPDIR: /home/runner/work/_temp +2025-07-23T19:36:15.3732711Z ##[endgroup] +2025-07-23T19:36:15.6468510Z Multiple search paths detected. Calculating the least common ancestor of all paths +2025-07-23T19:36:15.6471127Z The least common ancestor is /home/runner/.tmpnet. This will be the root directory of the artifact +2025-07-23T19:36:15.6472414Z With the provided path, there will be 139 files uploaded +2025-07-23T19:36:15.6478146Z Artifact name is valid! +2025-07-23T19:36:15.6479262Z Root directory input is valid! +2025-07-23T19:36:15.7712922Z Beginning upload of artifact content to blob storage +2025-07-23T19:36:16.4020060Z Uploaded bytes 2284192 +2025-07-23T19:36:16.4154911Z Finished uploading artifact content to blob storage! +2025-07-23T19:36:16.4158599Z SHA256 digest of uploaded artifact zip is adccef765d38c6f02b712eea815ea5cadf242aa659cc869ec5b99c6fca674942 +2025-07-23T19:36:16.4160709Z Finalizing artifact upload +2025-07-23T19:36:16.5300822Z Artifact -tmpnet-data.zip successfully finalized. Artifact ID 3600349177 +2025-07-23T19:36:16.5302552Z Artifact -tmpnet-data has been successfully uploaded! Final size is 2284192 bytes. Artifact ID is 3600349177 +2025-07-23T19:36:16.5309742Z Artifact download URL: https://github.com/ava-labs/coreth/actions/runs/16480013789/artifacts/3600349177 diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/10_Run ._scripts_run_task.sh build-test.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/10_Run ._scripts_run_task.sh build-test.txt new file mode 100644 index 0000000000..c1a621fbab --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (macos-latest)/10_Run ._scripts_run_task.sh build-test.txt @@ -0,0 +1,16 @@ +2025-07-23T19:29:51.2280730Z ##[group]Run ./scripts/run_task.sh build-test +2025-07-23T19:29:51.2281080Z ./scripts/run_task.sh build-test +2025-07-23T19:29:51.2415470Z shell: /bin/bash -e {0} +2025-07-23T19:29:51.2415660Z env: +2025-07-23T19:29:51.2415810Z TIMEOUT: +2025-07-23T19:29:51.2415930Z ##[endgroup] +2025-07-23T19:29:51.8737350Z task: [build-test] ./scripts/build_test.sh +2025-07-23T19:29:51.9016910Z Using branch: d85ec03 +2025-07-23T19:29:52.2501390Z Test run 1 of 4 +2025-07-23T19:29:52.2501750Z Getting expected test list... +2025-07-23T19:29:58.6019610Z Expected tests: 1 tests +2025-07-23T19:29:58.6019970Z Running tests... +2025-07-23T19:35:29.6858340Z jq: parse error: Invalid numeric literal at line 1, column 2 +2025-07-23T19:35:29.6980780Z task: Failed to run task "build-test": exit status 5 +2025-07-23T19:35:29.7011040Z exit status 201 +2025-07-23T19:35:29.7081660Z ##[error]Process completed with exit code 1. diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/1_Set up job.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/1_Set up job.txt new file mode 100644 index 0000000000..114448cf31 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (macos-latest)/1_Set up job.txt @@ -0,0 +1,47 @@ +2025-07-23T19:28:55.6469440Z Current runner version: '2.326.0' +2025-07-23T19:28:55.6485610Z ##[group]Operating System +2025-07-23T19:28:55.6486070Z macOS +2025-07-23T19:28:55.6486460Z 14.7.6 +2025-07-23T19:28:55.6486750Z 23H626 +2025-07-23T19:28:55.6487130Z ##[endgroup] +2025-07-23T19:28:55.6487440Z ##[group]Runner Image +2025-07-23T19:28:55.6487770Z Image: macos-14-arm64 +2025-07-23T19:28:55.6488090Z Version: 20250715.1663 +2025-07-23T19:28:55.6488820Z Included Software: https://github.com/actions/runner-images/blob/macos-14-arm64/20250715.1663/images/macos/macos-14-arm64-Readme.md +2025-07-23T19:28:55.6489720Z Image Release: https://github.com/actions/runner-images/releases/tag/macos-14-arm64%2F20250715.1663 +2025-07-23T19:28:55.6490280Z ##[endgroup] +2025-07-23T19:28:55.6490600Z ##[group]Runner Image Provisioner +2025-07-23T19:28:55.6490980Z 2.0.449.1+6d46f4794670abc677653e70ad733fc4b7478209 +2025-07-23T19:28:55.6491360Z ##[endgroup] +2025-07-23T19:28:55.6492780Z ##[group]GITHUB_TOKEN Permissions +2025-07-23T19:28:55.6493700Z Actions: write +2025-07-23T19:28:55.6494080Z Attestations: write +2025-07-23T19:28:55.6494420Z Checks: write +2025-07-23T19:28:55.6494710Z Contents: write +2025-07-23T19:28:55.6494990Z Deployments: write +2025-07-23T19:28:55.6495400Z Discussions: write +2025-07-23T19:28:55.6495700Z Issues: write +2025-07-23T19:28:55.6495980Z Metadata: read +2025-07-23T19:28:55.6496270Z Models: read +2025-07-23T19:28:55.6496550Z Packages: write +2025-07-23T19:28:55.6496860Z Pages: write +2025-07-23T19:28:55.6497140Z PullRequests: write +2025-07-23T19:28:55.6497450Z RepositoryProjects: write +2025-07-23T19:28:55.6497770Z SecurityEvents: write +2025-07-23T19:28:55.6498070Z Statuses: write +2025-07-23T19:28:55.6498370Z ##[endgroup] +2025-07-23T19:28:55.6499510Z Secret source: Actions +2025-07-23T19:28:55.6499910Z Prepare workflow directory +2025-07-23T19:28:55.6698640Z Prepare all required actions +2025-07-23T19:28:55.6723790Z Getting action download info +2025-07-23T19:28:55.9826770Z ##[group]Download immutable action package 'actions/checkout@v4' +2025-07-23T19:28:55.9827440Z Version: 4.2.2 +2025-07-23T19:28:55.9828010Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 +2025-07-23T19:28:55.9828760Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 +2025-07-23T19:28:55.9829220Z ##[endgroup] +2025-07-23T19:28:56.3134370Z ##[group]Download immutable action package 'actions/setup-go@v5' +2025-07-23T19:28:56.3135560Z Version: 5.5.0 +2025-07-23T19:28:56.3136060Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb +2025-07-23T19:28:56.3136680Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 +2025-07-23T19:28:56.3137140Z ##[endgroup] +2025-07-23T19:28:57.0637990Z Complete job name: Golang Unit Tests (macos-latest) diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/22_Post Run actions_checkout@v4.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/22_Post Run actions_checkout@v4.txt new file mode 100644 index 0000000000..fda7809a3e --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (macos-latest)/22_Post Run actions_checkout@v4.txt @@ -0,0 +1,13 @@ +2025-07-23T19:35:29.7511660Z Post job cleanup. +2025-07-23T19:35:30.1818880Z [command]/opt/homebrew/bin/git version +2025-07-23T19:35:30.2110940Z git version 2.50.1 +2025-07-23T19:35:30.2156290Z Copying '/Users/runner/.gitconfig' to '/Users/runner/work/_temp/804fb9a9-4f08-41b4-aae6-898a7bc2f756/.gitconfig' +2025-07-23T19:35:30.2168300Z Temporarily overriding HOME='/Users/runner/work/_temp/804fb9a9-4f08-41b4-aae6-898a7bc2f756' before making global git config changes +2025-07-23T19:35:30.2170470Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:35:30.2171790Z [command]/opt/homebrew/bin/git config --global --add safe.directory /Users/runner/work/coreth/coreth +2025-07-23T19:35:30.2281140Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:35:30.2345830Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:35:30.3922300Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:35:30.3957320Z http.https://github.com/.extraheader +2025-07-23T19:35:30.3989730Z [command]/opt/homebrew/bin/git config --local --unset-all http.https://github.com/.extraheader +2025-07-23T19:35:30.4115650Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/23_Complete job.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/23_Complete job.txt new file mode 100644 index 0000000000..feca883a51 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (macos-latest)/23_Complete job.txt @@ -0,0 +1 @@ +2025-07-23T19:35:30.5740930Z Cleaning up orphan processes diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/2_Run actions_checkout@v4.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/2_Run actions_checkout@v4.txt new file mode 100644 index 0000000000..a2ec74b771 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (macos-latest)/2_Run actions_checkout@v4.txt @@ -0,0 +1,69 @@ +2025-07-23T19:28:57.0964760Z ##[group]Run actions/checkout@v4 +2025-07-23T19:28:57.0965280Z with: +2025-07-23T19:28:57.0965580Z repository: ava-labs/coreth +2025-07-23T19:28:57.0966010Z token: *** +2025-07-23T19:28:57.0966290Z ssh-strict: true +2025-07-23T19:28:57.0966580Z ssh-user: git +2025-07-23T19:28:57.0966890Z persist-credentials: true +2025-07-23T19:28:57.0967210Z clean: true +2025-07-23T19:28:57.0967500Z sparse-checkout-cone-mode: true +2025-07-23T19:28:57.0967850Z fetch-depth: 1 +2025-07-23T19:28:57.0968130Z fetch-tags: false +2025-07-23T19:28:57.0968500Z show-progress: true +2025-07-23T19:28:57.0968800Z lfs: false +2025-07-23T19:28:57.0969080Z submodules: false +2025-07-23T19:28:57.0969390Z set-safe-directory: true +2025-07-23T19:28:57.0969810Z ##[endgroup] +2025-07-23T19:28:57.3790870Z Syncing repository: ava-labs/coreth +2025-07-23T19:28:57.3792270Z ##[group]Getting Git version info +2025-07-23T19:28:57.3792780Z Working directory is '/Users/runner/work/coreth/coreth' +2025-07-23T19:28:57.3814460Z [command]/opt/homebrew/bin/git version +2025-07-23T19:28:57.4339210Z git version 2.50.1 +2025-07-23T19:28:57.4362640Z ##[endgroup] +2025-07-23T19:28:57.4368250Z Copying '/Users/runner/.gitconfig' to '/Users/runner/work/_temp/8fdf0996-2c77-4556-aa33-ff5ddfd5426f/.gitconfig' +2025-07-23T19:28:57.4374240Z Temporarily overriding HOME='/Users/runner/work/_temp/8fdf0996-2c77-4556-aa33-ff5ddfd5426f' before making global git config changes +2025-07-23T19:28:57.4375240Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:28:57.4377800Z [command]/opt/homebrew/bin/git config --global --add safe.directory /Users/runner/work/coreth/coreth +2025-07-23T19:28:57.4445230Z Deleting the contents of '/Users/runner/work/coreth/coreth' +2025-07-23T19:28:57.4447090Z ##[group]Initializing the repository +2025-07-23T19:28:57.4450950Z [command]/opt/homebrew/bin/git init /Users/runner/work/coreth/coreth +2025-07-23T19:28:57.4585140Z hint: Using 'master' as the name for the initial branch. This default branch name +2025-07-23T19:28:57.4586550Z hint: is subject to change. To configure the initial branch name to use in all +2025-07-23T19:28:57.4587440Z hint: of your new repositories, which will suppress this warning, call: +2025-07-23T19:28:57.4587960Z hint: +2025-07-23T19:28:57.4588360Z hint: git config --global init.defaultBranch +2025-07-23T19:28:57.4588900Z hint: +2025-07-23T19:28:57.4589330Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2025-07-23T19:28:57.4589980Z hint: 'development'. The just-created branch can be renamed via this command: +2025-07-23T19:28:57.4590510Z hint: +2025-07-23T19:28:57.4590800Z hint: git branch -m +2025-07-23T19:28:57.4591140Z hint: +2025-07-23T19:28:57.4591590Z hint: Disable this message with "git config set advice.defaultBranchName false" +2025-07-23T19:28:57.4592280Z Initialized empty Git repository in /Users/runner/work/coreth/coreth/.git/ +2025-07-23T19:28:57.4593630Z [command]/opt/homebrew/bin/git remote add origin https://github.com/ava-labs/coreth +2025-07-23T19:28:57.4643780Z ##[endgroup] +2025-07-23T19:28:57.4644350Z ##[group]Disabling automatic garbage collection +2025-07-23T19:28:57.4646240Z [command]/opt/homebrew/bin/git config --local gc.auto 0 +2025-07-23T19:28:57.4688290Z ##[endgroup] +2025-07-23T19:28:57.4689010Z ##[group]Setting up auth +2025-07-23T19:28:57.4691920Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:28:57.4729790Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:28:57.5272140Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:28:57.5306370Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:28:57.6710280Z [command]/opt/homebrew/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2025-07-23T19:28:57.6712310Z ##[endgroup] +2025-07-23T19:28:57.6713540Z ##[group]Fetching the repository +2025-07-23T19:28:57.6714730Z [command]/opt/homebrew/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge +2025-07-23T19:28:58.8014880Z From https://github.com/ava-labs/coreth +2025-07-23T19:28:58.8015850Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge +2025-07-23T19:28:58.8062930Z ##[endgroup] +2025-07-23T19:28:58.8063590Z ##[group]Determining the checkout info +2025-07-23T19:28:58.8064360Z ##[endgroup] +2025-07-23T19:28:58.8067130Z [command]/opt/homebrew/bin/git sparse-checkout disable +2025-07-23T19:28:58.8121760Z [command]/opt/homebrew/bin/git config --local --unset-all extensions.worktreeConfig +2025-07-23T19:28:58.8161680Z ##[group]Checking out the ref +2025-07-23T19:28:58.8163650Z [command]/opt/homebrew/bin/git checkout --progress --force refs/remotes/pull/1065/merge +2025-07-23T19:28:58.9380720Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 +2025-07-23T19:28:58.9628690Z ##[endgroup] +2025-07-23T19:28:58.9933230Z [command]/opt/homebrew/bin/git log -1 --format=%H +2025-07-23T19:28:58.9996160Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/4_Run actions_setup-go@v5.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/4_Run actions_setup-go@v5.txt new file mode 100644 index 0000000000..81b461074e --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (macos-latest)/4_Run actions_setup-go@v5.txt @@ -0,0 +1,81 @@ +2025-07-23T19:28:59.0333800Z ##[group]Run actions/setup-go@v5 +2025-07-23T19:28:59.0335490Z with: +2025-07-23T19:28:59.0336150Z go-version-file: go.mod +2025-07-23T19:28:59.0336850Z check-latest: false +2025-07-23T19:28:59.0337670Z token: *** +2025-07-23T19:28:59.0338220Z cache: true +2025-07-23T19:28:59.0338780Z ##[endgroup] +2025-07-23T19:28:59.1634380Z Setup go version spec 1.23.9 +2025-07-23T19:28:59.1662390Z Attempting to download 1.23.9... +2025-07-23T19:29:00.0309840Z matching 1.23.9... +2025-07-23T19:29:00.1350450Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-darwin-arm64.tar.gz +2025-07-23T19:29:00.9474640Z Extracting Go... +2025-07-23T19:29:00.9555840Z [command]/usr/bin/tar xz -C /Users/runner/work/_temp/aabfc34d-b18f-416a-b458-a6f7e344f159 -f /Users/runner/work/_temp/5cbcbaac-4a4d-4d9b-a417-f79fb5e4419b +2025-07-23T19:29:03.3391600Z Successfully extracted go to /Users/runner/work/_temp/aabfc34d-b18f-416a-b458-a6f7e344f159 +2025-07-23T19:29:03.3392160Z Adding to the cache ... +2025-07-23T19:29:07.9882190Z Successfully cached go to /Users/runner/hostedtoolcache/go/1.23.9/arm64 +2025-07-23T19:29:07.9889210Z Added go to the path +2025-07-23T19:29:07.9919140Z Successfully set up Go version 1.23.9 +2025-07-23T19:29:08.1129900Z [command]/Users/runner/hostedtoolcache/go/1.23.9/arm64/bin/go env GOMODCACHE +2025-07-23T19:29:08.1167070Z [command]/Users/runner/hostedtoolcache/go/1.23.9/arm64/bin/go env GOCACHE +2025-07-23T19:29:08.1167650Z /Users/runner/go/pkg/mod +2025-07-23T19:29:08.1170190Z /Users/runner/Library/Caches/go-build +2025-07-23T19:29:08.2655650Z Cache hit for: setup-go-macOS-arm64-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:09.4201380Z Received 71303168 of 665833561 (10.7%), 67.9 MBs/sec +2025-07-23T19:29:10.4306280Z Received 192937984 of 665833561 (29.0%), 91.4 MBs/sec +2025-07-23T19:29:11.4348480Z Received 301989888 of 665833561 (45.4%), 95.6 MBs/sec +2025-07-23T19:29:12.4426820Z Received 406847488 of 665833561 (61.1%), 96.6 MBs/sec +2025-07-23T19:29:13.4343830Z Received 536870912 of 665833561 (80.6%), 102.0 MBs/sec +2025-07-23T19:29:14.4293850Z Received 665833561 of 665833561 (100.0%), 105.6 MBs/sec +2025-07-23T19:29:14.4299350Z Cache Size: ~635 MB (665833561 B) +2025-07-23T19:29:14.4342590Z [command]/opt/homebrew/bin/gtar -xf /Users/runner/work/_temp/d7820235-272a-4fb0-a9c1-f98db5fee222/cache.tzst -P -C /Users/runner/work/coreth/coreth --delay-directory-restore --use-compress-program unzstd +2025-07-23T19:29:24.0727180Z Cache restored successfully +2025-07-23T19:29:24.0932010Z Cache restored from key: setup-go-macOS-arm64-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:24.1086700Z go version go1.23.9 darwin/arm64 +2025-07-23T19:29:24.1086910Z +2025-07-23T19:29:24.1087310Z ##[group]go env +2025-07-23T19:29:25.8943890Z GO111MODULE='' +2025-07-23T19:29:25.9045090Z GOARCH='arm64' +2025-07-23T19:29:25.9102380Z GOBIN='' +2025-07-23T19:29:25.9103460Z GOCACHE='/Users/runner/Library/Caches/go-build' +2025-07-23T19:29:25.9105780Z GOENV='/Users/runner/Library/Application Support/go/env' +2025-07-23T19:29:25.9107060Z GOEXE='' +2025-07-23T19:29:25.9108750Z GOEXPERIMENT='' +2025-07-23T19:29:25.9110050Z GOFLAGS='' +2025-07-23T19:29:25.9111460Z GOHOSTARCH='arm64' +2025-07-23T19:29:25.9112000Z GOHOSTOS='darwin' +2025-07-23T19:29:25.9112480Z GOINSECURE='' +2025-07-23T19:29:25.9113120Z GOMODCACHE='/Users/runner/go/pkg/mod' +2025-07-23T19:29:25.9114010Z GONOPROXY='' +2025-07-23T19:29:25.9116090Z GONOSUMDB='' +2025-07-23T19:29:25.9118500Z GOOS='darwin' +2025-07-23T19:29:25.9119080Z GOPATH='/Users/runner/go' +2025-07-23T19:29:25.9120780Z GOPRIVATE='' +2025-07-23T19:29:25.9122040Z GOPROXY='https://proxy.golang.org,direct' +2025-07-23T19:29:25.9122520Z GOROOT='/Users/runner/hostedtoolcache/go/1.23.9/arm64' +2025-07-23T19:29:25.9128930Z GOSUMDB='sum.golang.org' +2025-07-23T19:29:25.9129490Z GOTMPDIR='' +2025-07-23T19:29:25.9129720Z GOTOOLCHAIN='auto' +2025-07-23T19:29:25.9130220Z GOTOOLDIR='/Users/runner/hostedtoolcache/go/1.23.9/arm64/pkg/tool/darwin_arm64' +2025-07-23T19:29:25.9131950Z GOVCS='' +2025-07-23T19:29:25.9132170Z GOVERSION='go1.23.9' +2025-07-23T19:29:25.9132500Z GODEBUG='' +2025-07-23T19:29:25.9132730Z GOTELEMETRY='local' +2025-07-23T19:29:25.9133210Z GOTELEMETRYDIR='/Users/runner/Library/Application Support/go/telemetry' +2025-07-23T19:29:25.9133610Z GCCGO='gccgo' +2025-07-23T19:29:25.9133860Z GOARM64='v8.0' +2025-07-23T19:29:25.9134080Z AR='ar' +2025-07-23T19:29:25.9134330Z CC='clang' +2025-07-23T19:29:25.9134600Z CXX='clang++' +2025-07-23T19:29:25.9134820Z CGO_ENABLED='1' +2025-07-23T19:29:25.9135110Z GOMOD='/Users/runner/work/coreth/coreth/go.mod' +2025-07-23T19:29:25.9135500Z GOWORK='' +2025-07-23T19:29:25.9135700Z CGO_CFLAGS='-O2 -g' +2025-07-23T19:29:25.9135920Z CGO_CPPFLAGS='' +2025-07-23T19:29:25.9136240Z CGO_CXXFLAGS='-O2 -g' +2025-07-23T19:29:25.9136470Z CGO_FFLAGS='-O2 -g' +2025-07-23T19:29:25.9136740Z CGO_LDFLAGS='-O2 -g' +2025-07-23T19:29:25.9137050Z PKG_CONFIG='pkg-config' +2025-07-23T19:29:25.9138200Z GOGCCFLAGS='-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -ffile-prefix-map=/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/go-build963083595=/tmp/go-build -gno-record-gcc-switches -fno-common' +2025-07-23T19:29:25.9139170Z +2025-07-23T19:29:25.9139570Z ##[endgroup] diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/6_Run go mod download.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/6_Run go mod download.txt new file mode 100644 index 0000000000..b4d76d2153 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (macos-latest)/6_Run go mod download.txt @@ -0,0 +1,4 @@ +2025-07-23T19:29:25.9246490Z ##[group]Run go mod download +2025-07-23T19:29:25.9246870Z go mod download +2025-07-23T19:29:25.9424250Z shell: /bin/bash -e {0} +2025-07-23T19:29:25.9424590Z ##[endgroup] diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/7_Check generated codec files are up to date.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/7_Check generated codec files are up to date.txt new file mode 100644 index 0000000000..f3cdcfe021 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (macos-latest)/7_Check generated codec files are up to date.txt @@ -0,0 +1,10 @@ +2025-07-23T19:29:26.1558900Z ##[group]Run ./scripts/run_task.sh check-generate-codec +2025-07-23T19:29:26.1559250Z ./scripts/run_task.sh check-generate-codec +2025-07-23T19:29:26.1636030Z shell: /bin/bash -e {0} +2025-07-23T19:29:26.1636290Z ##[endgroup] +2025-07-23T19:29:28.1177100Z task: [generate-codec] grep -lr -E '^// Code generated by github\.com\/fjl\/gencodec\. DO NOT EDIT\.$' . | xargs -r rm +2025-07-23T19:29:28.3630560Z task: [generate-codec] go generate -run "github.com/fjl/gencodec" ./... +2025-07-23T19:29:35.3968670Z task: [check-clean-branch] git add --all +2025-07-23T19:29:35.5080040Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null +2025-07-23T19:29:35.5157500Z task: [check-clean-branch] git status --short +2025-07-23T19:29:35.5286050Z task: [check-clean-branch] git diff-index --quiet HEAD diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/8_Check generated mocks are up to date.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/8_Check generated mocks are up to date.txt new file mode 100644 index 0000000000..b034b8dc12 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (macos-latest)/8_Check generated mocks are up to date.txt @@ -0,0 +1,10 @@ +2025-07-23T19:29:35.5411700Z ##[group]Run ./scripts/run_task.sh check-generate-mocks +2025-07-23T19:29:35.5412010Z ./scripts/run_task.sh check-generate-mocks +2025-07-23T19:29:35.5538800Z shell: /bin/bash -e {0} +2025-07-23T19:29:35.5539020Z ##[endgroup] +2025-07-23T19:29:36.1478890Z task: [generate-mocks] grep -lr -E '^// Code generated by MockGen\. DO NOT EDIT\.$' . | xargs -r rm +2025-07-23T19:29:36.2869110Z task: [generate-mocks] go generate -run "go.uber.org/mock/mockgen" ./... +2025-07-23T19:29:41.7072260Z task: [check-clean-branch] git add --all +2025-07-23T19:29:41.7167930Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null +2025-07-23T19:29:41.7225610Z task: [check-clean-branch] git status --short +2025-07-23T19:29:41.7322610Z task: [check-clean-branch] git diff-index --quiet HEAD diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/9_Run ._scripts_run_task.sh build.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/9_Run ._scripts_run_task.sh build.txt new file mode 100644 index 0000000000..355b01d07e --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (macos-latest)/9_Run ._scripts_run_task.sh build.txt @@ -0,0 +1,7 @@ +2025-07-23T19:29:41.7437810Z ##[group]Run ./scripts/run_task.sh build +2025-07-23T19:29:41.7438070Z ./scripts/run_task.sh build +2025-07-23T19:29:41.7487190Z shell: /bin/bash -e {0} +2025-07-23T19:29:41.7487370Z ##[endgroup] +2025-07-23T19:29:42.3282000Z task: [build] ./scripts/build.sh +2025-07-23T19:29:42.3605880Z Using branch: d85ec03 +2025-07-23T19:29:42.3639400Z Building Coreth @ GitCommit: d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 at /Users/runner/.avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/10_Run ._scripts_run_task.sh build-test.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/10_Run ._scripts_run_task.sh build-test.txt new file mode 100644 index 0000000000..54f6800b74 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/10_Run ._scripts_run_task.sh build-test.txt @@ -0,0 +1,13 @@ +2025-07-23T19:29:42.1473107Z ##[group]Run ./scripts/run_task.sh build-test +2025-07-23T19:29:42.1473472Z ./scripts/run_task.sh build-test +2025-07-23T19:29:42.1505924Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:42.1506157Z env: +2025-07-23T19:29:42.1506319Z TIMEOUT: +2025-07-23T19:29:42.1506490Z ##[endgroup] +2025-07-23T19:29:42.5341202Z task: [build-test] ./scripts/build_test.sh +2025-07-23T19:29:42.5463557Z Using branch: d85ec03 +2025-07-23T19:29:42.9322512Z Test run 1 of 4 +2025-07-23T19:29:42.9322804Z Getting expected test list... +2025-07-23T19:29:51.3588514Z Expected tests: 1 tests +2025-07-23T19:29:51.3588921Z Running tests... +2025-07-23T19:36:52.7662676Z All tests passed! diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/11_Run ._scripts_run_task.sh coverage.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/11_Run ._scripts_run_task.sh coverage.txt new file mode 100644 index 0000000000..a214054ab6 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/11_Run ._scripts_run_task.sh coverage.txt @@ -0,0 +1,2929 @@ +2025-07-23T19:36:52.7808739Z ##[group]Run ./scripts/run_task.sh coverage +2025-07-23T19:36:52.7809334Z ./scripts/run_task.sh coverage +2025-07-23T19:36:52.7884638Z shell: /usr/bin/bash -e {0} +2025-07-23T19:36:52.7885234Z ##[endgroup] +2025-07-23T19:36:53.8544166Z task: [coverage] ./scripts/coverage.sh +2025-07-23T19:36:54.3320827Z Current test coverage : 0.0 +2025-07-23T19:36:54.3321297Z 60.0 % +2025-07-23T19:36:54.3321611Z ======================================== +2025-07-23T19:36:54.7656303Z github.com/ava-labs/coreth/accounts/abi/abi.go:59: JSON 100.0% +2025-07-23T19:36:54.7657417Z github.com/ava-labs/coreth/accounts/abi/abi.go:74: Pack 91.7% +2025-07-23T19:36:54.7658484Z github.com/ava-labs/coreth/accounts/abi/abi.go:103: PackEvent 81.8% +2025-07-23T19:36:54.7659574Z github.com/ava-labs/coreth/accounts/abi/abi.go:147: PackOutput 71.4% +2025-07-23T19:36:54.7660606Z github.com/ava-labs/coreth/accounts/abi/abi.go:162: getInputs 80.0% +2025-07-23T19:36:54.7661618Z github.com/ava-labs/coreth/accounts/abi/abi.go:182: getArguments 90.0% +2025-07-23T19:36:54.7662488Z github.com/ava-labs/coreth/accounts/abi/abi.go:205: UnpackInput 0.0% +2025-07-23T19:36:54.7663296Z github.com/ava-labs/coreth/accounts/abi/abi.go:214: Unpack 75.0% +2025-07-23T19:36:54.7664164Z github.com/ava-labs/coreth/accounts/abi/abi.go:228: UnpackInputIntoInterface 85.7% +2025-07-23T19:36:54.7665287Z github.com/ava-labs/coreth/accounts/abi/abi.go:243: UnpackIntoInterface 85.7% +2025-07-23T19:36:54.7666179Z github.com/ava-labs/coreth/accounts/abi/abi.go:256: UnpackIntoMap 100.0% +2025-07-23T19:36:54.7667042Z github.com/ava-labs/coreth/accounts/abi/abi.go:265: UnmarshalJSON 85.7% +2025-07-23T19:36:54.7667858Z github.com/ava-labs/coreth/accounts/abi/abi.go:330: MethodById 100.0% +2025-07-23T19:36:54.7668631Z github.com/ava-labs/coreth/accounts/abi/abi.go:344: EventByID 100.0% +2025-07-23T19:36:54.7669427Z github.com/ava-labs/coreth/accounts/abi/abi.go:355: ErrorByID 100.0% +2025-07-23T19:36:54.7670245Z github.com/ava-labs/coreth/accounts/abi/abi.go:365: HasFallback 100.0% +2025-07-23T19:36:54.7671053Z github.com/ava-labs/coreth/accounts/abi/abi.go:370: HasReceive 100.0% +2025-07-23T19:36:54.7671863Z github.com/ava-labs/coreth/accounts/abi/abi.go:402: UnpackRevert 81.8% +2025-07-23T19:36:54.7672712Z github.com/ava-labs/coreth/accounts/abi/argument.go:57: UnmarshalJSON 90.0% +2025-07-23T19:36:54.7673637Z github.com/ava-labs/coreth/accounts/abi/argument.go:75: NonIndexed 100.0% +2025-07-23T19:36:54.7674544Z github.com/ava-labs/coreth/accounts/abi/argument.go:86: isTuple 100.0% +2025-07-23T19:36:54.7676223Z github.com/ava-labs/coreth/accounts/abi/argument.go:91: Unpack 100.0% +2025-07-23T19:36:54.7677124Z github.com/ava-labs/coreth/accounts/abi/argument.go:102: UnpackIntoMap 58.3% +2025-07-23T19:36:54.7678002Z github.com/ava-labs/coreth/accounts/abi/argument.go:124: Copy 77.8% +2025-07-23T19:36:54.7678865Z github.com/ava-labs/coreth/accounts/abi/argument.go:142: copyAtomic 100.0% +2025-07-23T19:36:54.7679774Z github.com/ava-labs/coreth/accounts/abi/argument.go:153: copyTuple 95.7% +2025-07-23T19:36:54.7680594Z github.com/ava-labs/coreth/accounts/abi/argument.go:195: UnpackValues 100.0% +2025-07-23T19:36:54.7681448Z github.com/ava-labs/coreth/accounts/abi/argument.go:228: PackValues 0.0% +2025-07-23T19:36:54.7682550Z github.com/ava-labs/coreth/accounts/abi/argument.go:233: Pack 100.0% +2025-07-23T19:36:54.7683270Z github.com/ava-labs/coreth/accounts/abi/argument.go:276: ToCamelCase 100.0% +2025-07-23T19:36:54.7684239Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:56: NewTransactor 0.0% +2025-07-23T19:36:54.7685382Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:73: NewKeyStoreTransactor 0.0% +2025-07-23T19:36:54.7686337Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:96: NewKeyedTransactor 0.0% +2025-07-23T19:36:54.7687292Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:118: NewTransactorWithChainID 0.0% +2025-07-23T19:36:54.7688273Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:132: NewKeyStoreTransactorWithChainID 0.0% +2025-07-23T19:36:54.7688941Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:155: NewKeyedTransactorWithChainID 72.7% +2025-07-23T19:36:54.7689551Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:179: NewClefTransactor 0.0% +2025-07-23T19:36:54.7690116Z github.com/ava-labs/coreth/accounts/abi/bind/backends/simulated.go:67: Fork 0.0% +2025-07-23T19:36:54.7691122Z github.com/ava-labs/coreth/accounts/abi/bind/backends/simulated.go:78: NewSimulatedBackend 0.0% +2025-07-23T19:36:54.7692106Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:128: GetAbi 0.0% +2025-07-23T19:36:54.7692971Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:155: NewBoundContract 100.0% +2025-07-23T19:36:54.7693853Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:167: DeployContract 77.8% +2025-07-23T19:36:54.7694457Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:187: Call 100.0% +2025-07-23T19:36:54.7695440Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:265: Transact 75.0% +2025-07-23T19:36:54.7696251Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:278: RawTransact 0.0% +2025-07-23T19:36:54.7697036Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:286: Transfer 0.0% +2025-07-23T19:36:54.7697872Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:294: wrapNativeAssetCall 83.3% +2025-07-23T19:36:54.7698755Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:324: createDynamicTx 84.0% +2025-07-23T19:36:54.7699619Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:376: createLegacyTx 81.8% +2025-07-23T19:36:54.7700469Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:419: estimateGasLimit 71.4% +2025-07-23T19:36:54.7701280Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:440: getNonce 75.0% +2025-07-23T19:36:54.7702120Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:451: transact 66.7% +2025-07-23T19:36:54.7702904Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:502: FilterLogs 0.0% +2025-07-23T19:36:54.7703725Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:551: WatchLogs 0.0% +2025-07-23T19:36:54.7704520Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:581: UnpackLog 0.0% +2025-07-23T19:36:54.7705537Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:604: UnpackLogIntoMap 83.3% +2025-07-23T19:36:54.7706393Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:628: ensureContext 100.0% +2025-07-23T19:36:54.7707534Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:54: isKeyWord 100.0% +2025-07-23T19:36:54.7708373Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:95: Bind 92.2% +2025-07-23T19:36:54.7709244Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:323: bindBasicTypeGo 100.0% +2025-07-23T19:36:54.7709992Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:349: bindTypeGo 100.0% +2025-07-23T19:36:54.7710905Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:370: bindTopicTypeGo 100.0% +2025-07-23T19:36:54.7711989Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:394: bindStructTypeGo 100.0% +2025-07-23T19:36:54.7712870Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:445: alias 100.0% +2025-07-23T19:36:54.7713668Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:462: decapitalise 75.0% +2025-07-23T19:36:54.7714486Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:473: structured 100.0% +2025-07-23T19:36:54.7715533Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:496: hasStruct 100.0% +2025-07-23T19:36:54.7716411Z github.com/ava-labs/coreth/accounts/abi/bind/util.go:43: WaitMined 91.7% +2025-07-23T19:36:54.7717300Z github.com/ava-labs/coreth/accounts/abi/bind/util.go:71: WaitDeployed 90.9% +2025-07-23T19:36:54.7718149Z github.com/ava-labs/coreth/accounts/abi/error.go:54: NewError 92.9% +2025-07-23T19:36:54.7719229Z github.com/ava-labs/coreth/accounts/abi/error.go:91: String 100.0% +2025-07-23T19:36:54.7720014Z github.com/ava-labs/coreth/accounts/abi/error.go:95: Unpack 0.0% +2025-07-23T19:36:54.7720911Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:50: formatSliceString 66.7% +2025-07-23T19:36:54.7721901Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:59: sliceTypeCheck 90.0% +2025-07-23T19:36:54.7722847Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:82: typeCheck 100.0% +2025-07-23T19:36:54.7723768Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:98: typeErr 100.0% +2025-07-23T19:36:54.7724628Z github.com/ava-labs/coreth/accounts/abi/event.go:73: NewEvent 100.0% +2025-07-23T19:36:54.7725603Z github.com/ava-labs/coreth/accounts/abi/event.go:112: String 100.0% +2025-07-23T19:36:54.7726429Z github.com/ava-labs/coreth/accounts/abi/method.go:105: NewMethod 100.0% +2025-07-23T19:36:54.7727262Z github.com/ava-labs/coreth/accounts/abi/method.go:164: String 100.0% +2025-07-23T19:36:54.7728082Z github.com/ava-labs/coreth/accounts/abi/method.go:169: IsConstant 0.0% +2025-07-23T19:36:54.7728893Z github.com/ava-labs/coreth/accounts/abi/method.go:175: IsPayable 0.0% +2025-07-23T19:36:54.7729750Z github.com/ava-labs/coreth/accounts/abi/pack.go:42: packBytesSlice 100.0% +2025-07-23T19:36:54.7730599Z github.com/ava-labs/coreth/accounts/abi/pack.go:49: packElement 83.3% +2025-07-23T19:36:54.7731410Z github.com/ava-labs/coreth/accounts/abi/pack.go:85: packNum 80.0% +2025-07-23T19:36:54.7732291Z github.com/ava-labs/coreth/accounts/abi/reflect.go:52: ConvertType 83.3% +2025-07-23T19:36:54.7733139Z github.com/ava-labs/coreth/accounts/abi/reflect.go:66: indirect 100.0% +2025-07-23T19:36:54.7734017Z github.com/ava-labs/coreth/accounts/abi/reflect.go:75: reflectIntType 100.0% +2025-07-23T19:36:54.7735107Z github.com/ava-labs/coreth/accounts/abi/reflect.go:103: mustArrayToByteSlice 100.0% +2025-07-23T19:36:54.7736015Z github.com/ava-labs/coreth/accounts/abi/reflect.go:113: set 100.0% +2025-07-23T19:36:54.7736827Z github.com/ava-labs/coreth/accounts/abi/reflect.go:137: setSlice 75.0% +2025-07-23T19:36:54.7737642Z github.com/ava-labs/coreth/accounts/abi/reflect.go:151: setArray 84.6% +2025-07-23T19:36:54.7738481Z github.com/ava-labs/coreth/accounts/abi/reflect.go:172: setStruct 75.0% +2025-07-23T19:36:54.7739416Z github.com/ava-labs/coreth/accounts/abi/reflect.go:195: mapArgNamesToStructFields 100.0% +2025-07-23T19:36:54.7740463Z github.com/ava-labs/coreth/accounts/abi/topics.go:45: packTopic 96.4% +2025-07-23T19:36:54.7741202Z github.com/ava-labs/coreth/accounts/abi/topics.go:111: PackTopics 85.7% +2025-07-23T19:36:54.7741997Z github.com/ava-labs/coreth/accounts/abi/topics.go:125: MakeTopics 87.5% +2025-07-23T19:36:54.7742856Z github.com/ava-labs/coreth/accounts/abi/topics.go:139: genIntType 100.0% +2025-07-23T19:36:54.7743728Z github.com/ava-labs/coreth/accounts/abi/topics.go:153: ParseTopics 100.0% +2025-07-23T19:36:54.7744639Z github.com/ava-labs/coreth/accounts/abi/topics.go:162: ParseTopicsIntoMap 100.0% +2025-07-23T19:36:54.7745753Z github.com/ava-labs/coreth/accounts/abi/topics.go:174: parseTopicWithSetter 95.0% +2025-07-23T19:36:54.7746639Z github.com/ava-labs/coreth/accounts/abi/type.go:81: NewType 93.1% +2025-07-23T19:36:54.7747423Z github.com/ava-labs/coreth/accounts/abi/type.go:239: GetType 80.0% +2025-07-23T19:36:54.7748226Z github.com/ava-labs/coreth/accounts/abi/type.go:275: String 100.0% +2025-07-23T19:36:54.7749008Z github.com/ava-labs/coreth/accounts/abi/type.go:279: pack 90.9% +2025-07-23T19:36:54.7749868Z github.com/ava-labs/coreth/accounts/abi/type.go:362: requiresLengthPrefix 100.0% +2025-07-23T19:36:54.7750780Z github.com/ava-labs/coreth/accounts/abi/type.go:373: isDynamicType 100.0% +2025-07-23T19:36:54.7751815Z github.com/ava-labs/coreth/accounts/abi/type.go:393: getTypeSize 100.0% +2025-07-23T19:36:54.7752645Z github.com/ava-labs/coreth/accounts/abi/type.go:412: isLetter 100.0% +2025-07-23T19:36:54.7753486Z github.com/ava-labs/coreth/accounts/abi/type.go:423: isValidFieldName 66.7% +2025-07-23T19:36:54.7754348Z github.com/ava-labs/coreth/accounts/abi/unpack.go:49: ReadInteger 100.0% +2025-07-23T19:36:54.7755378Z github.com/ava-labs/coreth/accounts/abi/unpack.go:119: readBool 100.0% +2025-07-23T19:36:54.7756308Z github.com/ava-labs/coreth/accounts/abi/unpack.go:138: readFunctionType 66.7% +2025-07-23T19:36:54.7757261Z github.com/ava-labs/coreth/accounts/abi/unpack.go:151: ReadFixedBytes 80.0% +2025-07-23T19:36:54.7757926Z github.com/ava-labs/coreth/accounts/abi/unpack.go:163: forEachUnpack 81.2% +2025-07-23T19:36:54.7758462Z github.com/ava-labs/coreth/accounts/abi/unpack.go:203: forTupleUnpack 83.3% +2025-07-23T19:36:54.7758998Z github.com/ava-labs/coreth/accounts/abi/unpack.go:235: toGoType 83.9% +2025-07-23T19:36:54.7759548Z github.com/ava-labs/coreth/accounts/abi/unpack.go:299: lengthPrefixPointsTo 94.1% +2025-07-23T19:36:54.7760099Z github.com/ava-labs/coreth/accounts/abi/unpack.go:329: tuplePointsTo 71.4% +2025-07-23T19:36:54.7760642Z github.com/ava-labs/coreth/accounts/abi/utils.go:43: ResolveNameConflict 100.0% +2025-07-23T19:36:54.7761137Z github.com/ava-labs/coreth/cmd/abigen/main.go:90: init 100.0% +2025-07-23T19:36:54.7761572Z github.com/ava-labs/coreth/cmd/abigen/main.go:106: abigen 0.0% +2025-07-23T19:36:54.7762007Z github.com/ava-labs/coreth/cmd/abigen/main.go:245: main 0.0% +2025-07-23T19:36:54.7762496Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:24: newNameFilter 100.0% +2025-07-23T19:36:54.7762998Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:38: add 100.0% +2025-07-23T19:36:54.7763482Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:57: Matches 100.0% +2025-07-23T19:36:54.7764007Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:53: BuildConfig 0.0% +2025-07-23T19:36:54.7764554Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:86: BuildViper 0.0% +2025-07-23T19:36:54.7765432Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:109: BuildFlagSet 0.0% +2025-07-23T19:36:54.7766017Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:115: addSimulatorFlags 0.0% +2025-07-23T19:36:54.7766563Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:22: CreateKey 0.0% +2025-07-23T19:36:54.7767227Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:27: Load 0.0% +2025-07-23T19:36:54.7767698Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:36: LoadAll 0.0% +2025-07-23T19:36:54.7768169Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:73: Save 0.0% +2025-07-23T19:36:54.7768640Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:79: Generate 0.0% +2025-07-23T19:36:54.7769166Z github.com/ava-labs/coreth/cmd/simulator/load/funder.go:25: DistributeFunds 0.0% +2025-07-23T19:36:54.7769693Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:46: New 0.0% +2025-07-23T19:36:54.7770184Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:60: Execute 0.0% +2025-07-23T19:36:54.7770724Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:89: ConfirmReachedTip 0.0% +2025-07-23T19:36:54.7771281Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:125: ExecuteLoader 0.0% +2025-07-23T19:36:54.7771888Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:30: NewSingleAddressTxWorker 0.0% +2025-07-23T19:36:54.7772493Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:50: NewTxReceiptWorker 0.0% +2025-07-23T19:36:54.7773039Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:67: IssueTx 0.0% +2025-07-23T19:36:54.7773545Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:71: ConfirmTx 0.0% +2025-07-23T19:36:54.7774406Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:78: confirmTxByNonce 0.0% +2025-07-23T19:36:54.7775466Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:103: confirmTxByReceipt 0.0% +2025-07-23T19:36:54.7776424Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:120: LatestHeight 0.0% +2025-07-23T19:36:54.7777308Z github.com/ava-labs/coreth/cmd/simulator/main/main.go:19: main 0.0% +2025-07-23T19:36:54.7777948Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:29: NewDefaultMetrics 0.0% +2025-07-23T19:36:54.7778549Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:35: NewMetrics 0.0% +2025-07-23T19:36:54.7779096Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:68: Serve 0.0% +2025-07-23T19:36:54.7779631Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:106: Shutdown 0.0% +2025-07-23T19:36:54.7780164Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:111: Print 0.0% +2025-07-23T19:36:54.7780700Z github.com/ava-labs/coreth/cmd/simulator/txs/agent.go:51: NewIssueNAgent 0.0% +2025-07-23T19:36:54.7781215Z github.com/ava-labs/coreth/cmd/simulator/txs/agent.go:61: Execute 0.0% +2025-07-23T19:36:54.7781784Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:20: GenerateTxSequence 0.0% +2025-07-23T19:36:54.7782400Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:43: GenerateTxSequences 0.0% +2025-07-23T19:36:54.7782975Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:55: addTxs 0.0% +2025-07-23T19:36:54.7783574Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:76: ConvertTxSliceToSequence 0.0% +2025-07-23T19:36:54.7784158Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:88: Chan 0.0% +2025-07-23T19:36:54.7784634Z github.com/ava-labs/coreth/cmd/utils/cmd.go:33: Fatalf 0.0% +2025-07-23T19:36:54.7785278Z github.com/ava-labs/coreth/cmd/utils/flags.go:33: CheckExclusive 0.0% +2025-07-23T19:36:54.7785810Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:81: NewDummyEngine 0.0% +2025-07-23T19:36:54.7786354Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:95: NewETHFaker 0.0% +2025-07-23T19:36:54.7786883Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:102: NewFaker 100.0% +2025-07-23T19:36:54.7787434Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:108: NewFakerWithClock 0.0% +2025-07-23T19:36:54.7788034Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:115: NewFakerWithCallbacks 0.0% +2025-07-23T19:36:54.7788788Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:122: NewFakerWithMode 0.0% +2025-07-23T19:36:54.7789398Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:130: NewFakerWithModeAndClock 0.0% +2025-07-23T19:36:54.7789995Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:137: NewCoinbaseFaker 0.0% +2025-07-23T19:36:54.7790553Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:144: NewFullFaker 0.0% +2025-07-23T19:36:54.7791141Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:151: verifyHeaderGasFields 0.0% +2025-07-23T19:36:54.7791714Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:203: verifyHeader 0.0% +2025-07-23T19:36:54.7792243Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:263: Author 0.0% +2025-07-23T19:36:54.7792770Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:267: VerifyHeader 0.0% +2025-07-23T19:36:54.7793307Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:285: VerifyUncles 0.0% +2025-07-23T19:36:54.7793837Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:292: Prepare 0.0% +2025-07-23T19:36:54.7794379Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:297: verifyBlockFee 81.0% +2025-07-23T19:36:54.7795170Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:367: Finalize 0.0% +2025-07-23T19:36:54.7795907Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:419: FinalizeAndAssemble 0.0% +2025-07-23T19:36:54.7796492Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:477: CalcDifficulty 0.0% +2025-07-23T19:36:54.7797028Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:481: Close 0.0% +2025-07-23T19:36:54.7797595Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:47: VerifyEIP4844Header 0.0% +2025-07-23T19:36:54.7798209Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:81: CalcExcessBlobGas 100.0% +2025-07-23T19:36:54.7798810Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:90: CalcBlobFee 100.0% +2025-07-23T19:36:54.7799397Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:96: fakeExponential 100.0% +2025-07-23T19:36:54.7799974Z github.com/ava-labs/coreth/core/block_validator.go:53: NewBlockValidator 100.0% +2025-07-23T19:36:54.7800499Z github.com/ava-labs/coreth/core/block_validator.go:65: ValidateBody 62.5% +2025-07-23T19:36:54.7801017Z github.com/ava-labs/coreth/core/block_validator.go:122: ValidateState 66.7% +2025-07-23T19:36:54.7801529Z github.com/ava-labs/coreth/core/block_validator.go:150: CalcGasLimit 85.7% +2025-07-23T19:36:54.7802056Z github.com/ava-labs/coreth/core/blockchain.go:210: triedbConfig 90.0% +2025-07-23T19:36:54.7802601Z github.com/ava-labs/coreth/core/blockchain.go:260: DefaultCacheConfigWithScheme 100.0% +2025-07-23T19:36:54.7803145Z github.com/ava-labs/coreth/core/blockchain.go:385: NewBlockChain 81.8% +2025-07-23T19:36:54.7803678Z github.com/ava-labs/coreth/core/blockchain.go:507: writeBlockAcceptedIndices 66.7% +2025-07-23T19:36:54.7804243Z github.com/ava-labs/coreth/core/blockchain.go:518: batchBlockAcceptedIndices 80.0% +2025-07-23T19:36:54.7804954Z github.com/ava-labs/coreth/core/blockchain.go:529: flattenSnapshot 87.5% +2025-07-23T19:36:54.7805830Z github.com/ava-labs/coreth/core/blockchain.go:558: warmAcceptedCaches 84.2% +2025-07-23T19:36:54.7806643Z github.com/ava-labs/coreth/core/blockchain.go:595: startAcceptor 92.0% +2025-07-23T19:36:54.7807517Z github.com/ava-labs/coreth/core/blockchain.go:646: addAcceptorQueue 100.0% +2025-07-23T19:36:54.7808332Z github.com/ava-labs/coreth/core/blockchain.go:663: DrainAcceptorQueue 80.0% +2025-07-23T19:36:54.7809251Z github.com/ava-labs/coreth/core/blockchain.go:677: stopAcceptor 100.0% +2025-07-23T19:36:54.7810175Z github.com/ava-labs/coreth/core/blockchain.go:699: InitializeSnapshots 0.0% +2025-07-23T19:36:54.7811346Z github.com/ava-labs/coreth/core/blockchain.go:708: SenderCacher 0.0% +2025-07-23T19:36:54.7812240Z github.com/ava-labs/coreth/core/blockchain.go:714: loadLastState 81.8% +2025-07-23T19:36:54.7813108Z github.com/ava-labs/coreth/core/blockchain.go:762: loadGenesisState 90.0% +2025-07-23T19:36:54.7813774Z github.com/ava-labs/coreth/core/blockchain.go:780: Export 0.0% +2025-07-23T19:36:54.7814235Z github.com/ava-labs/coreth/core/blockchain.go:785: ExportN 0.0% +2025-07-23T19:36:54.7814712Z github.com/ava-labs/coreth/core/blockchain.go:792: ExportCallback 0.0% +2025-07-23T19:36:54.7815549Z github.com/ava-labs/coreth/core/blockchain.go:828: writeHeadBlock 87.5% +2025-07-23T19:36:54.7816085Z github.com/ava-labs/coreth/core/blockchain.go:847: ValidateCanonicalChain 66.7% +2025-07-23T19:36:54.7816650Z github.com/ava-labs/coreth/core/blockchain.go:956: stopWithoutSaving 100.0% +2025-07-23T19:36:54.7817138Z github.com/ava-labs/coreth/core/blockchain.go:988: Stop 100.0% +2025-07-23T19:36:54.7817616Z github.com/ava-labs/coreth/core/blockchain.go:1022: SetPreference 100.0% +2025-07-23T19:36:54.7818123Z github.com/ava-labs/coreth/core/blockchain.go:1034: setPreference 87.5% +2025-07-23T19:36:54.7818670Z github.com/ava-labs/coreth/core/blockchain.go:1060: LastConsensusAcceptedBlock 100.0% +2025-07-23T19:36:54.7819235Z github.com/ava-labs/coreth/core/blockchain.go:1071: LastAcceptedBlock 100.0% +2025-07-23T19:36:54.7819959Z github.com/ava-labs/coreth/core/blockchain.go:1083: Accept 84.6% +2025-07-23T19:36:54.7820441Z github.com/ava-labs/coreth/core/blockchain.go:1132: Reject 76.9% +2025-07-23T19:36:54.7820949Z github.com/ava-labs/coreth/core/blockchain.go:1162: writeKnownBlock 83.3% +2025-07-23T19:36:54.7821519Z github.com/ava-labs/coreth/core/blockchain.go:1175: writeCanonicalBlockWithLogs 100.0% +2025-07-23T19:36:54.7822049Z github.com/ava-labs/coreth/core/blockchain.go:1186: newTip 100.0% +2025-07-23T19:36:54.7822558Z github.com/ava-labs/coreth/core/blockchain.go:1195: writeBlockAndSetHead 83.3% +2025-07-23T19:36:54.7823102Z github.com/ava-labs/coreth/core/blockchain.go:1213: writeBlockWithState 61.1% +2025-07-23T19:36:54.7823607Z github.com/ava-labs/coreth/core/blockchain.go:1260: InsertChain 86.7% +2025-07-23T19:36:54.7824091Z github.com/ava-labs/coreth/core/blockchain.go:1296: InsertBlock 100.0% +2025-07-23T19:36:54.7824607Z github.com/ava-labs/coreth/core/blockchain.go:1300: InsertBlockManual 100.0% +2025-07-23T19:36:54.7825371Z github.com/ava-labs/coreth/core/blockchain.go:1311: insertBlock 88.7% +2025-07-23T19:36:54.7825994Z github.com/ava-labs/coreth/core/blockchain.go:1448: collectUnflattenedLogs 81.2% +2025-07-23T19:36:54.7826517Z github.com/ava-labs/coreth/core/blockchain.go:1477: collectLogs 100.0% +2025-07-23T19:36:54.7826988Z github.com/ava-labs/coreth/core/blockchain.go:1485: reorg 67.2% +2025-07-23T19:36:54.7827439Z github.com/ava-labs/coreth/core/blockchain.go:1642: String 75.0% +2025-07-23T19:36:54.7827905Z github.com/ava-labs/coreth/core/blockchain.go:1668: BadBlocks 0.0% +2025-07-23T19:36:54.7828377Z github.com/ava-labs/coreth/core/blockchain.go:1681: addBadBlock 100.0% +2025-07-23T19:36:54.7828860Z github.com/ava-labs/coreth/core/blockchain.go:1689: reportBlock 100.0% +2025-07-23T19:36:54.7829352Z github.com/ava-labs/coreth/core/blockchain.go:1705: reprocessBlock 77.8% +2025-07-23T19:36:54.7829862Z github.com/ava-labs/coreth/core/blockchain.go:1747: commitWithSnap 75.0% +2025-07-23T19:36:54.7830353Z github.com/ava-labs/coreth/core/blockchain.go:1783: initSnapshot 90.0% +2025-07-23T19:36:54.7830846Z github.com/ava-labs/coreth/core/blockchain.go:1814: reprocessState 83.1% +2025-07-23T19:36:54.7831352Z github.com/ava-labs/coreth/core/blockchain.go:1956: protectTrieIndex 60.0% +2025-07-23T19:36:54.7831919Z github.com/ava-labs/coreth/core/blockchain.go:1978: populateMissingTries 74.3% +2025-07-23T19:36:54.7832706Z github.com/ava-labs/coreth/core/blockchain.go:2059: CleanBlockRootsAboveLastAccepted 85.7% +2025-07-23T19:36:54.7833330Z github.com/ava-labs/coreth/core/blockchain.go:2102: gatherBlockRootsAboveLastAccepted 90.9% +2025-07-23T19:36:54.7833926Z github.com/ava-labs/coreth/core/blockchain.go:2132: ResetToStateSyncedBlock 0.0% +2025-07-23T19:36:54.7834457Z github.com/ava-labs/coreth/core/blockchain.go:2187: CacheConfig 100.0% +2025-07-23T19:36:54.7835120Z github.com/ava-labs/coreth/core/blockchain.go:2191: repairTxIndexTail 100.0% +2025-07-23T19:36:54.7835709Z github.com/ava-labs/coreth/core/blockchain_ext.go:15: getOrOverrideAsRegisteredCounter 83.3% +2025-07-23T19:36:54.7836329Z github.com/ava-labs/coreth/core/blockchain_iterator.go:60: newBlockChainIterator 85.0% +2025-07-23T19:36:54.7836915Z github.com/ava-labs/coreth/core/blockchain_iterator.go:120: populateReaders 88.9% +2025-07-23T19:36:54.7837444Z github.com/ava-labs/coreth/core/blockchain_iterator.go:139: Next 75.0% +2025-07-23T19:36:54.7837938Z github.com/ava-labs/coreth/core/blockchain_iterator.go:180: Stop 100.0% +2025-07-23T19:36:54.7838458Z github.com/ava-labs/coreth/core/blockchain_reader.go:45: CurrentHeader 100.0% +2025-07-23T19:36:54.7838984Z github.com/ava-labs/coreth/core/blockchain_reader.go:51: CurrentBlock 100.0% +2025-07-23T19:36:54.7839495Z github.com/ava-labs/coreth/core/blockchain_reader.go:57: HasHeader 100.0% +2025-07-23T19:36:54.7840156Z github.com/ava-labs/coreth/core/blockchain_reader.go:63: GetHeader 100.0% +2025-07-23T19:36:54.7840682Z github.com/ava-labs/coreth/core/blockchain_reader.go:69: GetHeaderByHash 100.0% +2025-07-23T19:36:54.7841231Z github.com/ava-labs/coreth/core/blockchain_reader.go:75: GetHeaderByNumber 100.0% +2025-07-23T19:36:54.7841753Z github.com/ava-labs/coreth/core/blockchain_reader.go:81: GetBody 0.0% +2025-07-23T19:36:54.7842242Z github.com/ava-labs/coreth/core/blockchain_reader.go:100: HasBlock 60.0% +2025-07-23T19:36:54.7842757Z github.com/ava-labs/coreth/core/blockchain_reader.go:111: HasFastBlock 0.0% +2025-07-23T19:36:54.7843264Z github.com/ava-labs/coreth/core/blockchain_reader.go:123: GetBlock 100.0% +2025-07-23T19:36:54.7843779Z github.com/ava-labs/coreth/core/blockchain_reader.go:138: GetBlockByHash 75.0% +2025-07-23T19:36:54.7844320Z github.com/ava-labs/coreth/core/blockchain_reader.go:148: GetBlockByNumber 100.0% +2025-07-23T19:36:54.7845001Z github.com/ava-labs/coreth/core/blockchain_reader.go:158: GetBlocksFromHash 0.0% +2025-07-23T19:36:54.7845557Z github.com/ava-labs/coreth/core/blockchain_reader.go:176: GetReceiptsByHash 76.9% +2025-07-23T19:36:54.7846118Z github.com/ava-labs/coreth/core/blockchain_reader.go:197: GetCanonicalHash 100.0% +2025-07-23T19:36:54.7846700Z github.com/ava-labs/coreth/core/blockchain_reader.go:211: GetTransactionLookup 87.5% +2025-07-23T19:36:54.7847252Z github.com/ava-labs/coreth/core/blockchain_reader.go:235: HasState 100.0% +2025-07-23T19:36:54.7847785Z github.com/ava-labs/coreth/core/blockchain_reader.go:242: HasBlockAndState 100.0% +2025-07-23T19:36:54.7848304Z github.com/ava-labs/coreth/core/blockchain_reader.go:252: State 100.0% +2025-07-23T19:36:54.7848800Z github.com/ava-labs/coreth/core/blockchain_reader.go:257: StateAt 100.0% +2025-07-23T19:36:54.7849297Z github.com/ava-labs/coreth/core/blockchain_reader.go:262: Config 100.0% +2025-07-23T19:36:54.7849788Z github.com/ava-labs/coreth/core/blockchain_reader.go:265: Engine 100.0% +2025-07-23T19:36:54.7850281Z github.com/ava-labs/coreth/core/blockchain_reader.go:268: Snapshots 0.0% +2025-07-23T19:36:54.7850772Z github.com/ava-labs/coreth/core/blockchain_reader.go:273: Validator 0.0% +2025-07-23T19:36:54.7851265Z github.com/ava-labs/coreth/core/blockchain_reader.go:278: Processor 0.0% +2025-07-23T19:36:54.7851759Z github.com/ava-labs/coreth/core/blockchain_reader.go:283: StateCache 0.0% +2025-07-23T19:36:54.7852460Z github.com/ava-labs/coreth/core/blockchain_reader.go:288: GasLimit 0.0% +2025-07-23T19:36:54.7852955Z github.com/ava-labs/coreth/core/blockchain_reader.go:293: Genesis 100.0% +2025-07-23T19:36:54.7853458Z github.com/ava-labs/coreth/core/blockchain_reader.go:298: GetVMConfig 0.0% +2025-07-23T19:36:54.7853956Z github.com/ava-labs/coreth/core/blockchain_reader.go:303: TrieDB 100.0% +2025-07-23T19:36:54.7854463Z github.com/ava-labs/coreth/core/blockchain_reader.go:308: HeaderChain 0.0% +2025-07-23T19:36:54.7855129Z github.com/ava-labs/coreth/core/blockchain_reader.go:313: SubscribeRemovedLogsEvent 0.0% +2025-07-23T19:36:54.7855721Z github.com/ava-labs/coreth/core/blockchain_reader.go:318: SubscribeChainEvent 0.0% +2025-07-23T19:36:54.7856305Z github.com/ava-labs/coreth/core/blockchain_reader.go:323: SubscribeChainHeadEvent 0.0% +2025-07-23T19:36:54.7856898Z github.com/ava-labs/coreth/core/blockchain_reader.go:328: SubscribeChainSideEvent 0.0% +2025-07-23T19:36:54.7857478Z github.com/ava-labs/coreth/core/blockchain_reader.go:333: SubscribeLogsEvent 0.0% +2025-07-23T19:36:54.7858072Z github.com/ava-labs/coreth/core/blockchain_reader.go:339: SubscribeBlockProcessingEvent 0.0% +2025-07-23T19:36:54.7858706Z github.com/ava-labs/coreth/core/blockchain_reader.go:344: SubscribeChainAcceptedEvent 100.0% +2025-07-23T19:36:54.7859329Z github.com/ava-labs/coreth/core/blockchain_reader.go:349: SubscribeAcceptedLogsEvent 100.0% +2025-07-23T19:36:54.7860117Z github.com/ava-labs/coreth/core/blockchain_reader.go:354: SubscribeAcceptedTransactionEvent 0.0% +2025-07-23T19:36:54.7860694Z github.com/ava-labs/coreth/core/blockchain_reader.go:359: GetLogs 0.0% +2025-07-23T19:36:54.7861197Z github.com/ava-labs/coreth/core/bloom_indexer.go:60: NewBloomIndexer 0.0% +2025-07-23T19:36:54.7861677Z github.com/ava-labs/coreth/core/bloom_indexer.go:72: Reset 0.0% +2025-07-23T19:36:54.7862137Z github.com/ava-labs/coreth/core/bloom_indexer.go:80: Process 0.0% +2025-07-23T19:36:54.7862602Z github.com/ava-labs/coreth/core/bloom_indexer.go:88: Commit 0.0% +2025-07-23T19:36:54.7863053Z github.com/ava-labs/coreth/core/bloom_indexer.go:101: Prune 0.0% +2025-07-23T19:36:54.7863552Z github.com/ava-labs/coreth/core/bloombits/generator.go:56: NewGenerator 83.3% +2025-07-23T19:36:54.7864075Z github.com/ava-labs/coreth/core/bloombits/generator.go:69: AddBloom 90.5% +2025-07-23T19:36:54.7864589Z github.com/ava-labs/coreth/core/bloombits/generator.go:101: Bitset 60.0% +2025-07-23T19:36:54.7865387Z github.com/ava-labs/coreth/core/bloombits/matcher.go:49: calcBloomIndexes 100.0% +2025-07-23T19:36:54.7865924Z github.com/ava-labs/coreth/core/bloombits/matcher.go:103: NewMatcher 100.0% +2025-07-23T19:36:54.7866451Z github.com/ava-labs/coreth/core/bloombits/matcher.go:148: addScheduler 100.0% +2025-07-23T19:36:54.7866957Z github.com/ava-labs/coreth/core/bloombits/matcher.go:158: Start 97.0% +2025-07-23T19:36:54.7867443Z github.com/ava-labs/coreth/core/bloombits/matcher.go:235: run 100.0% +2025-07-23T19:36:54.7867930Z github.com/ava-labs/coreth/core/bloombits/matcher.go:270: subMatch 98.3% +2025-07-23T19:36:54.7868440Z github.com/ava-labs/coreth/core/bloombits/matcher.go:392: distributor 100.0% +2025-07-23T19:36:54.7868946Z github.com/ava-labs/coreth/core/bloombits/matcher.go:534: Close 100.0% +2025-07-23T19:36:54.7869433Z github.com/ava-labs/coreth/core/bloombits/matcher.go:543: Error 0.0% +2025-07-23T19:36:54.7869950Z github.com/ava-labs/coreth/core/bloombits/matcher.go:553: allocateRetrieval 100.0% +2025-07-23T19:36:54.7870513Z github.com/ava-labs/coreth/core/bloombits/matcher.go:567: pendingSections 100.0% +2025-07-23T19:36:54.7871073Z github.com/ava-labs/coreth/core/bloombits/matcher.go:581: allocateSections 100.0% +2025-07-23T19:36:54.7871613Z github.com/ava-labs/coreth/core/bloombits/matcher.go:599: deliverSections 100.0% +2025-07-23T19:36:54.7872307Z github.com/ava-labs/coreth/core/bloombits/matcher.go:609: Multiplex 81.8% +2025-07-23T19:36:54.7872839Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:60: newScheduler 100.0% +2025-07-23T19:36:54.7873354Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:70: run 100.0% +2025-07-23T19:36:54.7873838Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:84: reset 100.0% +2025-07-23T19:36:54.7874377Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:98: scheduleRequests 100.0% +2025-07-23T19:36:54.7875078Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:145: scheduleDeliveries 100.0% +2025-07-23T19:36:54.7875644Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:182: deliver 100.0% +2025-07-23T19:36:54.7876166Z github.com/ava-labs/coreth/core/bounded_buffer.go:21: NewBoundedBuffer 100.0% +2025-07-23T19:36:54.7876663Z github.com/ava-labs/coreth/core/bounded_buffer.go:32: Insert 90.0% +2025-07-23T19:36:54.7877132Z github.com/ava-labs/coreth/core/bounded_buffer.go:55: Last 100.0% +2025-07-23T19:36:54.7877621Z github.com/ava-labs/coreth/core/chain_indexer.go:115: NewChainIndexer 100.0% +2025-07-23T19:36:54.7878133Z github.com/ava-labs/coreth/core/chain_indexer.go:142: AddCheckpoint 0.0% +2025-07-23T19:36:54.7878609Z github.com/ava-labs/coreth/core/chain_indexer.go:160: Start 0.0% +2025-07-23T19:36:54.7879195Z github.com/ava-labs/coreth/core/chain_indexer.go:169: Close 58.8% +2025-07-23T19:36:54.7879652Z github.com/ava-labs/coreth/core/chain_indexer.go:209: eventLoop 0.0% +2025-07-23T19:36:54.7880119Z github.com/ava-labs/coreth/core/chain_indexer.go:255: newHead 78.1% +2025-07-23T19:36:54.7880597Z github.com/ava-labs/coreth/core/chain_indexer.go:316: updateLoop 95.2% +2025-07-23T19:36:54.7881098Z github.com/ava-labs/coreth/core/chain_indexer.go:400: processSection 68.4% +2025-07-23T19:36:54.7881600Z github.com/ava-labs/coreth/core/chain_indexer.go:434: verifyLastHead 75.0% +2025-07-23T19:36:54.7882095Z github.com/ava-labs/coreth/core/chain_indexer.go:446: Sections 100.0% +2025-07-23T19:36:54.7882590Z github.com/ava-labs/coreth/core/chain_indexer.go:455: AddChildIndexer 70.0% +2025-07-23T19:36:54.7883070Z github.com/ava-labs/coreth/core/chain_indexer.go:477: Prune 0.0% +2025-07-23T19:36:54.7883559Z github.com/ava-labs/coreth/core/chain_indexer.go:483: loadValidSections 66.7% +2025-07-23T19:36:54.7884089Z github.com/ava-labs/coreth/core/chain_indexer.go:491: setValidSections 100.0% +2025-07-23T19:36:54.7884595Z github.com/ava-labs/coreth/core/chain_indexer.go:507: SectionHead 100.0% +2025-07-23T19:36:54.7885198Z github.com/ava-labs/coreth/core/chain_indexer.go:520: setSectionHead 100.0% +2025-07-23T19:36:54.7885719Z github.com/ava-labs/coreth/core/chain_indexer.go:529: removeSectionHead 100.0% +2025-07-23T19:36:54.7886227Z github.com/ava-labs/coreth/core/chain_makers.go:68: SetCoinbase 50.0% +2025-07-23T19:36:54.7886695Z github.com/ava-labs/coreth/core/chain_makers.go:80: SetExtra 0.0% +2025-07-23T19:36:54.7887152Z github.com/ava-labs/coreth/core/chain_makers.go:85: AppendExtra 0.0% +2025-07-23T19:36:54.7887614Z github.com/ava-labs/coreth/core/chain_makers.go:90: SetNonce 0.0% +2025-07-23T19:36:54.7888084Z github.com/ava-labs/coreth/core/chain_makers.go:97: SetDifficulty 100.0% +2025-07-23T19:36:54.7888566Z github.com/ava-labs/coreth/core/chain_makers.go:102: Difficulty 0.0% +2025-07-23T19:36:54.7889066Z github.com/ava-labs/coreth/core/chain_makers.go:108: SetParentBeaconRoot 0.0% +2025-07-23T19:36:54.7889558Z github.com/ava-labs/coreth/core/chain_makers.go:124: addTx 90.9% +2025-07-23T19:36:54.7890006Z github.com/ava-labs/coreth/core/chain_makers.go:149: AddTx 100.0% +2025-07-23T19:36:54.7890477Z github.com/ava-labs/coreth/core/chain_makers.go:160: AddTxWithChain 0.0% +2025-07-23T19:36:54.7890985Z github.com/ava-labs/coreth/core/chain_makers.go:167: AddTxWithVMConfig 100.0% +2025-07-23T19:36:54.7891665Z github.com/ava-labs/coreth/core/chain_makers.go:172: GetBalance 0.0% +2025-07-23T19:36:54.7892145Z github.com/ava-labs/coreth/core/chain_makers.go:180: AddUncheckedTx 0.0% +2025-07-23T19:36:54.7892616Z github.com/ava-labs/coreth/core/chain_makers.go:185: Number 0.0% +2025-07-23T19:36:54.7893077Z github.com/ava-labs/coreth/core/chain_makers.go:190: Timestamp 100.0% +2025-07-23T19:36:54.7893551Z github.com/ava-labs/coreth/core/chain_makers.go:195: BaseFee 100.0% +2025-07-23T19:36:54.7893995Z github.com/ava-labs/coreth/core/chain_makers.go:200: Gas 0.0% +2025-07-23T19:36:54.7894434Z github.com/ava-labs/coreth/core/chain_makers.go:205: Signer 0.0% +2025-07-23T19:36:54.7895048Z github.com/ava-labs/coreth/core/chain_makers.go:214: AddUncheckedReceipt 0.0% +2025-07-23T19:36:54.7895555Z github.com/ava-labs/coreth/core/chain_makers.go:220: TxNonce 66.7% +2025-07-23T19:36:54.7896025Z github.com/ava-labs/coreth/core/chain_makers.go:228: AddUncle 100.0% +2025-07-23T19:36:54.7896494Z github.com/ava-labs/coreth/core/chain_makers.go:235: PrevBlock 60.0% +2025-07-23T19:36:54.7896958Z github.com/ava-labs/coreth/core/chain_makers.go:248: OffsetTime 0.0% +2025-07-23T19:36:54.7897450Z github.com/ava-labs/coreth/core/chain_makers.go:257: SetOnBlockGenerated 0.0% +2025-07-23T19:36:54.7898099Z github.com/ava-labs/coreth/core/chain_makers.go:273: GenerateChain 79.2% +2025-07-23T19:36:54.7898630Z github.com/ava-labs/coreth/core/chain_makers.go:362: GenerateChainWithGenesis 87.5% +2025-07-23T19:36:54.7899148Z github.com/ava-labs/coreth/core/chain_makers.go:374: makeHeader 89.5% +2025-07-23T19:36:54.7899634Z github.com/ava-labs/coreth/core/chain_makers.go:425: newChainMaker 100.0% +2025-07-23T19:36:54.7900113Z github.com/ava-labs/coreth/core/chain_makers.go:434: add 100.0% +2025-07-23T19:36:54.7900579Z github.com/ava-labs/coreth/core/chain_makers.go:440: blockByNumber 0.0% +2025-07-23T19:36:54.7901057Z github.com/ava-labs/coreth/core/chain_makers.go:455: Config 100.0% +2025-07-23T19:36:54.7901510Z github.com/ava-labs/coreth/core/chain_makers.go:460: Engine 0.0% +2025-07-23T19:36:54.7901978Z github.com/ava-labs/coreth/core/chain_makers.go:464: CurrentHeader 0.0% +2025-07-23T19:36:54.7902482Z github.com/ava-labs/coreth/core/chain_makers.go:471: GetHeaderByNumber 0.0% +2025-07-23T19:36:54.7902991Z github.com/ava-labs/coreth/core/chain_makers.go:479: GetHeaderByHash 0.0% +2025-07-23T19:36:54.7903475Z github.com/ava-labs/coreth/core/chain_makers.go:487: GetHeader 0.0% +2025-07-23T19:36:54.7903933Z github.com/ava-labs/coreth/core/chain_makers.go:491: GetBlock 0.0% +2025-07-23T19:36:54.7904448Z github.com/ava-labs/coreth/core/coretest/test_indices.go:21: CheckTxIndices 100.0% +2025-07-23T19:36:54.7905200Z github.com/ava-labs/coreth/core/evm.go:47: init 100.0% +2025-07-23T19:36:54.7905667Z github.com/ava-labs/coreth/core/evm.go:61: OverrideNewEVMArgs 100.0% +2025-07-23T19:36:54.7906165Z github.com/ava-labs/coreth/core/evm.go:74: OverrideEVMResetArgs 100.0% +2025-07-23T19:36:54.7906630Z github.com/ava-labs/coreth/core/evm.go:79: wrapStateDB 100.0% +2025-07-23T19:36:54.7907082Z github.com/ava-labs/coreth/core/evm.go:90: GetCommittedState 100.0% +2025-07-23T19:36:54.7907567Z github.com/ava-labs/coreth/core/evm.go:106: NewEVMBlockContext 100.0% +2025-07-23T19:36:54.7908109Z github.com/ava-labs/coreth/core/evm.go:147: NewEVMBlockContextWithPredicateResults 0.0% +2025-07-23T19:36:54.7908633Z github.com/ava-labs/coreth/core/evm.go:160: NewEVMTxContext 100.0% +2025-07-23T19:36:54.7909079Z github.com/ava-labs/coreth/core/evm.go:173: GetHashFn 10.0% +2025-07-23T19:36:54.7909509Z github.com/ava-labs/coreth/core/evm.go:213: CanTransfer 100.0% +2025-07-23T19:36:54.7909937Z github.com/ava-labs/coreth/core/evm.go:218: Transfer 100.0% +2025-07-23T19:36:54.7910528Z github.com/ava-labs/coreth/core/extstate/statedb.go:38: New 100.0% +2025-07-23T19:36:54.7911023Z github.com/ava-labs/coreth/core/extstate/statedb.go:45: Prepare 100.0% +2025-07-23T19:36:54.7911583Z github.com/ava-labs/coreth/core/extstate/statedb.go:61: GetPredicateStorageSlots 75.0% +2025-07-23T19:36:54.7912124Z github.com/ava-labs/coreth/core/fifo_cache.go:24: NewFIFOCache 100.0% +2025-07-23T19:36:54.7912583Z github.com/ava-labs/coreth/core/fifo_cache.go:43: Put 100.0% +2025-07-23T19:36:54.7913004Z github.com/ava-labs/coreth/core/fifo_cache.go:51: Get 100.0% +2025-07-23T19:36:54.7913427Z github.com/ava-labs/coreth/core/fifo_cache.go:61: remove 0.0% +2025-07-23T19:36:54.7913842Z github.com/ava-labs/coreth/core/fifo_cache.go:68: Put 0.0% +2025-07-23T19:36:54.7914254Z github.com/ava-labs/coreth/core/fifo_cache.go:69: Get 100.0% +2025-07-23T19:36:54.7914679Z github.com/ava-labs/coreth/core/gaspool.go:40: AddGas 75.0% +2025-07-23T19:36:54.7915221Z github.com/ava-labs/coreth/core/gaspool.go:50: SubGas 100.0% +2025-07-23T19:36:54.7915636Z github.com/ava-labs/coreth/core/gaspool.go:59: Gas 0.0% +2025-07-23T19:36:54.7916048Z github.com/ava-labs/coreth/core/gaspool.go:64: SetGas 0.0% +2025-07-23T19:36:54.7916463Z github.com/ava-labs/coreth/core/gaspool.go:68: String 0.0% +2025-07-23T19:36:54.7917035Z github.com/ava-labs/coreth/core/gen_genesis.go:20: MarshalJSON 0.0% +2025-07-23T19:36:54.7917512Z github.com/ava-labs/coreth/core/gen_genesis.go:63: UnmarshalJSON 0.0% +2025-07-23T19:36:54.7917965Z github.com/ava-labs/coreth/core/genesis.go:109: Error 0.0% +2025-07-23T19:36:54.7918418Z github.com/ava-labs/coreth/core/genesis.go:128: SetupGenesisBlock 77.8% +2025-07-23T19:36:54.7918899Z github.com/ava-labs/coreth/core/genesis.go:212: IsVerkle 100.0% +2025-07-23T19:36:54.7919346Z github.com/ava-labs/coreth/core/genesis.go:217: ToBlock 100.0% +2025-07-23T19:36:54.7919802Z github.com/ava-labs/coreth/core/genesis.go:222: trieConfig 100.0% +2025-07-23T19:36:54.7920243Z github.com/ava-labs/coreth/core/genesis.go:233: toBlock 90.5% +2025-07-23T19:36:54.7920673Z github.com/ava-labs/coreth/core/genesis.go:321: Commit 80.0% +2025-07-23T19:36:54.7921115Z github.com/ava-labs/coreth/core/genesis.go:344: MustCommit 75.0% +2025-07-23T19:36:54.7921621Z github.com/ava-labs/coreth/core/genesis.go:353: GenesisBlockForTesting 100.0% +2025-07-23T19:36:54.7922130Z github.com/ava-labs/coreth/core/genesis.go:363: ReadBlockByHash 75.0% +2025-07-23T19:36:54.7922630Z github.com/ava-labs/coreth/core/headerchain.go:84: NewHeaderChain 85.7% +2025-07-23T19:36:54.7923137Z github.com/ava-labs/coreth/core/headerchain.go:121: GetBlockNumber 100.0% +2025-07-23T19:36:54.7923627Z github.com/ava-labs/coreth/core/headerchain.go:134: GetHeader 100.0% +2025-07-23T19:36:54.7924116Z github.com/ava-labs/coreth/core/headerchain.go:150: GetHeaderByHash 75.0% +2025-07-23T19:36:54.7924611Z github.com/ava-labs/coreth/core/headerchain.go:161: HasHeader 66.7% +2025-07-23T19:36:54.7925240Z github.com/ava-labs/coreth/core/headerchain.go:170: GetHeaderByNumber 100.0% +2025-07-23T19:36:54.7925764Z github.com/ava-labs/coreth/core/headerchain.go:181: GetCanonicalHash 100.0% +2025-07-23T19:36:54.7926284Z github.com/ava-labs/coreth/core/headerchain.go:187: CurrentHeader 100.0% +2025-07-23T19:36:54.7926786Z github.com/ava-labs/coreth/core/headerchain.go:193: SetCurrentHeader 100.0% +2025-07-23T19:36:54.7927277Z github.com/ava-labs/coreth/core/headerchain.go:199: SetGenesis 100.0% +2025-07-23T19:36:54.7927743Z github.com/ava-labs/coreth/core/headerchain.go:204: Config 0.0% +2025-07-23T19:36:54.7928190Z github.com/ava-labs/coreth/core/headerchain.go:207: Engine 0.0% +2025-07-23T19:36:54.7928640Z github.com/ava-labs/coreth/core/headerchain.go:211: GetBlock 0.0% +2025-07-23T19:36:54.7929278Z github.com/ava-labs/coreth/core/predicate_check.go:22: CheckPredicates 100.0% +2025-07-23T19:36:54.7929820Z github.com/ava-labs/coreth/core/sender_cacher.go:61: NewTxSenderCacher 100.0% +2025-07-23T19:36:54.7930312Z github.com/ava-labs/coreth/core/sender_cacher.go:78: cache 100.0% +2025-07-23T19:36:54.7930774Z github.com/ava-labs/coreth/core/sender_cacher.go:89: Recover 90.9% +2025-07-23T19:36:54.7931244Z github.com/ava-labs/coreth/core/sender_cacher.go:119: Shutdown 100.0% +2025-07-23T19:36:54.7931765Z github.com/ava-labs/coreth/core/state/database.go:42: NewDatabase 100.0% +2025-07-23T19:36:54.7932308Z github.com/ava-labs/coreth/core/state/database.go:46: NewDatabaseWithConfig 100.0% +2025-07-23T19:36:54.7932881Z github.com/ava-labs/coreth/core/state/database.go:51: NewDatabaseWithNodeDB 0.0% +2025-07-23T19:36:54.7933432Z github.com/ava-labs/coreth/core/state/database.go:55: wrapIfFirewood 100.0% +2025-07-23T19:36:54.7933974Z github.com/ava-labs/coreth/core/state/firewood_database.go:25: OpenTrie 100.0% +2025-07-23T19:36:54.7934539Z github.com/ava-labs/coreth/core/state/firewood_database.go:30: OpenStorageTrie 75.0% +2025-07-23T19:36:54.7935190Z github.com/ava-labs/coreth/core/state/firewood_database.go:40: CopyTrie 0.0% +2025-07-23T19:36:54.7935733Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:42: stateBloomHash 100.0% +2025-07-23T19:36:54.7936452Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:69: newStateBloomWithSize 80.0% +2025-07-23T19:36:54.7937054Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:80: NewStateBloomFromDisk 0.0% +2025-07-23T19:36:54.7937592Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:90: Commit 63.6% +2025-07-23T19:36:54.7938087Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:112: Put 37.5% +2025-07-23T19:36:54.7938578Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:128: Delete 0.0% +2025-07-23T19:36:54.7939078Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:134: Contain 100.0% +2025-07-23T19:36:54.7939591Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:96: NewPruner 66.7% +2025-07-23T19:36:54.7940098Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:136: prune 38.2% +2025-07-23T19:36:54.7940595Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:261: Prune 66.7% +2025-07-23T19:36:54.7941126Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:315: RecoverPruning 26.7% +2025-07-23T19:36:54.7941683Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:344: extractGenesis 48.6% +2025-07-23T19:36:54.7942246Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:403: bloomFilterName 100.0% +2025-07-23T19:36:54.7942806Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:407: isBloomFilter 0.0% +2025-07-23T19:36:54.7943423Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:415: findBloomFilter 50.0% +2025-07-23T19:36:54.7943983Z github.com/ava-labs/coreth/core/state/snapshot/context.go:55: Info 100.0% +2025-07-23T19:36:54.7944508Z github.com/ava-labs/coreth/core/state/snapshot/context.go:61: Debug 100.0% +2025-07-23T19:36:54.7945132Z github.com/ava-labs/coreth/core/state/snapshot/context.go:67: log 45.0% +2025-07-23T19:36:54.7945717Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:65: GenerateAccountTrieRoot 0.0% +2025-07-23T19:36:54.7946393Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:70: GenerateStorageTrieRoot 0.0% +2025-07-23T19:36:54.7947008Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:77: GenerateTrie 0.0% +2025-07-23T19:36:54.7947604Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:134: newGenerateStats 100.0% +2025-07-23T19:36:54.7948227Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:143: progressAccounts 0.0% +2025-07-23T19:36:54.7948839Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:152: finishAccounts 100.0% +2025-07-23T19:36:54.7949594Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:160: progressContract 0.0% +2025-07-23T19:36:54.7950206Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:172: finishContract 100.0% +2025-07-23T19:36:54.7950786Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:182: report 42.9% +2025-07-23T19:36:54.7951357Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:222: reportDone 100.0% +2025-07-23T19:36:54.7951931Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:236: runReport 100.0% +2025-07-23T19:36:54.7952516Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:257: generateTrieRoot 79.4% +2025-07-23T19:36:54.7953127Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:375: stackTrieGenerate 75.0% +2025-07-23T19:36:54.7953701Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:92: init 80.0% +2025-07-23T19:36:54.7954285Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:140: destructBloomHash 100.0% +2025-07-23T19:36:54.7955003Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:145: accountBloomHash 100.0% +2025-07-23T19:36:54.7955614Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:150: storageBloomHash 100.0% +2025-07-23T19:36:54.7956203Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:157: newDiffLayer 83.3% +2025-07-23T19:36:54.7956907Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:201: rebloom 100.0% +2025-07-23T19:36:54.7957453Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:242: Root 100.0% +2025-07-23T19:36:54.7958001Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:247: BlockHash 100.0% +2025-07-23T19:36:54.7958560Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:252: Parent 100.0% +2025-07-23T19:36:54.7959098Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:261: Stale 100.0% +2025-07-23T19:36:54.7959645Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:267: Account 88.9% +2025-07-23T19:36:54.7960199Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:286: AccountRLP 86.7% +2025-07-23T19:36:54.7960754Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:318: accountRLP 95.0% +2025-07-23T19:36:54.7961299Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:357: Storage 60.0% +2025-07-23T19:36:54.7961845Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:389: storage 69.6% +2025-07-23T19:36:54.7962380Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:431: Update 100.0% +2025-07-23T19:36:54.7962913Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:438: flatten 95.5% +2025-07-23T19:36:54.7963471Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:497: AccountList 100.0% +2025-07-23T19:36:54.7964042Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:533: StorageList 100.0% +2025-07-23T19:36:54.7964606Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:70: Release 0.0% +2025-07-23T19:36:54.7965240Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:78: Root 100.0% +2025-07-23T19:36:54.7965784Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:83: BlockHash 100.0% +2025-07-23T19:36:54.7966331Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:88: Parent 100.0% +2025-07-23T19:36:54.7966876Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:94: Stale 100.0% +2025-07-23T19:36:54.7967406Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:103: Account 88.9% +2025-07-23T19:36:54.7967968Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:120: AccountRLP 100.0% +2025-07-23T19:36:54.7968526Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:158: Storage 100.0% +2025-07-23T19:36:54.7969075Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:199: Update 100.0% +2025-07-23T19:36:54.7969829Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:55: generateSnapshot 91.7% +2025-07-23T19:36:54.7970433Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:90: journalProgress 88.2% +2025-07-23T19:36:54.7971026Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:127: checkAndFlush 50.0% +2025-07-23T19:36:54.7971592Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:178: generate 68.9% +2025-07-23T19:36:54.7972206Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:335: newMeteredSnapshotCache 100.0% +2025-07-23T19:36:54.7972839Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:69: AccountIterator 100.0% +2025-07-23T19:36:54.7973398Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:83: Next 70.0% +2025-07-23T19:36:54.7973922Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:108: Error 100.0% +2025-07-23T19:36:54.7974458Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:113: Hash 100.0% +2025-07-23T19:36:54.7975094Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:125: Account 81.8% +2025-07-23T19:36:54.7975650Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:143: Release 0.0% +2025-07-23T19:36:54.7976229Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:153: AccountIterator 100.0% +2025-07-23T19:36:54.7976929Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:162: Next 90.0% +2025-07-23T19:36:54.7977461Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:186: Error 100.0% +2025-07-23T19:36:54.7977990Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:194: Hash 100.0% +2025-07-23T19:36:54.7978525Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:199: Account 100.0% +2025-07-23T19:36:54.7979065Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:204: Release 33.3% +2025-07-23T19:36:54.7979647Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:233: StorageIterator 100.0% +2025-07-23T19:36:54.7980206Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:250: Next 70.0% +2025-07-23T19:36:54.7980735Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:275: Error 100.0% +2025-07-23T19:36:54.7981262Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:280: Hash 100.0% +2025-07-23T19:36:54.7981788Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:292: Slot 72.7% +2025-07-23T19:36:54.7982313Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:311: Release 0.0% +2025-07-23T19:36:54.7982894Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:325: StorageIterator 100.0% +2025-07-23T19:36:54.7983456Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:341: Next 90.0% +2025-07-23T19:36:54.7983978Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:365: Error 100.0% +2025-07-23T19:36:54.7984508Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:373: Hash 100.0% +2025-07-23T19:36:54.7985144Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:378: Slot 100.0% +2025-07-23T19:36:54.7985697Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:383: Release 33.3% +2025-07-23T19:36:54.7986321Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:53: initBinaryAccountIterator 100.0% +2025-07-23T19:36:54.7987044Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:78: initBinaryStorageIterator 82.6% +2025-07-23T19:36:54.7987683Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:130: Next 100.0% +2025-07-23T19:36:54.7988258Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:162: Error 100.0% +2025-07-23T19:36:54.7988822Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:167: Hash 100.0% +2025-07-23T19:36:54.7989403Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:176: Account 57.1% +2025-07-23T19:36:54.7990107Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:194: Slot 57.1% +2025-07-23T19:36:54.7990679Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:207: Release 0.0% +2025-07-23T19:36:54.7991319Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:214: newBinaryAccountIterator 100.0% +2025-07-23T19:36:54.7992030Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:221: newBinaryStorageIterator 100.0% +2025-07-23T19:36:54.7992652Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:47: Cmp 50.0% +2025-07-23T19:36:54.7993241Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:86: newFastIterator 92.9% +2025-07-23T19:36:54.7993826Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:124: init 87.5% +2025-07-23T19:36:54.7994383Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:179: Next 83.3% +2025-07-23T19:36:54.7995045Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:235: next 100.0% +2025-07-23T19:36:54.7995596Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:296: move 100.0% +2025-07-23T19:36:54.7996156Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:304: Error 100.0% +2025-07-23T19:36:54.7996716Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:309: Hash 100.0% +2025-07-23T19:36:54.7997501Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:315: Account 100.0% +2025-07-23T19:36:54.7998070Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:321: Slot 100.0% +2025-07-23T19:36:54.7998644Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:327: Release 100.0% +2025-07-23T19:36:54.7999205Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:335: Debug 0.0% +2025-07-23T19:36:54.7999828Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:345: newFastAccountIterator 100.0% +2025-07-23T19:36:54.8000508Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:352: newFastStorageIterator 100.0% +2025-07-23T19:36:54.8001123Z github.com/ava-labs/coreth/core/state/snapshot/journal.go:61: loadSnapshot 0.0% +2025-07-23T19:36:54.8001733Z github.com/ava-labs/coreth/core/state/snapshot/journal.go:143: ResetSnapshotGeneration 0.0% +2025-07-23T19:36:54.8002320Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:205: New 0.0% +2025-07-23T19:36:54.8002856Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:254: insertSnap 100.0% +2025-07-23T19:36:54.8003415Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:266: Snapshot 100.0% +2025-07-23T19:36:54.8003974Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:272: getSnapshot 85.7% +2025-07-23T19:36:54.8004525Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:288: Snapshots 0.0% +2025-07-23T19:36:54.8005231Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:323: WithBlockHashes 0.0% +2025-07-23T19:36:54.8005852Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:329: Update 0.0% +2025-07-23T19:36:54.8006449Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:350: UpdateWithBlockHashes 81.8% +2025-07-23T19:36:54.8007072Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:386: verifyIntegrity 57.1% +2025-07-23T19:36:54.8007637Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:413: Cap 0.0% +2025-07-23T19:36:54.8008170Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:433: Flatten 83.1% +2025-07-23T19:36:54.8008747Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:533: NumStateLayers 100.0% +2025-07-23T19:36:54.8009339Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:540: NumBlockLayers 100.0% +2025-07-23T19:36:54.8009924Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:548: Discard 100.0% +2025-07-23T19:36:54.8010641Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:560: discard 78.6% +2025-07-23T19:36:54.8011208Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:592: AbortGeneration 0.0% +2025-07-23T19:36:54.8011814Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:603: abortGeneration 63.6% +2025-07-23T19:36:54.8012402Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:631: diffToDisk 75.4% +2025-07-23T19:36:54.8012954Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:779: Release 0.0% +2025-07-23T19:36:54.8013490Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:788: Rebuild 0.0% +2025-07-23T19:36:54.8014061Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:842: AccountIterator 71.4% +2025-07-23T19:36:54.8014663Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:859: StorageIterator 100.0% +2025-07-23T19:36:54.8015412Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:863: StorageIteratorWithForce 71.4% +2025-07-23T19:36:54.8016011Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:878: Verify 0.0% +2025-07-23T19:36:54.8016545Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:886: verify 66.7% +2025-07-23T19:36:54.8017086Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:918: disklayer 83.3% +2025-07-23T19:36:54.8017764Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:941: diskRoot 0.0% +2025-07-23T19:36:54.8018312Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:951: generating 87.5% +2025-07-23T19:36:54.8018855Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:965: DiskRoot 0.0% +2025-07-23T19:36:54.8019387Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:977: Size 0.0% +2025-07-23T19:36:54.8019971Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:14: DiskAccountIterator 0.0% +2025-07-23T19:36:54.8020810Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:21: DiskStorageIterator 0.0% +2025-07-23T19:36:54.8021526Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:41: NewDiskLayer 0.0% +2025-07-23T19:36:54.8022357Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:53: NewTestTree 100.0% +2025-07-23T19:36:54.8023101Z github.com/ava-labs/coreth/core/state/snapshot/utils.go:43: CheckDanglingStorage 50.0% +2025-07-23T19:36:54.8023836Z github.com/ava-labs/coreth/core/state/snapshot/utils.go:53: checkDanglingDiskStorage 76.5% +2025-07-23T19:36:54.8024525Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:45: WipeSnapshot 80.0% +2025-07-23T19:36:54.8040009Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:68: wipeContent 60.0% +2025-07-23T19:36:54.8040711Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:84: wipeKeyRange 59.4% +2025-07-23T19:36:54.8041236Z github.com/ava-labs/coreth/core/state/statedb.go:65: New 75.0% +2025-07-23T19:36:54.8041710Z github.com/ava-labs/coreth/core/state/statedb.go:81: Done 0.0% +2025-07-23T19:36:54.8042239Z github.com/ava-labs/coreth/core/state/statedb.go:87: WithConcurrentWorkers 0.0% +2025-07-23T19:36:54.8042813Z github.com/ava-labs/coreth/core/state/statedb.go:95: GetBalanceMultiCoin 100.0% +2025-07-23T19:36:54.8043344Z github.com/ava-labs/coreth/core/state/statedb.go:101: GetState 100.0% +2025-07-23T19:36:54.8043875Z github.com/ava-labs/coreth/core/state/statedb.go:107: AddBalanceMultiCoin 75.0% +2025-07-23T19:36:54.8044423Z github.com/ava-labs/coreth/core/state/statedb.go:121: SubBalanceMultiCoin 71.4% +2025-07-23T19:36:54.8045052Z github.com/ava-labs/coreth/core/state/statedb.go:136: SetState 100.0% +2025-07-23T19:36:54.8045551Z github.com/ava-labs/coreth/core/state/statedb.go:144: SetTxContext 0.0% +2025-07-23T19:36:54.8046027Z github.com/ava-labs/coreth/core/state/statedb.go:151: GetTxHash 0.0% +2025-07-23T19:36:54.8046711Z github.com/ava-labs/coreth/core/state/statedb.go:155: Copy 0.0% +2025-07-23T19:36:54.8047213Z github.com/ava-labs/coreth/core/state/statedb.go:169: NormalizeCoinID 100.0% +2025-07-23T19:36:54.8047747Z github.com/ava-labs/coreth/core/state/statedb.go:177: NormalizeStateKey 100.0% +2025-07-23T19:36:54.8048249Z github.com/ava-labs/coreth/core/state_manager.go:41: init 100.0% +2025-07-23T19:36:54.8048738Z github.com/ava-labs/coreth/core/state_manager.go:67: NewTrieWriter 100.0% +2025-07-23T19:36:54.8049233Z github.com/ava-labs/coreth/core/state_manager.go:91: InsertTrie 100.0% +2025-07-23T19:36:54.8049708Z github.com/ava-labs/coreth/core/state_manager.go:97: AcceptTrie 100.0% +2025-07-23T19:36:54.8050193Z github.com/ava-labs/coreth/core/state_manager.go:103: RejectTrie 100.0% +2025-07-23T19:36:54.8050673Z github.com/ava-labs/coreth/core/state_manager.go:107: Shutdown 100.0% +2025-07-23T19:36:54.8051153Z github.com/ava-labs/coreth/core/state_manager.go:120: InsertTrie 50.0% +2025-07-23T19:36:54.8051622Z github.com/ava-labs/coreth/core/state_manager.go:134: AcceptTrie 68.4% +2025-07-23T19:36:54.8052098Z github.com/ava-labs/coreth/core/state_manager.go:182: RejectTrie 100.0% +2025-07-23T19:36:54.8052568Z github.com/ava-labs/coreth/core/state_manager.go:187: Shutdown 100.0% +2025-07-23T19:36:54.8053208Z github.com/ava-labs/coreth/core/state_processor.go:55: NewStateProcessor 100.0% +2025-07-23T19:36:54.8053752Z github.com/ava-labs/coreth/core/state_processor.go:70: Process 90.9% +2025-07-23T19:36:54.8054267Z github.com/ava-labs/coreth/core/state_processor.go:120: applyTransaction 92.6% +2025-07-23T19:36:54.8054910Z github.com/ava-labs/coreth/core/state_processor.go:174: ApplyTransaction 83.3% +2025-07-23T19:36:54.8055476Z github.com/ava-labs/coreth/core/state_processor.go:187: ProcessBeaconBlockRoot 100.0% +2025-07-23T19:36:54.8056096Z github.com/ava-labs/coreth/core/state_processor_ext.go:24: ApplyPrecompileActivations 23.8% +2025-07-23T19:36:54.8056683Z github.com/ava-labs/coreth/core/state_processor_ext.go:77: ApplyUpgrades 100.0% +2025-07-23T19:36:54.8057232Z github.com/ava-labs/coreth/core/state_processor_ext.go:91: NewBlockContext 100.0% +2025-07-23T19:36:54.8057743Z github.com/ava-labs/coreth/core/state_processor_ext.go:98: Number 0.0% +2025-07-23T19:36:54.8058248Z github.com/ava-labs/coreth/core/state_processor_ext.go:99: Timestamp 100.0% +2025-07-23T19:36:54.8058741Z github.com/ava-labs/coreth/core/state_transition.go:56: Unwrap 0.0% +2025-07-23T19:36:54.8059213Z github.com/ava-labs/coreth/core/state_transition.go:61: Failed 100.0% +2025-07-23T19:36:54.8059685Z github.com/ava-labs/coreth/core/state_transition.go:65: Return 0.0% +2025-07-23T19:36:54.8060146Z github.com/ava-labs/coreth/core/state_transition.go:74: Revert 0.0% +2025-07-23T19:36:54.8060633Z github.com/ava-labs/coreth/core/state_transition.go:82: IntrinsicGas 88.2% +2025-07-23T19:36:54.8061145Z github.com/ava-labs/coreth/core/state_transition.go:139: accessListGas 91.3% +2025-07-23T19:36:54.8061655Z github.com/ava-labs/coreth/core/state_transition.go:179: toWordSize 66.7% +2025-07-23T19:36:54.8062193Z github.com/ava-labs/coreth/core/state_transition.go:210: TransactionToMessage 100.0% +2025-07-23T19:36:54.8062742Z github.com/ava-labs/coreth/core/state_transition.go:241: ApplyMessage 100.0% +2025-07-23T19:36:54.8063279Z github.com/ava-labs/coreth/core/state_transition.go:277: NewStateTransition 100.0% +2025-07-23T19:36:54.8063782Z github.com/ava-labs/coreth/core/state_transition.go:287: to 66.7% +2025-07-23T19:36:54.8064242Z github.com/ava-labs/coreth/core/state_transition.go:294: buyGas 77.8% +2025-07-23T19:36:54.8064717Z github.com/ava-labs/coreth/core/state_transition.go:333: preCheck 89.5% +2025-07-23T19:36:54.8065513Z github.com/ava-labs/coreth/core/state_transition.go:426: TransitionDb 88.2% +2025-07-23T19:36:54.8066214Z github.com/ava-labs/coreth/core/state_transition.go:514: refundGas 100.0% +2025-07-23T19:36:54.8066717Z github.com/ava-labs/coreth/core/state_transition.go:539: gasUsed 100.0% +2025-07-23T19:36:54.8067211Z github.com/ava-labs/coreth/core/state_transition.go:544: blobGasUsed 100.0% +2025-07-23T19:36:54.8067682Z github.com/ava-labs/coreth/core/txindexer.go:46: Done 0.0% +2025-07-23T19:36:54.8068139Z github.com/ava-labs/coreth/core/txindexer.go:68: newTxIndexer 90.9% +2025-07-23T19:36:54.8068591Z github.com/ava-labs/coreth/core/txindexer.go:97: run 90.9% +2025-07-23T19:36:54.8069009Z github.com/ava-labs/coreth/core/txindexer.go:124: loop 91.7% +2025-07-23T19:36:54.8069437Z github.com/ava-labs/coreth/core/txindexer.go:191: report 0.0% +2025-07-23T19:36:54.8069874Z github.com/ava-labs/coreth/core/txindexer.go:213: close 100.0% +2025-07-23T19:36:54.8070316Z github.com/ava-labs/coreth/core/txindexer.go:224: lockedRun 100.0% +2025-07-23T19:36:54.8070863Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:124: newBlobTxMeta 100.0% +2025-07-23T19:36:54.8071431Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:333: New 100.0% +2025-07-23T19:36:54.8071960Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:349: Filter 0.0% +2025-07-23T19:36:54.8072483Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:356: Init 78.8% +2025-07-23T19:36:54.8073136Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:458: Close 60.0% +2025-07-23T19:36:54.8073711Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:480: parseTransaction 88.0% +2025-07-23T19:36:54.8074291Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:528: recheck 90.9% +2025-07-23T19:36:54.8074986Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:779: offload 0.0% +2025-07-23T19:36:54.8075515Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:803: Reset 0.0% +2025-07-23T19:36:54.8076036Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:875: reorg 0.0% +2025-07-23T19:36:54.8076558Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1003: reinject 0.0% +2025-07-23T19:36:54.8077108Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1047: SetGasTip 97.2% +2025-07-23T19:36:54.8077673Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1112: validateTx 100.0% +2025-07-23T19:36:54.8078221Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1197: Has 0.0% +2025-07-23T19:36:54.8078740Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1205: HasLocal 0.0% +2025-07-23T19:36:54.8079259Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1211: Get 0.0% +2025-07-23T19:36:54.8079767Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1243: Add 0.0% +2025-07-23T19:36:54.8080275Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1263: add 89.3% +2025-07-23T19:36:54.8080793Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1430: drop 54.5% +2025-07-23T19:36:54.8081326Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1485: Pending 0.0% +2025-07-23T19:36:54.8081896Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1547: IteratePending 0.0% +2025-07-23T19:36:54.8082465Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1565: SetMinFee 0.0% +2025-07-23T19:36:54.8083069Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1569: updateStorageMetrics 100.0% +2025-07-23T19:36:54.8083721Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1616: updateLimboMetrics 100.0% +2025-07-23T19:36:54.8084365Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1644: SubscribeTransactions 0.0% +2025-07-23T19:36:54.8085043Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1654: Nonce 0.0% +2025-07-23T19:36:54.8085766Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1666: Stats 0.0% +2025-07-23T19:36:54.8086318Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1682: Content 0.0% +2025-07-23T19:36:54.8086871Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1691: ContentFrom 0.0% +2025-07-23T19:36:54.8087418Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1698: Locals 0.0% +2025-07-23T19:36:54.8087960Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1704: Status 0.0% +2025-07-23T19:36:54.8088520Z github.com/ava-labs/coreth/core/txpool/blobpool/config.go:50: sanitize 100.0% +2025-07-23T19:36:54.8089092Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:60: newPriceHeap 100.0% +2025-07-23T19:36:54.8089670Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:84: reinit 85.7% +2025-07-23T19:36:54.8090216Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:101: Len 100.0% +2025-07-23T19:36:54.8090760Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:107: Less 100.0% +2025-07-23T19:36:54.8091291Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:131: Swap 100.0% +2025-07-23T19:36:54.8091821Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:138: Push 100.0% +2025-07-23T19:36:54.8092352Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:148: Pop 100.0% +2025-07-23T19:36:54.8093037Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:62: newLimbo 50.0% +2025-07-23T19:36:54.8093557Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:93: Close 100.0% +2025-07-23T19:36:54.8094079Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:99: parseBlob 0.0% +2025-07-23T19:36:54.8094616Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:126: finalize 0.0% +2025-07-23T19:36:54.8095231Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:149: push 0.0% +2025-07-23T19:36:54.8095741Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:166: pull 0.0% +2025-07-23T19:36:54.8096241Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:190: update 0.0% +2025-07-23T19:36:54.8096760Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:221: getAndDrop 0.0% +2025-07-23T19:36:54.8097299Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:243: setAndIndex 0.0% +2025-07-23T19:36:54.8097894Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:45: evictionPriority 100.0% +2025-07-23T19:36:54.8098529Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:58: evictionPriority1D 100.0% +2025-07-23T19:36:54.8099154Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:77: dynamicFeeJumps 100.0% +2025-07-23T19:36:54.8099726Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:87: intLog2 50.0% +2025-07-23T19:36:54.8100280Z github.com/ava-labs/coreth/core/txpool/blobpool/slotter.go:39: newSlotter 100.0% +2025-07-23T19:36:54.8100830Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:52: Write 100.0% +2025-07-23T19:36:54.8101354Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:53: Close 0.0% +2025-07-23T19:36:54.8101910Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:63: newTxJournal 100.0% +2025-07-23T19:36:54.8102465Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:71: load 87.1% +2025-07-23T19:36:54.8102998Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:132: insert 60.0% +2025-07-23T19:36:54.8103535Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:144: rotate 76.9% +2025-07-23T19:36:54.8104087Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:189: close 100.0% +2025-07-23T19:36:54.8104666Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:186: sanitize 46.2% +2025-07-23T19:36:54.8105346Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:275: New 80.0% +2025-07-23T19:36:54.8106048Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:312: Filter 0.0% +2025-07-23T19:36:54.8106613Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:325: Init 81.0% +2025-07-23T19:36:54.8107168Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:371: loop 96.8% +2025-07-23T19:36:54.8107730Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:439: Close 100.0% +2025-07-23T19:36:54.8108292Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:455: Reset 0.0% +2025-07-23T19:36:54.8108913Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:462: SubscribeTransactions 0.0% +2025-07-23T19:36:54.8109565Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:472: SetGasTip 100.0% +2025-07-23T19:36:54.8110161Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:493: SetMinFee 0.0% +2025-07-23T19:36:54.8110745Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:502: Nonce 100.0% +2025-07-23T19:36:54.8111319Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:511: Stats 100.0% +2025-07-23T19:36:54.8111884Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:520: stats 100.0% +2025-07-23T19:36:54.8112450Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:534: Content 88.9% +2025-07-23T19:36:54.8113192Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:551: ContentFrom 0.0% +2025-07-23T19:36:54.8113789Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:571: Pending 0.0% +2025-07-23T19:36:54.8114397Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:631: IteratePending 0.0% +2025-07-23T19:36:54.8115085Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:646: Locals 0.0% +2025-07-23T19:36:54.8115654Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:656: local 100.0% +2025-07-23T19:36:54.8116264Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:673: validateTxBasics 100.0% +2025-07-23T19:36:54.8116901Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:694: validateTx 100.0% +2025-07-23T19:36:54.8117473Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:743: add 88.3% +2025-07-23T19:36:54.8118051Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:893: isGapped 100.0% +2025-07-23T19:36:54.8118654Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:919: enqueueTx 95.0% +2025-07-23T19:36:54.8119249Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:958: journalTx 75.0% +2025-07-23T19:36:54.8119832Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:972: promoteTx 58.8% +2025-07-23T19:36:54.8120429Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1009: addLocals 100.0% +2025-07-23T19:36:54.8121026Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1015: addLocal 100.0% +2025-07-23T19:36:54.8121631Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1024: addRemotes 100.0% +2025-07-23T19:36:54.8122235Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1030: addRemote 100.0% +2025-07-23T19:36:54.8122860Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1035: addRemotesSync 100.0% +2025-07-23T19:36:54.8123505Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1040: addRemoteSync 100.0% +2025-07-23T19:36:54.8124105Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1049: Add 100.0% +2025-07-23T19:36:54.8124708Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1104: addTxsLocked 100.0% +2025-07-23T19:36:54.8125408Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1120: Status 90.9% +2025-07-23T19:36:54.8125977Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1139: Get 0.0% +2025-07-23T19:36:54.8126679Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1148: get 100.0% +2025-07-23T19:36:54.8127233Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1154: Has 0.0% +2025-07-23T19:36:54.8127794Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1158: HasLocal 0.0% +2025-07-23T19:36:54.8128375Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1171: removeTx 93.3% +2025-07-23T19:36:54.8128982Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1236: requestReset 66.7% +2025-07-23T19:36:54.8129658Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1247: requestPromoteExecutables 66.7% +2025-07-23T19:36:54.8130330Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1257: queueTxEvent 100.0% +2025-07-23T19:36:54.8130975Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1267: scheduleReorgLoop 96.6% +2025-07-23T19:36:54.8131603Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1337: runReorg 84.1% +2025-07-23T19:36:54.8132211Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1420: reset 23.1% +2025-07-23T19:36:54.8132831Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1520: promoteExecutables 100.0% +2025-07-23T19:36:54.8133488Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1590: truncatePending 69.6% +2025-07-23T19:36:54.8134266Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1675: truncateQueue 100.0% +2025-07-23T19:36:54.8135016Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1726: demoteUnexecutables 96.9% +2025-07-23T19:36:54.8135708Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1781: startPeriodicFeeUpdate 85.7% +2025-07-23T19:36:54.8136405Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1797: periodicBaseFeeUpdate 100.0% +2025-07-23T19:36:54.8137065Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1820: updateBaseFee 80.0% +2025-07-23T19:36:54.8137702Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1831: updateBaseFeeAt 83.3% +2025-07-23T19:36:54.8138307Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1849: Len 100.0% +2025-07-23T19:36:54.8138869Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1850: Less 100.0% +2025-07-23T19:36:54.8139438Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1851: Swap 100.0% +2025-07-23T19:36:54.8140028Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1863: newAccountSet 100.0% +2025-07-23T19:36:54.8140640Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1875: contains 100.0% +2025-07-23T19:36:54.8141242Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1882: containsTx 66.7% +2025-07-23T19:36:54.8141818Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1890: add 100.0% +2025-07-23T19:36:54.8142387Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1896: addTx 100.0% +2025-07-23T19:36:54.8142972Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1904: flatten 100.0% +2025-07-23T19:36:54.8143557Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1916: merge 100.0% +2025-07-23T19:36:54.8144146Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1943: newLookup 100.0% +2025-07-23T19:36:54.8144738Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1953: Range 60.0% +2025-07-23T19:36:54.8145399Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1974: Get 80.0% +2025-07-23T19:36:54.8145967Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1985: GetLocal 0.0% +2025-07-23T19:36:54.8146546Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1993: GetRemote 100.0% +2025-07-23T19:36:54.8147129Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2001: Count 100.0% +2025-07-23T19:36:54.8147860Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2009: LocalCount 0.0% +2025-07-23T19:36:54.8148471Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2017: RemoteCount 100.0% +2025-07-23T19:36:54.8149064Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2025: Slots 100.0% +2025-07-23T19:36:54.8149631Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2033: Add 100.0% +2025-07-23T19:36:54.8150193Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2048: Remove 83.3% +2025-07-23T19:36:54.8150796Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2069: RemoteToLocals 66.7% +2025-07-23T19:36:54.8151441Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2085: RemotesBelowTip 100.0% +2025-07-23T19:36:54.8152063Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2097: numSlots 100.0% +2025-07-23T19:36:54.8152627Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:49: Len 100.0% +2025-07-23T19:36:54.8153157Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:50: Less 100.0% +2025-07-23T19:36:54.8153666Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:51: Swap 100.0% +2025-07-23T19:36:54.8154174Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:53: Push 100.0% +2025-07-23T19:36:54.8154956Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:57: Pop 100.0% +2025-07-23T19:36:54.8155501Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:76: newSortedMap 100.0% +2025-07-23T19:36:54.8156037Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:84: Get 100.0% +2025-07-23T19:36:54.8156541Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:90: Put 100.0% +2025-07-23T19:36:54.8157063Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:103: Forward 100.0% +2025-07-23T19:36:54.8157606Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:126: Filter 100.0% +2025-07-23T19:36:54.8158140Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:135: reheap 100.0% +2025-07-23T19:36:54.8158677Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:148: filter 100.0% +2025-07-23T19:36:54.8159198Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:168: Cap 92.3% +2025-07-23T19:36:54.8159712Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:195: Remove 100.0% +2025-07-23T19:36:54.8160242Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:223: Ready 100.0% +2025-07-23T19:36:54.8160760Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:243: Len 100.0% +2025-07-23T19:36:54.8161278Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:247: flatten 100.0% +2025-07-23T19:36:54.8161816Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:264: Flatten 100.0% +2025-07-23T19:36:54.8162373Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:274: LastElement 100.0% +2025-07-23T19:36:54.8162921Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:294: newList 100.0% +2025-07-23T19:36:54.8163452Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:305: Contains 100.0% +2025-07-23T19:36:54.8163972Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:314: Add 100.0% +2025-07-23T19:36:54.8164495Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:361: Forward 100.0% +2025-07-23T19:36:54.8165120Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:376: Filter 95.0% +2025-07-23T19:36:54.8165631Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:412: Cap 100.0% +2025-07-23T19:36:54.8166148Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:421: Remove 100.0% +2025-07-23T19:36:54.8166673Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:444: Ready 100.0% +2025-07-23T19:36:54.8167323Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:451: Len 100.0% +2025-07-23T19:36:54.8167835Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:456: Empty 100.0% +2025-07-23T19:36:54.8168361Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:463: Flatten 100.0% +2025-07-23T19:36:54.8168910Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:469: LastElement 100.0% +2025-07-23T19:36:54.8169470Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:475: subTotalCost 75.0% +2025-07-23T19:36:54.8170001Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:493: Len 100.0% +2025-07-23T19:36:54.8170513Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:494: Swap 100.0% +2025-07-23T19:36:54.8171029Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:496: Less 100.0% +2025-07-23T19:36:54.8171528Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:507: cmp 100.0% +2025-07-23T19:36:54.8172039Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:522: Push 100.0% +2025-07-23T19:36:54.8172548Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:527: Pop 100.0% +2025-07-23T19:36:54.8173088Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:563: newPricedList 100.0% +2025-07-23T19:36:54.8173637Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:570: Put 100.0% +2025-07-23T19:36:54.8174294Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:581: Removed 100.0% +2025-07-23T19:36:54.8174948Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:593: Underpriced 100.0% +2025-07-23T19:36:54.8175520Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:603: underpricedFor 70.0% +2025-07-23T19:36:54.8176080Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:628: Discard 61.9% +2025-07-23T19:36:54.8176613Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:667: Reheap 100.0% +2025-07-23T19:36:54.8177161Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:695: SetBaseFee 100.0% +2025-07-23T19:36:54.8177713Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:47: newNoncer 100.0% +2025-07-23T19:36:54.8178247Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:56: get 100.0% +2025-07-23T19:36:54.8178762Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:72: set 100.0% +2025-07-23T19:36:54.8179293Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:81: setIfLower 62.5% +2025-07-23T19:36:54.8179840Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:97: setAll 100.0% +2025-07-23T19:36:54.8180355Z github.com/ava-labs/coreth/core/txpool/subpool.go:65: Resolve 66.7% +2025-07-23T19:36:54.8180824Z github.com/ava-labs/coreth/core/txpool/txpool.go:103: New 76.9% +2025-07-23T19:36:54.8181282Z github.com/ava-labs/coreth/core/txpool/txpool.go:143: reserver 69.2% +2025-07-23T19:36:54.8181757Z github.com/ava-labs/coreth/core/txpool/txpool.go:186: Close 76.9% +2025-07-23T19:36:54.8182217Z github.com/ava-labs/coreth/core/txpool/txpool.go:215: loop 92.6% +2025-07-23T19:36:54.8182678Z github.com/ava-labs/coreth/core/txpool/txpool.go:308: GasTip 100.0% +2025-07-23T19:36:54.8183159Z github.com/ava-labs/coreth/core/txpool/txpool.go:314: SetGasTip 100.0% +2025-07-23T19:36:54.8183633Z github.com/ava-labs/coreth/core/txpool/txpool.go:323: MinFee 0.0% +2025-07-23T19:36:54.8184101Z github.com/ava-labs/coreth/core/txpool/txpool.go:329: SetMinFee 100.0% +2025-07-23T19:36:54.8184574Z github.com/ava-labs/coreth/core/txpool/txpool.go:339: Has 75.0% +2025-07-23T19:36:54.8185139Z github.com/ava-labs/coreth/core/txpool/txpool.go:350: HasLocal 0.0% +2025-07-23T19:36:54.8185607Z github.com/ava-labs/coreth/core/txpool/txpool.go:360: Get 0.0% +2025-07-23T19:36:54.8186052Z github.com/ava-labs/coreth/core/txpool/txpool.go:372: Add 90.0% +2025-07-23T19:36:54.8186667Z github.com/ava-labs/coreth/core/txpool/txpool.go:415: AddRemotesSync 100.0% +2025-07-23T19:36:54.8187178Z github.com/ava-labs/coreth/core/txpool/txpool.go:425: Pending 100.0% +2025-07-23T19:36:54.8187676Z github.com/ava-labs/coreth/core/txpool/txpool.go:439: PendingSize 100.0% +2025-07-23T19:36:54.8188186Z github.com/ava-labs/coreth/core/txpool/txpool.go:451: IteratePending 66.7% +2025-07-23T19:36:54.8188739Z github.com/ava-labs/coreth/core/txpool/txpool.go:461: SubscribeTransactions 85.7% +2025-07-23T19:36:54.8189315Z github.com/ava-labs/coreth/core/txpool/txpool.go:475: SubscribeNewReorgEvent 100.0% +2025-07-23T19:36:54.8189838Z github.com/ava-labs/coreth/core/txpool/txpool.go:481: Nonce 100.0% +2025-07-23T19:36:54.8190297Z github.com/ava-labs/coreth/core/txpool/txpool.go:496: Stats 0.0% +2025-07-23T19:36:54.8190760Z github.com/ava-labs/coreth/core/txpool/txpool.go:509: Content 0.0% +2025-07-23T19:36:54.8191245Z github.com/ava-labs/coreth/core/txpool/txpool.go:529: ContentFrom 0.0% +2025-07-23T19:36:54.8191715Z github.com/ava-labs/coreth/core/txpool/txpool.go:540: Locals 75.0% +2025-07-23T19:36:54.8192168Z github.com/ava-labs/coreth/core/txpool/txpool.go:558: Status 0.0% +2025-07-23T19:36:54.8192622Z github.com/ava-labs/coreth/core/txpool/txpool.go:574: Sync 75.0% +2025-07-23T19:36:54.8193259Z github.com/ava-labs/coreth/core/txpool/validation.go:67: ValidateTransaction 73.9% +2025-07-23T19:36:54.8193831Z github.com/ava-labs/coreth/core/txpool/validation.go:160: validateBlobSidecar 66.7% +2025-07-23T19:36:54.8194443Z github.com/ava-labs/coreth/core/txpool/validation.go:222: ValidateTransactionWithState 88.9% +2025-07-23T19:36:54.8195128Z github.com/ava-labs/coreth/core/vm/runtime/env.go:35: NewEnv 100.0% +2025-07-23T19:36:54.8195627Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:71: setDefaults 94.7% +2025-07-23T19:36:54.8196141Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:134: Execute 100.0% +2025-07-23T19:36:54.8196645Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:169: Create 77.8% +2025-07-23T19:36:54.8197134Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:203: Call 100.0% +2025-07-23T19:36:54.8197598Z github.com/ava-labs/coreth/eth/api.go:40: NewEthereumAPI 0.0% +2025-07-23T19:36:54.8198018Z github.com/ava-labs/coreth/eth/api.go:45: Etherbase 0.0% +2025-07-23T19:36:54.8198424Z github.com/ava-labs/coreth/eth/api.go:50: Coinbase 0.0% +2025-07-23T19:36:54.8198850Z github.com/ava-labs/coreth/eth/api_admin.go:50: NewAdminAPI 0.0% +2025-07-23T19:36:54.8199293Z github.com/ava-labs/coreth/eth/api_admin.go:56: ExportChain 0.0% +2025-07-23T19:36:54.8199748Z github.com/ava-labs/coreth/eth/api_admin.go:93: hasAllBlocks 0.0% +2025-07-23T19:36:54.8200196Z github.com/ava-labs/coreth/eth/api_admin.go:104: ImportChain 0.0% +2025-07-23T19:36:54.8200648Z github.com/ava-labs/coreth/eth/api_backend.go:72: ChainConfig 0.0% +2025-07-23T19:36:54.8201093Z github.com/ava-labs/coreth/eth/api_backend.go:77: IsArchive 0.0% +2025-07-23T19:36:54.8201595Z github.com/ava-labs/coreth/eth/api_backend.go:83: HistoricalProofQueryWindow 0.0% +2025-07-23T19:36:54.8202146Z github.com/ava-labs/coreth/eth/api_backend.go:87: IsAllowUnfinalizedQueries 0.0% +2025-07-23T19:36:54.8202691Z github.com/ava-labs/coreth/eth/api_backend.go:91: SetAllowUnfinalizedQueries 0.0% +2025-07-23T19:36:54.8203189Z github.com/ava-labs/coreth/eth/api_backend.go:95: CurrentBlock 0.0% +2025-07-23T19:36:54.8203670Z github.com/ava-labs/coreth/eth/api_backend.go:99: LastAcceptedBlock 0.0% +2025-07-23T19:36:54.8204158Z github.com/ava-labs/coreth/eth/api_backend.go:103: HeaderByNumber 0.0% +2025-07-23T19:36:54.8204629Z github.com/ava-labs/coreth/eth/api_backend.go:126: HeaderByHash 0.0% +2025-07-23T19:36:54.8205221Z github.com/ava-labs/coreth/eth/api_backend.go:149: HeaderByNumberOrHash 0.0% +2025-07-23T19:36:54.8205874Z github.com/ava-labs/coreth/eth/api_backend.go:166: BlockByNumber 0.0% +2025-07-23T19:36:54.8206342Z github.com/ava-labs/coreth/eth/api_backend.go:190: BlockByHash 0.0% +2025-07-23T19:36:54.8206790Z github.com/ava-labs/coreth/eth/api_backend.go:215: GetBody 0.0% +2025-07-23T19:36:54.8207282Z github.com/ava-labs/coreth/eth/api_backend.go:225: BlockByNumberOrHash 0.0% +2025-07-23T19:36:54.8207774Z github.com/ava-labs/coreth/eth/api_backend.go:245: BadBlocks 0.0% +2025-07-23T19:36:54.8208265Z github.com/ava-labs/coreth/eth/api_backend.go:249: StateAndHeaderByNumber 0.0% +2025-07-23T19:36:54.8208825Z github.com/ava-labs/coreth/eth/api_backend.go:265: StateAndHeaderByNumberOrHash 0.0% +2025-07-23T19:36:54.8209350Z github.com/ava-labs/coreth/eth/api_backend.go:289: GetReceipts 0.0% +2025-07-23T19:36:54.8209813Z github.com/ava-labs/coreth/eth/api_backend.go:296: GetLogs 0.0% +2025-07-23T19:36:54.8210259Z github.com/ava-labs/coreth/eth/api_backend.go:303: GetEVM 0.0% +2025-07-23T19:36:54.8210759Z github.com/ava-labs/coreth/eth/api_backend.go:317: SubscribeRemovedLogsEvent 0.0% +2025-07-23T19:36:54.8211307Z github.com/ava-labs/coreth/eth/api_backend.go:321: SubscribePendingLogsEvent 0.0% +2025-07-23T19:36:54.8211838Z github.com/ava-labs/coreth/eth/api_backend.go:325: SubscribeChainEvent 0.0% +2025-07-23T19:36:54.8212512Z github.com/ava-labs/coreth/eth/api_backend.go:329: SubscribeChainAcceptedEvent 0.0% +2025-07-23T19:36:54.8213065Z github.com/ava-labs/coreth/eth/api_backend.go:333: SubscribeChainHeadEvent 0.0% +2025-07-23T19:36:54.8213603Z github.com/ava-labs/coreth/eth/api_backend.go:337: SubscribeChainSideEvent 0.0% +2025-07-23T19:36:54.8214121Z github.com/ava-labs/coreth/eth/api_backend.go:341: SubscribeLogsEvent 0.0% +2025-07-23T19:36:54.8214654Z github.com/ava-labs/coreth/eth/api_backend.go:345: SubscribeAcceptedLogsEvent 0.0% +2025-07-23T19:36:54.8215347Z github.com/ava-labs/coreth/eth/api_backend.go:349: SubscribeAcceptedTransactionEvent 0.0% +2025-07-23T19:36:54.8215867Z github.com/ava-labs/coreth/eth/api_backend.go:353: SendTx 0.0% +2025-07-23T19:36:54.8216340Z github.com/ava-labs/coreth/eth/api_backend.go:367: GetPoolTransactions 0.0% +2025-07-23T19:36:54.8216849Z github.com/ava-labs/coreth/eth/api_backend.go:380: GetPoolTransaction 0.0% +2025-07-23T19:36:54.8217349Z github.com/ava-labs/coreth/eth/api_backend.go:384: GetTransaction 0.0% +2025-07-23T19:36:54.8217827Z github.com/ava-labs/coreth/eth/api_backend.go:407: GetPoolNonce 0.0% +2025-07-23T19:36:54.8218288Z github.com/ava-labs/coreth/eth/api_backend.go:411: Stats 0.0% +2025-07-23T19:36:54.8218758Z github.com/ava-labs/coreth/eth/api_backend.go:415: TxPoolContent 0.0% +2025-07-23T19:36:54.8219257Z github.com/ava-labs/coreth/eth/api_backend.go:419: TxPoolContentFrom 0.0% +2025-07-23T19:36:54.8219771Z github.com/ava-labs/coreth/eth/api_backend.go:423: SubscribeNewTxsEvent 0.0% +2025-07-23T19:36:54.8220289Z github.com/ava-labs/coreth/eth/api_backend.go:427: EstimateBaseFee 0.0% +2025-07-23T19:36:54.8220772Z github.com/ava-labs/coreth/eth/api_backend.go:431: SuggestPrice 0.0% +2025-07-23T19:36:54.8221256Z github.com/ava-labs/coreth/eth/api_backend.go:435: SuggestGasTipCap 0.0% +2025-07-23T19:36:54.8221735Z github.com/ava-labs/coreth/eth/api_backend.go:439: FeeHistory 0.0% +2025-07-23T19:36:54.8222200Z github.com/ava-labs/coreth/eth/api_backend.go:443: ChainDb 0.0% +2025-07-23T19:36:54.8222643Z github.com/ava-labs/coreth/eth/api_backend.go:447: EventMux 0.0% +2025-07-23T19:36:54.8223105Z github.com/ava-labs/coreth/eth/api_backend.go:451: AccountManager 0.0% +2025-07-23T19:36:54.8223576Z github.com/ava-labs/coreth/eth/api_backend.go:455: ExtRPCEnabled 0.0% +2025-07-23T19:36:54.8224071Z github.com/ava-labs/coreth/eth/api_backend.go:459: UnprotectedAllowed 75.0% +2025-07-23T19:36:54.8224696Z github.com/ava-labs/coreth/eth/api_backend.go:479: RPCGasCap 0.0% +2025-07-23T19:36:54.8225260Z github.com/ava-labs/coreth/eth/api_backend.go:483: RPCEVMTimeout 0.0% +2025-07-23T19:36:54.8225733Z github.com/ava-labs/coreth/eth/api_backend.go:487: RPCTxFeeCap 0.0% +2025-07-23T19:36:54.8226222Z github.com/ava-labs/coreth/eth/api_backend.go:491: PriceOptionsConfig 0.0% +2025-07-23T19:36:54.8226711Z github.com/ava-labs/coreth/eth/api_backend.go:495: BloomStatus 0.0% +2025-07-23T19:36:54.8227172Z github.com/ava-labs/coreth/eth/api_backend.go:500: ServiceFilter 0.0% +2025-07-23T19:36:54.8227629Z github.com/ava-labs/coreth/eth/api_backend.go:506: Engine 0.0% +2025-07-23T19:36:54.8228081Z github.com/ava-labs/coreth/eth/api_backend.go:510: CurrentHeader 0.0% +2025-07-23T19:36:54.8228578Z github.com/ava-labs/coreth/eth/api_backend.go:514: GetMaxBlocksPerRequest 0.0% +2025-07-23T19:36:54.8229082Z github.com/ava-labs/coreth/eth/api_backend.go:518: StateAtBlock 0.0% +2025-07-23T19:36:54.8229566Z github.com/ava-labs/coreth/eth/api_backend.go:522: StateAtNextBlock 0.0% +2025-07-23T19:36:54.8230062Z github.com/ava-labs/coreth/eth/api_backend.go:526: StateAtTransaction 0.0% +2025-07-23T19:36:54.8230551Z github.com/ava-labs/coreth/eth/api_backend.go:530: MinRequiredTip 0.0% +2025-07-23T19:36:54.8231034Z github.com/ava-labs/coreth/eth/api_backend.go:535: isLatestAndAllowed 0.0% +2025-07-23T19:36:54.8231671Z github.com/ava-labs/coreth/eth/api_debug.go:56: NewDebugAPI 0.0% +2025-07-23T19:36:54.8232155Z github.com/ava-labs/coreth/eth/api_debug.go:61: DumpBlock 0.0% +2025-07-23T19:36:54.8232584Z github.com/ava-labs/coreth/eth/api_debug.go:91: Preimage 0.0% +2025-07-23T19:36:54.8233033Z github.com/ava-labs/coreth/eth/api_debug.go:100: GetBadBlocks 0.0% +2025-07-23T19:36:54.8233488Z github.com/ava-labs/coreth/eth/api_debug.go:109: AccountRange 0.0% +2025-07-23T19:36:54.8233944Z github.com/ava-labs/coreth/eth/api_debug.go:175: StorageRangeAt 0.0% +2025-07-23T19:36:54.8234414Z github.com/ava-labs/coreth/eth/api_debug.go:194: storageRangeAt 84.0% +2025-07-23T19:36:54.8235075Z github.com/ava-labs/coreth/eth/api_debug.go:235: GetModifiedAccountsByNumber 0.0% +2025-07-23T19:36:54.8235620Z github.com/ava-labs/coreth/eth/api_debug.go:263: GetModifiedAccountsByHash 0.0% +2025-07-23T19:36:54.8236138Z github.com/ava-labs/coreth/eth/api_debug.go:285: getModifiedAccounts 0.0% +2025-07-23T19:36:54.8236634Z github.com/ava-labs/coreth/eth/api_debug.go:326: GetAccessibleState 0.0% +2025-07-23T19:36:54.8237114Z github.com/ava-labs/coreth/eth/backend.go:121: roundUpCacheSize 0.0% +2025-07-23T19:36:54.8237553Z github.com/ava-labs/coreth/eth/backend.go:128: New 0.0% +2025-07-23T19:36:54.8237955Z github.com/ava-labs/coreth/eth/backend.go:309: APIs 0.0% +2025-07-23T19:36:54.8238371Z github.com/ava-labs/coreth/eth/backend.go:349: Etherbase 0.0% +2025-07-23T19:36:54.8238814Z github.com/ava-labs/coreth/eth/backend.go:361: SetEtherbase 0.0% +2025-07-23T19:36:54.8239244Z github.com/ava-labs/coreth/eth/backend.go:369: Miner 0.0% +2025-07-23T19:36:54.8239684Z github.com/ava-labs/coreth/eth/backend.go:371: AccountManager 0.0% +2025-07-23T19:36:54.8240141Z github.com/ava-labs/coreth/eth/backend.go:372: BlockChain 0.0% +2025-07-23T19:36:54.8240574Z github.com/ava-labs/coreth/eth/backend.go:373: TxPool 0.0% +2025-07-23T19:36:54.8240987Z github.com/ava-labs/coreth/eth/backend.go:374: EventMux 0.0% +2025-07-23T19:36:54.8241401Z github.com/ava-labs/coreth/eth/backend.go:375: Engine 0.0% +2025-07-23T19:36:54.8241808Z github.com/ava-labs/coreth/eth/backend.go:376: ChainDb 0.0% +2025-07-23T19:36:54.8242226Z github.com/ava-labs/coreth/eth/backend.go:378: NetVersion 0.0% +2025-07-23T19:36:54.8242666Z github.com/ava-labs/coreth/eth/backend.go:379: ArchiveMode 0.0% +2025-07-23T19:36:54.8243326Z github.com/ava-labs/coreth/eth/backend.go:380: BloomIndexer 0.0% +2025-07-23T19:36:54.8243761Z github.com/ava-labs/coreth/eth/backend.go:384: Start 0.0% +2025-07-23T19:36:54.8244166Z github.com/ava-labs/coreth/eth/backend.go:395: Stop 0.0% +2025-07-23T19:36:54.8244611Z github.com/ava-labs/coreth/eth/backend.go:413: LastAcceptedBlock 0.0% +2025-07-23T19:36:54.8245242Z github.com/ava-labs/coreth/eth/backend.go:423: precheckPopulateMissingTries 0.0% +2025-07-23T19:36:54.8245779Z github.com/ava-labs/coreth/eth/backend.go:447: handleOfflinePruning 0.0% +2025-07-23T19:36:54.8246284Z github.com/ava-labs/coreth/eth/bloombits.go:57: startBloomHandlers 0.0% +2025-07-23T19:36:54.8246820Z github.com/ava-labs/coreth/eth/chain_with_final_block.go:20: CurrentFinalBlock 0.0% +2025-07-23T19:36:54.8247376Z github.com/ava-labs/coreth/eth/ethconfig/config.go:58: NewDefaultConfig 100.0% +2025-07-23T19:36:54.8247902Z github.com/ava-labs/coreth/eth/ethconfig/gen_config.go:18: MarshalTOML 0.0% +2025-07-23T19:36:54.8248432Z github.com/ava-labs/coreth/eth/ethconfig/gen_config.go:108: UnmarshalTOML 0.0% +2025-07-23T19:36:54.8248938Z github.com/ava-labs/coreth/eth/filters/api.go:87: NewFilterAPI 100.0% +2025-07-23T19:36:54.8249420Z github.com/ava-labs/coreth/eth/filters/api.go:101: timeoutLoop 100.0% +2025-07-23T19:36:54.8249956Z github.com/ava-labs/coreth/eth/filters/api.go:134: NewPendingTransactionFilter 100.0% +2025-07-23T19:36:54.8250770Z github.com/ava-labs/coreth/eth/filters/api.go:168: NewPendingTransactions 0.0% +2025-07-23T19:36:54.8251314Z github.com/ava-labs/coreth/eth/filters/api.go:211: NewAcceptedTransactions 0.0% +2025-07-23T19:36:54.8251827Z github.com/ava-labs/coreth/eth/filters/api.go:253: NewBlockFilter 0.0% +2025-07-23T19:36:54.8252297Z github.com/ava-labs/coreth/eth/filters/api.go:291: NewHeads 0.0% +2025-07-23T19:36:54.8252734Z github.com/ava-labs/coreth/eth/filters/api.go:328: Logs 0.0% +2025-07-23T19:36:54.8253177Z github.com/ava-labs/coreth/eth/filters/api.go:387: NewFilter 87.0% +2025-07-23T19:36:54.8253627Z github.com/ava-labs/coreth/eth/filters/api.go:432: GetLogs 90.0% +2025-07-23T19:36:54.8254105Z github.com/ava-labs/coreth/eth/filters/api.go:470: UninstallFilter 100.0% +2025-07-23T19:36:54.8254598Z github.com/ava-labs/coreth/eth/filters/api.go:486: GetFilterLogs 0.0% +2025-07-23T19:36:54.8255201Z github.com/ava-labs/coreth/eth/filters/api.go:528: GetFilterChanges 80.0% +2025-07-23T19:36:54.8255687Z github.com/ava-labs/coreth/eth/filters/api.go:581: returnHashes 0.0% +2025-07-23T19:36:54.8256153Z github.com/ava-labs/coreth/eth/filters/api.go:590: returnLogs 66.7% +2025-07-23T19:36:54.8256629Z github.com/ava-labs/coreth/eth/filters/api.go:598: UnmarshalJSON 75.5% +2025-07-23T19:36:54.8257106Z github.com/ava-labs/coreth/eth/filters/api.go:703: decodeAddress 75.0% +2025-07-23T19:36:54.8257576Z github.com/ava-labs/coreth/eth/filters/api.go:711: decodeTopic 75.0% +2025-07-23T19:36:54.8258077Z github.com/ava-labs/coreth/eth/filters/filter.go:58: NewRangeFilter 100.0% +2025-07-23T19:36:54.8258593Z github.com/ava-labs/coreth/eth/filters/filter.go:91: NewBlockFilter 100.0% +2025-07-23T19:36:54.8259091Z github.com/ava-labs/coreth/eth/filters/filter.go:100: newFilter 100.0% +2025-07-23T19:36:54.8259556Z github.com/ava-labs/coreth/eth/filters/filter.go:110: Logs 80.4% +2025-07-23T19:36:54.8260042Z github.com/ava-labs/coreth/eth/filters/filter.go:222: rangeLogsAsync 70.6% +2025-07-23T19:36:54.8260535Z github.com/ava-labs/coreth/eth/filters/filter.go:263: indexedLogs 0.0% +2025-07-23T19:36:54.8261025Z github.com/ava-labs/coreth/eth/filters/filter.go:309: unindexedLogs 81.8% +2025-07-23T19:36:54.8261515Z github.com/ava-labs/coreth/eth/filters/filter.go:331: blockLogs 100.0% +2025-07-23T19:36:54.8262003Z github.com/ava-labs/coreth/eth/filters/filter.go:340: checkMatches 82.4% +2025-07-23T19:36:54.8262626Z github.com/ava-labs/coreth/eth/filters/filter.go:370: includes 100.0% +2025-07-23T19:36:54.8263113Z github.com/ava-labs/coreth/eth/filters/filter.go:380: filterLogs 100.0% +2025-07-23T19:36:54.8263611Z github.com/ava-labs/coreth/eth/filters/filter.go:414: bloomFilter 100.0% +2025-07-23T19:36:54.8264128Z github.com/ava-labs/coreth/eth/filters/filter_system.go:55: withDefaults 100.0% +2025-07-23T19:36:54.8264691Z github.com/ava-labs/coreth/eth/filters/filter_system.go:101: NewFilterSystem 100.0% +2025-07-23T19:36:54.8265330Z github.com/ava-labs/coreth/eth/filters/filter_system.go:111: getLogs 66.7% +2025-07-23T19:36:54.8265861Z github.com/ava-labs/coreth/eth/filters/filter_system.go:209: NewEventSystem 92.3% +2025-07-23T19:36:54.8266385Z github.com/ava-labs/coreth/eth/filters/filter_system.go:253: Err 100.0% +2025-07-23T19:36:54.8266896Z github.com/ava-labs/coreth/eth/filters/filter_system.go:258: Unsubscribe 100.0% +2025-07-23T19:36:54.8267437Z github.com/ava-labs/coreth/eth/filters/filter_system.go:283: subscribe 100.0% +2025-07-23T19:36:54.8267980Z github.com/ava-labs/coreth/eth/filters/filter_system.go:292: SubscribeLogs 100.0% +2025-07-23T19:36:54.8268556Z github.com/ava-labs/coreth/eth/filters/filter_system.go:334: SubscribeAcceptedLogs 0.0% +2025-07-23T19:36:54.8269158Z github.com/ava-labs/coreth/eth/filters/filter_system.go:359: subscribeAcceptedLogs 0.0% +2025-07-23T19:36:54.8269908Z github.com/ava-labs/coreth/eth/filters/filter_system.go:376: subscribeMinedPendingLogs 100.0% +2025-07-23T19:36:54.8270507Z github.com/ava-labs/coreth/eth/filters/filter_system.go:393: subscribeLogs 100.0% +2025-07-23T19:36:54.8271080Z github.com/ava-labs/coreth/eth/filters/filter_system.go:410: subscribePendingLogs 100.0% +2025-07-23T19:36:54.8271676Z github.com/ava-labs/coreth/eth/filters/filter_system.go:427: SubscribeNewHeads 100.0% +2025-07-23T19:36:54.8272272Z github.com/ava-labs/coreth/eth/filters/filter_system.go:443: SubscribeAcceptedHeads 0.0% +2025-07-23T19:36:54.8272876Z github.com/ava-labs/coreth/eth/filters/filter_system.go:459: SubscribePendingTxs 100.0% +2025-07-23T19:36:54.8273463Z github.com/ava-labs/coreth/eth/filters/filter_system.go:475: SubscribeAcceptedTxs 0.0% +2025-07-23T19:36:54.8274025Z github.com/ava-labs/coreth/eth/filters/filter_system.go:491: handleLogs 83.3% +2025-07-23T19:36:54.8274587Z github.com/ava-labs/coreth/eth/filters/filter_system.go:503: handleAcceptedLogs 33.3% +2025-07-23T19:36:54.8275254Z github.com/ava-labs/coreth/eth/filters/filter_system.go:515: handlePendingLogs 83.3% +2025-07-23T19:36:54.8275816Z github.com/ava-labs/coreth/eth/filters/filter_system.go:527: handleTxsEvent 100.0% +2025-07-23T19:36:54.8276397Z github.com/ava-labs/coreth/eth/filters/filter_system.go:533: handleTxsAcceptedEvent 0.0% +2025-07-23T19:36:54.8276979Z github.com/ava-labs/coreth/eth/filters/filter_system.go:539: handleChainEvent 100.0% +2025-07-23T19:36:54.8277575Z github.com/ava-labs/coreth/eth/filters/filter_system.go:545: handleChainAcceptedEvent 0.0% +2025-07-23T19:36:54.8278148Z github.com/ava-labs/coreth/eth/filters/filter_system.go:552: eventLoop 53.8% +2025-07-23T19:36:54.8278692Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:63: Estimate 73.4% +2025-07-23T19:36:54.8279238Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:199: execute 88.9% +2025-07-23T19:36:54.8279774Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:218: run 91.7% +2025-07-23T19:36:54.8280340Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:63: newFeeInfoProvider 100.0% +2025-07-23T19:36:54.8280918Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:92: addHeader 100.0% +2025-07-23T19:36:54.8281450Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:125: get 100.0% +2025-07-23T19:36:54.8281995Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:136: populateCache 83.3% +2025-07-23T19:36:54.8282703Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:68: processBlock 84.6% +2025-07-23T19:36:54.8283268Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:89: processPercentiles 72.2% +2025-07-23T19:36:54.8283842Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:124: resolveBlockRange 100.0% +2025-07-23T19:36:54.8284406Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:177: FeeHistory 74.4% +2025-07-23T19:36:54.8285034Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:132: NewOracle 83.3% +2025-07-23T19:36:54.8285565Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:211: EstimateBaseFee 0.0% +2025-07-23T19:36:54.8286121Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:220: estimateNextBaseFee 57.1% +2025-07-23T19:36:54.8286667Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:239: SuggestPrice 60.0% +2025-07-23T19:36:54.8287196Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:266: SuggestTipCap 100.0% +2025-07-23T19:36:54.8287726Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:271: suggestTip 85.7% +2025-07-23T19:36:54.8288226Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:347: getFeeInfo 42.9% +2025-07-23T19:36:54.8288716Z github.com/ava-labs/coreth/eth/state_accessor.go:53: hashState 0.0% +2025-07-23T19:36:54.8289189Z github.com/ava-labs/coreth/eth/state_accessor.go:193: pathState 0.0% +2025-07-23T19:36:54.8289812Z github.com/ava-labs/coreth/eth/state_accessor.go:227: stateAtBlock 0.0% +2025-07-23T19:36:54.8290324Z github.com/ava-labs/coreth/eth/state_accessor.go:240: stateAtTransaction 0.0% +2025-07-23T19:36:54.8290847Z github.com/ava-labs/coreth/eth/state_accessor.go:287: StateAtNextBlock 0.0% +2025-07-23T19:36:54.8291335Z github.com/ava-labs/coreth/eth/tracers/api.go:115: NewAPI 100.0% +2025-07-23T19:36:54.8291814Z github.com/ava-labs/coreth/eth/tracers/api.go:127: NewFileTracerAPI 0.0% +2025-07-23T19:36:54.8292308Z github.com/ava-labs/coreth/eth/tracers/api.go:133: chainContext 100.0% +2025-07-23T19:36:54.8292791Z github.com/ava-labs/coreth/eth/tracers/api.go:139: blockByNumber 83.3% +2025-07-23T19:36:54.8293267Z github.com/ava-labs/coreth/eth/tracers/api.go:152: blockByHash 0.0% +2025-07-23T19:36:54.8293764Z github.com/ava-labs/coreth/eth/tracers/api.go:168: blockByNumberAndHash 66.7% +2025-07-23T19:36:54.8294255Z github.com/ava-labs/coreth/eth/tracers/api.go:213: String 0.0% +2025-07-23T19:36:54.8294708Z github.com/ava-labs/coreth/eth/tracers/api.go:243: TraceChain 0.0% +2025-07-23T19:36:54.8295264Z github.com/ava-labs/coreth/eth/tracers/api.go:276: traceChain 76.8% +2025-07-23T19:36:54.8295761Z github.com/ava-labs/coreth/eth/tracers/api.go:467: TraceBlockByNumber 100.0% +2025-07-23T19:36:54.8296270Z github.com/ava-labs/coreth/eth/tracers/api.go:477: TraceBlockByHash 0.0% +2025-07-23T19:36:54.8296749Z github.com/ava-labs/coreth/eth/tracers/api.go:487: TraceBlock 0.0% +2025-07-23T19:36:54.8297235Z github.com/ava-labs/coreth/eth/tracers/api.go:497: TraceBlockFromFile 0.0% +2025-07-23T19:36:54.8297732Z github.com/ava-labs/coreth/eth/tracers/api.go:508: TraceBadBlock 0.0% +2025-07-23T19:36:54.8298244Z github.com/ava-labs/coreth/eth/tracers/api.go:529: StandardTraceBlockToFile 0.0% +2025-07-23T19:36:54.8298771Z github.com/ava-labs/coreth/eth/tracers/api.go:539: IntermediateRoots 0.0% +2025-07-23T19:36:54.8299307Z github.com/ava-labs/coreth/eth/tracers/api.go:598: StandardTraceBadBlockToFile 0.0% +2025-07-23T19:36:54.8299822Z github.com/ava-labs/coreth/eth/tracers/api.go:619: traceBlock 76.0% +2025-07-23T19:36:54.8300311Z github.com/ava-labs/coreth/eth/tracers/api.go:679: traceBlockParallel 0.0% +2025-07-23T19:36:54.8300833Z github.com/ava-labs/coreth/eth/tracers/api.go:756: standardTraceBlockToFile 0.0% +2025-07-23T19:36:54.8301332Z github.com/ava-labs/coreth/eth/tracers/api.go:866: containsTx 0.0% +2025-07-23T19:36:54.8301985Z github.com/ava-labs/coreth/eth/tracers/api.go:877: TraceTransaction 73.7% +2025-07-23T19:36:54.8302465Z github.com/ava-labs/coreth/eth/tracers/api.go:920: TraceCall 80.6% +2025-07-23T19:36:54.8302911Z github.com/ava-labs/coreth/eth/tracers/api.go:996: traceTx 69.6% +2025-07-23T19:36:54.8303352Z github.com/ava-labs/coreth/eth/tracers/api.go:1042: APIs 0.0% +2025-07-23T19:36:54.8303819Z github.com/ava-labs/coreth/eth/tracers/api.go:1060: overrideConfig 0.0% +2025-07-23T19:36:54.8304330Z github.com/ava-labs/coreth/eth/tracers/tracker.go:49: newStateTracker 100.0% +2025-07-23T19:36:54.8304952Z github.com/ava-labs/coreth/eth/tracers/tracker.go:62: releaseState 100.0% +2025-07-23T19:36:54.8305456Z github.com/ava-labs/coreth/eth/tracers/tracker.go:95: callReleases 100.0% +2025-07-23T19:36:54.8305933Z github.com/ava-labs/coreth/eth/tracers/tracker.go:106: wait 87.5% +2025-07-23T19:36:54.8306442Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:53: New 0.0% +2025-07-23T19:36:54.8307047Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:59: CreateAccessList 0.0% +2025-07-23T19:36:54.8307671Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:92: GetProof 0.0% +2025-07-23T19:36:54.8308282Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:156: CallContract 0.0% +2025-07-23T19:36:54.8309024Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:166: GCStats 0.0% +2025-07-23T19:36:54.8309614Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:173: MemStats 0.0% +2025-07-23T19:36:54.8310283Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:180: SubscribePendingTransactions 0.0% +2025-07-23T19:36:54.8310960Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:184: toCallArg 0.0% +2025-07-23T19:36:54.8311575Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:219: toOverrideMap 0.0% +2025-07-23T19:36:54.8312122Z github.com/ava-labs/coreth/ethclient/ethclient.go:53: Dial 0.0% +2025-07-23T19:36:54.8312597Z github.com/ava-labs/coreth/ethclient/ethclient.go:58: DialContext 0.0% +2025-07-23T19:36:54.8313082Z github.com/ava-labs/coreth/ethclient/ethclient.go:67: NewClient 100.0% +2025-07-23T19:36:54.8313560Z github.com/ava-labs/coreth/ethclient/ethclient.go:72: Close 100.0% +2025-07-23T19:36:54.8314033Z github.com/ava-labs/coreth/ethclient/ethclient.go:77: Client 0.0% +2025-07-23T19:36:54.8314501Z github.com/ava-labs/coreth/ethclient/ethclient.go:84: ChainID 80.0% +2025-07-23T19:36:54.8315073Z github.com/ava-labs/coreth/ethclient/ethclient.go:97: BlockByHash 0.0% +2025-07-23T19:36:54.8315583Z github.com/ava-labs/coreth/ethclient/ethclient.go:106: BlockByNumber 100.0% +2025-07-23T19:36:54.8316104Z github.com/ava-labs/coreth/ethclient/ethclient.go:111: BlockNumber 100.0% +2025-07-23T19:36:54.8316621Z github.com/ava-labs/coreth/ethclient/ethclient.go:125: BlockReceipts 0.0% +2025-07-23T19:36:54.8317110Z github.com/ava-labs/coreth/ethclient/ethclient.go:141: getBlock 51.2% +2025-07-23T19:36:54.8317603Z github.com/ava-labs/coreth/ethclient/ethclient.go:221: HeaderByHash 80.0% +2025-07-23T19:36:54.8318117Z github.com/ava-labs/coreth/ethclient/ethclient.go:232: HeaderByNumber 80.0% +2025-07-23T19:36:54.8318645Z github.com/ava-labs/coreth/ethclient/ethclient.go:252: UnmarshalJSON 66.7% +2025-07-23T19:36:54.8319172Z github.com/ava-labs/coreth/ethclient/ethclient.go:260: TransactionByHash 0.0% +2025-07-23T19:36:54.8319706Z github.com/ava-labs/coreth/ethclient/ethclient.go:282: TransactionSender 0.0% +2025-07-23T19:36:54.8320238Z github.com/ava-labs/coreth/ethclient/ethclient.go:304: TransactionCount 0.0% +2025-07-23T19:36:54.8320766Z github.com/ava-labs/coreth/ethclient/ethclient.go:311: TransactionInBlock 0.0% +2025-07-23T19:36:54.8321452Z github.com/ava-labs/coreth/ethclient/ethclient.go:330: TransactionReceipt 80.0% +2025-07-23T19:36:54.8321988Z github.com/ava-labs/coreth/ethclient/ethclient.go:341: SyncProgress 0.0% +2025-07-23T19:36:54.8322513Z github.com/ava-labs/coreth/ethclient/ethclient.go:357: SubscribeNewHead 0.0% +2025-07-23T19:36:54.8323021Z github.com/ava-labs/coreth/ethclient/ethclient.go:371: NetworkID 0.0% +2025-07-23T19:36:54.8323512Z github.com/ava-labs/coreth/ethclient/ethclient.go:385: BalanceAt 0.0% +2025-07-23T19:36:54.8324011Z github.com/ava-labs/coreth/ethclient/ethclient.go:392: BalanceAtHash 0.0% +2025-07-23T19:36:54.8324503Z github.com/ava-labs/coreth/ethclient/ethclient.go:400: StorageAt 0.0% +2025-07-23T19:36:54.8325099Z github.com/ava-labs/coreth/ethclient/ethclient.go:407: StorageAtHash 0.0% +2025-07-23T19:36:54.8325591Z github.com/ava-labs/coreth/ethclient/ethclient.go:415: CodeAt 0.0% +2025-07-23T19:36:54.8326074Z github.com/ava-labs/coreth/ethclient/ethclient.go:422: CodeAtHash 0.0% +2025-07-23T19:36:54.8326560Z github.com/ava-labs/coreth/ethclient/ethclient.go:430: NonceAt 100.0% +2025-07-23T19:36:54.8327049Z github.com/ava-labs/coreth/ethclient/ethclient.go:437: NonceAtHash 0.0% +2025-07-23T19:36:54.8327537Z github.com/ava-labs/coreth/ethclient/ethclient.go:446: FilterLogs 0.0% +2025-07-23T19:36:54.8328059Z github.com/ava-labs/coreth/ethclient/ethclient.go:457: SubscribeFilterLogs 0.0% +2025-07-23T19:36:54.8328727Z github.com/ava-labs/coreth/ethclient/ethclient.go:472: toFilterArg 0.0% +2025-07-23T19:36:54.8329233Z github.com/ava-labs/coreth/ethclient/ethclient.go:539: CallContract 80.0% +2025-07-23T19:36:54.8329762Z github.com/ava-labs/coreth/ethclient/ethclient.go:550: CallContractAtHash 0.0% +2025-07-23T19:36:54.8330299Z github.com/ava-labs/coreth/ethclient/ethclient.go:572: SuggestGasPrice 0.0% +2025-07-23T19:36:54.8330832Z github.com/ava-labs/coreth/ethclient/ethclient.go:582: SuggestGasTipCap 0.0% +2025-07-23T19:36:54.8331346Z github.com/ava-labs/coreth/ethclient/ethclient.go:598: FeeHistory 0.0% +2025-07-23T19:36:54.8331864Z github.com/ava-labs/coreth/ethclient/ethclient.go:626: EstimateGas 0.0% +2025-07-23T19:36:54.8332546Z github.com/ava-labs/coreth/ethclient/ethclient.go:639: SendTransaction 75.0% +2025-07-23T19:36:54.8333072Z github.com/ava-labs/coreth/ethclient/ethclient.go:647: toBlockNumArg 85.7% +2025-07-23T19:36:54.8333579Z github.com/ava-labs/coreth/ethclient/ethclient.go:662: toCallArg 60.0% +2025-07-23T19:36:54.8334079Z github.com/ava-labs/coreth/ethclient/ethclient.go:722: toSyncProgress 0.0% +2025-07-23T19:36:54.8334609Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:44: NewClientWithHook 0.0% +2025-07-23T19:36:54.8335321Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:61: SubscribeNewAcceptedTransactions 0.0% +2025-07-23T19:36:54.8335974Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:73: SubscribeNewPendingTransactions 0.0% +2025-07-23T19:36:54.8336561Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:85: AcceptedCodeAt 0.0% +2025-07-23T19:36:54.8337098Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:91: AcceptedNonceAt 0.0% +2025-07-23T19:36:54.8337675Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:97: AcceptedCallContract 0.0% +2025-07-23T19:36:54.8338251Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:104: EstimateBaseFee 0.0% +2025-07-23T19:36:54.8338794Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:113: ToBlockNumArg 0.0% +2025-07-23T19:36:54.8339335Z github.com/ava-labs/coreth/ethclient/signer.go:48: setSenderFromServer 100.0% +2025-07-23T19:36:54.8339824Z github.com/ava-labs/coreth/ethclient/signer.go:53: Equal 0.0% +2025-07-23T19:36:54.8340268Z github.com/ava-labs/coreth/ethclient/signer.go:58: Sender 66.7% +2025-07-23T19:36:54.8340712Z github.com/ava-labs/coreth/ethclient/signer.go:65: ChainID 0.0% +2025-07-23T19:36:54.8341294Z github.com/ava-labs/coreth/ethclient/signer.go:68: Hash 0.0% +2025-07-23T19:36:54.8341756Z github.com/ava-labs/coreth/ethclient/signer.go:71: SignatureValues 0.0% +2025-07-23T19:36:54.8342259Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:48: Add 0.0% +2025-07-23T19:36:54.8342784Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:87: NewBackend 88.9% +2025-07-23T19:36:54.8343343Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:122: newWithNode 83.3% +2025-07-23T19:36:54.8343889Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:154: Close 100.0% +2025-07-23T19:36:54.8344417Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:163: Commit 75.0% +2025-07-23T19:36:54.8345061Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:171: buildBlock 73.3% +2025-07-23T19:36:54.8345639Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:196: acceptAncestors 83.3% +2025-07-23T19:36:54.8346219Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:219: Rollback 100.0% +2025-07-23T19:36:54.8346741Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:239: Fork 76.5% +2025-07-23T19:36:54.8347283Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:274: AdjustTime 100.0% +2025-07-23T19:36:54.8347831Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:280: Client 100.0% +2025-07-23T19:36:54.8348542Z github.com/ava-labs/coreth/ethclient/simulated/options.go:29: WithBlockGasLimit 100.0% +2025-07-23T19:36:54.8349145Z github.com/ava-labs/coreth/ethclient/simulated/options.go:37: WithCallGasLimit 100.0% +2025-07-23T19:36:54.8349715Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:51: NewHasher 100.0% +2025-07-23T19:36:54.8350251Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:56: Reset 100.0% +2025-07-23T19:36:54.8350769Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:61: Update 100.0% +2025-07-23T19:36:54.8351294Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:68: Hash 100.0% +2025-07-23T19:36:54.8351792Z github.com/ava-labs/coreth/internal/debug/api.go:70: Verbosity 0.0% +2025-07-23T19:36:54.8352424Z github.com/ava-labs/coreth/internal/debug/api.go:76: Vmodule 0.0% +2025-07-23T19:36:54.8352891Z github.com/ava-labs/coreth/internal/debug/api.go:81: MemStats 0.0% +2025-07-23T19:36:54.8353359Z github.com/ava-labs/coreth/internal/debug/api.go:88: GcStats 0.0% +2025-07-23T19:36:54.8353846Z github.com/ava-labs/coreth/internal/debug/api.go:96: CpuProfile 0.0% +2025-07-23T19:36:54.8354356Z github.com/ava-labs/coreth/internal/debug/api.go:106: StartCPUProfile 0.0% +2025-07-23T19:36:54.8354982Z github.com/ava-labs/coreth/internal/debug/api.go:127: StopCPUProfile 0.0% +2025-07-23T19:36:54.8355498Z github.com/ava-labs/coreth/internal/debug/api.go:143: GoTrace 0.0% +2025-07-23T19:36:54.8355991Z github.com/ava-labs/coreth/internal/debug/api.go:155: BlockProfile 0.0% +2025-07-23T19:36:54.8356518Z github.com/ava-labs/coreth/internal/debug/api.go:164: SetBlockProfileRate 0.0% +2025-07-23T19:36:54.8357060Z github.com/ava-labs/coreth/internal/debug/api.go:169: WriteBlockProfile 0.0% +2025-07-23T19:36:54.8357572Z github.com/ava-labs/coreth/internal/debug/api.go:176: MutexProfile 0.0% +2025-07-23T19:36:54.8358117Z github.com/ava-labs/coreth/internal/debug/api.go:184: SetMutexProfileFraction 0.0% +2025-07-23T19:36:54.8358668Z github.com/ava-labs/coreth/internal/debug/api.go:189: WriteMutexProfile 0.0% +2025-07-23T19:36:54.8359193Z github.com/ava-labs/coreth/internal/debug/api.go:196: WriteMemProfile 0.0% +2025-07-23T19:36:54.8359687Z github.com/ava-labs/coreth/internal/debug/api.go:203: Stacks 0.0% +2025-07-23T19:36:54.8360162Z github.com/ava-labs/coreth/internal/debug/api.go:242: FreeOSMemory 0.0% +2025-07-23T19:36:54.8360656Z github.com/ava-labs/coreth/internal/debug/api.go:248: SetGCPercent 0.0% +2025-07-23T19:36:54.8361305Z github.com/ava-labs/coreth/internal/debug/api.go:252: writeProfile 0.0% +2025-07-23T19:36:54.8361800Z github.com/ava-labs/coreth/internal/debug/api.go:265: expandHome 0.0% +2025-07-23T19:36:54.8362282Z github.com/ava-labs/coreth/internal/debug/flags.go:181: init 100.0% +2025-07-23T19:36:54.8362755Z github.com/ava-labs/coreth/internal/debug/flags.go:187: Setup 0.0% +2025-07-23T19:36:54.8363251Z github.com/ava-labs/coreth/internal/debug/flags.go:314: StartPProf 0.0% +2025-07-23T19:36:54.8363727Z github.com/ava-labs/coreth/internal/debug/flags.go:325: Exit 0.0% +2025-07-23T19:36:54.8364236Z github.com/ava-labs/coreth/internal/debug/flags.go:333: validateLogLocation 0.0% +2025-07-23T19:36:54.8364880Z github.com/ava-labs/coreth/internal/debug/loudpanic.go:33: LoudPanic 0.0% +2025-07-23T19:36:54.8365396Z github.com/ava-labs/coreth/internal/debug/trace.go:39: StartGoTrace 0.0% +2025-07-23T19:36:54.8365896Z github.com/ava-labs/coreth/internal/debug/trace.go:60: StopGoTrace 0.0% +2025-07-23T19:36:54.8366384Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:42: lock 0.0% +2025-07-23T19:36:54.8366872Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:57: LockAddr 0.0% +2025-07-23T19:36:54.8367382Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:62: UnlockAddr 0.0% +2025-07-23T19:36:54.8368090Z github.com/ava-labs/coreth/internal/ethapi/api.coreth.go:46: SuggestPriceOptions 86.7% +2025-07-23T19:36:54.8368705Z github.com/ava-labs/coreth/internal/ethapi/api.coreth.go:104: calculateFeeSpeeds 100.0% +2025-07-23T19:36:54.8369277Z github.com/ava-labs/coreth/internal/ethapi/api.go:76: NewEthereumAPI 100.0% +2025-07-23T19:36:54.8369775Z github.com/ava-labs/coreth/internal/ethapi/api.go:81: GasPrice 0.0% +2025-07-23T19:36:54.8370245Z github.com/ava-labs/coreth/internal/ethapi/api.go:91: BaseFee 0.0% +2025-07-23T19:36:54.8370764Z github.com/ava-labs/coreth/internal/ethapi/api.go:100: MaxPriorityFeePerGas 0.0% +2025-07-23T19:36:54.8371290Z github.com/ava-labs/coreth/internal/ethapi/api.go:116: FeeHistory 0.0% +2025-07-23T19:36:54.8371765Z github.com/ava-labs/coreth/internal/ethapi/api.go:148: Syncing 0.0% +2025-07-23T19:36:54.8372255Z github.com/ava-labs/coreth/internal/ethapi/api.go:158: NewTxPoolAPI 0.0% +2025-07-23T19:36:54.8372748Z github.com/ava-labs/coreth/internal/ethapi/api.go:163: Content 0.0% +2025-07-23T19:36:54.8373235Z github.com/ava-labs/coreth/internal/ethapi/api.go:191: ContentFrom 0.0% +2025-07-23T19:36:54.8373712Z github.com/ava-labs/coreth/internal/ethapi/api.go:215: Status 0.0% +2025-07-23T19:36:54.8374182Z github.com/ava-labs/coreth/internal/ethapi/api.go:225: Inspect 0.0% +2025-07-23T19:36:54.8374703Z github.com/ava-labs/coreth/internal/ethapi/api.go:265: NewEthereumAccountAPI 0.0% +2025-07-23T19:36:54.8375320Z github.com/ava-labs/coreth/internal/ethapi/api.go:270: Accounts 0.0% +2025-07-23T19:36:54.8375846Z github.com/ava-labs/coreth/internal/ethapi/api.go:284: NewPersonalAccountAPI 0.0% +2025-07-23T19:36:54.8376386Z github.com/ava-labs/coreth/internal/ethapi/api.go:293: ListAccounts 0.0% +2025-07-23T19:36:54.8376884Z github.com/ava-labs/coreth/internal/ethapi/api.go:307: ListWallets 0.0% +2025-07-23T19:36:54.8377368Z github.com/ava-labs/coreth/internal/ethapi/api.go:329: OpenWallet 0.0% +2025-07-23T19:36:54.8377874Z github.com/ava-labs/coreth/internal/ethapi/api.go:343: DeriveAccount 0.0% +2025-07-23T19:36:54.8378376Z github.com/ava-labs/coreth/internal/ethapi/api.go:359: NewAccount 0.0% +2025-07-23T19:36:54.8378870Z github.com/ava-labs/coreth/internal/ethapi/api.go:376: fetchKeystore 0.0% +2025-07-23T19:36:54.8379368Z github.com/ava-labs/coreth/internal/ethapi/api.go:385: ImportRawKey 0.0% +2025-07-23T19:36:54.8379594Z github.com/ava-labs/coreth/internal/ethapi/api.go:401: UnlockAccount 0.0% +2025-07-23T19:36:54.8379979Z github.com/ava-labs/coreth/internal/ethapi/api.go:430: LockAccount 0.0% +2025-07-23T19:36:54.8380216Z github.com/ava-labs/coreth/internal/ethapi/api.go:440: signTransaction 0.0% +2025-07-23T19:36:54.8380450Z github.com/ava-labs/coreth/internal/ethapi/api.go:460: SendTransaction 0.0% +2025-07-23T19:36:54.8380678Z github.com/ava-labs/coreth/internal/ethapi/api.go:482: SignTransaction 0.0% +2025-07-23T19:36:54.8380885Z github.com/ava-labs/coreth/internal/ethapi/api.go:526: Sign 0.0% +2025-07-23T19:36:54.8381096Z github.com/ava-labs/coreth/internal/ethapi/api.go:554: EcRecover 0.0% +2025-07-23T19:36:54.8381324Z github.com/ava-labs/coreth/internal/ethapi/api.go:571: InitializeWallet 0.0% +2025-07-23T19:36:54.8381527Z github.com/ava-labs/coreth/internal/ethapi/api.go:598: Unpair 0.0% +2025-07-23T19:36:54.8381767Z github.com/ava-labs/coreth/internal/ethapi/api.go:618: NewBlockChainAPI 100.0% +2025-07-23T19:36:54.8381978Z github.com/ava-labs/coreth/internal/ethapi/api.go:628: ChainId 0.0% +2025-07-23T19:36:54.8382192Z github.com/ava-labs/coreth/internal/ethapi/api.go:633: BlockNumber 0.0% +2025-07-23T19:36:54.8382397Z github.com/ava-labs/coreth/internal/ethapi/api.go:641: GetBalance 0.0% +2025-07-23T19:36:54.8382598Z github.com/ava-labs/coreth/internal/ethapi/api.go:671: Put 0.0% +2025-07-23T19:36:54.8382912Z github.com/ava-labs/coreth/internal/ethapi/api.go:676: Delete 0.0% +2025-07-23T19:36:54.8383115Z github.com/ava-labs/coreth/internal/ethapi/api.go:683: GetProof 0.0% +2025-07-23T19:36:54.8383330Z github.com/ava-labs/coreth/internal/ethapi/api.go:766: decodeHash 0.0% +2025-07-23T19:36:54.8383570Z github.com/ava-labs/coreth/internal/ethapi/api.go:788: GetHeaderByNumber 100.0% +2025-07-23T19:36:54.8383811Z github.com/ava-labs/coreth/internal/ethapi/api.go:805: GetHeaderByHash 100.0% +2025-07-23T19:36:54.8384043Z github.com/ava-labs/coreth/internal/ethapi/api.go:820: GetBlockByNumber 100.0% +2025-07-23T19:36:54.8384280Z github.com/ava-labs/coreth/internal/ethapi/api.go:838: GetBlockByHash 100.0% +2025-07-23T19:36:54.8384567Z github.com/ava-labs/coreth/internal/ethapi/api.go:847: GetUncleByBlockNumberAndIndex 0.0% +2025-07-23T19:36:54.8384978Z github.com/ava-labs/coreth/internal/ethapi/api.go:862: GetUncleByBlockHashAndIndex 0.0% +2025-07-23T19:36:54.8385261Z github.com/ava-labs/coreth/internal/ethapi/api.go:877: GetUncleCountByBlockNumber 0.0% +2025-07-23T19:36:54.8385522Z github.com/ava-labs/coreth/internal/ethapi/api.go:886: GetUncleCountByBlockHash 0.0% +2025-07-23T19:36:54.8385727Z github.com/ava-labs/coreth/internal/ethapi/api.go:895: GetCode 0.0% +2025-07-23T19:36:54.8385951Z github.com/ava-labs/coreth/internal/ethapi/api.go:907: GetStorageAt 0.0% +2025-07-23T19:36:54.8386187Z github.com/ava-labs/coreth/internal/ethapi/api.go:921: GetBlockReceipts 85.7% +2025-07-23T19:36:54.8386387Z github.com/ava-labs/coreth/internal/ethapi/api.go:966: Apply 84.2% +2025-07-23T19:36:54.8386600Z github.com/ava-labs/coreth/internal/ethapi/api.go:1017: Apply 56.2% +2025-07-23T19:36:54.8386838Z github.com/ava-labs/coreth/internal/ethapi/api.go:1058: NewChainContext 100.0% +2025-07-23T19:36:54.8387051Z github.com/ava-labs/coreth/internal/ethapi/api.go:1062: Engine 100.0% +2025-07-23T19:36:54.8387256Z github.com/ava-labs/coreth/internal/ethapi/api.go:1066: GetHeader 0.0% +2025-07-23T19:36:54.8387465Z github.com/ava-labs/coreth/internal/ethapi/api.go:1076: doCall 80.8% +2025-07-23T19:36:54.8387674Z github.com/ava-labs/coreth/internal/ethapi/api.go:1128: DoCall 43.8% +2025-07-23T19:36:54.8387870Z github.com/ava-labs/coreth/internal/ethapi/api.go:1163: Call 66.7% +2025-07-23T19:36:54.8388103Z github.com/ava-labs/coreth/internal/ethapi/api.go:1183: DoEstimateGas 77.8% +2025-07-23T19:36:54.8388327Z github.com/ava-labs/coreth/internal/ethapi/api.go:1227: EstimateGas 100.0% +2025-07-23T19:36:54.8388698Z github.com/ava-labs/coreth/internal/ethapi/api.go:1236: RPCMarshalHeader 80.0% +2025-07-23T19:36:54.8388942Z github.com/ava-labs/coreth/internal/ethapi/api.go:1281: RPCMarshalBlock 95.0% +2025-07-23T19:36:54.8389181Z github.com/ava-labs/coreth/internal/ethapi/api.go:1313: rpcMarshalHeader 100.0% +2025-07-23T19:36:54.8389416Z github.com/ava-labs/coreth/internal/ethapi/api.go:1323: rpcMarshalBlock 100.0% +2025-07-23T19:36:54.8389663Z github.com/ava-labs/coreth/internal/ethapi/api.go:1361: newRPCTransaction 94.9% +2025-07-23T19:36:54.8389896Z github.com/ava-labs/coreth/internal/ethapi/api.go:1438: effectiveGasPrice 0.0% +2025-07-23T19:36:54.8390136Z github.com/ava-labs/coreth/internal/ethapi/api.go:1450: NewRPCTransaction 0.0% +2025-07-23T19:36:54.8390431Z github.com/ava-labs/coreth/internal/ethapi/api.go:1463: newRPCTransactionFromBlockIndex 75.0% +2025-07-23T19:36:54.8390727Z github.com/ava-labs/coreth/internal/ethapi/api.go:1472: newRPCRawTransactionFromBlockIndex 0.0% +2025-07-23T19:36:54.8390975Z github.com/ava-labs/coreth/internal/ethapi/api.go:1492: CreateAccessList 0.0% +2025-07-23T19:36:54.8391186Z github.com/ava-labs/coreth/internal/ethapi/api.go:1511: AccessList 0.0% +2025-07-23T19:36:54.8391435Z github.com/ava-labs/coreth/internal/ethapi/api.go:1573: NewTransactionAPI 100.0% +2025-07-23T19:36:54.8391839Z github.com/ava-labs/coreth/internal/ethapi/api.go:1581: GetBlockTransactionCountByNumber 0.0% +2025-07-23T19:36:54.8392123Z github.com/ava-labs/coreth/internal/ethapi/api.go:1590: GetBlockTransactionCountByHash 0.0% +2025-07-23T19:36:54.8392426Z github.com/ava-labs/coreth/internal/ethapi/api.go:1599: GetTransactionByBlockNumberAndIndex 0.0% +2025-07-23T19:36:54.8392719Z github.com/ava-labs/coreth/internal/ethapi/api.go:1607: GetTransactionByBlockHashAndIndex 0.0% +2025-07-23T19:36:54.8393034Z github.com/ava-labs/coreth/internal/ethapi/api.go:1615: GetRawTransactionByBlockNumberAndIndex 0.0% +2025-07-23T19:36:54.8393349Z github.com/ava-labs/coreth/internal/ethapi/api.go:1623: GetRawTransactionByBlockHashAndIndex 0.0% +2025-07-23T19:36:54.8393604Z github.com/ava-labs/coreth/internal/ethapi/api.go:1631: GetTransactionCount 0.0% +2025-07-23T19:36:54.8393866Z github.com/ava-labs/coreth/internal/ethapi/api.go:1650: GetTransactionByHash 0.0% +2025-07-23T19:36:54.8394136Z github.com/ava-labs/coreth/internal/ethapi/api.go:1672: GetRawTransactionByHash 0.0% +2025-07-23T19:36:54.8394402Z github.com/ava-labs/coreth/internal/ethapi/api.go:1688: GetTransactionReceipt 75.0% +2025-07-23T19:36:54.8394634Z github.com/ava-labs/coreth/internal/ethapi/api.go:1715: marshalReceipt 84.6% +2025-07-23T19:36:54.8394953Z github.com/ava-labs/coreth/internal/ethapi/api.go:1757: sign 80.0% +2025-07-23T19:36:54.8395199Z github.com/ava-labs/coreth/internal/ethapi/api.go:1770: SubmitTransaction 0.0% +2025-07-23T19:36:54.8395433Z github.com/ava-labs/coreth/internal/ethapi/api.go:1802: SendTransaction 37.5% +2025-07-23T19:36:54.8395668Z github.com/ava-labs/coreth/internal/ethapi/api.go:1838: FillTransaction 87.5% +2025-07-23T19:36:54.8395915Z github.com/ava-labs/coreth/internal/ethapi/api.go:1856: SendRawTransaction 0.0% +2025-07-23T19:36:54.8396113Z github.com/ava-labs/coreth/internal/ethapi/api.go:1873: Sign 0.0% +2025-07-23T19:36:54.8396352Z github.com/ava-labs/coreth/internal/ethapi/api.go:1898: SignTransaction 65.0% +2025-07-23T19:36:54.8396599Z github.com/ava-labs/coreth/internal/ethapi/api.go:1932: PendingTransactions 0.0% +2025-07-23T19:36:54.8396805Z github.com/ava-labs/coreth/internal/ethapi/api.go:1957: Resend 0.0% +2025-07-23T19:36:54.8397032Z github.com/ava-labs/coreth/internal/ethapi/api.go:2014: NewDebugAPI 0.0% +2025-07-23T19:36:54.8397260Z github.com/ava-labs/coreth/internal/ethapi/api.go:2019: GetRawHeader 0.0% +2025-07-23T19:36:54.8397481Z github.com/ava-labs/coreth/internal/ethapi/api.go:2038: GetRawBlock 0.0% +2025-07-23T19:36:54.8397842Z github.com/ava-labs/coreth/internal/ethapi/api.go:2057: GetRawReceipts 0.0% +2025-07-23T19:36:54.8398076Z github.com/ava-labs/coreth/internal/ethapi/api.go:2084: GetRawTransaction 0.0% +2025-07-23T19:36:54.8398296Z github.com/ava-labs/coreth/internal/ethapi/api.go:2100: PrintBlock 0.0% +2025-07-23T19:36:54.8398507Z github.com/ava-labs/coreth/internal/ethapi/api.go:2114: NewNetAPI 0.0% +2025-07-23T19:36:54.8398719Z github.com/ava-labs/coreth/internal/ethapi/api.go:2119: Listening 0.0% +2025-07-23T19:36:54.8398931Z github.com/ava-labs/coreth/internal/ethapi/api.go:2124: PeerCount 0.0% +2025-07-23T19:36:54.8399142Z github.com/ava-labs/coreth/internal/ethapi/api.go:2129: Version 0.0% +2025-07-23T19:36:54.8399364Z github.com/ava-labs/coreth/internal/ethapi/api.go:2135: checkTxFee 28.6% +2025-07-23T19:36:54.8399604Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:20: GetChainConfig 0.0% +2025-07-23T19:36:54.8399847Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:32: CallDetailed 0.0% +2025-07-23T19:36:54.8400086Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:71: GetBadBlocks 0.0% +2025-07-23T19:36:54.8400381Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:103: stateQueryBlockNumberAllowed 90.5% +2025-07-23T19:36:54.8400604Z github.com/ava-labs/coreth/internal/ethapi/backend.go:115: GetAPIs 0.0% +2025-07-23T19:36:54.8400941Z github.com/ava-labs/coreth/internal/ethapi/errors.go:47: ErrorCode 0.0% +2025-07-23T19:36:54.8401154Z github.com/ava-labs/coreth/internal/ethapi/errors.go:52: ErrorData 0.0% +2025-07-23T19:36:54.8401392Z github.com/ava-labs/coreth/internal/ethapi/errors.go:57: newRevertError 0.0% +2025-07-23T19:36:54.8401635Z github.com/ava-labs/coreth/internal/ethapi/errors.go:75: NewTxIndexingError 0.0% +2025-07-23T19:36:54.8401835Z github.com/ava-labs/coreth/internal/ethapi/errors.go:78: Error 0.0% +2025-07-23T19:36:54.8402054Z github.com/ava-labs/coreth/internal/ethapi/errors.go:84: ErrorCode 0.0% +2025-07-23T19:36:54.8402264Z github.com/ava-labs/coreth/internal/ethapi/errors.go:89: ErrorData 0.0% +2025-07-23T19:36:54.8402506Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:91: from 100.0% +2025-07-23T19:36:54.8402743Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:99: data 100.0% +2025-07-23T19:36:54.8403015Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:110: setDefaults 61.9% +2025-07-23T19:36:54.8403302Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:203: setFeeDefaults 89.7% +2025-07-23T19:36:54.8403599Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:263: setCancunFeeDefaults 100.0% +2025-07-23T19:36:54.8403926Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:282: setApricotPhase3FeeDefault 90.9% +2025-07-23T19:36:54.8404212Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:310: setBlobTxSidecar 90.5% +2025-07-23T19:36:54.8404476Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:387: ToMessage 78.6% +2025-07-23T19:36:54.8404752Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:476: toTransaction 73.3% +2025-07-23T19:36:54.8405109Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:548: IsEIP4844 100.0% +2025-07-23T19:36:54.8405337Z github.com/ava-labs/coreth/internal/flags/categories.go:53: init 100.0% +2025-07-23T19:36:54.8405548Z github.com/ava-labs/coreth/internal/flags/helpers.go:47: NewApp 80.0% +2025-07-23T19:36:54.8405748Z github.com/ava-labs/coreth/internal/flags/helpers.go:62: Merge 0.0% +2025-07-23T19:36:54.8405998Z github.com/ava-labs/coreth/internal/flags/helpers.go:87: MigrateGlobalFlags 0.0% +2025-07-23T19:36:54.8406231Z github.com/ava-labs/coreth/internal/flags/helpers.go:114: doMigrateFlags 0.0% +2025-07-23T19:36:54.8406433Z github.com/ava-labs/coreth/internal/flags/helpers.go:149: init 50.0% +2025-07-23T19:36:54.8406794Z github.com/ava-labs/coreth/internal/flags/helpers.go:162: FlagString 0.0% +2025-07-23T19:36:54.8407004Z github.com/ava-labs/coreth/internal/flags/helpers.go:194: indent 0.0% +2025-07-23T19:36:54.8407223Z github.com/ava-labs/coreth/internal/flags/helpers.go:199: wordWrap 0.0% +2025-07-23T19:36:54.8407430Z github.com/ava-labs/coreth/internal/reexec/reexec.go:31: Register 0.0% +2025-07-23T19:36:54.8407634Z github.com/ava-labs/coreth/internal/reexec/reexec.go:40: Init 0.0% +2025-07-23T19:36:54.8407847Z github.com/ava-labs/coreth/internal/reexec/self_linux.go:23: Self 0.0% +2025-07-23T19:36:54.8408164Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:49: NewShutdownTracker 100.0% +2025-07-23T19:36:54.8408458Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:59: MarkStartup 71.4% +2025-07-23T19:36:54.8408727Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:75: Start 85.7% +2025-07-23T19:36:54.8408993Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:91: Stop 100.0% +2025-07-23T19:36:54.8409224Z github.com/ava-labs/coreth/internal/version/vcs.go:43: buildInfoVCS 36.4% +2025-07-23T19:36:54.8409429Z github.com/ava-labs/coreth/internal/version/version.go:54: VCS 83.3% +2025-07-23T19:36:54.8409792Z github.com/ava-labs/coreth/internal/version/version.go:69: ClientName 0.0% +2025-07-23T19:36:54.8410006Z github.com/ava-labs/coreth/internal/version/version.go:85: Info 42.9% +2025-07-23T19:36:54.8410241Z github.com/ava-labs/coreth/internal/version/version.go:112: versionInfo 50.0% +2025-07-23T19:36:54.8410474Z github.com/ava-labs/coreth/internal/version/version.go:142: findModule 50.0% +2025-07-23T19:36:54.8410650Z github.com/ava-labs/coreth/log/format.go:45: format 66.7% +2025-07-23T19:36:54.8410852Z github.com/ava-labs/coreth/log/format.go:103: formatAttributes 82.1% +2025-07-23T19:36:54.8411065Z github.com/ava-labs/coreth/log/format.go:150: FormatSlogValue 84.0% +2025-07-23T19:36:54.8411260Z github.com/ava-labs/coreth/log/format.go:206: appendInt64 100.0% +2025-07-23T19:36:54.8411458Z github.com/ava-labs/coreth/log/format.go:214: appendUint64 88.2% +2025-07-23T19:36:54.8411663Z github.com/ava-labs/coreth/log/format.go:249: FormatLogfmtUint64 0.0% +2025-07-23T19:36:54.8411859Z github.com/ava-labs/coreth/log/format.go:254: appendBigInt 12.5% +2025-07-23T19:36:54.8412054Z github.com/ava-labs/coreth/log/format.go:288: appendU256 50.0% +2025-07-23T19:36:54.8412268Z github.com/ava-labs/coreth/log/format.go:298: appendEscapeString 100.0% +2025-07-23T19:36:54.8412467Z github.com/ava-labs/coreth/log/format.go:331: escapeMessage 60.0% +2025-07-23T19:36:54.8412687Z github.com/ava-labs/coreth/log/format.go:352: writeTimeTermFormat 100.0% +2025-07-23T19:36:54.8412892Z github.com/ava-labs/coreth/log/format.go:372: writePosIntWidth 91.7% +2025-07-23T19:36:54.8413099Z github.com/ava-labs/coreth/log/handler.go:22: DiscardHandler 0.0% +2025-07-23T19:36:54.8413272Z github.com/ava-labs/coreth/log/handler.go:26: Handle 0.0% +2025-07-23T19:36:54.8413451Z github.com/ava-labs/coreth/log/handler.go:30: Enabled 0.0% +2025-07-23T19:36:54.8413639Z github.com/ava-labs/coreth/log/handler.go:34: WithGroup 0.0% +2025-07-23T19:36:54.8413820Z github.com/ava-labs/coreth/log/handler.go:38: WithAttrs 0.0% +2025-07-23T19:36:54.8414042Z github.com/ava-labs/coreth/log/handler.go:67: NewTerminalHandler 0.0% +2025-07-23T19:36:54.8414283Z github.com/ava-labs/coreth/log/handler.go:73: NewTerminalHandlerWithLevel 100.0% +2025-07-23T19:36:54.8414461Z github.com/ava-labs/coreth/log/handler.go:82: Handle 100.0% +2025-07-23T19:36:54.8414652Z github.com/ava-labs/coreth/log/handler.go:91: Enabled 100.0% +2025-07-23T19:36:54.8414929Z github.com/ava-labs/coreth/log/handler.go:95: WithGroup 0.0% +2025-07-23T19:36:54.8415253Z github.com/ava-labs/coreth/log/handler.go:99: WithAttrs 100.0% +2025-07-23T19:36:54.8415470Z github.com/ava-labs/coreth/log/handler.go:110: ResetFieldPadding 0.0% +2025-07-23T19:36:54.8415662Z github.com/ava-labs/coreth/log/handler.go:117: JSONHandler 0.0% +2025-07-23T19:36:54.8415892Z github.com/ava-labs/coreth/log/handler.go:123: JSONHandlerWithLevel 100.0% +2025-07-23T19:36:54.8416095Z github.com/ava-labs/coreth/log/handler.go:134: LogfmtHandler 0.0% +2025-07-23T19:36:54.8416324Z github.com/ava-labs/coreth/log/handler.go:142: LogfmtHandlerWithLevel 0.0% +2025-07-23T19:36:54.8416550Z github.com/ava-labs/coreth/log/handler.go:149: builtinReplaceLogfmt 0.0% +2025-07-23T19:36:54.8416763Z github.com/ava-labs/coreth/log/handler.go:153: builtinReplaceJSON 0.0% +2025-07-23T19:36:54.8416970Z github.com/ava-labs/coreth/log/handler.go:157: builtinReplace 0.0% +2025-07-23T19:36:54.8417255Z github.com/ava-labs/coreth/log/logger.go:46: LvlFromString 37.5% +2025-07-23T19:36:54.8417488Z github.com/ava-labs/coreth/log/logger.go:67: FromLegacyLevel 0.0% +2025-07-23T19:36:54.8417769Z github.com/ava-labs/coreth/log/logger.go:93: LevelAlignedString 37.5% +2025-07-23T19:36:54.8417991Z github.com/ava-labs/coreth/log/logger.go:113: LevelString 0.0% +2025-07-23T19:36:54.8418384Z github.com/ava-labs/coreth/log/logger.go:173: NewLogger 0.0% +2025-07-23T19:36:54.8418770Z github.com/ava-labs/coreth/log/logger.go:180: Write 0.0% +2025-07-23T19:36:54.8419022Z github.com/ava-labs/coreth/log/logger.go:196: Log 0.0% +2025-07-23T19:36:54.8419234Z github.com/ava-labs/coreth/log/logger.go:200: With 0.0% +2025-07-23T19:36:54.8419468Z github.com/ava-labs/coreth/log/logger.go:204: New 0.0% +2025-07-23T19:36:54.8419689Z github.com/ava-labs/coreth/log/logger.go:209: Enabled 0.0% +2025-07-23T19:36:54.8419949Z github.com/ava-labs/coreth/log/logger.go:213: Trace 0.0% +2025-07-23T19:36:54.8420210Z github.com/ava-labs/coreth/log/logger.go:217: Debug 0.0% +2025-07-23T19:36:54.8420407Z github.com/ava-labs/coreth/log/logger.go:221: Info 0.0% +2025-07-23T19:36:54.8420600Z github.com/ava-labs/coreth/log/logger.go:225: Warn 0.0% +2025-07-23T19:36:54.8420853Z github.com/ava-labs/coreth/log/logger.go:229: Error 0.0% +2025-07-23T19:36:54.8421036Z github.com/ava-labs/coreth/log/logger.go:233: Crit 0.0% +2025-07-23T19:36:54.8421436Z github.com/ava-labs/coreth/metrics/metricstest/metrics.go:15: WithMetrics 40.0% +2025-07-23T19:36:54.8421746Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:28: NewGatherer 100.0% +2025-07-23T19:36:54.8422025Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:36: Gather 100.0% +2025-07-23T19:36:54.8422339Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:64: ptrTo 100.0% +2025-07-23T19:36:54.8422650Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:66: metricFamily 94.1% +2025-07-23T19:36:54.8422921Z github.com/ava-labs/coreth/miner/miner.go:59: New 0.0% +2025-07-23T19:36:54.8423167Z github.com/ava-labs/coreth/miner/miner.go:65: SetEtherbase 0.0% +2025-07-23T19:36:54.8423399Z github.com/ava-labs/coreth/miner/miner.go:69: GenerateBlock 0.0% +2025-07-23T19:36:54.8423694Z github.com/ava-labs/coreth/miner/miner.go:75: SubscribePendingLogs 0.0% +2025-07-23T19:36:54.8423977Z github.com/ava-labs/coreth/miner/ordering.go:50: newTxWithMinerFee 100.0% +2025-07-23T19:36:54.8424206Z github.com/ava-labs/coreth/miner/ordering.go:72: Len 100.0% +2025-07-23T19:36:54.8424464Z github.com/ava-labs/coreth/miner/ordering.go:73: Less 100.0% +2025-07-23T19:36:54.8424700Z github.com/ava-labs/coreth/miner/ordering.go:82: Swap 100.0% +2025-07-23T19:36:54.8425260Z github.com/ava-labs/coreth/miner/ordering.go:84: Push 0.0% +2025-07-23T19:36:54.8425676Z github.com/ava-labs/coreth/miner/ordering.go:88: Pop 100.0% +2025-07-23T19:36:54.8425995Z github.com/ava-labs/coreth/miner/ordering.go:112: newTransactionsByPriceAndNonce 100.0% +2025-07-23T19:36:54.8426240Z github.com/ava-labs/coreth/miner/ordering.go:141: Peek 100.0% +2025-07-23T19:36:54.8426534Z github.com/ava-labs/coreth/miner/ordering.go:149: Shift 100.0% +2025-07-23T19:36:54.8426799Z github.com/ava-labs/coreth/miner/ordering.go:164: Pop 0.0% +2025-07-23T19:36:54.8427036Z github.com/ava-labs/coreth/miner/ordering.go:170: Empty 0.0% +2025-07-23T19:36:54.8427244Z github.com/ava-labs/coreth/miner/ordering.go:175: Clear 0.0% +2025-07-23T19:36:54.8427500Z github.com/ava-labs/coreth/miner/worker.go:116: newWorker 0.0% +2025-07-23T19:36:54.8427720Z github.com/ava-labs/coreth/miner/worker.go:133: setEtherbase 0.0% +2025-07-23T19:36:54.8428058Z github.com/ava-labs/coreth/miner/worker.go:140: commitNewWork 0.0% +2025-07-23T19:36:54.8428338Z github.com/ava-labs/coreth/miner/worker.go:264: createCurrentEnvironment 0.0% +2025-07-23T19:36:54.8428605Z github.com/ava-labs/coreth/miner/worker.go:313: commitTransaction 0.0% +2025-07-23T19:36:54.8428907Z github.com/ava-labs/coreth/miner/worker.go:327: commitBlobTransaction 0.0% +2025-07-23T19:36:54.8429152Z github.com/ava-labs/coreth/miner/worker.go:352: applyTransaction 0.0% +2025-07-23T19:36:54.8429603Z github.com/ava-labs/coreth/miner/worker.go:386: commitTransactions 0.0% +2025-07-23T19:36:54.8429851Z github.com/ava-labs/coreth/miner/worker.go:493: commit 0.0% +2025-07-23T19:36:54.8430085Z github.com/ava-labs/coreth/miner/worker.go:511: handleResult 0.0% +2025-07-23T19:36:54.8430354Z github.com/ava-labs/coreth/miner/worker.go:557: copyReceipts 0.0% +2025-07-23T19:36:54.8430571Z github.com/ava-labs/coreth/miner/worker.go:567: totalFees 0.0% +2025-07-23T19:36:54.8430893Z github.com/ava-labs/coreth/nativeasset/contract.go:36: PackNativeAssetBalanceInput 100.0% +2025-07-23T19:36:54.8431282Z github.com/ava-labs/coreth/nativeasset/contract.go:44: UnpackNativeAssetBalanceInput 100.0% +2025-07-23T19:36:54.8431546Z github.com/ava-labs/coreth/nativeasset/contract.go:55: Run 90.0% +2025-07-23T19:36:54.8431928Z github.com/ava-labs/coreth/nativeasset/contract.go:84: PackNativeAssetCallInput 100.0% +2025-07-23T19:36:54.8432240Z github.com/ava-labs/coreth/nativeasset/contract.go:94: UnpackNativeAssetCallInput 100.0% +2025-07-23T19:36:54.8432481Z github.com/ava-labs/coreth/nativeasset/contract.go:106: Run 100.0% +2025-07-23T19:36:54.8432733Z github.com/ava-labs/coreth/nativeasset/contract.go:123: run 81.0% +2025-07-23T19:36:54.8433015Z github.com/ava-labs/coreth/nativeasset/contract.go:168: Run 100.0% +2025-07-23T19:36:54.8433320Z github.com/ava-labs/coreth/network/network.go:125: NewNetwork 75.0% +2025-07-23T19:36:54.8433584Z github.com/ava-labs/coreth/network/network.go:155: SendAppRequestAny 90.0% +2025-07-23T19:36:54.8433839Z github.com/ava-labs/coreth/network/network.go:177: SendAppRequest 88.9% +2025-07-23T19:36:54.8434128Z github.com/ava-labs/coreth/network/network.go:204: sendAppRequest 70.0% +2025-07-23T19:36:54.8434344Z github.com/ava-labs/coreth/network/network.go:259: AppRequest 81.8% +2025-07-23T19:36:54.8434697Z github.com/ava-labs/coreth/network/network.go:304: AppResponse 100.0% +2025-07-23T19:36:54.8435087Z github.com/ava-labs/coreth/network/network.go:325: AppRequestFailed 71.4% +2025-07-23T19:36:54.8435386Z github.com/ava-labs/coreth/network/network.go:343: calculateTimeUntilDeadline 100.0% +2025-07-23T19:36:54.8435700Z github.com/ava-labs/coreth/network/network.go:365: markRequestFulfilled 100.0% +2025-07-23T19:36:54.8435932Z github.com/ava-labs/coreth/network/network.go:382: AppGossip 100.0% +2025-07-23T19:36:54.8436246Z github.com/ava-labs/coreth/network/network.go:387: Connected 87.5% +2025-07-23T19:36:54.8436653Z github.com/ava-labs/coreth/network/network.go:406: Disconnected 0.0% +2025-07-23T19:36:54.8436890Z github.com/ava-labs/coreth/network/network.go:424: Shutdown 100.0% +2025-07-23T19:36:54.8437192Z github.com/ava-labs/coreth/network/network.go:438: SetRequestHandler 100.0% +2025-07-23T19:36:54.8437413Z github.com/ava-labs/coreth/network/network.go:445: Size 100.0% +2025-07-23T19:36:54.8437674Z github.com/ava-labs/coreth/network/network.go:452: TrackBandwidth 0.0% +2025-07-23T19:36:54.8438044Z github.com/ava-labs/coreth/network/network.go:463: SendSyncedAppRequestAny 100.0% +2025-07-23T19:36:54.8450407Z github.com/ava-labs/coreth/network/network.go:475: SendSyncedAppRequest 75.0% +2025-07-23T19:36:54.8450698Z github.com/ava-labs/coreth/network/network.go:483: NewClient 0.0% +2025-07-23T19:36:54.8450931Z github.com/ava-labs/coreth/network/network.go:487: AddHandler 100.0% +2025-07-23T19:36:54.8451170Z github.com/ava-labs/coreth/network/network.go:492: P2PValidators 0.0% +2025-07-23T19:36:54.8451419Z github.com/ava-labs/coreth/network/network.go:501: nextRequestID 100.0% +2025-07-23T19:36:54.8451658Z github.com/ava-labs/coreth/network/network.go:511: IsNetworkRequest 100.0% +2025-07-23T19:36:54.8451908Z github.com/ava-labs/coreth/network/peer_tracker.go:55: NewPeerTracker 100.0% +2025-07-23T19:36:54.8452163Z github.com/ava-labs/coreth/network/peer_tracker.go:70: shouldTrackNewPeer 100.0% +2025-07-23T19:36:54.8452611Z github.com/ava-labs/coreth/network/peer_tracker.go:85: getResponsivePeer 75.0% +2025-07-23T19:36:54.8452841Z github.com/ava-labs/coreth/network/peer_tracker.go:98: GetAnyPeer 100.0% +2025-07-23T19:36:54.8453056Z github.com/ava-labs/coreth/network/peer_tracker.go:133: TrackPeer 100.0% +2025-07-23T19:36:54.8453290Z github.com/ava-labs/coreth/network/peer_tracker.go:138: TrackBandwidth 86.7% +2025-07-23T19:36:54.8453502Z github.com/ava-labs/coreth/network/peer_tracker.go:165: Connected 71.4% +2025-07-23T19:36:54.8453737Z github.com/ava-labs/coreth/network/peer_tracker.go:188: Disconnected 100.0% +2025-07-23T19:36:54.8453937Z github.com/ava-labs/coreth/network/peer_tracker.go:198: Size 100.0% +2025-07-23T19:36:54.8454225Z github.com/ava-labs/coreth/network/stats/stats.go:23: IncDeadlineDroppedRequest 100.0% +2025-07-23T19:36:54.8454509Z github.com/ava-labs/coreth/network/stats/stats.go:27: UpdateTimeUntilDeadline 100.0% +2025-07-23T19:36:54.8454912Z github.com/ava-labs/coreth/network/stats/stats.go:31: NewRequestHandlerStats 100.0% +2025-07-23T19:36:54.8455204Z github.com/ava-labs/coreth/network/waiting_handler.go:29: newWaitingResponseHandler 100.0% +2025-07-23T19:36:54.8455441Z github.com/ava-labs/coreth/network/waiting_handler.go:39: OnResponse 100.0% +2025-07-23T19:36:54.8455663Z github.com/ava-labs/coreth/network/waiting_handler.go:46: OnFailure 100.0% +2025-07-23T19:36:54.8455902Z github.com/ava-labs/coreth/network/waiting_handler.go:52: WaitForResult 100.0% +2025-07-23T19:36:54.8456075Z github.com/ava-labs/coreth/node/api.go:38: apis 100.0% +2025-07-23T19:36:54.8456264Z github.com/ava-labs/coreth/node/api.go:59: ClientVersion 0.0% +2025-07-23T19:36:54.8456426Z github.com/ava-labs/coreth/node/api.go:65: Sha3 0.0% +2025-07-23T19:36:54.8456636Z github.com/ava-labs/coreth/node/config.go:75: ExtRPCEnabled 100.0% +2025-07-23T19:36:54.8456841Z github.com/ava-labs/coreth/node/config.go:81: KeyDirConfig 60.0% +2025-07-23T19:36:54.8457042Z github.com/ava-labs/coreth/node/config.go:97: GetKeyStoreDir 75.0% +2025-07-23T19:36:54.8457262Z github.com/ava-labs/coreth/node/config.go:119: makeAccountManager 58.8% +2025-07-23T19:36:54.8457426Z github.com/ava-labs/coreth/node/node.go:42: New 87.5% +2025-07-23T19:36:54.8457600Z github.com/ava-labs/coreth/node/node.go:62: Config 100.0% +2025-07-23T19:36:54.8457797Z github.com/ava-labs/coreth/node/node.go:67: AccountManager 100.0% +2025-07-23T19:36:54.8458103Z github.com/ava-labs/coreth/node/node.go:72: APIs 100.0% +2025-07-23T19:36:54.8458341Z github.com/ava-labs/coreth/params/config_extra.go:34: SetEthUpgrades 79.3% +2025-07-23T19:36:54.8458549Z github.com/ava-labs/coreth/params/config_extra.go:91: GetExtra 60.0% +2025-07-23T19:36:54.8458740Z github.com/ava-labs/coreth/params/config_extra.go:100: Copy 0.0% +2025-07-23T19:36:54.8458957Z github.com/ava-labs/coreth/params/config_extra.go:107: WithExtra 100.0% +2025-07-23T19:36:54.8459168Z github.com/ava-labs/coreth/params/config_extra.go:122: MarshalJSON 0.0% +2025-07-23T19:36:54.8459388Z github.com/ava-labs/coreth/params/config_extra.go:152: UnmarshalJSON 0.0% +2025-07-23T19:36:54.8459629Z github.com/ava-labs/coreth/params/config_extra.go:174: ToWithUpgradesJSON 0.0% +2025-07-23T19:36:54.8459844Z github.com/ava-labs/coreth/params/config_libevm.go:18: libevmInit 100.0% +2025-07-23T19:36:54.8460088Z github.com/ava-labs/coreth/params/config_libevm.go:31: constructRulesExtra 53.3% +2025-07-23T19:36:54.8460314Z github.com/ava-labs/coreth/params/extras/config.go:96: copyAndSet 100.0% +2025-07-23T19:36:54.8460571Z github.com/ava-labs/coreth/params/extras/config.go:123: CheckConfigCompatible 0.0% +2025-07-23T19:36:54.8460783Z github.com/ava-labs/coreth/params/extras/config.go:145: Description 0.0% +2025-07-23T19:36:54.8461181Z github.com/ava-labs/coreth/params/extras/config.go:166: isForkTimestampIncompatible 0.0% +2025-07-23T19:36:54.8461425Z github.com/ava-labs/coreth/params/extras/config.go:172: isTimestampForked 100.0% +2025-07-23T19:36:54.8461677Z github.com/ava-labs/coreth/params/extras/config.go:179: configTimestampEqual 0.0% +2025-07-23T19:36:54.8461903Z github.com/ava-labs/coreth/params/extras/config.go:194: UnmarshalJSON 0.0% +2025-07-23T19:36:54.8462115Z github.com/ava-labs/coreth/params/extras/config.go:210: MarshalJSON 0.0% +2025-07-23T19:36:54.8462372Z github.com/ava-labs/coreth/params/extras/config.go:223: CheckConfigForkOrder 0.0% +2025-07-23T19:36:54.8462582Z github.com/ava-labs/coreth/params/extras/config.go:240: checkForks 0.0% +2025-07-23T19:36:54.8462787Z github.com/ava-labs/coreth/params/extras/config.go:281: Verify 0.0% +2025-07-23T19:36:54.8463030Z github.com/ava-labs/coreth/params/extras/config.go:291: IsPrecompileEnabled 0.0% +2025-07-23T19:36:54.8463272Z github.com/ava-labs/coreth/params/extras/config.go:303: IsForkTransition 100.0% +2025-07-23T19:36:54.8463501Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:61: Equal 0.0% +2025-07-23T19:36:54.8463820Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:65: checkNetworkUpgradesCompatible 0.0% +2025-07-23T19:36:54.8464062Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:112: forkOrder 0.0% +2025-07-23T19:36:54.8464333Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:133: IsApricotPhase1 0.0% +2025-07-23T19:36:54.8464593Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:139: IsApricotPhase2 0.0% +2025-07-23T19:36:54.8465103Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:145: IsApricotPhase3 0.0% +2025-07-23T19:36:54.8465459Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:151: IsApricotPhase4 0.0% +2025-07-23T19:36:54.8465730Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:157: IsApricotPhase5 0.0% +2025-07-23T19:36:54.8466016Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:163: IsApricotPhasePre6 0.0% +2025-07-23T19:36:54.8466273Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:169: IsApricotPhase6 0.0% +2025-07-23T19:36:54.8466555Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:175: IsApricotPhasePost6 0.0% +2025-07-23T19:36:54.8466794Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:181: IsBanff 0.0% +2025-07-23T19:36:54.8467032Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:187: IsCortina 0.0% +2025-07-23T19:36:54.8467449Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:193: IsDurango 0.0% +2025-07-23T19:36:54.8467698Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:199: IsEtna 0.0% +2025-07-23T19:36:54.8467956Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:205: IsFortuna 0.0% +2025-07-23T19:36:54.8468212Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:211: IsGranite 0.0% +2025-07-23T19:36:54.8468466Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:215: Description 0.0% +2025-07-23T19:36:54.8468754Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:234: GetNetworkUpgrades 0.0% +2025-07-23T19:36:54.8469036Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:264: GetAvalancheRules 0.0% +2025-07-23T19:36:54.8469292Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:283: ptrToString 0.0% +2025-07-23T19:36:54.8469572Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:32: UnmarshalJSON 0.0% +2025-07-23T19:36:54.8469829Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:59: MarshalJSON 0.0% +2025-07-23T19:36:54.8470141Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:71: verifyPrecompileUpgrades 0.0% +2025-07-23T19:36:54.8470460Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:137: GetActivePrecompileConfig 0.0% +2025-07-23T19:36:54.8470952Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:147: GetActivatingPrecompileConfigs 0.0% +2025-07-23T19:36:54.8471278Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:176: checkPrecompilesCompatible 0.0% +2025-07-23T19:36:54.8471586Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:192: checkPrecompileCompatible 0.0% +2025-07-23T19:36:54.8471901Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:230: EnabledStatefulPrecompiles 0.0% +2025-07-23T19:36:54.8472157Z github.com/ava-labs/coreth/params/extras/precompiles.go:18: UnmarshalJSON 0.0% +2025-07-23T19:36:54.8472389Z github.com/ava-labs/coreth/params/extras/rules.go:28: PredicatersExist 0.0% +2025-07-23T19:36:54.8472621Z github.com/ava-labs/coreth/params/extras/rules.go:32: PredicaterExists 0.0% +2025-07-23T19:36:54.8472862Z github.com/ava-labs/coreth/params/extras/rules.go:38: IsPrecompileEnabled 0.0% +2025-07-23T19:36:54.8473097Z github.com/ava-labs/coreth/params/hooks_libevm.go:28: GetRulesExtra 100.0% +2025-07-23T19:36:54.8473325Z github.com/ava-labs/coreth/params/hooks_libevm.go:33: CanCreateContract 0.0% +2025-07-23T19:36:54.8473580Z github.com/ava-labs/coreth/params/hooks_libevm.go:37: CanExecuteTransaction 0.0% +2025-07-23T19:36:54.8473828Z github.com/ava-labs/coreth/params/hooks_libevm.go:42: MinimumGasConsumption 0.0% +2025-07-23T19:36:54.8474057Z github.com/ava-labs/coreth/params/hooks_libevm.go:70: ActivePrecompiles 0.0% +2025-07-23T19:36:54.8474327Z github.com/ava-labs/coreth/params/hooks_libevm.go:92: precompileOverrideBuiltin 0.0% +2025-07-23T19:36:54.8474551Z github.com/ava-labs/coreth/params/hooks_libevm.go:113: makePrecompile 0.0% +2025-07-23T19:36:54.8474953Z github.com/ava-labs/coreth/params/hooks_libevm.go:140: PrecompileOverride 0.0% +2025-07-23T19:36:54.8475176Z github.com/ava-labs/coreth/params/hooks_libevm.go:160: GetStateDB 0.0% +2025-07-23T19:36:54.8475410Z github.com/ava-labs/coreth/params/hooks_libevm.go:172: GetBlockContext 0.0% +2025-07-23T19:36:54.8475629Z github.com/ava-labs/coreth/params/hooks_libevm.go:176: GetChainConfig 0.0% +2025-07-23T19:36:54.8475850Z github.com/ava-labs/coreth/params/hooks_libevm.go:180: GetSnowContext 0.0% +2025-07-23T19:36:54.8476074Z github.com/ava-labs/coreth/params/hooks_libevm.go:184: GetPrecompileEnv 0.0% +2025-07-23T19:36:54.8476282Z github.com/ava-labs/coreth/params/hooks_libevm.go:194: Number 0.0% +2025-07-23T19:36:54.8476622Z github.com/ava-labs/coreth/params/hooks_libevm.go:198: Timestamp 0.0% +2025-07-23T19:36:54.8476862Z github.com/ava-labs/coreth/params/hooks_libevm.go:202: GetPredicateResults 0.0% +2025-07-23T19:36:54.8477085Z github.com/ava-labs/coreth/params/version.go:53: VersionWithCommit 0.0% +2025-07-23T19:36:54.8477304Z github.com/ava-labs/coreth/plugin/evm/admin.go:22: NewAdminService 0.0% +2025-07-23T19:36:54.8477526Z github.com/ava-labs/coreth/plugin/evm/admin.go:30: StartCPUProfiler 0.0% +2025-07-23T19:36:54.8477740Z github.com/ava-labs/coreth/plugin/evm/admin.go:40: StopCPUProfiler 0.0% +2025-07-23T19:36:54.8477945Z github.com/ava-labs/coreth/plugin/evm/admin.go:50: MemoryProfile 0.0% +2025-07-23T19:36:54.8478152Z github.com/ava-labs/coreth/plugin/evm/admin.go:60: LockProfile 0.0% +2025-07-23T19:36:54.8478350Z github.com/ava-labs/coreth/plugin/evm/admin.go:69: SetLogLevel 0.0% +2025-07-23T19:36:54.8478548Z github.com/ava-labs/coreth/plugin/evm/admin.go:81: GetVMConfig 0.0% +2025-07-23T19:36:54.8478851Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/ops.go:12: ConvertToAtomicOps 75.0% +2025-07-23T19:36:54.8479239Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:26: AddItemsToBeRemovedToPeerChain 87.5% +2025-07-23T19:36:54.8479574Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:40: AssertOpsApplied 100.0% +2025-07-23T19:36:54.8480040Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:58: AssertOpsNotApplied 100.0% +2025-07-23T19:36:54.8480370Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:76: NewSharedMemories 100.0% +2025-07-23T19:36:54.8480697Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:85: TestSharedMemory 100.0% +2025-07-23T19:36:54.8480931Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:28: init 83.3% +2025-07-23T19:36:54.8481183Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:58: GasUsed 100.0% +2025-07-23T19:36:54.8481428Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:61: Verify 0.0% +2025-07-23T19:36:54.8481680Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:64: AtomicOps 100.0% +2025-07-23T19:36:54.8481929Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:69: Initialize 0.0% +2025-07-23T19:36:54.8482161Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:72: ID 100.0% +2025-07-23T19:36:54.8482404Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:75: Burned 100.0% +2025-07-23T19:36:54.8482633Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:78: Bytes 0.0% +2025-07-23T19:36:54.8482880Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:81: SignedBytes 0.0% +2025-07-23T19:36:54.8483143Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:84: InputUTXOs 100.0% +2025-07-23T19:36:54.8483375Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:87: Visit 0.0% +2025-07-23T19:36:54.8483655Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:92: EVMStateTransfer 0.0% +2025-07-23T19:36:54.8483973Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:98: GenerateTestImportTxWithGas 100.0% +2025-07-23T19:36:54.8484273Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:115: GenerateTestImportTx 100.0% +2025-07-23T19:36:54.8484575Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:130: GenerateTestExportTx 100.0% +2025-07-23T19:36:54.8484938Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:151: NewTestTx 80.0% +2025-07-23T19:36:54.8485199Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:163: NewTestTxs 100.0% +2025-07-23T19:36:54.8485412Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:25: init 85.7% +2025-07-23T19:36:54.8485649Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:57: ExtractAtomicTxs 0.0% +2025-07-23T19:36:54.8486086Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:76: ExtractAtomicTx 66.7% +2025-07-23T19:36:54.8486453Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:89: ExtractAtomicTxsBatch 0.0% +2025-07-23T19:36:54.8486779Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:60: InputUTXOs 0.0% +2025-07-23T19:36:54.8487044Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:75: Verify 0.0% +2025-07-23T19:36:54.8487326Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:134: GasUsed 0.0% +2025-07-23T19:36:54.8487570Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:156: Burned 0.0% +2025-07-23T19:36:54.8487793Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:182: Visit 0.0% +2025-07-23T19:36:54.8488029Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:185: AtomicOps 0.0% +2025-07-23T19:36:54.8488275Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:219: NewExportTx 0.0% +2025-07-23T19:36:54.8488538Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:313: EVMStateTransfer 0.0% +2025-07-23T19:36:54.8488806Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:352: getSpendableFunds 0.0% +2025-07-23T19:36:54.8489093Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:409: getSpendableAVAXWithFee 0.0% +2025-07-23T19:36:54.8489496Z github.com/ava-labs/coreth/plugin/evm/atomic/gossip.go:12: MarshalGossip 100.0% +2025-07-23T19:36:54.8489756Z github.com/ava-labs/coreth/plugin/evm/atomic/gossip.go:16: UnmarshalGossip 100.0% +2025-07-23T19:36:54.8489989Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:63: InputUTXOs 0.0% +2025-07-23T19:36:54.8490214Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:72: Verify 0.0% +2025-07-23T19:36:54.8490451Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:136: GasUsed 0.0% +2025-07-23T19:36:54.8490674Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:161: Burned 0.0% +2025-07-23T19:36:54.8490915Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:192: AtomicOps 0.0% +2025-07-23T19:36:54.8491153Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:202: NewImportTx 0.0% +2025-07-23T19:36:54.8491409Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:335: EVMStateTransfer 0.0% +2025-07-23T19:36:54.8491640Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:352: Visit 0.0% +2025-07-23T19:36:54.8491876Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:18: Initialize 100.0% +2025-07-23T19:36:54.8492096Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:25: ID 100.0% +2025-07-23T19:36:54.8492315Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:30: Bytes 0.0% +2025-07-23T19:36:54.8492553Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:35: SignedBytes 100.0% +2025-07-23T19:36:54.8492855Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:42: NewAtomicBackend 75.0% +2025-07-23T19:36:54.8493134Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:79: initialize 72.0% +2025-07-23T19:36:54.8493459Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:182: ApplyToSharedMemory 63.3% +2025-07-23T19:36:54.8493820Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:303: MarkApplyToSharedMemoryCursor 100.0% +2025-07-23T19:36:54.8494145Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:309: GetVerifiedAtomicState 0.0% +2025-07-23T19:36:54.8494442Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:320: getAtomicRootAt 0.0% +2025-07-23T19:36:54.8494732Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:332: SetLastAccepted 0.0% +2025-07-23T19:36:54.8495129Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:343: InsertTxs 0.0% +2025-07-23T19:36:54.8495539Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:393: IsBonus 0.0% +2025-07-23T19:36:54.8495822Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:400: AtomicTrie 100.0% +2025-07-23T19:36:54.8496116Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:406: mergeAtomicOps 91.7% +2025-07-23T19:36:54.8496434Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:428: mergeAtomicOpsToMap 100.0% +2025-07-23T19:36:54.8496725Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:438: AddBonusBlock 0.0% +2025-07-23T19:36:54.8497062Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:65: NewAtomicTxRepository 75.0% +2025-07-23T19:36:54.8497389Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:85: initializeHeightIndex 59.6% +2025-07-23T19:36:54.8497694Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:185: GetIndexHeight 0.0% +2025-07-23T19:36:54.8497981Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:201: GetByTxID 0.0% +2025-07-23T19:36:54.8498281Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:229: GetByHeight 100.0% +2025-07-23T19:36:54.8498602Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:236: getByHeightBytes 100.0% +2025-07-23T19:36:54.8498879Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:248: Write 100.0% +2025-07-23T19:36:54.8499289Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:254: WriteBonus 0.0% +2025-07-23T19:36:54.8499562Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:258: write 72.2% +2025-07-23T19:36:54.8499854Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:300: indexTxByID 80.0% +2025-07-23T19:36:54.8500168Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:320: indexTxsAtHeight 66.7% +2025-07-23T19:36:54.8500506Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:335: appendTxToHeightIndex 75.0% +2025-07-23T19:36:54.8500820Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:356: IterateByHeight 100.0% +2025-07-23T19:36:54.8501068Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:28: Root 0.0% +2025-07-23T19:36:54.8501326Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:35: Accept 0.0% +2025-07-23T19:36:54.8501587Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:78: Reject 0.0% +2025-07-23T19:36:54.8501866Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:52: newAtomicTrie 58.3% +2025-07-23T19:36:54.8502197Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:103: lastCommittedRootIfExists 72.7% +2025-07-23T19:36:54.8502502Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:126: nearestCommitHeight 100.0% +2025-07-23T19:36:54.8502769Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:130: OpenTrie 100.0% +2025-07-23T19:36:54.8503031Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:135: Commit 75.0% +2025-07-23T19:36:54.8503300Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:143: UpdateTrie 80.0% +2025-07-23T19:36:54.8503592Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:165: LastCommitted 100.0% +2025-07-23T19:36:54.8503901Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:171: updateLastCommitted 75.0% +2025-07-23T19:36:54.8504163Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:191: Iterator 75.0% +2025-07-23T19:36:54.8504419Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:205: TrieDB 0.0% +2025-07-23T19:36:54.8504665Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:212: Root 100.0% +2025-07-23T19:36:54.8505172Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:218: getRoot 62.5% +2025-07-23T19:36:54.8505634Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:237: LastAcceptedRoot 100.0% +2025-07-23T19:36:54.8505907Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:241: InsertTrie 55.6% +2025-07-23T19:36:54.8506178Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:263: AcceptTrie 83.3% +2025-07-23T19:36:54.8506444Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:293: RejectTrie 0.0% +2025-07-23T19:36:54.8506788Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:28: NewAtomicTrieIterator 100.0% +2025-07-23T19:36:54.8507076Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:33: Error 100.0% +2025-07-23T19:36:54.8507350Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:42: Next 81.0% +2025-07-23T19:36:54.8507655Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:81: resetFields 100.0% +2025-07-23T19:36:54.8507957Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:90: BlockNumber 100.0% +2025-07-23T19:36:54.8508261Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:95: BlockchainID 100.0% +2025-07-23T19:36:54.8508562Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:101: AtomicOps 100.0% +2025-07-23T19:36:54.8508991Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:107: Key 0.0% +2025-07-23T19:36:54.8509282Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:112: Value 0.0% +2025-07-23T19:36:54.8509515Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:29: MarshalJSON 0.0% +2025-07-23T19:36:54.8509751Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:37: UnmarshalJSON 0.0% +2025-07-23T19:36:54.8509966Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:58: Valid 0.0% +2025-07-23T19:36:54.8510183Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:67: String 0.0% +2025-07-23T19:36:54.8510436Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:29: Initialize 0.0% +2025-07-23T19:36:54.8510663Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:36: Sync 0.0% +2025-07-23T19:36:54.8510950Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:69: OnFinishBeforeCommit 0.0% +2025-07-23T19:36:54.8511239Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:81: OnFinishAfterCommit 0.0% +2025-07-23T19:36:54.8511512Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:28: OnLeafsRequest 0.0% +2025-07-23T19:36:54.8511783Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:38: NewLeafHandler 0.0% +2025-07-23T19:36:54.8512050Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:45: Initialize 0.0% +2025-07-23T19:36:54.8512297Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:32: NewSummary 80.0% +2025-07-23T19:36:54.8512539Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:57: Bytes 100.0% +2025-07-23T19:36:54.8512762Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:61: ID 100.0% +2025-07-23T19:36:54.8512992Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:65: String 0.0% +2025-07-23T19:36:54.8513234Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:69: Accept 66.7% +2025-07-23T19:36:54.8513535Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_parser.go:17: NewSummaryParser 100.0% +2025-07-23T19:36:54.8513799Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_parser.go:21: Parse 80.0% +2025-07-23T19:36:54.8514073Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_provider.go:25: Initialize 0.0% +2025-07-23T19:36:54.8514377Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_provider.go:30: StateSummaryAtBlock 0.0% +2025-07-23T19:36:54.8514711Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:88: Validate 100.0% +2025-07-23T19:36:54.8515131Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:162: addZeroes 100.0% +2025-07-23T19:36:54.8515381Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:170: newSyncer 86.7% +2025-07-23T19:36:54.8515613Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:211: Start 100.0% +2025-07-23T19:36:54.8515852Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:219: onLeafs 70.8% +2025-07-23T19:36:54.8516093Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:267: onFinish 58.3% +2025-07-23T19:36:54.8516352Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:293: onSyncFailure 100.0% +2025-07-23T19:36:54.8516582Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:300: Wait 100.0% +2025-07-23T19:36:54.8516814Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:318: Start 100.0% +2025-07-23T19:36:54.8517042Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:319: End 100.0% +2025-07-23T19:36:54.8517285Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:320: NodeType 100.0% +2025-07-23T19:36:54.8517521Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:321: OnFinish 100.0% +2025-07-23T19:36:54.8517760Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:322: OnStart 100.0% +2025-07-23T19:36:54.8518121Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:323: Root 100.0% +2025-07-23T19:36:54.8518356Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:324: Account 100.0% +2025-07-23T19:36:54.8518596Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:325: OnLeafs 100.0% +2025-07-23T19:36:54.8518803Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:70: Compare 0.0% +2025-07-23T19:36:54.8519011Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:86: Compare 0.0% +2025-07-23T19:36:54.8519222Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:95: Verify 0.0% +2025-07-23T19:36:54.8519420Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:108: Verify 0.0% +2025-07-23T19:36:54.8519626Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:183: Compare 0.0% +2025-07-23T19:36:54.8519826Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:197: Sign 82.4% +2025-07-23T19:36:54.8520084Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:231: BlockFeeContribution 0.0% +2025-07-23T19:36:54.8520303Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:261: GossipID 100.0% +2025-07-23T19:36:54.8520506Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:271: Less 0.0% +2025-07-23T19:36:54.8520700Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:279: Len 0.0% +2025-07-23T19:36:54.8520902Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:281: Swap 0.0% +2025-07-23T19:36:54.8521164Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:287: SortEVMInputsAndSigners 0.0% +2025-07-23T19:36:54.8521418Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:293: CalculateDynamicFee 0.0% +2025-07-23T19:36:54.8521644Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:309: calcBytesCost 0.0% +2025-07-23T19:36:54.8521931Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:48: newMempoolMetrics 100.0% +2025-07-23T19:36:54.8522194Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:89: Initialize 93.3% +2025-07-23T19:36:54.8522451Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:114: PendingLen 0.0% +2025-07-23T19:36:54.8522688Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:119: Len 0.0% +2025-07-23T19:36:54.8522936Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:127: length 100.0% +2025-07-23T19:36:54.8523217Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:133: atomicTxGasPrice 77.8% +2025-07-23T19:36:54.8523592Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:148: Add 100.0% +2025-07-23T19:36:54.8523863Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:157: AddRemoteTx 100.0% +2025-07-23T19:36:54.8524119Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:180: AddLocalTx 0.0% +2025-07-23T19:36:54.8524379Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:193: ForceAddTx 0.0% +2025-07-23T19:36:54.8524662Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:203: checkConflictTx 26.7% +2025-07-23T19:36:54.8525016Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:234: addTx 64.6% +2025-07-23T19:36:54.8525271Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:352: Iterate 100.0% +2025-07-23T19:36:54.8525522Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:363: GetFilter 0.0% +2025-07-23T19:36:54.8525773Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:371: NextTx 88.9% +2025-07-23T19:36:54.8526044Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:391: GetPendingTx 0.0% +2025-07-23T19:36:54.8526291Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:401: GetTx 72.7% +2025-07-23T19:36:54.8526526Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:422: Has 100.0% +2025-07-23T19:36:54.8526926Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:428: IssueCurrentTxs 88.9% +2025-07-23T19:36:54.8527213Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:451: CancelCurrentTx 0.0% +2025-07-23T19:36:54.8527487Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:464: CancelCurrentTxs 0.0% +2025-07-23T19:36:54.8527735Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:484: cancelTx 0.0% +2025-07-23T19:36:54.8528008Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:505: DiscardCurrentTx 0.0% +2025-07-23T19:36:54.8528289Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:515: DiscardCurrentTxs 0.0% +2025-07-23T19:36:54.8528565Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:526: discardCurrentTx 0.0% +2025-07-23T19:36:54.8528813Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:540: removeTx 91.7% +2025-07-23T19:36:54.8529084Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:565: removeSpenders 50.0% +2025-07-23T19:36:54.8529338Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:573: RemoveTx 0.0% +2025-07-23T19:36:54.8529603Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:581: addPending 100.0% +2025-07-23T19:36:54.8529898Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:590: SubscribePendingTxs 0.0% +2025-07-23T19:36:54.8530179Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:29: newInternalTxHeap 100.0% +2025-07-23T19:36:54.8530415Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:37: Len 100.0% +2025-07-23T19:36:54.8530660Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:39: Less 100.0% +2025-07-23T19:36:54.8530893Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:46: Swap 100.0% +2025-07-23T19:36:54.8531129Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:52: Push 80.0% +2025-07-23T19:36:54.8531364Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:61: Pop 100.0% +2025-07-23T19:36:54.8531589Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:70: Get 100.0% +2025-07-23T19:36:54.8531854Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:78: Has 100.0% +2025-07-23T19:36:54.8532109Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:88: newTxHeap 100.0% +2025-07-23T19:36:54.8532348Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:95: Push 100.0% +2025-07-23T19:36:54.8532592Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:113: PeekMax 0.0% +2025-07-23T19:36:54.8532968Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:119: PeekMin 100.0% +2025-07-23T19:36:54.8533228Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:125: PopMax 100.0% +2025-07-23T19:36:54.8533477Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:130: PopMin 100.0% +2025-07-23T19:36:54.8533722Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:134: Remove 75.0% +2025-07-23T19:36:54.8533963Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:150: Len 100.0% +2025-07-23T19:36:54.8534195Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:154: Get 100.0% +2025-07-23T19:36:54.8534433Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:162: Has 100.0% +2025-07-23T19:36:54.8534653Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:43: Version 0.0% +2025-07-23T19:36:54.8534975Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:53: GetUTXOs 0.0% +2025-07-23T19:36:54.8535202Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:141: IssueTx 0.0% +2025-07-23T19:36:54.8535450Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:170: GetAtomicTxStatus 0.0% +2025-07-23T19:36:54.8535682Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:205: GetAtomicTx 0.0% +2025-07-23T19:36:54.8536096Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:48: newBlockExtender 100.0% +2025-07-23T19:36:54.8536386Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:61: NewBlockExtension 75.0% +2025-07-23T19:36:54.8536678Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:82: SyntacticVerify 66.7% +2025-07-23T19:36:54.8536965Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:172: SemanticVerify 100.0% +2025-07-23T19:36:54.8537233Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:193: Accept 85.7% +2025-07-23T19:36:54.8537498Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:213: Reject 77.8% +2025-07-23T19:36:54.8537793Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:231: CleanupVerified 100.0% +2025-07-23T19:36:54.8538072Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:239: AtomicTxs 100.0% +2025-07-23T19:36:54.8538377Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:245: verifyUTXOsPresent 92.9% +2025-07-23T19:36:54.8538672Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/bonus_blocks.go:9: readMainnetBonusBlocks 0.0% +2025-07-23T19:36:54.8538917Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/ext_data_hashes.go:23: init 66.7% +2025-07-23T19:36:54.8539204Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:18: ParseServiceAddress 0.0% +2025-07-23T19:36:54.8539488Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:27: ParseLocalAddress 0.0% +2025-07-23T19:36:54.8539764Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:40: FormatLocalAddress 0.0% +2025-07-23T19:36:54.8540022Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:51: ParseAddress 0.0% +2025-07-23T19:36:54.8540338Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:50: NewVerifierBackend 100.0% +2025-07-23T19:36:54.8540629Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:62: SemanticVerify 100.0% +2025-07-23T19:36:54.8540907Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:80: ImportTx 95.7% +2025-07-23T19:36:54.8541182Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:167: conflicts 88.2% +2025-07-23T19:36:54.8541455Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:205: ExportTx 86.8% +2025-07-23T19:36:54.8541681Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:108: WrapVM 100.0% +2025-07-23T19:36:54.8542054Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:113: Initialize 74.4% +2025-07-23T19:36:54.8542280Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:231: SetState 57.1% +2025-07-23T19:36:54.8542543Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:248: onBootstrapStarted 100.0% +2025-07-23T19:36:54.8542822Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:253: onNormalOperationsStarted 83.9% +2025-07-23T19:36:54.8543048Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:342: Shutdown 75.0% +2025-07-23T19:36:54.8543287Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:356: CreateHandlers 0.0% +2025-07-23T19:36:54.8543539Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:371: verifyTxAtTip 77.3% +2025-07-23T19:36:54.8543753Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:414: verifyTx 85.7% +2025-07-23T19:36:54.8543972Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:428: verifyTxs 88.2% +2025-07-23T19:36:54.8544221Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:464: CodecRegistry 100.0% +2025-07-23T19:36:54.8544433Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:467: Clock 100.0% +2025-07-23T19:36:54.8544644Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:470: Logger 100.0% +2025-07-23T19:36:54.8545021Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:472: createConsensusCallbacks 100.0% +2025-07-23T19:36:54.8545434Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:479: preBatchOnFinalizeAndAssemble 84.0% +2025-07-23T19:36:54.8545731Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:526: postBatchOnFinalizeAndAssemble 84.1% +2025-07-23T19:36:54.8545994Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:636: onFinalizeAndAssemble 100.0% +2025-07-23T19:36:54.8546245Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:648: onExtraStateChange 83.9% +2025-07-23T19:36:54.8546478Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:721: BuildBlock 100.0% +2025-07-23T19:36:54.8546747Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:725: BuildBlockWithContext 50.0% +2025-07-23T19:36:54.8547000Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:744: chainConfigExtra 100.0% +2025-07-23T19:36:54.8547212Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:748: rules 100.0% +2025-07-23T19:36:54.8547447Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:754: CurrentRules 100.0% +2025-07-23T19:36:54.8547686Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:763: GetAtomicTx 22.2% +2025-07-23T19:36:54.8547911Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:780: NewImportTx 85.7% +2025-07-23T19:36:54.8548139Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:800: NewExportTx 71.4% +2025-07-23T19:36:54.8548383Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:49: NewBlockBuilder 100.0% +2025-07-23T19:36:54.8548652Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:62: handleGenerateBlock 100.0% +2025-07-23T19:36:54.8548891Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:70: needToBuild 100.0% +2025-07-23T19:36:54.8549128Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:78: signalCanBuild 100.0% +2025-07-23T19:36:54.8549382Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:87: awaitSubmittedTxs 100.0% +2025-07-23T19:36:54.8549617Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:119: waitForEvent 91.7% +2025-07-23T19:36:54.8549871Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:145: waitForNeedToBuild 100.0% +2025-07-23T19:36:54.8550095Z github.com/ava-labs/coreth/plugin/evm/client/client.go:49: NewClient 0.0% +2025-07-23T19:36:54.8550336Z github.com/ava-labs/coreth/plugin/evm/client/client.go:57: NewCChainClient 0.0% +2025-07-23T19:36:54.8550550Z github.com/ava-labs/coreth/plugin/evm/client/client.go:62: IssueTx 0.0% +2025-07-23T19:36:54.8550799Z github.com/ava-labs/coreth/plugin/evm/client/client.go:82: GetAtomicTxStatus 0.0% +2025-07-23T19:36:54.8551150Z github.com/ava-labs/coreth/plugin/evm/client/client.go:91: GetAtomicTx 0.0% +2025-07-23T19:36:54.8551397Z github.com/ava-labs/coreth/plugin/evm/client/client.go:106: GetAtomicUTXOs 0.0% +2025-07-23T19:36:54.8551642Z github.com/ava-labs/coreth/plugin/evm/client/client.go:138: StartCPUProfiler 0.0% +2025-07-23T19:36:54.8551891Z github.com/ava-labs/coreth/plugin/evm/client/client.go:142: StopCPUProfiler 0.0% +2025-07-23T19:36:54.8552129Z github.com/ava-labs/coreth/plugin/evm/client/client.go:146: MemoryProfile 0.0% +2025-07-23T19:36:54.8552354Z github.com/ava-labs/coreth/plugin/evm/client/client.go:150: LockProfile 0.0% +2025-07-23T19:36:54.8552584Z github.com/ava-labs/coreth/plugin/evm/client/client.go:159: SetLogLevel 0.0% +2025-07-23T19:36:54.8552810Z github.com/ava-labs/coreth/plugin/evm/client/client.go:170: GetVMConfig 0.0% +2025-07-23T19:36:54.8553050Z github.com/ava-labs/coreth/plugin/evm/client/utils.go:8: ParseEthAddress 0.0% +2025-07-23T19:36:54.8553272Z github.com/ava-labs/coreth/plugin/evm/config/config.go:265: EthAPIs 0.0% +2025-07-23T19:36:54.8553504Z github.com/ava-labs/coreth/plugin/evm/config/config.go:269: SetDefaults 0.0% +2025-07-23T19:36:54.8553745Z github.com/ava-labs/coreth/plugin/evm/config/config.go:327: UnmarshalJSON 80.0% +2025-07-23T19:36:54.8554039Z github.com/ava-labs/coreth/plugin/evm/config/config.go:337: String 0.0% +2025-07-23T19:36:54.8554264Z github.com/ava-labs/coreth/plugin/evm/config/config.go:342: MarshalJSON 0.0% +2025-07-23T19:36:54.8554485Z github.com/ava-labs/coreth/plugin/evm/config/config.go:347: Validate 0.0% +2025-07-23T19:36:54.8554708Z github.com/ava-labs/coreth/plugin/evm/config/config.go:382: Deprecate 57.1% +2025-07-23T19:36:54.8555060Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:28: New 0.0% +2025-07-23T19:36:54.8555315Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:35: Dial 0.0% +2025-07-23T19:36:54.8555601Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:40: DialContext 0.0% +2025-07-23T19:36:54.8555893Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:60: OnBlockDecoded 0.0% +2025-07-23T19:36:54.8556143Z github.com/ava-labs/coreth/plugin/evm/customlogs/log_ext.go:8: FlattenLogs 100.0% +2025-07-23T19:36:54.8556496Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:16: writeCurrentTimeMarker 0.0% +2025-07-23T19:36:54.8556815Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:25: readTimeMarker 0.0% +2025-07-23T19:36:54.8557147Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:44: WriteOfflinePruning 0.0% +2025-07-23T19:36:54.8557481Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:50: ReadOfflinePruning 0.0% +2025-07-23T19:36:54.8557822Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:55: DeleteOfflinePruning 0.0% +2025-07-23T19:36:54.8558177Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:61: WritePopulateMissingTries 0.0% +2025-07-23T19:36:54.8558530Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:67: ReadPopulateMissingTries 0.0% +2025-07-23T19:36:54.8558887Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:73: DeletePopulateMissingTries 0.0% +2025-07-23T19:36:54.8559232Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:79: WritePruningDisabled 0.0% +2025-07-23T19:36:54.8559556Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:85: HasPruningDisabled 0.0% +2025-07-23T19:36:54.8559876Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:90: WriteAcceptorTip 0.0% +2025-07-23T19:36:54.8560198Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:97: ReadAcceptorTip 0.0% +2025-07-23T19:36:54.8560664Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:15: ReadSnapshotBlockHash 0.0% +2025-07-23T19:36:54.8561016Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:25: WriteSnapshotBlockHash 50.0% +2025-07-23T19:36:54.8561360Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:35: DeleteSnapshotBlockHash 0.0% +2025-07-23T19:36:54.8561709Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:42: IterateAccountSnapshots 0.0% +2025-07-23T19:36:54.8562015Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:18: ReadSyncRoot 0.0% +2025-07-23T19:36:54.8562321Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:31: WriteSyncRoot 0.0% +2025-07-23T19:36:54.8562637Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:36: AddCodeToFetch 50.0% +2025-07-23T19:36:54.8562956Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:43: DeleteCodeToFetch 0.0% +2025-07-23T19:36:54.8563289Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:52: NewCodeToFetchIterator 0.0% +2025-07-23T19:36:54.8563610Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:59: codeToFetchKey 100.0% +2025-07-23T19:36:54.8564065Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:69: NewSyncSegmentsIterator 0.0% +2025-07-23T19:36:54.8564385Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:81: WriteSyncSegment 100.0% +2025-07-23T19:36:54.8564694Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:86: ClearSyncSegments 0.0% +2025-07-23T19:36:54.8565318Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:94: ClearAllSyncSegments 100.0% +2025-07-23T19:36:54.8565667Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:100: UnpackSyncSegmentKey 0.0% +2025-07-23T19:36:54.8566011Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:108: packSyncSegmentKey 100.0% +2025-07-23T19:36:54.8566378Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:119: NewSyncStorageTriesIterator 0.0% +2025-07-23T19:36:54.8566721Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:124: WriteSyncStorageTrie 100.0% +2025-07-23T19:36:54.8567053Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:130: ClearSyncStorageTrie 0.0% +2025-07-23T19:36:54.8567401Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:138: ClearAllSyncStorageTries 0.0% +2025-07-23T19:36:54.8567743Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:144: UnpackSyncStorageTrieKey 0.0% +2025-07-23T19:36:54.8568094Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:152: packSyncStorageTrieKey 100.0% +2025-07-23T19:36:54.8568427Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:161: WriteSyncPerformed 100.0% +2025-07-23T19:36:54.8568766Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:171: NewSyncPerformedIterator 0.0% +2025-07-23T19:36:54.8569106Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:177: UnpackSyncPerformedKey 0.0% +2025-07-23T19:36:54.8569445Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:182: GetLatestSyncPerformed 0.0% +2025-07-23T19:36:54.8569753Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:198: clearPrefix 68.8% +2025-07-23T19:36:54.8570052Z github.com/ava-labs/coreth/plugin/evm/customrawdb/database_ext.go:17: InspectDatabase 100.0% +2025-07-23T19:36:54.8570356Z github.com/ava-labs/coreth/plugin/evm/customrawdb/database_ext.go:67: ParseStateSchemeExt 0.0% +2025-07-23T19:36:54.8570635Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:16: SetBlockExtra 100.0% +2025-07-23T19:36:54.8571016Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:33: Copy 100.0% +2025-07-23T19:36:54.8571332Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:48: BodyRLPFieldsForEncoding 100.0% +2025-07-23T19:36:54.8571664Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:61: BodyRLPFieldPointersForDecoding 100.0% +2025-07-23T19:36:54.8571980Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:78: BlockRLPFieldsForEncoding 100.0% +2025-07-23T19:36:54.8572318Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:92: BlockRLPFieldPointersForDecoding 100.0% +2025-07-23T19:36:54.8572590Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:104: BlockExtData 100.0% +2025-07-23T19:36:54.8572857Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:111: BlockVersion 100.0% +2025-07-23T19:36:54.8573156Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:115: BlockExtDataGasUsed 100.0% +2025-07-23T19:36:54.8573427Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:123: BlockGasCost 100.0% +2025-07-23T19:36:54.8573711Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:131: CalcExtDataHash 66.7% +2025-07-23T19:36:54.8574002Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:138: NewBlockWithExtData 100.0% +2025-07-23T19:36:54.8574438Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_json.go:18: MarshalJSON 100.0% +2025-07-23T19:36:54.8574880Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_json.go:72: UnmarshalJSON 76.2% +2025-07-23T19:36:54.8575190Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_rlp.go:8: EncodeRLP 85.9% +2025-07-23T19:36:54.8575490Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:17: GetHeaderExtra 100.0% +2025-07-23T19:36:54.8575772Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:22: SetHeaderExtra 100.0% +2025-07-23T19:36:54.8576064Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:28: WithHeaderExtra 100.0% +2025-07-23T19:36:54.8576334Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:45: EncodeRLP 100.0% +2025-07-23T19:36:54.8576592Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:56: DecodeRLP 100.0% +2025-07-23T19:36:54.8576867Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:70: EncodeJSON 100.0% +2025-07-23T19:36:54.8577122Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:81: DecodeJSON 83.3% +2025-07-23T19:36:54.8577380Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:93: PostCopy 100.0% +2025-07-23T19:36:54.8577661Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:106: updateFromEth 100.0% +2025-07-23T19:36:54.8577932Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:128: updateToEth 100.0% +2025-07-23T19:36:54.8578228Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:150: updateFromExtras 100.0% +2025-07-23T19:36:54.8578509Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:156: updateToExtras 100.0% +2025-07-23T19:36:54.8578758Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:233: Hash 100.0% +2025-07-23T19:36:54.8579050Z github.com/ava-labs/coreth/plugin/evm/customtypes/state_account_ext.go:14: IsMultiCoin 0.0% +2025-07-23T19:36:54.8579328Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:22: WrapDatabase 100.0% +2025-07-23T19:36:54.8579576Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:25: Stat 0.0% +2025-07-23T19:36:54.8579846Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:28: NewBatch 100.0% +2025-07-23T19:36:54.8580132Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:32: NewBatchWithSize 0.0% +2025-07-23T19:36:54.8580557Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:36: NewSnapshot 0.0% +2025-07-23T19:36:54.8580834Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:44: NewIterator 100.0% +2025-07-23T19:36:54.8581137Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:57: NewIteratorWithStart 0.0% +2025-07-23T19:36:54.8581410Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:65: ValueSize 100.0% +2025-07-23T19:36:54.8581677Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:68: Replay 100.0% +2025-07-23T19:36:54.8581934Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:38: NewGossipEthTxPool 75.0% +2025-07-23T19:36:54.8582167Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:70: IsSubscribed 100.0% +2025-07-23T19:36:54.8582387Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:74: Subscribe 85.2% +2025-07-23T19:36:54.8582603Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:119: Add 100.0% +2025-07-23T19:36:54.8582813Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:125: Has 100.0% +2025-07-23T19:36:54.8583037Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:129: Iterate 100.0% +2025-07-23T19:36:54.8583253Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:135: GetFilter 0.0% +2025-07-23T19:36:54.8583492Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:144: MarshalGossip 100.0% +2025-07-23T19:36:54.8583871Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:148: UnmarshalGossip 100.0% +2025-07-23T19:36:54.8584093Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:160: GossipID 100.0% +2025-07-23T19:36:54.8584301Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:170: Add 75.0% +2025-07-23T19:36:54.8584540Z github.com/ava-labs/coreth/plugin/evm/extension/config.go:161: Validate 55.6% +2025-07-23T19:36:54.8584912Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:19: NewTxGossipHandler 100.0% +2025-07-23T19:36:54.8585168Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:61: AppGossip 100.0% +2025-07-23T19:36:54.8585401Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:65: AppRequest 100.0% +2025-07-23T19:36:54.8585628Z github.com/ava-labs/coreth/plugin/evm/header/base_fee.go:21: BaseFee 100.0% +2025-07-23T19:36:54.8585908Z github.com/ava-labs/coreth/plugin/evm/header/base_fee.go:50: EstimateNextBaseFee 100.0% +2025-07-23T19:36:54.8586180Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:28: BlockGasCost 100.0% +2025-07-23T19:36:54.8586478Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:60: BlockGasCostWithStep 100.0% +2025-07-23T19:36:54.8586764Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:88: EstimateRequiredTip 100.0% +2025-07-23T19:36:54.8587062Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_state.go:19: feeStateBeforeBlock 100.0% +2025-07-23T19:36:54.8587359Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_state.go:51: feeStateAfterBlock 100.0% +2025-07-23T19:36:54.8587649Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:40: baseFeeFromWindow 97.4% +2025-07-23T19:36:54.8587929Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:148: feeWindow 100.0% +2025-07-23T19:36:54.8588250Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:221: selectBigWithinBounds 100.0% +2025-07-23T19:36:54.8588484Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:29: ExtraPrefix 100.0% +2025-07-23T19:36:54.8588737Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:61: VerifyExtraPrefix 100.0% +2025-07-23T19:36:54.8588967Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:116: VerifyExtra 100.0% +2025-07-23T19:36:54.8589246Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:169: PredicateBytesFromExtra 100.0% +2025-07-23T19:36:54.8589518Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:187: SetPredicateBytesInExtra 100.0% +2025-07-23T19:36:54.8589876Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:28: GasLimit 100.0% +2025-07-23T19:36:54.8590134Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:61: VerifyGasUsed 100.0% +2025-07-23T19:36:54.8590389Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:97: VerifyGasLimit 100.0% +2025-07-23T19:36:54.8590637Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:159: GasCapacity 100.0% +2025-07-23T19:36:54.8590940Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:179: RemainingAtomicGasCapacity 100.0% +2025-07-23T19:36:54.8591150Z github.com/ava-labs/coreth/plugin/evm/health.go:11: HealthCheck 0.0% +2025-07-23T19:36:54.8591363Z github.com/ava-labs/coreth/plugin/evm/log/log.go:26: InitLogger 55.0% +2025-07-23T19:36:54.8591582Z github.com/ava-labs/coreth/plugin/evm/log/log.go:62: SetLogLevel 100.0% +2025-07-23T19:36:54.8591798Z github.com/ava-labs/coreth/plugin/evm/log/log.go:77: trimPrefixes 88.9% +2025-07-23T19:36:54.8592006Z github.com/ava-labs/coreth/plugin/evm/log/log.go:92: getSource 0.0% +2025-07-23T19:36:54.8592206Z github.com/ava-labs/coreth/plugin/evm/log/log.go:104: Handle 0.0% +2025-07-23T19:36:54.8592449Z github.com/ava-labs/coreth/plugin/evm/message/block_request.go:24: String 0.0% +2025-07-23T19:36:54.8592806Z github.com/ava-labs/coreth/plugin/evm/message/block_request.go:31: Handle 0.0% +2025-07-23T19:36:54.8593108Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:31: NewBlockSyncSummary 80.0% +2025-07-23T19:36:54.8593398Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:53: GetBlockHash 100.0% +2025-07-23T19:36:54.8593679Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:57: GetBlockRoot 100.0% +2025-07-23T19:36:54.8593945Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:61: Bytes 100.0% +2025-07-23T19:36:54.8594212Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:65: Height 100.0% +2025-07-23T19:36:54.8594454Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:69: ID 0.0% +2025-07-23T19:36:54.8594715Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:73: String 0.0% +2025-07-23T19:36:54.8595074Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:77: Accept 66.7% +2025-07-23T19:36:54.8595438Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_parser.go:14: NewBlockSyncSummaryParser 100.0% +2025-07-23T19:36:54.8595725Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_parser.go:18: Parse 80.0% +2025-07-23T19:36:54.8596054Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_provider.go:14: StateSummaryAtBlock 0.0% +2025-07-23T19:36:54.8596294Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:23: String 0.0% +2025-07-23T19:36:54.8596534Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:31: Handle 0.0% +2025-07-23T19:36:54.8596794Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:35: NewCodeRequest 0.0% +2025-07-23T19:36:54.8597008Z github.com/ava-labs/coreth/plugin/evm/message/codec.go:20: init 88.9% +2025-07-23T19:36:54.8597271Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:35: HandleLeafsRequest 0.0% +2025-07-23T19:36:54.8597538Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:39: HandleBlockRequest 0.0% +2025-07-23T19:36:54.8597791Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:43: HandleCodeRequest 0.0% +2025-07-23T19:36:54.8598027Z github.com/ava-labs/coreth/plugin/evm/message/leafs_request.go:40: String 0.0% +2025-07-23T19:36:54.8598269Z github.com/ava-labs/coreth/plugin/evm/message/leafs_request.go:47: Handle 0.0% +2025-07-23T19:36:54.8598515Z github.com/ava-labs/coreth/plugin/evm/message/request.go:25: RequestToBytes 0.0% +2025-07-23T19:36:54.8598908Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:39: newNetworkHandler 100.0% +2025-07-23T19:36:54.8599165Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:54: HandleLeafsRequest 60.0% +2025-07-23T19:36:54.8599427Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:63: HandleBlockRequest 100.0% +2025-07-23T19:36:54.8599688Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:67: HandleCodeRequest 0.0% +2025-07-23T19:36:54.8599913Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:99: NewClient 100.0% +2025-07-23T19:36:54.8600162Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:127: StateSyncEnabled 100.0% +2025-07-23T19:36:54.8600435Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:134: GetOngoingSyncStateSummary 0.0% +2025-07-23T19:36:54.8600686Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:153: ClearOngoingSummary 60.0% +2025-07-23T19:36:54.8600940Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:165: ParseStateSummary 100.0% +2025-07-23T19:36:54.8601162Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:171: stateSync 71.4% +2025-07-23T19:36:54.8601403Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:189: acceptSyncSummary 92.0% +2025-07-23T19:36:54.8601627Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:257: syncBlocks 89.3% +2025-07-23T19:36:54.8601979Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:304: syncStateTrie 77.8% +2025-07-23T19:36:54.8602201Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:326: Shutdown 100.0% +2025-07-23T19:36:54.8602422Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:336: finishSync 66.7% +2025-07-23T19:36:54.8602662Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:405: commitVMMarkers 66.7% +2025-07-23T19:36:54.8602877Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:420: Error 100.0% +2025-07-23T19:36:54.8603093Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:36: NewServer 100.0% +2025-07-23T19:36:54.8603351Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:48: GetLastStateSummary 75.0% +2025-07-23T19:36:54.8603584Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:64: GetStateSummary 66.7% +2025-07-23T19:36:54.8603836Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:82: stateSummaryAtHeight 62.5% +2025-07-23T19:36:54.8604100Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:53: ParseState 100.0% +2025-07-23T19:36:54.8604349Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:74: Target 100.0% +2025-07-23T19:36:54.8604610Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:83: MaxCapacity 100.0% +2025-07-23T19:36:54.8604960Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:91: GasPrice 100.0% +2025-07-23T19:36:54.8605221Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:99: AdvanceTime 100.0% +2025-07-23T19:36:54.8605489Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:114: ConsumeGas 100.0% +2025-07-23T19:36:54.8605783Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:144: UpdateTargetExcess 100.0% +2025-07-23T19:36:54.8606024Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:160: Bytes 100.0% +2025-07-23T19:36:54.8606331Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:170: DesiredTargetExcess 100.0% +2025-07-23T19:36:54.8606605Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:184: targetExcess 100.0% +2025-07-23T19:36:54.8606874Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:195: scaleExcess 100.0% +2025-07-23T19:36:54.8607160Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:214: mulWithUpperBound 100.0% +2025-07-23T19:36:54.8607414Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:67: ParseWindow 100.0% +2025-07-23T19:36:54.8607649Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:87: Add 100.0% +2025-07-23T19:36:54.8608008Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:94: Shift 100.0% +2025-07-23T19:36:54.8608238Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:108: Sum 100.0% +2025-07-23T19:36:54.8608470Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:112: Bytes 100.0% +2025-07-23T19:36:54.8608694Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:121: add 100.0% +2025-07-23T19:36:54.8608946Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap4/cost.go:53: BlockGasCost 93.3% +2025-07-23T19:36:54.8609139Z github.com/ava-labs/coreth/plugin/evm/version.go:15: init 50.0% +2025-07-23T19:36:54.8609319Z github.com/ava-labs/coreth/plugin/evm/vm.go:175: init 100.0% +2025-07-23T19:36:54.8609519Z github.com/ava-labs/coreth/plugin/evm/vm.go:271: Initialize 80.3% +2025-07-23T19:36:54.8609723Z github.com/ava-labs/coreth/plugin/evm/vm.go:500: parseGenesis 76.9% +2025-07-23T19:36:54.8609950Z github.com/ava-labs/coreth/plugin/evm/vm.go:530: initializeMetrics 54.5% +2025-07-23T19:36:54.8610159Z github.com/ava-labs/coreth/plugin/evm/vm.go:549: initializeChain 84.2% +2025-07-23T19:36:54.8610379Z github.com/ava-labs/coreth/plugin/evm/vm.go:604: initializeStateSync 76.7% +2025-07-23T19:36:54.8610591Z github.com/ava-labs/coreth/plugin/evm/vm.go:704: initChainState 75.0% +2025-07-23T19:36:54.8610916Z github.com/ava-labs/coreth/plugin/evm/vm.go:737: SetState 83.3% +2025-07-23T19:36:54.8611146Z github.com/ava-labs/coreth/plugin/evm/vm.go:752: onBootstrapStarted 71.4% +2025-07-23T19:36:54.8611387Z github.com/ava-labs/coreth/plugin/evm/vm.go:768: onNormalOperationsStarted 75.0% +2025-07-23T19:36:54.8611603Z github.com/ava-labs/coreth/plugin/evm/vm.go:779: initBlockBuilding 91.3% +2025-07-23T19:36:54.8611805Z github.com/ava-labs/coreth/plugin/evm/vm.go:886: WaitForEvent 77.8% +2025-07-23T19:36:54.8611992Z github.com/ava-labs/coreth/plugin/evm/vm.go:907: Shutdown 76.9% +2025-07-23T19:36:54.8612192Z github.com/ava-labs/coreth/plugin/evm/vm.go:929: buildBlock 100.0% +2025-07-23T19:36:54.8612426Z github.com/ava-labs/coreth/plugin/evm/vm.go:933: buildBlockWithContext 86.7% +2025-07-23T19:36:54.8612619Z github.com/ava-labs/coreth/plugin/evm/vm.go:978: parseBlock 77.8% +2025-07-23T19:36:54.8612827Z github.com/ava-labs/coreth/plugin/evm/vm.go:997: ParseEthBlock 75.0% +2025-07-23T19:36:54.8613024Z github.com/ava-labs/coreth/plugin/evm/vm.go:1008: getBlock 100.0% +2025-07-23T19:36:54.8613245Z github.com/ava-labs/coreth/plugin/evm/vm.go:1021: GetAcceptedBlock 90.0% +2025-07-23T19:36:54.8613455Z github.com/ava-labs/coreth/plugin/evm/vm.go:1041: SetPreference 75.0% +2025-07-23T19:36:54.8613675Z github.com/ava-labs/coreth/plugin/evm/vm.go:1057: GetBlockIDAtHeight 85.7% +2025-07-23T19:36:54.8613860Z github.com/ava-labs/coreth/plugin/evm/vm.go:1070: Version 0.0% +2025-07-23T19:36:54.8614065Z github.com/ava-labs/coreth/plugin/evm/vm.go:1075: CreateHandlers 0.0% +2025-07-23T19:36:54.8614267Z github.com/ava-labs/coreth/plugin/evm/vm.go:1122: NewHTTPHandler 0.0% +2025-07-23T19:36:54.8614490Z github.com/ava-labs/coreth/plugin/evm/vm.go:1126: chainConfigExtra 100.0% +2025-07-23T19:36:54.8614669Z github.com/ava-labs/coreth/plugin/evm/vm.go:1130: rules 100.0% +2025-07-23T19:36:54.8614974Z github.com/ava-labs/coreth/plugin/evm/vm.go:1136: currentRules 100.0% +2025-07-23T19:36:54.8615230Z github.com/ava-labs/coreth/plugin/evm/vm.go:1144: requirePrimaryNetworkSigners 0.0% +2025-07-23T19:36:54.8615468Z github.com/ava-labs/coreth/plugin/evm/vm.go:1153: startContinuousProfiler 91.7% +2025-07-23T19:36:54.8615684Z github.com/ava-labs/coreth/plugin/evm/vm.go:1183: ReadLastAccepted 70.0% +2025-07-23T19:36:54.8615894Z github.com/ava-labs/coreth/plugin/evm/vm.go:1207: attachEthService 0.0% +2025-07-23T19:36:54.8616109Z github.com/ava-labs/coreth/plugin/evm/vm.go:1242: stateSyncEnabled 100.0% +2025-07-23T19:36:54.8616464Z github.com/ava-labs/coreth/plugin/evm/vm.go:1252: PutLastAcceptedID 100.0% +2025-07-23T19:36:54.8616695Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:20: initializeDBs 100.0% +2025-07-23T19:36:54.8616931Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:35: inspectDatabases 0.0% +2025-07-23T19:36:54.8617140Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:54: inspectDB 0.0% +2025-07-23T19:36:54.8617396Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:28: SetExtensionConfig 66.7% +2025-07-23T19:36:54.8617640Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:41: GetExtendedBlock 75.0% +2025-07-23T19:36:54.8617917Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:53: LastAcceptedExtendedBlock 75.0% +2025-07-23T19:36:54.8618144Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:64: ChainConfig 100.0% +2025-07-23T19:36:54.8618375Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:68: Blockchain 100.0% +2025-07-23T19:36:54.8618596Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:72: Config 100.0% +2025-07-23T19:36:54.8618836Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:76: MetricRegistry 100.0% +2025-07-23T19:36:54.8619053Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:80: Validators 0.0% +2025-07-23T19:36:54.8619391Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:84: VersionDB 100.0% +2025-07-23T19:36:54.8619623Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:88: SyncerClient 0.0% +2025-07-23T19:36:54.8619843Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:58: wrapBlock 85.7% +2025-07-23T19:36:54.8620050Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:75: ID 100.0% +2025-07-23T19:36:54.8620265Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:78: Accept 76.5% +2025-07-23T19:36:54.8620541Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:125: handlePrecompileAccept 78.6% +2025-07-23T19:36:54.8620764Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:159: Reject 83.3% +2025-07-23T19:36:54.8620979Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:176: Parent 100.0% +2025-07-23T19:36:54.8621199Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:181: Height 100.0% +2025-07-23T19:36:54.8621423Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:186: Timestamp 100.0% +2025-07-23T19:36:54.8621645Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:191: Verify 100.0% +2025-07-23T19:36:54.8621927Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:199: ShouldVerifyWithContext 72.7% +2025-07-23T19:36:54.8622184Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:223: VerifyWithContext 100.0% +2025-07-23T19:36:54.8622397Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:233: verify 100.0% +2025-07-23T19:36:54.8622647Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:279: semanticVerify 100.0% +2025-07-23T19:36:54.8622895Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:295: syntacticVerify 71.0% +2025-07-23T19:36:54.8623143Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:434: verifyPredicates 85.0% +2025-07-23T19:36:54.8623356Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:468: Bytes 75.0% +2025-07-23T19:36:54.8623570Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:476: String 0.0% +2025-07-23T19:36:54.8623810Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:478: GetEthBlock 100.0% +2025-07-23T19:36:54.8624064Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:482: GetBlockExtension 100.0% +2025-07-23T19:36:54.8624270Z github.com/ava-labs/coreth/plugin/factory/factory.go:25: New 0.0% +2025-07-23T19:36:54.8624490Z github.com/ava-labs/coreth/plugin/factory/factory.go:29: NewPluginVM 0.0% +2025-07-23T19:36:54.8624663Z github.com/ava-labs/coreth/plugin/main.go:19: main 0.0% +2025-07-23T19:36:54.8625060Z github.com/ava-labs/coreth/plugin/params.go:13: corethFlagSet 0.0% +2025-07-23T19:36:54.8625252Z github.com/ava-labs/coreth/plugin/params.go:22: getViper 0.0% +2025-07-23T19:36:54.8625452Z github.com/ava-labs/coreth/plugin/params.go:35: PrintVersion 0.0% +2025-07-23T19:36:54.8625705Z github.com/ava-labs/coreth/precompile/contract/contract.go:32: IsActivated 0.0% +2025-07-23T19:36:54.8626028Z github.com/ava-labs/coreth/precompile/contract/contract.go:40: NewStatefulPrecompileFunction 0.0% +2025-07-23T19:36:54.8626392Z github.com/ava-labs/coreth/precompile/contract/contract.go:47: NewStatefulPrecompileFunctionWithActivator 0.0% +2025-07-23T19:36:54.8626701Z github.com/ava-labs/coreth/precompile/contract/contract.go:65: NewStatefulPrecompileContract 0.0% +2025-07-23T19:36:54.8626922Z github.com/ava-labs/coreth/precompile/contract/contract.go:84: Run 0.0% +2025-07-23T19:36:54.8627171Z github.com/ava-labs/coreth/precompile/contract/mocks.go:38: NewMockStateDB 0.0% +2025-07-23T19:36:54.8627394Z github.com/ava-labs/coreth/precompile/contract/mocks.go:45: EXPECT 0.0% +2025-07-23T19:36:54.8627631Z github.com/ava-labs/coreth/precompile/contract/mocks.go:50: AddBalance 0.0% +2025-07-23T19:36:54.8627857Z github.com/ava-labs/coreth/precompile/contract/mocks.go:56: AddBalance 0.0% +2025-07-23T19:36:54.8628120Z github.com/ava-labs/coreth/precompile/contract/mocks.go:62: AddBalanceMultiCoin 0.0% +2025-07-23T19:36:54.8628506Z github.com/ava-labs/coreth/precompile/contract/mocks.go:68: AddBalanceMultiCoin 0.0% +2025-07-23T19:36:54.8628721Z github.com/ava-labs/coreth/precompile/contract/mocks.go:74: AddLog 0.0% +2025-07-23T19:36:54.8628939Z github.com/ava-labs/coreth/precompile/contract/mocks.go:80: AddLog 0.0% +2025-07-23T19:36:54.8629179Z github.com/ava-labs/coreth/precompile/contract/mocks.go:86: CreateAccount 0.0% +2025-07-23T19:36:54.8629417Z github.com/ava-labs/coreth/precompile/contract/mocks.go:92: CreateAccount 0.0% +2025-07-23T19:36:54.8629639Z github.com/ava-labs/coreth/precompile/contract/mocks.go:98: Exist 0.0% +2025-07-23T19:36:54.8629853Z github.com/ava-labs/coreth/precompile/contract/mocks.go:106: Exist 0.0% +2025-07-23T19:36:54.8630085Z github.com/ava-labs/coreth/precompile/contract/mocks.go:112: GetBalance 0.0% +2025-07-23T19:36:54.8630320Z github.com/ava-labs/coreth/precompile/contract/mocks.go:120: GetBalance 0.0% +2025-07-23T19:36:54.8630591Z github.com/ava-labs/coreth/precompile/contract/mocks.go:126: GetBalanceMultiCoin 0.0% +2025-07-23T19:36:54.8630860Z github.com/ava-labs/coreth/precompile/contract/mocks.go:134: GetBalanceMultiCoin 0.0% +2025-07-23T19:36:54.8631085Z github.com/ava-labs/coreth/precompile/contract/mocks.go:140: GetNonce 0.0% +2025-07-23T19:36:54.8631307Z github.com/ava-labs/coreth/precompile/contract/mocks.go:148: GetNonce 0.0% +2025-07-23T19:36:54.8631596Z github.com/ava-labs/coreth/precompile/contract/mocks.go:154: GetPredicateStorageSlots 0.0% +2025-07-23T19:36:54.8631914Z github.com/ava-labs/coreth/precompile/contract/mocks.go:163: GetPredicateStorageSlots 0.0% +2025-07-23T19:36:54.8632144Z github.com/ava-labs/coreth/precompile/contract/mocks.go:169: GetState 0.0% +2025-07-23T19:36:54.8632364Z github.com/ava-labs/coreth/precompile/contract/mocks.go:177: GetState 0.0% +2025-07-23T19:36:54.8632594Z github.com/ava-labs/coreth/precompile/contract/mocks.go:183: GetTxHash 0.0% +2025-07-23T19:36:54.8632821Z github.com/ava-labs/coreth/precompile/contract/mocks.go:191: GetTxHash 0.0% +2025-07-23T19:36:54.8633033Z github.com/ava-labs/coreth/precompile/contract/mocks.go:197: Logs 0.0% +2025-07-23T19:36:54.8633244Z github.com/ava-labs/coreth/precompile/contract/mocks.go:205: Logs 0.0% +2025-07-23T19:36:54.8633509Z github.com/ava-labs/coreth/precompile/contract/mocks.go:211: RevertToSnapshot 0.0% +2025-07-23T19:36:54.8633762Z github.com/ava-labs/coreth/precompile/contract/mocks.go:217: RevertToSnapshot 0.0% +2025-07-23T19:36:54.8634124Z github.com/ava-labs/coreth/precompile/contract/mocks.go:223: SetNonce 0.0% +2025-07-23T19:36:54.8634346Z github.com/ava-labs/coreth/precompile/contract/mocks.go:229: SetNonce 0.0% +2025-07-23T19:36:54.8634564Z github.com/ava-labs/coreth/precompile/contract/mocks.go:235: SetState 0.0% +2025-07-23T19:36:54.8634884Z github.com/ava-labs/coreth/precompile/contract/mocks.go:241: SetState 0.0% +2025-07-23T19:36:54.8635107Z github.com/ava-labs/coreth/precompile/contract/mocks.go:247: Snapshot 0.0% +2025-07-23T19:36:54.8635334Z github.com/ava-labs/coreth/precompile/contract/mocks.go:255: Snapshot 0.0% +2025-07-23T19:36:54.8635599Z github.com/ava-labs/coreth/precompile/contract/mocks.go:261: SubBalanceMultiCoin 0.0% +2025-07-23T19:36:54.8635864Z github.com/ava-labs/coreth/precompile/contract/mocks.go:267: SubBalanceMultiCoin 0.0% +2025-07-23T19:36:54.8636149Z github.com/ava-labs/coreth/precompile/contract/mocks.go:285: NewMockAccessibleState 0.0% +2025-07-23T19:36:54.8636375Z github.com/ava-labs/coreth/precompile/contract/mocks.go:292: EXPECT 0.0% +2025-07-23T19:36:54.8636628Z github.com/ava-labs/coreth/precompile/contract/mocks.go:297: GetBlockContext 0.0% +2025-07-23T19:36:54.8636877Z github.com/ava-labs/coreth/precompile/contract/mocks.go:305: GetBlockContext 0.0% +2025-07-23T19:36:54.8637246Z github.com/ava-labs/coreth/precompile/contract/mocks.go:311: GetChainConfig 0.0% +2025-07-23T19:36:54.8637494Z github.com/ava-labs/coreth/precompile/contract/mocks.go:319: GetChainConfig 0.0% +2025-07-23T19:36:54.8637745Z github.com/ava-labs/coreth/precompile/contract/mocks.go:325: GetPrecompileEnv 0.0% +2025-07-23T19:36:54.8637990Z github.com/ava-labs/coreth/precompile/contract/mocks.go:333: GetPrecompileEnv 0.0% +2025-07-23T19:36:54.8638239Z github.com/ava-labs/coreth/precompile/contract/mocks.go:339: GetSnowContext 0.0% +2025-07-23T19:36:54.8638489Z github.com/ava-labs/coreth/precompile/contract/mocks.go:347: GetSnowContext 0.0% +2025-07-23T19:36:54.8638724Z github.com/ava-labs/coreth/precompile/contract/mocks.go:353: GetStateDB 0.0% +2025-07-23T19:36:54.8638954Z github.com/ava-labs/coreth/precompile/contract/mocks.go:361: GetStateDB 0.0% +2025-07-23T19:36:54.8639218Z github.com/ava-labs/coreth/precompile/contract/mocks.go:379: NewMockBlockContext 0.0% +2025-07-23T19:36:54.8639448Z github.com/ava-labs/coreth/precompile/contract/mocks.go:386: EXPECT 0.0% +2025-07-23T19:36:54.8639713Z github.com/ava-labs/coreth/precompile/contract/mocks.go:391: GetPredicateResults 0.0% +2025-07-23T19:36:54.8639981Z github.com/ava-labs/coreth/precompile/contract/mocks.go:399: GetPredicateResults 0.0% +2025-07-23T19:36:54.8640200Z github.com/ava-labs/coreth/precompile/contract/mocks.go:405: Number 0.0% +2025-07-23T19:36:54.8640417Z github.com/ava-labs/coreth/precompile/contract/mocks.go:413: Number 0.0% +2025-07-23T19:36:54.8640656Z github.com/ava-labs/coreth/precompile/contract/mocks.go:419: Timestamp 0.0% +2025-07-23T19:36:54.8640881Z github.com/ava-labs/coreth/precompile/contract/mocks.go:427: Timestamp 0.0% +2025-07-23T19:36:54.8641172Z github.com/ava-labs/coreth/precompile/contract/utils.go:35: CalculateFunctionSelector 0.0% +2025-07-23T19:36:54.8641393Z github.com/ava-labs/coreth/precompile/contract/utils.go:44: DeductGas 0.0% +2025-07-23T19:36:54.8641616Z github.com/ava-labs/coreth/precompile/contract/utils.go:53: ParseABI 0.0% +2025-07-23T19:36:54.8641881Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:57: NewConfig 100.0% +2025-07-23T19:36:54.8642162Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:67: NewDefaultConfig 100.0% +2025-07-23T19:36:54.8642441Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:73: NewDisableConfig 0.0% +2025-07-23T19:36:54.8642675Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:84: Key 0.0% +2025-07-23T19:36:54.8643071Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:87: Verify 100.0% +2025-07-23T19:36:54.8643324Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:107: Equal 100.0% +2025-07-23T19:36:54.8643567Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:117: Accept 0.0% +2025-07-23T19:36:54.8643836Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:145: PredicateGas 84.6% +2025-07-23T19:36:54.8644126Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:186: VerifyPredicate 80.0% +2025-07-23T19:36:54.8644438Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:85: PackGetBlockchainID 100.0% +2025-07-23T19:36:54.8644870Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:91: PackGetBlockchainIDOutput 100.0% +2025-07-23T19:36:54.8645162Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:96: getBlockchainID 83.3% +2025-07-23T19:36:54.8645528Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:111: UnpackGetVerifiedWarpBlockHashInput 0.0% +2025-07-23T19:36:54.8645874Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:125: PackGetVerifiedWarpBlockHash 100.0% +2025-07-23T19:36:54.8646237Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:131: PackGetVerifiedWarpBlockHashOutput 100.0% +2025-07-23T19:36:54.8646751Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:140: UnpackGetVerifiedWarpBlockHashOutput 0.0% +2025-07-23T19:36:54.8647079Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:147: getVerifiedWarpBlockHash 100.0% +2025-07-23T19:36:54.8647442Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:153: UnpackGetVerifiedWarpMessageInput 100.0% +2025-07-23T19:36:54.8647786Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:167: PackGetVerifiedWarpMessage 100.0% +2025-07-23T19:36:54.8648133Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:173: PackGetVerifiedWarpMessageOutput 100.0% +2025-07-23T19:36:54.8648495Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:182: UnpackGetVerifiedWarpMessageOutput 0.0% +2025-07-23T19:36:54.8648817Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:191: getVerifiedWarpMessage 100.0% +2025-07-23T19:36:54.8649149Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:197: UnpackSendWarpMessageInput 100.0% +2025-07-23T19:36:54.8649473Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:209: PackSendWarpMessage 100.0% +2025-07-23T19:36:54.8649805Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:215: PackSendWarpMessageOutput 100.0% +2025-07-23T19:36:54.8650137Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:221: UnpackSendWarpMessageOutput 0.0% +2025-07-23T19:36:54.8650432Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:232: sendWarpMessage 81.5% +2025-07-23T19:36:54.8650760Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:301: PackSendWarpMessageEvent 100.0% +2025-07-23T19:36:54.8651115Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:306: UnpackSendWarpEventDataToMessage 80.0% +2025-07-23T19:36:54.8651423Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:316: createWarpPrecompile 81.8% +2025-07-23T19:36:54.8651723Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:29: init 75.0% +2025-07-23T19:36:54.8652055Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:48: handleWarpMessage 96.7% +2025-07-23T19:36:54.8652370Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:98: packFailed 100.0% +2025-07-23T19:36:54.8652701Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:102: handleMessage 100.0% +2025-07-23T19:36:54.8653018Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:119: packFailed 100.0% +2025-07-23T19:36:54.8653483Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:123: handleMessage 100.0% +2025-07-23T19:36:54.8653732Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:35: init 50.0% +2025-07-23T19:36:54.8653990Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:45: MakeConfig 0.0% +2025-07-23T19:36:54.8654250Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:50: Configure 0.0% +2025-07-23T19:36:54.8654465Z github.com/ava-labs/coreth/precompile/modules/module.go:27: Len 100.0% +2025-07-23T19:36:54.8654684Z github.com/ava-labs/coreth/precompile/modules/module.go:31: Swap 100.0% +2025-07-23T19:36:54.8655005Z github.com/ava-labs/coreth/precompile/modules/module.go:35: Less 100.0% +2025-07-23T19:36:54.8655280Z github.com/ava-labs/coreth/precompile/modules/registerer.go:37: ReservedAddress 75.0% +2025-07-23T19:36:54.8655557Z github.com/ava-labs/coreth/precompile/modules/registerer.go:48: RegisterModule 46.2% +2025-07-23T19:36:54.8655872Z github.com/ava-labs/coreth/precompile/modules/registerer.go:72: GetPrecompileModuleByAddress 0.0% +2025-07-23T19:36:54.8656158Z github.com/ava-labs/coreth/precompile/modules/registerer.go:81: GetPrecompileModule 0.0% +2025-07-23T19:36:54.8656432Z github.com/ava-labs/coreth/precompile/modules/registerer.go:90: RegisteredModules 0.0% +2025-07-23T19:36:54.8656858Z github.com/ava-labs/coreth/precompile/modules/registerer.go:94: insertSortedByAddress 100.0% +2025-07-23T19:36:54.8657157Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:32: NewMockPredicater 0.0% +2025-07-23T19:36:54.8657407Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:39: EXPECT 0.0% +2025-07-23T19:36:54.8657682Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:44: PredicateGas 0.0% +2025-07-23T19:36:54.8657955Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:53: PredicateGas 0.0% +2025-07-23T19:36:54.8658239Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:59: VerifyPredicate 0.0% +2025-07-23T19:36:54.8658526Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:67: VerifyPredicate 0.0% +2025-07-23T19:36:54.8658797Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:85: NewMockConfig 0.0% +2025-07-23T19:36:54.8659049Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:92: EXPECT 0.0% +2025-07-23T19:36:54.8659297Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:97: Equal 0.0% +2025-07-23T19:36:54.8659541Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:105: Equal 0.0% +2025-07-23T19:36:54.8659804Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:111: IsDisabled 0.0% +2025-07-23T19:36:54.8660074Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:119: IsDisabled 0.0% +2025-07-23T19:36:54.8660318Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:125: Key 0.0% +2025-07-23T19:36:54.8660560Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:133: Key 0.0% +2025-07-23T19:36:54.8660819Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:139: Timestamp 0.0% +2025-07-23T19:36:54.8661079Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:147: Timestamp 0.0% +2025-07-23T19:36:54.8661340Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:153: Verify 0.0% +2025-07-23T19:36:54.8661587Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:161: Verify 0.0% +2025-07-23T19:36:54.8661886Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:179: NewMockChainConfig 0.0% +2025-07-23T19:36:54.8662131Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:186: EXPECT 0.0% +2025-07-23T19:36:54.8662389Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:191: IsDurango 0.0% +2025-07-23T19:36:54.8662770Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:199: IsDurango 0.0% +2025-07-23T19:36:54.8663056Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:217: NewMockAccepter 0.0% +2025-07-23T19:36:54.8663307Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:224: EXPECT 0.0% +2025-07-23T19:36:54.8663556Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:229: Accept 0.0% +2025-07-23T19:36:54.8663815Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:237: Accept 0.0% +2025-07-23T19:36:54.8664100Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:17: Timestamp 0.0% +2025-07-23T19:36:54.8664381Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:22: IsDisabled 0.0% +2025-07-23T19:36:54.8664651Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:28: Equal 0.0% +2025-07-23T19:36:54.8665060Z github.com/ava-labs/coreth/precompile/precompiletest/test_config.go:28: RunVerifyTests 100.0% +2025-07-23T19:36:54.8665359Z github.com/ava-labs/coreth/precompile/precompiletest/test_config.go:51: RunEqualTests 100.0% +2025-07-23T19:36:54.8665632Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:66: Run 100.0% +2025-07-23T19:36:54.8665902Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:88: setup 96.0% +2025-07-23T19:36:54.8666358Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:135: RunPrecompileTests 100.0% +2025-07-23T19:36:54.8666680Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:153: newTestStateDB 100.0% +2025-07-23T19:36:54.8667035Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:163: GetPredicateStorageSlots 100.0% +2025-07-23T19:36:54.8667308Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:26: Run 100.0% +2025-07-23T19:36:54.8667629Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:43: RunPredicateTests 100.0% +2025-07-23T19:36:54.8667920Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:53: RunBenchmark 0.0% +2025-07-23T19:36:54.8668256Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:73: RunPredicateBenchmarks 0.0% +2025-07-23T19:36:54.8668501Z github.com/ava-labs/coreth/predicate/predicate_bytes.go:28: PackPredicate 100.0% +2025-07-23T19:36:54.8668760Z github.com/ava-labs/coreth/predicate/predicate_bytes.go:36: UnpackPredicate 87.5% +2025-07-23T19:36:54.8668979Z github.com/ava-labs/coreth/predicate/predicate_results.go:24: init 83.3% +2025-07-23T19:36:54.8669242Z github.com/ava-labs/coreth/predicate/predicate_results.go:47: GetPredicateResults 0.0% +2025-07-23T19:36:54.8669486Z github.com/ava-labs/coreth/predicate/predicate_results.go:56: NewResults 100.0% +2025-07-23T19:36:54.8669749Z github.com/ava-labs/coreth/predicate/predicate_results.go:62: NewResultsFromMap 100.0% +2025-07-23T19:36:54.8670000Z github.com/ava-labs/coreth/predicate/predicate_results.go:69: ParseResults 71.4% +2025-07-23T19:36:54.8670237Z github.com/ava-labs/coreth/predicate/predicate_results.go:82: GetResults 100.0% +2025-07-23T19:36:54.8670482Z github.com/ava-labs/coreth/predicate/predicate_results.go:91: SetTxResults 100.0% +2025-07-23T19:36:54.8670750Z github.com/ava-labs/coreth/predicate/predicate_results.go:101: DeleteTxResults 100.0% +2025-07-23T19:36:54.8670979Z github.com/ava-labs/coreth/predicate/predicate_results.go:106: Bytes 100.0% +2025-07-23T19:36:54.8671209Z github.com/ava-labs/coreth/predicate/predicate_results.go:110: String 0.0% +2025-07-23T19:36:54.8671503Z github.com/ava-labs/coreth/predicate/predicate_slots.go:20: PreparePredicateStorageSlots 0.0% +2025-07-23T19:36:54.8671734Z github.com/ava-labs/coreth/predicate/predicate_tx.go:16: NewPredicateTx 0.0% +2025-07-23T19:36:54.8672070Z github.com/ava-labs/coreth/rpc/client.go:128: newClientConn 100.0% +2025-07-23T19:36:54.8672249Z github.com/ava-labs/coreth/rpc/client.go:141: close 100.0% +2025-07-23T19:36:54.8672422Z github.com/ava-labs/coreth/rpc/client.go:161: wait 100.0% +2025-07-23T19:36:54.8672593Z github.com/ava-labs/coreth/rpc/client.go:189: Dial 100.0% +2025-07-23T19:36:54.8672788Z github.com/ava-labs/coreth/rpc/client.go:197: DialContext 100.0% +2025-07-23T19:36:54.8672993Z github.com/ava-labs/coreth/rpc/client.go:208: DialOptions 80.0% +2025-07-23T19:36:54.8673211Z github.com/ava-labs/coreth/rpc/client.go:242: ClientFromContext 100.0% +2025-07-23T19:36:54.8673399Z github.com/ava-labs/coreth/rpc/client.go:247: newClient 100.0% +2025-07-23T19:36:54.8673591Z github.com/ava-labs/coreth/rpc/client.go:257: initClient 100.0% +2025-07-23T19:36:54.8673777Z github.com/ava-labs/coreth/rpc/client.go:293: RegisterName 0.0% +2025-07-23T19:36:54.8673954Z github.com/ava-labs/coreth/rpc/client.go:297: nextID 100.0% +2025-07-23T19:36:54.8674173Z github.com/ava-labs/coreth/rpc/client.go:304: SupportedModules 100.0% +2025-07-23T19:36:54.8674345Z github.com/ava-labs/coreth/rpc/client.go:313: Close 100.0% +2025-07-23T19:36:54.8674532Z github.com/ava-labs/coreth/rpc/client.go:327: SetHeader 83.3% +2025-07-23T19:36:54.8674700Z github.com/ava-labs/coreth/rpc/client.go:342: Call 100.0% +2025-07-23T19:36:54.8675075Z github.com/ava-labs/coreth/rpc/client.go:352: CallContext 95.2% +2025-07-23T19:36:54.8675265Z github.com/ava-labs/coreth/rpc/client.go:400: BatchCall 100.0% +2025-07-23T19:36:54.8675468Z github.com/ava-labs/coreth/rpc/client.go:414: BatchCallContext 85.7% +2025-07-23T19:36:54.8675647Z github.com/ava-labs/coreth/rpc/client.go:485: Notify 75.0% +2025-07-23T19:36:54.8675841Z github.com/ava-labs/coreth/rpc/client.go:500: EthSubscribe 100.0% +2025-07-23T19:36:54.8676038Z github.com/ava-labs/coreth/rpc/client.go:506: ShhSubscribe 0.0% +2025-07-23T19:36:54.8676255Z github.com/ava-labs/coreth/rpc/client.go:522: Subscribe 81.2% +2025-07-23T19:36:54.8676476Z github.com/ava-labs/coreth/rpc/client.go:559: SupportsSubscriptions 0.0% +2025-07-23T19:36:54.8676658Z github.com/ava-labs/coreth/rpc/client.go:563: newMessage 83.3% +2025-07-23T19:36:54.8676830Z github.com/ava-labs/coreth/rpc/client.go:576: send 100.0% +2025-07-23T19:36:54.8677003Z github.com/ava-labs/coreth/rpc/client.go:591: write 100.0% +2025-07-23T19:36:54.8677184Z github.com/ava-labs/coreth/rpc/client.go:608: reconnect 93.3% +2025-07-23T19:36:54.8677359Z github.com/ava-labs/coreth/rpc/client.go:636: dispatch 94.1% +2025-07-23T19:36:54.8677544Z github.com/ava-labs/coreth/rpc/client.go:717: drainRead 100.0% +2025-07-23T19:36:54.8677715Z github.com/ava-labs/coreth/rpc/client.go:728: read 100.0% +2025-07-23T19:36:54.8677917Z github.com/ava-labs/coreth/rpc/client_opt.go:57: initHeaders 100.0% +2025-07-23T19:36:54.8678113Z github.com/ava-labs/coreth/rpc/client_opt.go:63: setHeader 100.0% +2025-07-23T19:36:54.8678317Z github.com/ava-labs/coreth/rpc/client_opt.go:70: applyOption 100.0% +2025-07-23T19:36:54.8678536Z github.com/ava-labs/coreth/rpc/client_opt.go:75: WithWebsocketDialer 0.0% +2025-07-23T19:36:54.8678798Z github.com/ava-labs/coreth/rpc/client_opt.go:83: WithWebsocketMessageSizeLimit 100.0% +2025-07-23T19:36:54.8678998Z github.com/ava-labs/coreth/rpc/client_opt.go:91: WithHeader 0.0% +2025-07-23T19:36:54.8679192Z github.com/ava-labs/coreth/rpc/client_opt.go:100: WithHeaders 0.0% +2025-07-23T19:36:54.8679403Z github.com/ava-labs/coreth/rpc/client_opt.go:110: WithHTTPClient 0.0% +2025-07-23T19:36:54.8679601Z github.com/ava-labs/coreth/rpc/client_opt.go:119: WithHTTPAuth 0.0% +2025-07-23T19:36:54.8679822Z github.com/ava-labs/coreth/rpc/client_opt.go:139: WithBatchItemLimit 0.0% +2025-07-23T19:36:54.8680223Z github.com/ava-labs/coreth/rpc/client_opt.go:151: WithBatchResponseSizeLimit 0.0% +2025-07-23T19:36:54.8680478Z github.com/ava-labs/coreth/rpc/context_headers.go:39: NewContextWithHeaders 87.5% +2025-07-23T19:36:54.8680729Z github.com/ava-labs/coreth/rpc/context_headers.go:56: headersFromContext 100.0% +2025-07-23T19:36:54.8680946Z github.com/ava-labs/coreth/rpc/context_headers.go:62: setHeaders 100.0% +2025-07-23T19:36:54.8681120Z github.com/ava-labs/coreth/rpc/errors.go:40: Error 66.7% +2025-07-23T19:36:54.8681308Z github.com/ava-labs/coreth/rpc/errors.go:89: ErrorCode 100.0% +2025-07-23T19:36:54.8681476Z github.com/ava-labs/coreth/rpc/errors.go:91: Error 100.0% +2025-07-23T19:36:54.8681648Z github.com/ava-labs/coreth/rpc/errors.go:97: Error 0.0% +2025-07-23T19:36:54.8681827Z github.com/ava-labs/coreth/rpc/errors.go:101: ErrorCode 0.0% +2025-07-23T19:36:54.8681987Z github.com/ava-labs/coreth/rpc/errors.go:111: Is 0.0% +2025-07-23T19:36:54.8682186Z github.com/ava-labs/coreth/rpc/errors.go:125: ErrorCode 100.0% +2025-07-23T19:36:54.8682360Z github.com/ava-labs/coreth/rpc/errors.go:127: Error 100.0% +2025-07-23T19:36:54.8682548Z github.com/ava-labs/coreth/rpc/errors.go:134: ErrorCode 100.0% +2025-07-23T19:36:54.8682717Z github.com/ava-labs/coreth/rpc/errors.go:136: Error 100.0% +2025-07-23T19:36:54.8682899Z github.com/ava-labs/coreth/rpc/errors.go:141: ErrorCode 100.0% +2025-07-23T19:36:54.8683210Z github.com/ava-labs/coreth/rpc/errors.go:143: Error 100.0% +2025-07-23T19:36:54.8683387Z github.com/ava-labs/coreth/rpc/errors.go:148: ErrorCode 0.0% +2025-07-23T19:36:54.8683554Z github.com/ava-labs/coreth/rpc/errors.go:150: Error 0.0% +2025-07-23T19:36:54.8683743Z github.com/ava-labs/coreth/rpc/errors.go:155: ErrorCode 100.0% +2025-07-23T19:36:54.8683912Z github.com/ava-labs/coreth/rpc/errors.go:157: Error 100.0% +2025-07-23T19:36:54.8684094Z github.com/ava-labs/coreth/rpc/errors.go:165: ErrorCode 100.0% +2025-07-23T19:36:54.8684268Z github.com/ava-labs/coreth/rpc/errors.go:167: Error 100.0% +2025-07-23T19:36:54.8684458Z github.com/ava-labs/coreth/rpc/handler.go:96: newHandler 100.0% +2025-07-23T19:36:54.8684642Z github.com/ava-labs/coreth/rpc/handler.go:130: nextCall 100.0% +2025-07-23T19:36:54.8684942Z github.com/ava-labs/coreth/rpc/handler.go:144: pushResponse 100.0% +2025-07-23T19:36:54.8685124Z github.com/ava-labs/coreth/rpc/handler.go:155: write 100.0% +2025-07-23T19:36:54.8685344Z github.com/ava-labs/coreth/rpc/handler.go:164: respondWithError 100.0% +2025-07-23T19:36:54.8685523Z github.com/ava-labs/coreth/rpc/handler.go:178: doWrite 100.0% +2025-07-23T19:36:54.8685716Z github.com/ava-labs/coreth/rpc/handler.go:193: addLimiter 66.7% +2025-07-23T19:36:54.8685907Z github.com/ava-labs/coreth/rpc/handler.go:201: handleBatch 84.1% +2025-07-23T19:36:54.8686143Z github.com/ava-labs/coreth/rpc/handler.go:283: respondWithBatchTooLarge 100.0% +2025-07-23T19:36:54.8686336Z github.com/ava-labs/coreth/rpc/handler.go:298: handleMsg 100.0% +2025-07-23T19:36:54.8686551Z github.com/ava-labs/coreth/rpc/handler.go:307: handleNonBatchCall 66.7% +2025-07-23T19:36:54.8686729Z github.com/ava-labs/coreth/rpc/handler.go:346: close 100.0% +2025-07-23T19:36:54.8686925Z github.com/ava-labs/coreth/rpc/handler.go:354: addRequestOp 100.0% +2025-07-23T19:36:54.8687139Z github.com/ava-labs/coreth/rpc/handler.go:361: removeRequestOp 100.0% +2025-07-23T19:36:54.8687357Z github.com/ava-labs/coreth/rpc/handler.go:368: cancelAllRequests 100.0% +2025-07-23T19:36:54.8687568Z github.com/ava-labs/coreth/rpc/handler.go:390: addSubscriptions 100.0% +2025-07-23T19:36:54.8687807Z github.com/ava-labs/coreth/rpc/handler.go:402: cancelServerSubscriptions 100.0% +2025-07-23T19:36:54.8688001Z github.com/ava-labs/coreth/rpc/handler.go:415: awaitLimit 22.2% +2025-07-23T19:36:54.8688325Z github.com/ava-labs/coreth/rpc/handler.go:435: consumeLimit 28.6% +2025-07-23T19:36:54.8688527Z github.com/ava-labs/coreth/rpc/handler.go:450: startCallProc 87.5% +2025-07-23T19:36:54.8688735Z github.com/ava-labs/coreth/rpc/handler.go:484: handleResponses 93.3% +2025-07-23T19:36:54.8688972Z github.com/ava-labs/coreth/rpc/handler.go:541: handleSubscriptionResult 66.7% +2025-07-23T19:36:54.8689192Z github.com/ava-labs/coreth/rpc/handler.go:553: handleCallMsg 100.0% +2025-07-23T19:36:54.8689377Z github.com/ava-labs/coreth/rpc/handler.go:595: handleCall 95.5% +2025-07-23T19:36:54.8689583Z github.com/ava-labs/coreth/rpc/handler.go:635: handleSubscribe 83.3% +2025-07-23T19:36:54.8689776Z github.com/ava-labs/coreth/rpc/handler.go:668: runMethod 100.0% +2025-07-23T19:36:54.8689968Z github.com/ava-labs/coreth/rpc/handler.go:677: unsubscribe 87.5% +2025-07-23T19:36:54.8690146Z github.com/ava-labs/coreth/rpc/handler.go:692: String 0.0% +2025-07-23T19:36:54.8690321Z github.com/ava-labs/coreth/rpc/handler.go:706: Write 66.7% +2025-07-23T19:36:54.8690524Z github.com/ava-labs/coreth/rpc/handler.go:716: formatErrorData 66.7% +2025-07-23T19:36:54.8690701Z github.com/ava-labs/coreth/rpc/http.go:68: writeJSON 0.0% +2025-07-23T19:36:54.8690910Z github.com/ava-labs/coreth/rpc/http.go:72: writeJSONSkipDeadline 0.0% +2025-07-23T19:36:54.8691198Z github.com/ava-labs/coreth/rpc/http.go:76: peerInfo 0.0% +2025-07-23T19:36:54.8691371Z github.com/ava-labs/coreth/rpc/http.go:80: remoteAddr 0.0% +2025-07-23T19:36:54.8691537Z github.com/ava-labs/coreth/rpc/http.go:84: readBatch 0.0% +2025-07-23T19:36:54.8691702Z github.com/ava-labs/coreth/rpc/http.go:89: close 0.0% +2025-07-23T19:36:54.8691867Z github.com/ava-labs/coreth/rpc/http.go:93: closed 0.0% +2025-07-23T19:36:54.8692045Z github.com/ava-labs/coreth/rpc/http.go:139: DialHTTP 100.0% +2025-07-23T19:36:54.8692259Z github.com/ava-labs/coreth/rpc/http.go:147: DialHTTPWithClient 85.7% +2025-07-23T19:36:54.8692478Z github.com/ava-labs/coreth/rpc/http.go:160: newClientTransportHTTP 90.9% +2025-07-23T19:36:54.8692654Z github.com/ava-labs/coreth/rpc/http.go:186: sendHTTP 90.9% +2025-07-23T19:36:54.8692842Z github.com/ava-labs/coreth/rpc/http.go:203: sendBatchHTTP 80.0% +2025-07-23T19:36:54.8693016Z github.com/ava-labs/coreth/rpc/http.go:219: doRequest 81.5% +2025-07-23T19:36:54.8693221Z github.com/ava-labs/coreth/rpc/http.go:271: newHTTPServerConn 47.1% +2025-07-23T19:36:54.8693387Z github.com/ava-labs/coreth/rpc/http.go:313: Close 100.0% +2025-07-23T19:36:54.8693567Z github.com/ava-labs/coreth/rpc/http.go:316: RemoteAddr 100.0% +2025-07-23T19:36:54.8693771Z github.com/ava-labs/coreth/rpc/http.go:321: SetWriteDeadline 100.0% +2025-07-23T19:36:54.8693945Z github.com/ava-labs/coreth/rpc/http.go:324: ServeHTTP 100.0% +2025-07-23T19:36:54.8694149Z github.com/ava-labs/coreth/rpc/http.go:355: validateRequest 92.3% +2025-07-23T19:36:54.8694363Z github.com/ava-labs/coreth/rpc/http.go:381: ContextRequestTimeout 50.0% +2025-07-23T19:36:54.8694550Z github.com/ava-labs/coreth/rpc/inproc.go:36: DialInProc 100.0% +2025-07-23T19:36:54.8694746Z github.com/ava-labs/coreth/rpc/json.go:82: isNotification 100.0% +2025-07-23T19:36:54.8695008Z github.com/ava-labs/coreth/rpc/json.go:86: isCall 100.0% +2025-07-23T19:36:54.8695195Z github.com/ava-labs/coreth/rpc/json.go:90: isResponse 100.0% +2025-07-23T19:36:54.8695367Z github.com/ava-labs/coreth/rpc/json.go:94: hasValidID 100.0% +2025-07-23T19:36:54.8695561Z github.com/ava-labs/coreth/rpc/json.go:98: hasValidVersion 100.0% +2025-07-23T19:36:54.8695747Z github.com/ava-labs/coreth/rpc/json.go:102: isSubscribe 100.0% +2025-07-23T19:36:54.8695939Z github.com/ava-labs/coreth/rpc/json.go:106: isUnsubscribe 100.0% +2025-07-23T19:36:54.8696242Z github.com/ava-labs/coreth/rpc/json.go:110: namespace 100.0% +2025-07-23T19:36:54.8696415Z github.com/ava-labs/coreth/rpc/json.go:115: String 0.0% +2025-07-23T19:36:54.8696606Z github.com/ava-labs/coreth/rpc/json.go:120: errorResponse 100.0% +2025-07-23T19:36:54.8696784Z github.com/ava-labs/coreth/rpc/json.go:126: response 100.0% +2025-07-23T19:36:54.8696973Z github.com/ava-labs/coreth/rpc/json.go:134: errorMessage 100.0% +2025-07-23T19:36:54.8697139Z github.com/ava-labs/coreth/rpc/json.go:156: Error 66.7% +2025-07-23T19:36:54.8697318Z github.com/ava-labs/coreth/rpc/json.go:163: ErrorCode 100.0% +2025-07-23T19:36:54.8697489Z github.com/ava-labs/coreth/rpc/json.go:167: ErrorData 100.0% +2025-07-23T19:36:54.8697674Z github.com/ava-labs/coreth/rpc/json.go:208: NewFuncCodec 100.0% +2025-07-23T19:36:54.8697851Z github.com/ava-labs/coreth/rpc/json.go:223: NewCodec 100.0% +2025-07-23T19:36:54.8698023Z github.com/ava-labs/coreth/rpc/json.go:234: peerInfo 100.0% +2025-07-23T19:36:54.8698214Z github.com/ava-labs/coreth/rpc/json.go:239: remoteAddr 100.0% +2025-07-23T19:36:54.8698386Z github.com/ava-labs/coreth/rpc/json.go:243: readBatch 100.0% +2025-07-23T19:36:54.8698556Z github.com/ava-labs/coreth/rpc/json.go:261: writeJSON 100.0% +2025-07-23T19:36:54.8698778Z github.com/ava-labs/coreth/rpc/json.go:265: writeJSONSkipDeadline 100.0% +2025-07-23T19:36:54.8699057Z github.com/ava-labs/coreth/rpc/json.go:280: close 100.0% +2025-07-23T19:36:54.8699232Z github.com/ava-labs/coreth/rpc/json.go:288: closed 100.0% +2025-07-23T19:36:54.8699421Z github.com/ava-labs/coreth/rpc/json.go:296: parseMessage 100.0% +2025-07-23T19:36:54.8699587Z github.com/ava-labs/coreth/rpc/json.go:313: isBatch 60.0% +2025-07-23T19:36:54.8699827Z github.com/ava-labs/coreth/rpc/json.go:327: parsePositionalArguments 84.6% +2025-07-23T19:36:54.8700035Z github.com/ava-labs/coreth/rpc/json.go:355: parseArgumentArray 75.0% +2025-07-23T19:36:54.8700256Z github.com/ava-labs/coreth/rpc/json.go:376: parseSubscriptionName 75.0% +2025-07-23T19:36:54.8700493Z github.com/ava-labs/coreth/rpc/metrics.go:58: updateServeTimeHistogram 0.0% +2025-07-23T19:36:54.8700672Z github.com/ava-labs/coreth/rpc/server.go:74: NewServer 100.0% +2025-07-23T19:36:54.8700879Z github.com/ava-labs/coreth/rpc/server.go:95: SetBatchLimits 100.0% +2025-07-23T19:36:54.8701086Z github.com/ava-labs/coreth/rpc/server.go:103: SetHTTPBodyLimit 0.0% +2025-07-23T19:36:54.8701279Z github.com/ava-labs/coreth/rpc/server.go:111: RegisterName 100.0% +2025-07-23T19:36:54.8701469Z github.com/ava-labs/coreth/rpc/server.go:120: ServeCodec 87.5% +2025-07-23T19:36:54.8701650Z github.com/ava-labs/coreth/rpc/server.go:138: trackCodec 83.3% +2025-07-23T19:36:54.8701841Z github.com/ava-labs/coreth/rpc/server.go:149: untrackCodec 100.0% +2025-07-23T19:36:54.8702059Z github.com/ava-labs/coreth/rpc/server.go:159: serveSingleRequest 60.0% +2025-07-23T19:36:54.8702235Z github.com/ava-labs/coreth/rpc/server.go:188: Stop 100.0% +2025-07-23T19:36:54.8702417Z github.com/ava-labs/coreth/rpc/server.go:207: Modules 100.0% +2025-07-23T19:36:54.8702634Z github.com/ava-labs/coreth/rpc/server.go:248: PeerInfoFromContext 100.0% +2025-07-23T19:36:54.8702828Z github.com/ava-labs/coreth/rpc/service.go:71: registerName 89.5% +2025-07-23T19:36:54.8703016Z github.com/ava-labs/coreth/rpc/service.go:106: callback 83.3% +2025-07-23T19:36:54.8703215Z github.com/ava-labs/coreth/rpc/service.go:117: subscription 100.0% +2025-07-23T19:36:54.8703429Z github.com/ava-labs/coreth/rpc/service.go:126: suitableCallbacks 91.7% +2025-07-23T19:36:54.8703623Z github.com/ava-labs/coreth/rpc/service.go:146: newCallback 100.0% +2025-07-23T19:36:54.8703819Z github.com/ava-labs/coreth/rpc/service.go:175: makeArgTypes 100.0% +2025-07-23T19:36:54.8703996Z github.com/ava-labs/coreth/rpc/service.go:194: call 100.0% +2025-07-23T19:36:54.8704288Z github.com/ava-labs/coreth/rpc/service.go:229: isErrorType 100.0% +2025-07-23T19:36:54.8704504Z github.com/ava-labs/coreth/rpc/service.go:234: isSubscriptionType 100.0% +2025-07-23T19:36:54.8704693Z github.com/ava-labs/coreth/rpc/service.go:243: isPubSub 100.0% +2025-07-23T19:36:54.8704983Z github.com/ava-labs/coreth/rpc/service.go:254: formatName 100.0% +2025-07-23T19:36:54.8705187Z github.com/ava-labs/coreth/rpc/subscription.go:67: NewID 100.0% +2025-07-23T19:36:54.8705414Z github.com/ava-labs/coreth/rpc/subscription.go:72: randomIDGenerator 91.7% +2025-07-23T19:36:54.8705607Z github.com/ava-labs/coreth/rpc/subscription.go:94: encodeID 80.0% +2025-07-23T19:36:54.8705854Z github.com/ava-labs/coreth/rpc/subscription.go:106: NotifierFromContext 100.0% +2025-07-23T19:36:54.8706087Z github.com/ava-labs/coreth/rpc/subscription.go:128: CreateSubscription 75.0% +2025-07-23T19:36:54.8706288Z github.com/ava-labs/coreth/rpc/subscription.go:143: Notify 80.0% +2025-07-23T19:36:54.8706483Z github.com/ava-labs/coreth/rpc/subscription.go:161: Closed 100.0% +2025-07-23T19:36:54.8706711Z github.com/ava-labs/coreth/rpc/subscription.go:167: takeSubscription 100.0% +2025-07-23T19:36:54.8706913Z github.com/ava-labs/coreth/rpc/subscription.go:177: activate 100.0% +2025-07-23T19:36:54.8707230Z github.com/ava-labs/coreth/rpc/subscription.go:190: send 100.0% +2025-07-23T19:36:54.8707416Z github.com/ava-labs/coreth/rpc/subscription.go:211: Err 100.0% +2025-07-23T19:36:54.8707635Z github.com/ava-labs/coreth/rpc/subscription.go:216: MarshalJSON 100.0% +2025-07-23T19:36:54.8707886Z github.com/ava-labs/coreth/rpc/subscription.go:248: newClientSubscription 100.0% +2025-07-23T19:36:54.8708077Z github.com/ava-labs/coreth/rpc/subscription.go:271: Err 100.0% +2025-07-23T19:36:54.8708288Z github.com/ava-labs/coreth/rpc/subscription.go:277: Unsubscribe 100.0% +2025-07-23T19:36:54.8708491Z github.com/ava-labs/coreth/rpc/subscription.go:289: deliver 100.0% +2025-07-23T19:36:54.8708684Z github.com/ava-labs/coreth/rpc/subscription.go:299: close 100.0% +2025-07-23T19:36:54.8708868Z github.com/ava-labs/coreth/rpc/subscription.go:308: run 100.0% +2025-07-23T19:36:54.8709063Z github.com/ava-labs/coreth/rpc/subscription.go:335: forward 95.7% +2025-07-23T19:36:54.8709277Z github.com/ava-labs/coreth/rpc/subscription.go:383: unmarshal 100.0% +2025-07-23T19:36:54.8709514Z github.com/ava-labs/coreth/rpc/subscription.go:389: requestUnsubscribe 100.0% +2025-07-23T19:36:54.8709709Z github.com/ava-labs/coreth/rpc/types.go:90: UnmarshalJSON 81.0% +2025-07-23T19:36:54.8709876Z github.com/ava-labs/coreth/rpc/types.go:127: Int64 0.0% +2025-07-23T19:36:54.8710065Z github.com/ava-labs/coreth/rpc/types.go:134: MarshalText 100.0% +2025-07-23T19:36:54.8710239Z github.com/ava-labs/coreth/rpc/types.go:138: String 66.7% +2025-07-23T19:36:54.8710424Z github.com/ava-labs/coreth/rpc/types.go:159: IsAccepted 0.0% +2025-07-23T19:36:54.8710603Z github.com/ava-labs/coreth/rpc/types.go:163: IsLatest 0.0% +2025-07-23T19:36:54.8710797Z github.com/ava-labs/coreth/rpc/types.go:173: UnmarshalJSON 84.4% +2025-07-23T19:36:54.8710972Z github.com/ava-labs/coreth/rpc/types.go:237: Number 100.0% +2025-07-23T19:36:54.8711146Z github.com/ava-labs/coreth/rpc/types.go:244: String 80.0% +2025-07-23T19:36:54.8711310Z github.com/ava-labs/coreth/rpc/types.go:254: Hash 100.0% +2025-07-23T19:36:54.8711546Z github.com/ava-labs/coreth/rpc/types.go:261: BlockNumberOrHashWithNumber 100.0% +2025-07-23T19:36:54.8711782Z github.com/ava-labs/coreth/rpc/types.go:269: BlockNumberOrHashWithHash 100.0% +2025-07-23T19:36:54.8712003Z github.com/ava-labs/coreth/rpc/websocket.go:61: WebsocketHandler 100.0% +2025-07-23T19:36:54.8712266Z github.com/ava-labs/coreth/rpc/websocket.go:65: WebsocketHandlerWithDuration 100.0% +2025-07-23T19:36:54.8712646Z github.com/ava-labs/coreth/rpc/websocket.go:86: wsHandshakeValidator 100.0% +2025-07-23T19:36:54.8712826Z github.com/ava-labs/coreth/rpc/websocket.go:132: Error 0.0% +2025-07-23T19:36:54.8713047Z github.com/ava-labs/coreth/rpc/websocket.go:140: originIsAllowed 100.0% +2025-07-23T19:36:54.8713256Z github.com/ava-labs/coreth/rpc/websocket.go:150: ruleAllowsOrigin 62.5% +2025-07-23T19:36:54.8713472Z github.com/ava-labs/coreth/rpc/websocket.go:178: parseOriginURL 92.9% +2025-07-23T19:36:54.8713703Z github.com/ava-labs/coreth/rpc/websocket.go:205: DialWebsocketWithDialer 0.0% +2025-07-23T19:36:54.8713906Z github.com/ava-labs/coreth/rpc/websocket.go:223: DialWebsocket 85.7% +2025-07-23T19:36:54.8714135Z github.com/ava-labs/coreth/rpc/websocket.go:235: newClientTransportWS 87.5% +2025-07-23T19:36:54.8714342Z github.com/ava-labs/coreth/rpc/websocket.go:278: wsClientHeaders 90.9% +2025-07-23T19:36:54.8714561Z github.com/ava-labs/coreth/rpc/websocket.go:305: newWebsocketCodec 84.6% +2025-07-23T19:36:54.8714748Z github.com/ava-labs/coreth/rpc/websocket.go:337: close 100.0% +2025-07-23T19:36:54.8715036Z github.com/ava-labs/coreth/rpc/websocket.go:342: peerInfo 100.0% +2025-07-23T19:36:54.8715231Z github.com/ava-labs/coreth/rpc/websocket.go:346: writeJSON 100.0% +2025-07-23T19:36:54.8715591Z github.com/ava-labs/coreth/rpc/websocket.go:350: writeJSONSkipDeadline 100.0% +2025-07-23T19:36:54.8715780Z github.com/ava-labs/coreth/rpc/websocket.go:363: pingLoop 50.0% +2025-07-23T19:36:54.8716002Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:55: Crit 0.0% +2025-07-23T19:36:54.8716215Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:58: Warn 0.0% +2025-07-23T19:36:54.8716430Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:61: Info 0.0% +2025-07-23T19:36:54.8716666Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:66: GetWarnings 0.0% +2025-07-23T19:36:54.8716893Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:103: String 0.0% +2025-07-23T19:36:54.8717143Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:112: ToTransaction 0.0% +2025-07-23T19:36:54.8717351Z github.com/ava-labs/coreth/sync/client/client.go:99: NewClient 100.0% +2025-07-23T19:36:54.8717554Z github.com/ava-labs/coreth/sync/client/client.go:114: GetLeafs 100.0% +2025-07-23T19:36:54.8717807Z github.com/ava-labs/coreth/sync/client/client.go:132: parseLeafsResponse 88.5% +2025-07-23T19:36:54.8718012Z github.com/ava-labs/coreth/sync/client/client.go:188: GetBlocks 100.0% +2025-07-23T19:36:54.8718234Z github.com/ava-labs/coreth/sync/client/client.go:207: parseBlocks 100.0% +2025-07-23T19:36:54.8718436Z github.com/ava-labs/coreth/sync/client/client.go:243: GetCode 100.0% +2025-07-23T19:36:54.8718639Z github.com/ava-labs/coreth/sync/client/client.go:257: parseCode 93.3% +2025-07-23T19:36:54.8718835Z github.com/ava-labs/coreth/sync/client/client.go:289: get 72.1% +2025-07-23T19:36:54.8719094Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:51: NewCallbackLeafSyncer 0.0% +2025-07-23T19:36:54.8719315Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:62: workerLoop 0.0% +2025-07-23T19:36:54.8719521Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:80: syncTask 0.0% +2025-07-23T19:36:54.8719728Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:149: Start 0.0% +2025-07-23T19:36:54.8719932Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:171: Done 0.0% +2025-07-23T19:36:54.8720175Z github.com/ava-labs/coreth/sync/client/stats/stats.go:42: NewMessageMetric 100.0% +2025-07-23T19:36:54.8720405Z github.com/ava-labs/coreth/sync/client/stats/stats.go:53: IncRequested 100.0% +2025-07-23T19:36:54.8720639Z github.com/ava-labs/coreth/sync/client/stats/stats.go:57: IncSucceeded 100.0% +2025-07-23T19:36:54.8720984Z github.com/ava-labs/coreth/sync/client/stats/stats.go:61: IncFailed 100.0% +2025-07-23T19:36:54.8721236Z github.com/ava-labs/coreth/sync/client/stats/stats.go:65: IncInvalidResponse 0.0% +2025-07-23T19:36:54.8721464Z github.com/ava-labs/coreth/sync/client/stats/stats.go:69: IncReceived 100.0% +2025-07-23T19:36:54.8721732Z github.com/ava-labs/coreth/sync/client/stats/stats.go:73: UpdateRequestLatency 100.0% +2025-07-23T19:36:54.8722003Z github.com/ava-labs/coreth/sync/client/stats/stats.go:84: NewClientSyncerStats 100.0% +2025-07-23T19:36:54.8722220Z github.com/ava-labs/coreth/sync/client/stats/stats.go:97: GetMetric 62.5% +2025-07-23T19:36:54.8722451Z github.com/ava-labs/coreth/sync/client/stats/stats.go:121: IncRequested 0.0% +2025-07-23T19:36:54.8722677Z github.com/ava-labs/coreth/sync/client/stats/stats.go:122: IncSucceeded 0.0% +2025-07-23T19:36:54.8722892Z github.com/ava-labs/coreth/sync/client/stats/stats.go:123: IncFailed 0.0% +2025-07-23T19:36:54.8723155Z github.com/ava-labs/coreth/sync/client/stats/stats.go:124: IncInvalidResponse 0.0% +2025-07-23T19:36:54.8723379Z github.com/ava-labs/coreth/sync/client/stats/stats.go:125: IncReceived 0.0% +2025-07-23T19:36:54.8723635Z github.com/ava-labs/coreth/sync/client/stats/stats.go:126: UpdateRequestLatency 0.0% +2025-07-23T19:36:54.8723875Z github.com/ava-labs/coreth/sync/client/stats/stats.go:128: NewNoOpStats 100.0% +2025-07-23T19:36:54.8724182Z github.com/ava-labs/coreth/sync/client/stats/stats.go:132: GetMetric 100.0% +2025-07-23T19:36:54.8724424Z github.com/ava-labs/coreth/sync/client/test_client.go:44: NewTestClient 0.0% +2025-07-23T19:36:54.8724642Z github.com/ava-labs/coreth/sync/client/test_client.go:58: GetLeafs 0.0% +2025-07-23T19:36:54.8724971Z github.com/ava-labs/coreth/sync/client/test_client.go:77: LeavesReceived 0.0% +2025-07-23T19:36:54.8725189Z github.com/ava-labs/coreth/sync/client/test_client.go:81: GetCode 0.0% +2025-07-23T19:36:54.8725418Z github.com/ava-labs/coreth/sync/client/test_client.go:105: CodeReceived 0.0% +2025-07-23T19:36:54.8725638Z github.com/ava-labs/coreth/sync/client/test_client.go:109: GetBlocks 0.0% +2025-07-23T19:36:54.8725872Z github.com/ava-labs/coreth/sync/client/test_client.go:136: BlocksReceived 0.0% +2025-07-23T19:36:54.8726128Z github.com/ava-labs/coreth/sync/client/test_client.go:142: newTestBlockParser 100.0% +2025-07-23T19:36:54.8726377Z github.com/ava-labs/coreth/sync/client/test_client.go:146: ParseEthBlock 100.0% +2025-07-23T19:36:54.8726653Z github.com/ava-labs/coreth/sync/client/test_network.go:31: SendSyncedAppRequestAny 80.0% +2025-07-23T19:36:54.8726921Z github.com/ava-labs/coreth/sync/client/test_network.go:42: SendSyncedAppRequest 75.0% +2025-07-23T19:36:54.8727146Z github.com/ava-labs/coreth/sync/client/test_network.go:52: processTest 84.6% +2025-07-23T19:36:54.8727355Z github.com/ava-labs/coreth/sync/client/test_network.go:76: Gossip 0.0% +2025-07-23T19:36:54.8727594Z github.com/ava-labs/coreth/sync/client/test_network.go:80: testResponse 100.0% +2025-07-23T19:36:54.8727828Z github.com/ava-labs/coreth/sync/client/test_network.go:89: testResponses 100.0% +2025-07-23T19:36:54.8728056Z github.com/ava-labs/coreth/sync/client/test_network.go:95: TrackBandwidth 0.0% +2025-07-23T19:36:54.8728354Z github.com/ava-labs/coreth/sync/handlers/block_request.go:36: NewBlockRequestHandler 100.0% +2025-07-23T19:36:54.8728606Z github.com/ava-labs/coreth/sync/handlers/block_request.go:49: OnBlockRequest 87.8% +2025-07-23T19:36:54.8728890Z github.com/ava-labs/coreth/sync/handlers/code_request.go:29: NewCodeRequestHandler 100.0% +2025-07-23T19:36:54.8729131Z github.com/ava-labs/coreth/sync/handlers/code_request.go:43: OnCodeRequest 82.1% +2025-07-23T19:36:54.8729353Z github.com/ava-labs/coreth/sync/handlers/code_request.go:85: isUnique 100.0% +2025-07-23T19:36:54.8729643Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:58: NewLeafsRequestHandler 100.0% +2025-07-23T19:36:54.8730030Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:81: OnLeafsRequest 89.8% +2025-07-23T19:36:54.8730285Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:186: handleRequest 73.9% +2025-07-23T19:36:54.8730544Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:230: fillFromSnapshot 69.5% +2025-07-23T19:36:54.8730817Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:333: generateRangeProof 73.3% +2025-07-23T19:36:54.8731083Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:360: verifyRangeProof 100.0% +2025-07-23T19:36:54.8731321Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:372: iterateVals 87.5% +2025-07-23T19:36:54.8731573Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:393: isRangeValid 88.9% +2025-07-23T19:36:54.8731803Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:410: nextKey 100.0% +2025-07-23T19:36:54.8732086Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:424: fillFromTrie 94.4% +2025-07-23T19:36:54.8732371Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:459: readLeafsFromSnapshot 92.3% +2025-07-23T19:36:54.8732631Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:88: IncBlockRequest 100.0% +2025-07-23T19:36:54.8732887Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:92: IncMissingBlockHash 0.0% +2025-07-23T19:36:54.8733288Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:96: UpdateBlocksReturned 100.0% +2025-07-23T19:36:54.8733606Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:100: UpdateBlockRequestProcessingTime 100.0% +2025-07-23T19:36:54.8733854Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:104: IncCodeRequest 0.0% +2025-07-23T19:36:54.8734109Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:108: IncMissingCodeHash 0.0% +2025-07-23T19:36:54.8734392Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:112: IncTooManyHashesRequested 0.0% +2025-07-23T19:36:54.8734700Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:116: IncDuplicateHashesRequested 0.0% +2025-07-23T19:36:54.8735058Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:120: UpdateCodeReadTime 0.0% +2025-07-23T19:36:54.8735345Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:124: UpdateCodeBytesReturned 0.0% +2025-07-23T19:36:54.8735604Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:128: IncLeafsRequest 100.0% +2025-07-23T19:36:54.8735882Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:132: IncInvalidLeafsRequest 0.0% +2025-07-23T19:36:54.8736200Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:136: UpdateLeafsRequestProcessingTime 100.0% +2025-07-23T19:36:54.8736469Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:140: UpdateLeafsReturned 100.0% +2025-07-23T19:36:54.8736741Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:144: UpdateReadLeafsTime 100.0% +2025-07-23T19:36:54.8737024Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:148: UpdateSnapshotReadTime 100.0% +2025-07-23T19:36:54.8737324Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:152: UpdateGenerateRangeProofTime 100.0% +2025-07-23T19:36:54.8737625Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:156: UpdateRangeProofValsReturned 100.0% +2025-07-23T19:36:54.8737873Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:160: IncMissingRoot 0.0% +2025-07-23T19:36:54.8738118Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:161: IncTrieError 0.0% +2025-07-23T19:36:54.8738358Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:162: IncProofError 0.0% +2025-07-23T19:36:54.8738623Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:163: IncSnapshotReadError 0.0% +2025-07-23T19:36:54.8738909Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:164: IncSnapshotReadAttempt 100.0% +2025-07-23T19:36:54.8739322Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:165: IncSnapshotReadSuccess 0.0% +2025-07-23T19:36:54.8739604Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:166: IncSnapshotSegmentValid 0.0% +2025-07-23T19:36:54.8739901Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:167: IncSnapshotSegmentInvalid 100.0% +2025-07-23T19:36:54.8740187Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:172: GetOrRegisterHandlerStats 66.7% +2025-07-23T19:36:54.8740465Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:214: NewNoopHandlerStats 100.0% +2025-07-23T19:36:54.8740713Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:219: IncBlockRequest 0.0% +2025-07-23T19:36:54.8740974Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:220: IncMissingBlockHash 0.0% +2025-07-23T19:36:54.8741245Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:221: UpdateBlocksReturned 0.0% +2025-07-23T19:36:54.8741559Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:222: UpdateBlockRequestProcessingTime 0.0% +2025-07-23T19:36:54.8741807Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:223: IncCodeRequest 0.0% +2025-07-23T19:36:54.8742061Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:224: IncMissingCodeHash 0.0% +2025-07-23T19:36:54.8742341Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:225: IncTooManyHashesRequested 0.0% +2025-07-23T19:36:54.8742778Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:226: IncDuplicateHashesRequested 0.0% +2025-07-23T19:36:54.8743037Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:227: UpdateCodeReadTime 0.0% +2025-07-23T19:36:54.8743321Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:228: UpdateCodeBytesReturned 0.0% +2025-07-23T19:36:54.8743571Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:229: IncLeafsRequest 0.0% +2025-07-23T19:36:54.8743845Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:230: IncInvalidLeafsRequest 0.0% +2025-07-23T19:36:54.8744166Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:231: UpdateLeafsRequestProcessingTime 0.0% +2025-07-23T19:36:54.8744433Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:232: UpdateLeafsReturned 0.0% +2025-07-23T19:36:54.8744698Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:233: UpdateReadLeafsTime 0.0% +2025-07-23T19:36:54.8745079Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:234: UpdateSnapshotReadTime 0.0% +2025-07-23T19:36:54.8745380Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:235: UpdateGenerateRangeProofTime 0.0% +2025-07-23T19:36:54.8745678Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:236: UpdateRangeProofValsReturned 0.0% +2025-07-23T19:36:54.8745922Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:237: IncMissingRoot 0.0% +2025-07-23T19:36:54.8746166Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:238: IncTrieError 0.0% +2025-07-23T19:36:54.8746409Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:239: IncProofError 0.0% +2025-07-23T19:36:54.8746676Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:240: IncSnapshotReadError 0.0% +2025-07-23T19:36:54.8746954Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:241: IncSnapshotReadAttempt 0.0% +2025-07-23T19:36:54.8747230Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:242: IncSnapshotReadSuccess 0.0% +2025-07-23T19:36:54.8747511Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:243: IncSnapshotSegmentValid 0.0% +2025-07-23T19:36:54.8747798Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:244: IncSnapshotSegmentInvalid 0.0% +2025-07-23T19:36:54.8748075Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:49: Reset 100.0% +2025-07-23T19:36:54.8748386Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:80: IncBlockRequest 100.0% +2025-07-23T19:36:54.8748830Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:86: IncMissingBlockHash 100.0% +2025-07-23T19:36:54.8749159Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:92: UpdateBlocksReturned 100.0% +2025-07-23T19:36:54.8749532Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:98: UpdateBlockRequestProcessingTime 100.0% +2025-07-23T19:36:54.8749840Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:104: IncCodeRequest 100.0% +2025-07-23T19:36:54.8750157Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:110: IncMissingCodeHash 0.0% +2025-07-23T19:36:54.8750505Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:116: IncTooManyHashesRequested 100.0% +2025-07-23T19:36:54.8750856Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:122: IncDuplicateHashesRequested 100.0% +2025-07-23T19:36:54.8751182Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:128: UpdateCodeReadTime 100.0% +2025-07-23T19:36:54.8751529Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:134: UpdateCodeBytesReturned 100.0% +2025-07-23T19:36:54.8751841Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:140: IncLeafsRequest 100.0% +2025-07-23T19:36:54.8752177Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:146: IncInvalidLeafsRequest 100.0% +2025-07-23T19:36:54.8752667Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:152: UpdateLeafsReturned 100.0% +2025-07-23T19:36:54.8753048Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:158: UpdateLeafsRequestProcessingTime 100.0% +2025-07-23T19:36:54.8753369Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:164: UpdateReadLeafsTime 100.0% +2025-07-23T19:36:54.8753731Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:170: UpdateGenerateRangeProofTime 100.0% +2025-07-23T19:36:54.8754074Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:176: UpdateSnapshotReadTime 100.0% +2025-07-23T19:36:54.8754425Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:182: UpdateRangeProofValsReturned 100.0% +2025-07-23T19:36:54.8754736Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:188: IncMissingRoot 100.0% +2025-07-23T19:36:54.8755148Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:194: IncTrieError 100.0% +2025-07-23T19:36:54.8755451Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:200: IncProofError 0.0% +2025-07-23T19:36:54.8755770Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:206: IncSnapshotReadError 0.0% +2025-07-23T19:36:54.8756107Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:212: IncSnapshotReadAttempt 100.0% +2025-07-23T19:36:54.8756446Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:218: IncSnapshotReadSuccess 100.0% +2025-07-23T19:36:54.8756792Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:224: IncSnapshotSegmentValid 100.0% +2025-07-23T19:36:54.8757143Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:230: IncSnapshotSegmentInvalid 100.0% +2025-07-23T19:36:54.8757384Z github.com/ava-labs/coreth/sync/handlers/test_providers.go:21: GetBlock 100.0% +2025-07-23T19:36:54.8757628Z github.com/ava-labs/coreth/sync/handlers/test_providers.go:29: Snapshots 100.0% +2025-07-23T19:36:54.8757881Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:63: newCodeSyncer 100.0% +2025-07-23T19:36:54.8758101Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:75: start 93.3% +2025-07-23T19:36:54.8758397Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:107: addCodeToFetchFromDBToQueue 55.0% +2025-07-23T19:36:54.8758619Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:143: work 100.0% +2025-07-23T19:36:54.8759006Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:180: fulfillCodeRequest 92.3% +2025-07-23T19:36:54.8759237Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:204: addCode 91.7% +2025-07-23T19:36:54.8759526Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:230: notifyAccountTrieCompleted 100.0% +2025-07-23T19:36:54.8759792Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:236: addHashesToQueue 100.0% +2025-07-23T19:36:54.8760023Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:249: setError 100.0% +2025-07-23T19:36:54.8760241Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:257: Done 100.0% +2025-07-23T19:36:54.8760499Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:65: NewStateSyncer 84.6% +2025-07-23T19:36:54.8760778Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:113: onStorageTrieFinished 80.0% +2025-07-23T19:36:54.8761046Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:136: onMainTrieFinished 87.5% +2025-07-23T19:36:54.8761306Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:156: onSyncComplete 100.0% +2025-07-23T19:36:54.8761575Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:165: storageTrieProducer 87.0% +2025-07-23T19:36:54.8761803Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:220: Start 100.0% +2025-07-23T19:36:54.8762150Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:247: Done 100.0% +2025-07-23T19:36:54.8762422Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:250: addTrieInProgress 100.0% +2025-07-23T19:36:54.8762705Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:259: removeTrieInProgress 85.7% +2025-07-23T19:36:54.8762958Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:274: onSyncFailure 85.7% +2025-07-23T19:36:54.8763336Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_sync.go:21: FillAccountsWithOverlappingStorage 100.0% +2025-07-23T19:36:54.8763626Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:29: GenerateTrie 66.7% +2025-07-23T19:36:54.8763892Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:39: FillTrie 95.7% +2025-07-23T19:36:54.8764223Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:78: AssertTrieConsistency 81.5% +2025-07-23T19:36:54.8764507Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:118: CorruptTrie 71.4% +2025-07-23T19:36:54.8764900Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:146: FillAccounts 77.3% +2025-07-23T19:36:54.8765181Z github.com/ava-labs/coreth/sync/statesync/sync_helpers.go:16: writeAccountSnapshot 100.0% +2025-07-23T19:36:54.8765499Z github.com/ava-labs/coreth/sync/statesync/sync_helpers.go:23: writeAccountStorageSnapshotFromTrie 0.0% +2025-07-23T19:36:54.8765743Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:20: NewTrieQueue 100.0% +2025-07-23T19:36:54.8766021Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:28: clearIfRootDoesNotMatch 66.7% +2025-07-23T19:36:54.8766286Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:50: RegisterStorageTrie 100.0% +2025-07-23T19:36:54.8766533Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:56: StorageTrieDone 100.0% +2025-07-23T19:36:54.8766774Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:65: getNextTrie 100.0% +2025-07-23T19:36:54.8767008Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:97: countTries 100.0% +2025-07-23T19:36:54.8767259Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:66: NewTrieToSync 100.0% +2025-07-23T19:36:54.8767503Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:86: loadSegments 76.0% +2025-07-23T19:36:54.8767758Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:142: startSyncing 100.0% +2025-07-23T19:36:54.8768127Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:152: addSegment 100.0% +2025-07-23T19:36:54.8768390Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:166: segmentFinished 74.4% +2025-07-23T19:36:54.8768678Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:245: createSegmentsIfNeeded 66.7% +2025-07-23T19:36:54.8768927Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:254: shouldSegment 83.3% +2025-07-23T19:36:54.8769188Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:277: createSegments 0.0% +2025-07-23T19:36:54.8769416Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:336: String 0.0% +2025-07-23T19:36:54.8769642Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:346: Root 100.0% +2025-07-23T19:36:54.8769878Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:347: Account 100.0% +2025-07-23T19:36:54.8770102Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:348: End 100.0% +2025-07-23T19:36:54.8770351Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:349: NodeType 100.0% +2025-07-23T19:36:54.8770583Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:350: OnStart 100.0% +2025-07-23T19:36:54.8770822Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:351: OnFinish 100.0% +2025-07-23T19:36:54.8771052Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:353: Start 100.0% +2025-07-23T19:36:54.8771401Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:360: OnLeafs 92.9% +2025-07-23T19:36:54.8771654Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:391: estimateSize 83.3% +2025-07-23T19:36:54.8771889Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:415: addPadding 0.0% +2025-07-23T19:36:54.8772156Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:45: newTrieSyncStats 100.0% +2025-07-23T19:36:54.8772421Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:59: incTriesSegmented 0.0% +2025-07-23T19:36:54.8772657Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:65: incLeafs 72.7% +2025-07-23T19:36:54.8772974Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:84: estimateSegmentsInProgressTime 25.0% +2025-07-23T19:36:54.8773217Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:101: trieDone 100.0% +2025-07-23T19:36:54.8773461Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:118: updateETA 76.9% +2025-07-23T19:36:54.8773733Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:145: setTriesRemaining 100.0% +2025-07-23T19:36:54.8773965Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:155: roundETA 80.0% +2025-07-23T19:36:54.8774232Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:41: NewMainTrieTask 100.0% +2025-07-23T19:36:54.8774482Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:47: IterateLeafs 100.0% +2025-07-23T19:36:54.8774718Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:53: OnStart 100.0% +2025-07-23T19:36:54.8775050Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:57: OnFinish 100.0% +2025-07-23T19:36:54.8775284Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:61: OnLeafs 92.3% +2025-07-23T19:36:54.8775556Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:97: NewStorageTrieTask 100.0% +2025-07-23T19:36:54.8775816Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:105: IterateLeafs 100.0% +2025-07-23T19:36:54.8776048Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:111: OnStart 54.5% +2025-07-23T19:36:54.8776291Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:138: OnFinish 100.0% +2025-07-23T19:36:54.8776526Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:142: OnLeafs 100.0% +2025-07-23T19:36:54.8776739Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:25: Next 85.7% +2025-07-23T19:36:54.8777075Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:37: Key 66.7% +2025-07-23T19:36:54.8777289Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:44: Value 66.7% +2025-07-23T19:36:54.8777505Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:51: Error 66.7% +2025-07-23T19:36:54.8777714Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:63: Key 100.0% +2025-07-23T19:36:54.8777935Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:67: Value 100.0% +2025-07-23T19:36:54.8778201Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:38: NewAccountTrie 100.0% +2025-07-23T19:36:54.8778440Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:53: GetAccount 87.5% +2025-07-23T19:36:54.8778682Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:87: GetStorage 72.2% +2025-07-23T19:36:54.8778940Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:123: UpdateAccount 88.9% +2025-07-23T19:36:54.8779200Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:138: UpdateStorage 92.3% +2025-07-23T19:36:54.8779463Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:159: DeleteAccount 100.0% +2025-07-23T19:36:54.8779718Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:170: DeleteStorage 100.0% +2025-07-23T19:36:54.8779947Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:186: Hash 60.0% +2025-07-23T19:36:54.8780306Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:195: hash 85.7% +2025-07-23T19:36:54.8780536Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:209: Commit 85.7% +2025-07-23T19:36:54.8780817Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:229: UpdateContractCode 100.0% +2025-07-23T19:36:54.8781045Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:234: GetKey 0.0% +2025-07-23T19:36:54.8781293Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:239: NodeIterator 0.0% +2025-07-23T19:36:54.8781528Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:244: Prove 0.0% +2025-07-23T19:36:54.8781749Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:248: Copy 57.1% +2025-07-23T19:36:54.8782016Z github.com/ava-labs/coreth/triedb/firewood/database.go:79: BackendConstructor 100.0% +2025-07-23T19:36:54.8782220Z github.com/ava-labs/coreth/triedb/firewood/database.go:97: New 66.7% +2025-07-23T19:36:54.8782462Z github.com/ava-labs/coreth/triedb/firewood/database.go:126: validatePath 50.0% +2025-07-23T19:36:54.8782687Z github.com/ava-labs/coreth/triedb/firewood/database.go:163: Scheme 100.0% +2025-07-23T19:36:54.8782917Z github.com/ava-labs/coreth/triedb/firewood/database.go:168: Initialized 66.7% +2025-07-23T19:36:54.8783144Z github.com/ava-labs/coreth/triedb/firewood/database.go:182: Update 93.8% +2025-07-23T19:36:54.8783365Z github.com/ava-labs/coreth/triedb/firewood/database.go:226: propose 82.6% +2025-07-23T19:36:54.8783586Z github.com/ava-labs/coreth/triedb/firewood/database.go:291: Commit 82.8% +2025-07-23T19:36:54.8783807Z github.com/ava-labs/coreth/triedb/firewood/database.go:353: Size 100.0% +2025-07-23T19:36:54.8784035Z github.com/ava-labs/coreth/triedb/firewood/database.go:358: Reference 0.0% +2025-07-23T19:36:54.8784265Z github.com/ava-labs/coreth/triedb/firewood/database.go:370: Dereference 0.0% +2025-07-23T19:36:54.8784478Z github.com/ava-labs/coreth/triedb/firewood/database.go:374: Cap 0.0% +2025-07-23T19:36:54.8784692Z github.com/ava-labs/coreth/triedb/firewood/database.go:378: Close 100.0% +2025-07-23T19:36:54.8785043Z github.com/ava-labs/coreth/triedb/firewood/database.go:392: createProposal 66.7% +2025-07-23T19:36:54.8785332Z github.com/ava-labs/coreth/triedb/firewood/database.go:432: cleanupCommittedProposal 100.0% +2025-07-23T19:36:54.8785565Z github.com/ava-labs/coreth/triedb/firewood/database.go:452: dereference 85.7% +2025-07-23T19:36:54.8785982Z github.com/ava-labs/coreth/triedb/firewood/database.go:471: removeProposalFromMap 100.0% +2025-07-23T19:36:54.8786203Z github.com/ava-labs/coreth/triedb/firewood/database.go:490: Reader 100.0% +2025-07-23T19:36:54.8786417Z github.com/ava-labs/coreth/triedb/firewood/database.go:505: Node 66.7% +2025-07-23T19:36:54.8786665Z github.com/ava-labs/coreth/triedb/firewood/database.go:519: getProposalHash 81.8% +2025-07-23T19:36:54.8786941Z github.com/ava-labs/coreth/triedb/firewood/database.go:563: arrangeKeyValuePairs 100.0% +2025-07-23T19:36:54.8787210Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:18: NewStorageTrie 100.0% +2025-07-23T19:36:54.8787438Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:28: Commit 100.0% +2025-07-23T19:36:54.8787665Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:33: Hash 100.0% +2025-07-23T19:36:54.8787881Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:39: Copy 0.0% +2025-07-23T19:36:54.8788140Z github.com/ava-labs/coreth/triedb/hashdb/database.go:119: BackendConstructor 100.0% +2025-07-23T19:36:54.8788371Z github.com/ava-labs/coreth/triedb/hashdb/database.go:181: forChildren 100.0% +2025-07-23T19:36:54.8788573Z github.com/ava-labs/coreth/triedb/hashdb/database.go:189: New 83.3% +2025-07-23T19:36:54.8788783Z github.com/ava-labs/coreth/triedb/hashdb/database.go:209: insert 100.0% +2025-07-23T19:36:54.8789186Z github.com/ava-labs/coreth/triedb/hashdb/database.go:239: node 89.3% +2025-07-23T19:36:54.8789402Z github.com/ava-labs/coreth/triedb/hashdb/database.go:295: Reference 100.0% +2025-07-23T19:36:54.8789625Z github.com/ava-labs/coreth/triedb/hashdb/database.go:303: reference 100.0% +2025-07-23T19:36:54.8789846Z github.com/ava-labs/coreth/triedb/hashdb/database.go:328: Dereference 88.2% +2025-07-23T19:36:54.8790069Z github.com/ava-labs/coreth/triedb/hashdb/database.go:357: dereference 100.0% +2025-07-23T19:36:54.8790318Z github.com/ava-labs/coreth/triedb/hashdb/database.go:410: writeFlushItems 71.4% +2025-07-23T19:36:54.8790519Z github.com/ava-labs/coreth/triedb/hashdb/database.go:438: Cap 0.0% +2025-07-23T19:36:54.8790733Z github.com/ava-labs/coreth/triedb/hashdb/database.go:518: Commit 87.9% +2025-07-23T19:36:54.8790938Z github.com/ava-labs/coreth/triedb/hashdb/database.go:576: commit 90.9% +2025-07-23T19:36:54.8791194Z github.com/ava-labs/coreth/triedb/hashdb/database.go:607: removeFromDirties 100.0% +2025-07-23T19:36:54.8791422Z github.com/ava-labs/coreth/triedb/hashdb/database.go:646: Initialized 100.0% +2025-07-23T19:36:54.8791628Z github.com/ava-labs/coreth/triedb/hashdb/database.go:654: Update 80.0% +2025-07-23T19:36:54.8791833Z github.com/ava-labs/coreth/triedb/hashdb/database.go:674: update 95.2% +2025-07-23T19:36:54.8792039Z github.com/ava-labs/coreth/triedb/hashdb/database.go:721: Size 100.0% +2025-07-23T19:36:54.8792247Z github.com/ava-labs/coreth/triedb/hashdb/database.go:733: Close 100.0% +2025-07-23T19:36:54.8792465Z github.com/ava-labs/coreth/triedb/hashdb/database.go:741: Scheme 100.0% +2025-07-23T19:36:54.8792675Z github.com/ava-labs/coreth/triedb/hashdb/database.go:747: Reader 100.0% +2025-07-23T19:36:54.8792878Z github.com/ava-labs/coreth/triedb/hashdb/database.go:761: Node 100.0% +2025-07-23T19:36:54.8793135Z github.com/ava-labs/coreth/triedb/pathdb/database.go:108: BackendConstructor 0.0% +2025-07-23T19:36:54.8793349Z github.com/ava-labs/coreth/triedb/pathdb/database.go:114: sanitize 60.0% +2025-07-23T19:36:54.8793554Z github.com/ava-labs/coreth/triedb/pathdb/database.go:163: New 100.0% +2025-07-23T19:36:54.8793767Z github.com/ava-labs/coreth/triedb/pathdb/database.go:231: Reader 100.0% +2025-07-23T19:36:54.8793975Z github.com/ava-labs/coreth/triedb/pathdb/database.go:246: Update 71.4% +2025-07-23T19:36:54.8794187Z github.com/ava-labs/coreth/triedb/pathdb/database.go:269: Commit 80.0% +2025-07-23T19:36:54.8794484Z github.com/ava-labs/coreth/triedb/pathdb/database.go:284: Disable 72.7% +2025-07-23T19:36:54.8794691Z github.com/ava-labs/coreth/triedb/pathdb/database.go:310: Enable 88.2% +2025-07-23T19:36:54.8795013Z github.com/ava-labs/coreth/triedb/pathdb/database.go:356: Recover 100.0% +2025-07-23T19:36:54.8795240Z github.com/ava-labs/coreth/triedb/pathdb/database.go:362: Recoverable 100.0% +2025-07-23T19:36:54.8795455Z github.com/ava-labs/coreth/triedb/pathdb/database.go:394: Close 100.0% +2025-07-23T19:36:54.8795656Z github.com/ava-labs/coreth/triedb/pathdb/database.go:416: Size 0.0% +2025-07-23T19:36:54.8795879Z github.com/ava-labs/coreth/triedb/pathdb/database.go:430: Initialized 0.0% +2025-07-23T19:36:54.8796111Z github.com/ava-labs/coreth/triedb/pathdb/database.go:445: SetBufferSize 0.0% +2025-07-23T19:36:54.8796316Z github.com/ava-labs/coreth/triedb/pathdb/database.go:458: Scheme 0.0% +2025-07-23T19:36:54.8796555Z github.com/ava-labs/coreth/triedb/pathdb/database.go:464: modifyAllowed 60.0% +2025-07-23T19:36:54.8796787Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:59: newDiffLayer 100.0% +2025-07-23T19:36:54.8797006Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:91: rootHash 100.0% +2025-07-23T19:36:54.8797225Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:96: stateID 100.0% +2025-07-23T19:36:54.8797577Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:102: parentLayer 100.0% +2025-07-23T19:36:54.8797781Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:112: node 82.4% +2025-07-23T19:36:54.8797993Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:146: Node 100.0% +2025-07-23T19:36:54.8798208Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:152: update 100.0% +2025-07-23T19:36:54.8798429Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:157: persist 77.8% +2025-07-23T19:36:54.8798657Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:179: diffToDisk 75.0% +2025-07-23T19:36:54.8798889Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:57: newDiskLayer 100.0% +2025-07-23T19:36:54.8799107Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:74: rootHash 100.0% +2025-07-23T19:36:54.8799321Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:79: stateID 100.0% +2025-07-23T19:36:54.8799556Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:85: parentLayer 100.0% +2025-07-23T19:36:54.8799770Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:91: isStale 100.0% +2025-07-23T19:36:54.8799986Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:99: markStale 80.0% +2025-07-23T19:36:54.8800194Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:111: Node 73.0% +2025-07-23T19:36:54.8800410Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:175: update 100.0% +2025-07-23T19:36:54.8800622Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:182: commit 85.7% +2025-07-23T19:36:54.8800839Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:252: revert 0.0% +2025-07-23T19:36:54.8801071Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:300: setBufferSize 0.0% +2025-07-23T19:36:54.8801277Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:311: size 0.0% +2025-07-23T19:36:54.8801503Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:322: resetCache 83.3% +2025-07-23T19:36:54.8801729Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:342: newHasher 100.0% +2025-07-23T19:36:54.8801939Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:346: hash 100.0% +2025-07-23T19:36:54.8802157Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:350: release 100.0% +2025-07-23T19:36:54.8802423Z github.com/ava-labs/coreth/triedb/pathdb/errors.go:67: newUnexpectedNodeError 0.0% +2025-07-23T19:36:54.8802637Z github.com/ava-labs/coreth/triedb/pathdb/history.go:158: encode 100.0% +2025-07-23T19:36:54.8802963Z github.com/ava-labs/coreth/triedb/pathdb/history.go:169: decode 100.0% +2025-07-23T19:36:54.8803174Z github.com/ava-labs/coreth/triedb/pathdb/history.go:185: encode 100.0% +2025-07-23T19:36:54.8803382Z github.com/ava-labs/coreth/triedb/pathdb/history.go:194: decode 100.0% +2025-07-23T19:36:54.8803589Z github.com/ava-labs/coreth/triedb/pathdb/history.go:210: encode 87.5% +2025-07-23T19:36:54.8803799Z github.com/ava-labs/coreth/triedb/pathdb/history.go:223: decode 62.5% +2025-07-23T19:36:54.8804017Z github.com/ava-labs/coreth/triedb/pathdb/history.go:263: newHistory 92.9% +2025-07-23T19:36:54.8804225Z github.com/ava-labs/coreth/triedb/pathdb/history.go:304: encode 100.0% +2025-07-23T19:36:54.8804429Z github.com/ava-labs/coreth/triedb/pathdb/history.go:365: verify 60.0% +2025-07-23T19:36:54.8804648Z github.com/ava-labs/coreth/triedb/pathdb/history.go:376: readAccount 75.0% +2025-07-23T19:36:54.8804994Z github.com/ava-labs/coreth/triedb/pathdb/history.go:409: readStorage 76.2% +2025-07-23T19:36:54.8805201Z github.com/ava-labs/coreth/triedb/pathdb/history.go:456: decode 85.0% +2025-07-23T19:36:54.8805426Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:85: loadJournal 77.3% +2025-07-23T19:36:54.8805645Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:127: loadLayers 100.0% +2025-07-23T19:36:54.8806000Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:149: loadDiskLayer 54.5% +2025-07-23T19:36:54.8806238Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:190: loadDiffLayer 83.3% +2025-07-23T19:36:54.8806447Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:257: journal 77.8% +2025-07-23T19:36:54.8806655Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:291: journal 80.0% +2025-07-23T19:36:54.8806866Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:350: Journal 76.0% +2025-07-23T19:36:54.8807097Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:52: newLayerTree 100.0% +2025-07-23T19:36:54.8807316Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:60: reset 100.0% +2025-07-23T19:36:54.8807516Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:73: get 100.0% +2025-07-23T19:36:54.8807724Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:82: forEach 0.0% +2025-07-23T19:36:54.8807932Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:92: len 100.0% +2025-07-23T19:36:54.8808136Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:100: add 81.8% +2025-07-23T19:36:54.8808343Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:125: cap 79.0% +2025-07-23T19:36:54.8808555Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:236: bottom 90.9% +2025-07-23T19:36:54.8808798Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:54: newNodeBuffer 71.4% +2025-07-23T19:36:54.8809008Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:73: node 27.3% +2025-07-23T19:36:54.8809226Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:94: commit 100.0% +2025-07-23T19:36:54.8809441Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:139: revert 0.0% +2025-07-23T19:36:54.8809674Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:189: updateSize 57.1% +2025-07-23T19:36:54.8809890Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:201: reset 100.0% +2025-07-23T19:36:54.8810107Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:209: empty 0.0% +2025-07-23T19:36:54.8810323Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:215: setSize 0.0% +2025-07-23T19:36:54.8810532Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:222: flush 88.2% +2025-07-23T19:36:54.8810771Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:254: writeNodes 100.0% +2025-07-23T19:36:54.8811000Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:283: cacheKey 100.0% +2025-07-23T19:36:54.8811378Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:55: newTestHasher 80.0% +2025-07-23T19:36:54.8811580Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:71: Get 0.0% +2025-07-23T19:36:54.8811796Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:81: Update 100.0% +2025-07-23T19:36:54.8812017Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:87: Delete 100.0% +2025-07-23T19:36:54.8812233Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:94: Commit 93.8% +2025-07-23T19:36:54.8812440Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:126: hash 100.0% +2025-07-23T19:36:54.8812688Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:152: newHashLoader 100.0% +2025-07-23T19:36:54.8812899Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:160: OpenTrie 0.0% +2025-07-23T19:36:54.8813147Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:165: OpenStorageTrie 0.0% +2025-07-23T19:36:54.8813346Z github.com/ava-labs/coreth/utils/address_range.go:20: Contains 0.0% +2025-07-23T19:36:54.8813586Z github.com/ava-labs/coreth/utils/bounded_workers.go:22: NewBoundedWorkers 0.0% +2025-07-23T19:36:54.8813806Z github.com/ava-labs/coreth/utils/bounded_workers.go:31: startWorker 0.0% +2025-07-23T19:36:54.8814007Z github.com/ava-labs/coreth/utils/bounded_workers.go:51: Execute 0.0% +2025-07-23T19:36:54.8814209Z github.com/ava-labs/coreth/utils/bounded_workers.go:75: Wait 0.0% +2025-07-23T19:36:54.8814470Z github.com/ava-labs/coreth/utils/bytes.go:9: IncrOne 100.0% +2025-07-23T19:36:54.8814678Z github.com/ava-labs/coreth/utils/bytes.go:23: HashSliceToBytes 100.0% +2025-07-23T19:36:54.8814985Z github.com/ava-labs/coreth/utils/bytes.go:33: BytesToHashSlice 100.0% +2025-07-23T19:36:54.8815212Z github.com/ava-labs/coreth/utils/metered_cache.go:37: NewMeteredCache 0.0% +2025-07-23T19:36:54.8815449Z github.com/ava-labs/coreth/utils/metered_cache.go:60: updateStatsIfNeeded 0.0% +2025-07-23T19:36:54.8815644Z github.com/ava-labs/coreth/utils/metered_cache.go:81: Del 0.0% +2025-07-23T19:36:54.8815830Z github.com/ava-labs/coreth/utils/metered_cache.go:86: Get 0.0% +2025-07-23T19:36:54.8816032Z github.com/ava-labs/coreth/utils/metered_cache.go:91: GetBig 0.0% +2025-07-23T19:36:54.8816214Z github.com/ava-labs/coreth/utils/metered_cache.go:96: Has 0.0% +2025-07-23T19:36:54.8816414Z github.com/ava-labs/coreth/utils/metered_cache.go:101: HasGet 0.0% +2025-07-23T19:36:54.8816608Z github.com/ava-labs/coreth/utils/metered_cache.go:106: Set 0.0% +2025-07-23T19:36:54.8816799Z github.com/ava-labs/coreth/utils/metered_cache.go:111: SetBig 0.0% +2025-07-23T19:36:54.8816985Z github.com/ava-labs/coreth/utils/numbers.go:11: NewUint64 0.0% +2025-07-23T19:36:54.8817188Z github.com/ava-labs/coreth/utils/numbers.go:13: TimeToNewUint64 0.0% +2025-07-23T19:36:54.8817380Z github.com/ava-labs/coreth/utils/numbers.go:18: Uint64ToTime 0.0% +2025-07-23T19:36:54.8817589Z github.com/ava-labs/coreth/utils/numbers.go:25: Uint64PtrEqual 0.0% +2025-07-23T19:36:54.8817778Z github.com/ava-labs/coreth/utils/numbers.go:34: BigEqual 100.0% +2025-07-23T19:36:54.8817985Z github.com/ava-labs/coreth/utils/numbers.go:43: BigEqualUint64 100.0% +2025-07-23T19:36:54.8818217Z github.com/ava-labs/coreth/utils/numbers.go:51: BigLessOrEqualUint64 100.0% +2025-07-23T19:36:54.8818419Z github.com/ava-labs/coreth/utils/rpc/handler.go:16: NewHandler 0.0% +2025-07-23T19:36:54.8818639Z github.com/ava-labs/coreth/utils/snow.go:17: NewTestValidatorState 0.0% +2025-07-23T19:36:54.8818840Z github.com/ava-labs/coreth/utils/utilstest/key.go:24: NewKey 100.0% +2025-07-23T19:36:54.8819034Z github.com/ava-labs/coreth/warp/backend.go:65: NewBackend 100.0% +2025-07-23T19:36:54.8819260Z github.com/ava-labs/coreth/warp/backend.go:88: initOffChainMessages 76.9% +2025-07-23T19:36:54.8819450Z github.com/ava-labs/coreth/warp/backend.go:113: AddMessage 71.4% +2025-07-23T19:36:54.8819811Z github.com/ava-labs/coreth/warp/backend.go:130: GetMessageSignature 100.0% +2025-07-23T19:36:54.8820033Z github.com/ava-labs/coreth/warp/backend.go:144: GetBlockSignature 73.3% +2025-07-23T19:36:54.8820223Z github.com/ava-labs/coreth/warp/backend.go:172: GetMessage 83.3% +2025-07-23T19:36:54.8820420Z github.com/ava-labs/coreth/warp/backend.go:194: signMessage 80.0% +2025-07-23T19:36:54.8820605Z github.com/ava-labs/coreth/warp/client.go:31: NewClient 0.0% +2025-07-23T19:36:54.8820792Z github.com/ava-labs/coreth/warp/client.go:41: GetMessage 0.0% +2025-07-23T19:36:54.8821010Z github.com/ava-labs/coreth/warp/client.go:49: GetMessageSignature 0.0% +2025-07-23T19:36:54.8821251Z github.com/ava-labs/coreth/warp/client.go:57: GetMessageAggregateSignature 0.0% +2025-07-23T19:36:54.8821459Z github.com/ava-labs/coreth/warp/client.go:65: GetBlockSignature 0.0% +2025-07-23T19:36:54.8821696Z github.com/ava-labs/coreth/warp/client.go:73: GetBlockAggregateSignature 0.0% +2025-07-23T19:36:54.8821876Z github.com/ava-labs/coreth/warp/service.go:32: NewAPI 0.0% +2025-07-23T19:36:54.8822067Z github.com/ava-labs/coreth/warp/service.go:42: GetMessage 0.0% +2025-07-23T19:36:54.8822281Z github.com/ava-labs/coreth/warp/service.go:51: GetMessageSignature 0.0% +2025-07-23T19:36:54.8822602Z github.com/ava-labs/coreth/warp/service.go:64: GetBlockSignature 0.0% +2025-07-23T19:36:54.8822853Z github.com/ava-labs/coreth/warp/service.go:73: GetMessageAggregateSignature 0.0% +2025-07-23T19:36:54.8823090Z github.com/ava-labs/coreth/warp/service.go:82: GetBlockAggregateSignature 0.0% +2025-07-23T19:36:54.8823309Z github.com/ava-labs/coreth/warp/service.go:95: aggregateSignatures 0.0% +2025-07-23T19:36:54.8823524Z github.com/ava-labs/coreth/warp/validators/state.go:31: NewState 100.0% +2025-07-23T19:36:54.8823766Z github.com/ava-labs/coreth/warp/validators/state.go:40: GetValidatorSet 100.0% +2025-07-23T19:36:54.8823984Z github.com/ava-labs/coreth/warp/verifier_backend.go:23: Verify 76.9% +2025-07-23T19:36:54.8824232Z github.com/ava-labs/coreth/warp/verifier_backend.go:58: verifyBlockMessage 100.0% +2025-07-23T19:36:54.8824465Z github.com/ava-labs/coreth/warp/verifier_stats.go:14: newVerifierStats 100.0% +2025-07-23T19:36:54.8824717Z github.com/ava-labs/coreth/warp/verifier_stats.go:21: IncBlockValidationFail 100.0% +2025-07-23T19:36:54.8825061Z github.com/ava-labs/coreth/warp/verifier_stats.go:25: IncMessageParseFail 100.0% +2025-07-23T19:36:54.8825322Z github.com/ava-labs/coreth/warp/warptest/block_client.go:23: GetAcceptedBlock 100.0% +2025-07-23T19:36:54.8825573Z github.com/ava-labs/coreth/warp/warptest/block_client.go:30: MakeBlockClient 100.0% +2025-07-23T19:36:54.8825682Z total: (statements) 60.0% diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/1_Set up job.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/1_Set up job.txt new file mode 100644 index 0000000000..4b66c4178a --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/1_Set up job.txt @@ -0,0 +1,50 @@ +2025-07-23T19:28:54.8331155Z Current runner version: '2.326.0' +2025-07-23T19:28:54.8354631Z ##[group]Runner Image Provisioner +2025-07-23T19:28:54.8355649Z Hosted Compute Agent +2025-07-23T19:28:54.8356169Z Version: 20250711.363 +2025-07-23T19:28:54.8356861Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c +2025-07-23T19:28:54.8357539Z Build Date: 2025-07-11T20:04:25Z +2025-07-23T19:28:54.8358077Z ##[endgroup] +2025-07-23T19:28:54.8358661Z ##[group]Operating System +2025-07-23T19:28:54.8359187Z Ubuntu +2025-07-23T19:28:54.8359677Z 22.04.5 +2025-07-23T19:28:54.8360122Z LTS +2025-07-23T19:28:54.8360587Z ##[endgroup] +2025-07-23T19:28:54.8361025Z ##[group]Runner Image +2025-07-23T19:28:54.8361584Z Image: ubuntu-22.04 +2025-07-23T19:28:54.8362092Z Version: 20250720.1.0 +2025-07-23T19:28:54.8363052Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20250720.1/images/ubuntu/Ubuntu2204-Readme.md +2025-07-23T19:28:54.8364412Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20250720.1 +2025-07-23T19:28:54.8365873Z ##[endgroup] +2025-07-23T19:28:54.8368342Z ##[group]GITHUB_TOKEN Permissions +2025-07-23T19:28:54.8370235Z Actions: write +2025-07-23T19:28:54.8370728Z Attestations: write +2025-07-23T19:28:54.8371345Z Checks: write +2025-07-23T19:28:54.8371844Z Contents: write +2025-07-23T19:28:54.8372370Z Deployments: write +2025-07-23T19:28:54.8372996Z Discussions: write +2025-07-23T19:28:54.8373509Z Issues: write +2025-07-23T19:28:54.8373979Z Metadata: read +2025-07-23T19:28:54.8374481Z Models: read +2025-07-23T19:28:54.8375212Z Packages: write +2025-07-23T19:28:54.8375677Z Pages: write +2025-07-23T19:28:54.8376220Z PullRequests: write +2025-07-23T19:28:54.8376719Z RepositoryProjects: write +2025-07-23T19:28:54.8377263Z SecurityEvents: write +2025-07-23T19:28:54.8377910Z Statuses: write +2025-07-23T19:28:54.8378386Z ##[endgroup] +2025-07-23T19:28:54.8380295Z Secret source: Actions +2025-07-23T19:28:54.8381024Z Prepare workflow directory +2025-07-23T19:28:54.8701204Z Prepare all required actions +2025-07-23T19:28:54.8737892Z Getting action download info +2025-07-23T19:28:55.3676122Z ##[group]Download immutable action package 'actions/checkout@v4' +2025-07-23T19:28:55.3677193Z Version: 4.2.2 +2025-07-23T19:28:55.3678213Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 +2025-07-23T19:28:55.3679349Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 +2025-07-23T19:28:55.3680078Z ##[endgroup] +2025-07-23T19:28:55.4736579Z ##[group]Download immutable action package 'actions/setup-go@v5' +2025-07-23T19:28:55.4737344Z Version: 5.5.0 +2025-07-23T19:28:55.4738182Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb +2025-07-23T19:28:55.4739081Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 +2025-07-23T19:28:55.4739731Z ##[endgroup] +2025-07-23T19:28:55.8319341Z Complete job name: Golang Unit Tests (ubuntu-22.04) diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/21_Post Run actions_setup-go@v5.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/21_Post Run actions_setup-go@v5.txt new file mode 100644 index 0000000000..5949a8ebb3 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/21_Post Run actions_setup-go@v5.txt @@ -0,0 +1,6 @@ +2025-07-23T19:36:54.8883071Z Post job cleanup. +2025-07-23T19:36:55.0547238Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:36:55.0585532Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:36:55.0609696Z /home/runner/go/pkg/mod +2025-07-23T19:36:55.0640421Z /home/runner/.cache/go-build +2025-07-23T19:36:55.0646843Z Cache hit occurred on the primary key setup-go-Linux-x64-ubuntu22-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d, not saving cache. diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/22_Post Run actions_checkout@v4.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/22_Post Run actions_checkout@v4.txt new file mode 100644 index 0000000000..c6cb13c4a3 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/22_Post Run actions_checkout@v4.txt @@ -0,0 +1,12 @@ +2025-07-23T19:36:55.0785996Z Post job cleanup. +2025-07-23T19:36:55.1769187Z [command]/usr/bin/git version +2025-07-23T19:36:55.1814113Z git version 2.50.1 +2025-07-23T19:36:55.1857222Z Temporarily overriding HOME='/home/runner/work/_temp/789b75b4-8f13-4019-92ec-fa3e46783192' before making global git config changes +2025-07-23T19:36:55.1857778Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:36:55.1862471Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:36:55.1897584Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:36:55.1930024Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:36:55.2163954Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:36:55.2186019Z http.https://github.com/.extraheader +2025-07-23T19:36:55.2198888Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +2025-07-23T19:36:55.2229939Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/23_Complete job.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/23_Complete job.txt new file mode 100644 index 0000000000..b88cdb9c5b --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/23_Complete job.txt @@ -0,0 +1 @@ +2025-07-23T19:36:55.2559521Z Cleaning up orphan processes diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/2_Run actions_checkout@v4.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/2_Run actions_checkout@v4.txt new file mode 100644 index 0000000000..52ba887e14 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/2_Run actions_checkout@v4.txt @@ -0,0 +1,85 @@ +2025-07-23T19:28:55.8918213Z ##[group]Run actions/checkout@v4 +2025-07-23T19:28:55.8919206Z with: +2025-07-23T19:28:55.8919678Z repository: ava-labs/coreth +2025-07-23T19:28:55.8920310Z token: *** +2025-07-23T19:28:55.8920728Z ssh-strict: true +2025-07-23T19:28:55.8921108Z ssh-user: git +2025-07-23T19:28:55.8921490Z persist-credentials: true +2025-07-23T19:28:55.8921920Z clean: true +2025-07-23T19:28:55.8922297Z sparse-checkout-cone-mode: true +2025-07-23T19:28:55.8922762Z fetch-depth: 1 +2025-07-23T19:28:55.8923120Z fetch-tags: false +2025-07-23T19:28:55.8923498Z show-progress: true +2025-07-23T19:28:55.8923881Z lfs: false +2025-07-23T19:28:55.8924228Z submodules: false +2025-07-23T19:28:55.8924611Z set-safe-directory: true +2025-07-23T19:28:55.8925666Z ##[endgroup] +2025-07-23T19:28:55.9980501Z Syncing repository: ava-labs/coreth +2025-07-23T19:28:55.9982284Z ##[group]Getting Git version info +2025-07-23T19:28:55.9982939Z Working directory is '/home/runner/work/coreth/coreth' +2025-07-23T19:28:55.9983892Z [command]/usr/bin/git version +2025-07-23T19:28:56.0054667Z git version 2.50.1 +2025-07-23T19:28:56.0080235Z ##[endgroup] +2025-07-23T19:28:56.0093245Z Temporarily overriding HOME='/home/runner/work/_temp/54a04151-546b-430a-9f32-6573bafa504e' before making global git config changes +2025-07-23T19:28:56.0095209Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:28:56.0098180Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:28:56.0132490Z Deleting the contents of '/home/runner/work/coreth/coreth' +2025-07-23T19:28:56.0136183Z ##[group]Initializing the repository +2025-07-23T19:28:56.0139694Z [command]/usr/bin/git init /home/runner/work/coreth/coreth +2025-07-23T19:28:56.0228760Z hint: Using 'master' as the name for the initial branch. This default branch name +2025-07-23T19:28:56.0230229Z hint: is subject to change. To configure the initial branch name to use in all +2025-07-23T19:28:56.0231108Z hint: of your new repositories, which will suppress this warning, call: +2025-07-23T19:28:56.0231956Z hint: +2025-07-23T19:28:56.0232750Z hint: git config --global init.defaultBranch +2025-07-23T19:28:56.0233548Z hint: +2025-07-23T19:28:56.0234460Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2025-07-23T19:28:56.0236265Z hint: 'development'. The just-created branch can be renamed via this command: +2025-07-23T19:28:56.0237538Z hint: +2025-07-23T19:28:56.0238213Z hint: git branch -m +2025-07-23T19:28:56.0238991Z hint: +2025-07-23T19:28:56.0240046Z hint: Disable this message with "git config set advice.defaultBranchName false" +2025-07-23T19:28:56.0241721Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ +2025-07-23T19:28:56.0246797Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth +2025-07-23T19:28:56.0279531Z ##[endgroup] +2025-07-23T19:28:56.0280724Z ##[group]Disabling automatic garbage collection +2025-07-23T19:28:56.0284177Z [command]/usr/bin/git config --local gc.auto 0 +2025-07-23T19:28:56.0312178Z ##[endgroup] +2025-07-23T19:28:56.0313364Z ##[group]Setting up auth +2025-07-23T19:28:56.0319681Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:28:56.0349849Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:28:56.0661255Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:28:56.0691149Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:28:56.0913192Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2025-07-23T19:28:56.0948786Z ##[endgroup] +2025-07-23T19:28:56.0949997Z ##[group]Fetching the repository +2025-07-23T19:28:56.0958965Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge +2025-07-23T19:28:56.8801085Z From https://github.com/ava-labs/coreth +2025-07-23T19:28:56.8803219Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge +2025-07-23T19:28:56.8829075Z ##[endgroup] +2025-07-23T19:28:56.8830216Z ##[group]Determining the checkout info +2025-07-23T19:28:56.8831631Z ##[endgroup] +2025-07-23T19:28:56.8836006Z [command]/usr/bin/git sparse-checkout disable +2025-07-23T19:28:56.8875064Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig +2025-07-23T19:28:56.8901710Z ##[group]Checking out the ref +2025-07-23T19:28:56.8905205Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge +2025-07-23T19:28:57.0018354Z Note: switching to 'refs/remotes/pull/1065/merge'. +2025-07-23T19:28:57.0019388Z +2025-07-23T19:28:57.0020160Z You are in 'detached HEAD' state. You can look around, make experimental +2025-07-23T19:28:57.0021809Z changes and commit them, and you can discard any commits you make in this +2025-07-23T19:28:57.0024373Z state without impacting any branches by switching back to a branch. +2025-07-23T19:28:57.0026243Z +2025-07-23T19:28:57.0027268Z If you want to create a new branch to retain commits you create, you may +2025-07-23T19:28:57.0029606Z do so (now or later) by using -c with the switch command. Example: +2025-07-23T19:28:57.0031062Z +2025-07-23T19:28:57.0031586Z git switch -c +2025-07-23T19:28:57.0032526Z +2025-07-23T19:28:57.0033034Z Or undo this operation with: +2025-07-23T19:28:57.0034000Z +2025-07-23T19:28:57.0034474Z git switch - +2025-07-23T19:28:57.0035385Z +2025-07-23T19:28:57.0036615Z Turn off this advice by setting config variable advice.detachedHead to false +2025-07-23T19:28:57.0038440Z +2025-07-23T19:28:57.0040636Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 +2025-07-23T19:28:57.0045702Z ##[endgroup] +2025-07-23T19:28:57.0069976Z [command]/usr/bin/git log -1 --format=%H +2025-07-23T19:28:57.0091987Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/4_Run actions_setup-go@v5.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/4_Run actions_setup-go@v5.txt new file mode 100644 index 0000000000..596a1273ff --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/4_Run actions_setup-go@v5.txt @@ -0,0 +1,83 @@ +2025-07-23T19:28:57.0393742Z ##[group]Run actions/setup-go@v5 +2025-07-23T19:28:57.0394930Z with: +2025-07-23T19:28:57.0395668Z go-version-file: go.mod +2025-07-23T19:28:57.0396567Z check-latest: false +2025-07-23T19:28:57.0397672Z token: *** +2025-07-23T19:28:57.0398392Z cache: true +2025-07-23T19:28:57.0399123Z ##[endgroup] +2025-07-23T19:28:57.2021244Z Setup go version spec 1.23.9 +2025-07-23T19:28:57.2034116Z Attempting to download 1.23.9... +2025-07-23T19:28:57.7649896Z matching 1.23.9... +2025-07-23T19:28:57.7691053Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz +2025-07-23T19:28:58.3892139Z Extracting Go... +2025-07-23T19:28:58.3994595Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/60b1434f-42a1-47fc-a10a-f4667a45a644 -f /home/runner/work/_temp/3e9464b8-4da0-4c4c-b6d4-38c95d686176 +2025-07-23T19:29:00.0426449Z Successfully extracted go to /home/runner/work/_temp/60b1434f-42a1-47fc-a10a-f4667a45a644 +2025-07-23T19:29:00.0427404Z Adding to the cache ... +2025-07-23T19:29:04.2892184Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 +2025-07-23T19:29:04.2893802Z Added go to the path +2025-07-23T19:29:04.2897043Z Successfully set up Go version 1.23.9 +2025-07-23T19:29:04.3080997Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:29:04.3107933Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:29:04.3135191Z /home/runner/go/pkg/mod +2025-07-23T19:29:04.3149640Z /home/runner/.cache/go-build +2025-07-23T19:29:04.5572294Z Cache hit for: setup-go-Linux-x64-ubuntu22-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:05.8480201Z Received 4194304 of 675091954 (0.6%), 4.0 MBs/sec +2025-07-23T19:29:06.8539194Z Received 130023424 of 675091954 (19.3%), 62.0 MBs/sec +2025-07-23T19:29:07.8497701Z Received 230686720 of 675091954 (34.2%), 73.3 MBs/sec +2025-07-23T19:29:08.8502999Z Received 331350016 of 675091954 (49.1%), 78.9 MBs/sec +2025-07-23T19:29:09.8555985Z Received 436207616 of 675091954 (64.6%), 83.2 MBs/sec +2025-07-23T19:29:10.8506472Z Received 536870912 of 675091954 (79.5%), 85.3 MBs/sec +2025-07-23T19:29:11.8510890Z Received 658505728 of 675091954 (97.5%), 89.7 MBs/sec +2025-07-23T19:29:12.4961572Z Received 675091954 of 675091954 (100.0%), 84.2 MBs/sec +2025-07-23T19:29:12.4962472Z Cache Size: ~644 MB (675091954 B) +2025-07-23T19:29:12.4997622Z [command]/usr/bin/tar -xf /home/runner/work/_temp/0e3892d4-ee3f-4459-97c3-5d56fc181423/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd +2025-07-23T19:29:18.2710189Z Cache restored successfully +2025-07-23T19:29:18.5678797Z Cache restored from key: setup-go-Linux-x64-ubuntu22-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:18.5704445Z go version go1.23.9 linux/amd64 +2025-07-23T19:29:18.5704668Z +2025-07-23T19:29:18.5705503Z ##[group]go env +2025-07-23T19:29:18.6225840Z GO111MODULE='' +2025-07-23T19:29:18.6226317Z GOARCH='amd64' +2025-07-23T19:29:18.6226756Z GOBIN='' +2025-07-23T19:29:18.6227086Z GOCACHE='/home/runner/.cache/go-build' +2025-07-23T19:29:18.6227663Z GOENV='/home/runner/.config/go/env' +2025-07-23T19:29:18.6228058Z GOEXE='' +2025-07-23T19:29:18.6228333Z GOEXPERIMENT='' +2025-07-23T19:29:18.6228652Z GOFLAGS='' +2025-07-23T19:29:18.6228947Z GOHOSTARCH='amd64' +2025-07-23T19:29:18.6229148Z GOHOSTOS='linux' +2025-07-23T19:29:18.6229339Z GOINSECURE='' +2025-07-23T19:29:18.6229550Z GOMODCACHE='/home/runner/go/pkg/mod' +2025-07-23T19:29:18.6229801Z GONOPROXY='' +2025-07-23T19:29:18.6229973Z GONOSUMDB='' +2025-07-23T19:29:18.6230145Z GOOS='linux' +2025-07-23T19:29:18.6230327Z GOPATH='/home/runner/go' +2025-07-23T19:29:18.6230537Z GOPRIVATE='' +2025-07-23T19:29:18.6230793Z GOPROXY='https://proxy.golang.org,direct' +2025-07-23T19:29:18.6231130Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' +2025-07-23T19:29:18.6231397Z GOSUMDB='sum.golang.org' +2025-07-23T19:29:18.6231629Z GOTMPDIR='' +2025-07-23T19:29:18.6231806Z GOTOOLCHAIN='auto' +2025-07-23T19:29:18.6232428Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' +2025-07-23T19:29:18.6232761Z GOVCS='' +2025-07-23T19:29:18.6232940Z GOVERSION='go1.23.9' +2025-07-23T19:29:18.6233129Z GODEBUG='' +2025-07-23T19:29:18.6233303Z GOTELEMETRY='local' +2025-07-23T19:29:18.6233561Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' +2025-07-23T19:29:18.6233837Z GCCGO='gccgo' +2025-07-23T19:29:18.6234013Z GOAMD64='v1' +2025-07-23T19:29:18.6234178Z AR='ar' +2025-07-23T19:29:18.6234343Z CC='gcc' +2025-07-23T19:29:18.6234499Z CXX='g++' +2025-07-23T19:29:18.6234658Z CGO_ENABLED='1' +2025-07-23T19:29:18.6235119Z GOMOD='/home/runner/work/coreth/coreth/go.mod' +2025-07-23T19:29:18.6235378Z GOWORK='' +2025-07-23T19:29:18.6235548Z CGO_CFLAGS='-O2 -g' +2025-07-23T19:29:18.6235736Z CGO_CPPFLAGS='' +2025-07-23T19:29:18.6235922Z CGO_CXXFLAGS='-O2 -g' +2025-07-23T19:29:18.6236112Z CGO_FFLAGS='-O2 -g' +2025-07-23T19:29:18.6236306Z CGO_LDFLAGS='-O2 -g' +2025-07-23T19:29:18.6236510Z PKG_CONFIG='pkg-config' +2025-07-23T19:29:18.6237168Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build2693634516=/tmp/go-build -gno-record-gcc-switches' +2025-07-23T19:29:18.6237694Z +2025-07-23T19:29:18.6237998Z ##[endgroup] diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/6_Run go mod download.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/6_Run go mod download.txt new file mode 100644 index 0000000000..841d68fbc4 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/6_Run go mod download.txt @@ -0,0 +1,4 @@ +2025-07-23T19:29:18.6422919Z ##[group]Run go mod download +2025-07-23T19:29:18.6423284Z go mod download +2025-07-23T19:29:18.6461440Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:18.6461715Z ##[endgroup] diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/7_Check generated codec files are up to date.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/7_Check generated codec files are up to date.txt new file mode 100644 index 0000000000..e83776e0b1 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/7_Check generated codec files are up to date.txt @@ -0,0 +1,10 @@ +2025-07-23T19:29:18.7029691Z ##[group]Run ./scripts/run_task.sh check-generate-codec +2025-07-23T19:29:18.7030157Z ./scripts/run_task.sh check-generate-codec +2025-07-23T19:29:18.7063515Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:18.7063769Z ##[endgroup] +2025-07-23T19:29:19.2466785Z task: [generate-codec] grep -lr -E '^// Code generated by github\.com\/fjl\/gencodec\. DO NOT EDIT\.$' . | xargs -r rm +2025-07-23T19:29:19.2629465Z task: [generate-codec] go generate -run "github.com/fjl/gencodec" ./... +2025-07-23T19:29:27.5745114Z task: [check-clean-branch] git add --all +2025-07-23T19:29:27.5813004Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null +2025-07-23T19:29:27.5853241Z task: [check-clean-branch] git status --short +2025-07-23T19:29:27.5920019Z task: [check-clean-branch] git diff-index --quiet HEAD diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/8_Check generated mocks are up to date.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/8_Check generated mocks are up to date.txt new file mode 100644 index 0000000000..2d8cb01bea --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/8_Check generated mocks are up to date.txt @@ -0,0 +1,10 @@ +2025-07-23T19:29:27.6041180Z ##[group]Run ./scripts/run_task.sh check-generate-mocks +2025-07-23T19:29:27.6041594Z ./scripts/run_task.sh check-generate-mocks +2025-07-23T19:29:27.6075414Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:27.6075656Z ##[endgroup] +2025-07-23T19:29:27.9946551Z task: [generate-mocks] grep -lr -E '^// Code generated by MockGen\. DO NOT EDIT\.$' . | xargs -r rm +2025-07-23T19:29:28.0095299Z task: [generate-mocks] go generate -run "go.uber.org/mock/mockgen" ./... +2025-07-23T19:29:35.7047562Z task: [check-clean-branch] git add --all +2025-07-23T19:29:35.7114202Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null +2025-07-23T19:29:35.7162752Z task: [check-clean-branch] git status --short +2025-07-23T19:29:35.7230147Z task: [check-clean-branch] git diff-index --quiet HEAD diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/9_Run ._scripts_run_task.sh build.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/9_Run ._scripts_run_task.sh build.txt new file mode 100644 index 0000000000..1d0ab896ee --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/9_Run ._scripts_run_task.sh build.txt @@ -0,0 +1,7 @@ +2025-07-23T19:29:35.7358668Z ##[group]Run ./scripts/run_task.sh build +2025-07-23T19:29:35.7359002Z ./scripts/run_task.sh build +2025-07-23T19:29:35.7392110Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:35.7392352Z ##[endgroup] +2025-07-23T19:29:36.1297226Z task: [build] ./scripts/build.sh +2025-07-23T19:29:36.1494602Z Using branch: d85ec03 +2025-07-23T19:29:36.1512124Z Building Coreth @ GitCommit: d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 at /home/runner/.avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/10_Run ._scripts_run_task.sh build-test.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/10_Run ._scripts_run_task.sh build-test.txt new file mode 100644 index 0000000000..ae5e980191 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/10_Run ._scripts_run_task.sh build-test.txt @@ -0,0 +1,13 @@ +2025-07-23T19:29:58.0660319Z ##[group]Run ./scripts/run_task.sh build-test +2025-07-23T19:29:58.0660670Z ./scripts/run_task.sh build-test +2025-07-23T19:29:58.0687865Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:58.0688312Z env: +2025-07-23T19:29:58.0688533Z TIMEOUT: +2025-07-23T19:29:58.0688701Z ##[endgroup] +2025-07-23T19:29:58.4778584Z task: [build-test] ./scripts/build_test.sh +2025-07-23T19:29:58.4899311Z Using branch: d85ec03 +2025-07-23T19:29:58.8779040Z Test run 1 of 4 +2025-07-23T19:29:58.8779454Z Getting expected test list... +2025-07-23T19:30:07.3925218Z Expected tests: 1 tests +2025-07-23T19:30:07.3925737Z Running tests... +2025-07-23T19:39:13.6360009Z All tests passed! diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/11_Run ._scripts_run_task.sh coverage.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/11_Run ._scripts_run_task.sh coverage.txt new file mode 100644 index 0000000000..87aa922283 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/11_Run ._scripts_run_task.sh coverage.txt @@ -0,0 +1,2929 @@ +2025-07-23T19:39:13.6480543Z ##[group]Run ./scripts/run_task.sh coverage +2025-07-23T19:39:13.6480879Z ./scripts/run_task.sh coverage +2025-07-23T19:39:13.6530833Z shell: /usr/bin/bash -e {0} +2025-07-23T19:39:13.6531063Z ##[endgroup] +2025-07-23T19:39:14.4956621Z task: [coverage] ./scripts/coverage.sh +2025-07-23T19:39:14.9509355Z Current test coverage : 0.0 +2025-07-23T19:39:14.9510013Z 60.0 % +2025-07-23T19:39:14.9510743Z ======================================== +2025-07-23T19:39:15.3914544Z github.com/ava-labs/coreth/accounts/abi/abi.go:59: JSON 100.0% +2025-07-23T19:39:15.3915388Z github.com/ava-labs/coreth/accounts/abi/abi.go:74: Pack 91.7% +2025-07-23T19:39:15.3916218Z github.com/ava-labs/coreth/accounts/abi/abi.go:103: PackEvent 81.8% +2025-07-23T19:39:15.3917071Z github.com/ava-labs/coreth/accounts/abi/abi.go:147: PackOutput 71.4% +2025-07-23T19:39:15.3917974Z github.com/ava-labs/coreth/accounts/abi/abi.go:162: getInputs 80.0% +2025-07-23T19:39:15.3918859Z github.com/ava-labs/coreth/accounts/abi/abi.go:182: getArguments 90.0% +2025-07-23T19:39:15.3919431Z github.com/ava-labs/coreth/accounts/abi/abi.go:205: UnpackInput 0.0% +2025-07-23T19:39:15.3920140Z github.com/ava-labs/coreth/accounts/abi/abi.go:214: Unpack 75.0% +2025-07-23T19:39:15.3921099Z github.com/ava-labs/coreth/accounts/abi/abi.go:228: UnpackInputIntoInterface 85.7% +2025-07-23T19:39:15.3922194Z github.com/ava-labs/coreth/accounts/abi/abi.go:243: UnpackIntoInterface 85.7% +2025-07-23T19:39:15.3923159Z github.com/ava-labs/coreth/accounts/abi/abi.go:256: UnpackIntoMap 100.0% +2025-07-23T19:39:15.3924114Z github.com/ava-labs/coreth/accounts/abi/abi.go:265: UnmarshalJSON 85.7% +2025-07-23T19:39:15.3925007Z github.com/ava-labs/coreth/accounts/abi/abi.go:330: MethodById 100.0% +2025-07-23T19:39:15.3925878Z github.com/ava-labs/coreth/accounts/abi/abi.go:344: EventByID 100.0% +2025-07-23T19:39:15.3926733Z github.com/ava-labs/coreth/accounts/abi/abi.go:355: ErrorByID 100.0% +2025-07-23T19:39:15.3927596Z github.com/ava-labs/coreth/accounts/abi/abi.go:365: HasFallback 100.0% +2025-07-23T19:39:15.3928626Z github.com/ava-labs/coreth/accounts/abi/abi.go:370: HasReceive 100.0% +2025-07-23T19:39:15.3929473Z github.com/ava-labs/coreth/accounts/abi/abi.go:402: UnpackRevert 81.8% +2025-07-23T19:39:15.3930953Z github.com/ava-labs/coreth/accounts/abi/argument.go:57: UnmarshalJSON 90.0% +2025-07-23T19:39:15.3931896Z github.com/ava-labs/coreth/accounts/abi/argument.go:75: NonIndexed 100.0% +2025-07-23T19:39:15.3932753Z github.com/ava-labs/coreth/accounts/abi/argument.go:86: isTuple 100.0% +2025-07-23T19:39:15.3933573Z github.com/ava-labs/coreth/accounts/abi/argument.go:91: Unpack 100.0% +2025-07-23T19:39:15.3934452Z github.com/ava-labs/coreth/accounts/abi/argument.go:102: UnpackIntoMap 58.3% +2025-07-23T19:39:15.3935348Z github.com/ava-labs/coreth/accounts/abi/argument.go:124: Copy 77.8% +2025-07-23T19:39:15.3936633Z github.com/ava-labs/coreth/accounts/abi/argument.go:142: copyAtomic 100.0% +2025-07-23T19:39:15.3937501Z github.com/ava-labs/coreth/accounts/abi/argument.go:153: copyTuple 95.7% +2025-07-23T19:39:15.3938594Z github.com/ava-labs/coreth/accounts/abi/argument.go:195: UnpackValues 100.0% +2025-07-23T19:39:15.3939521Z github.com/ava-labs/coreth/accounts/abi/argument.go:228: PackValues 0.0% +2025-07-23T19:39:15.3940333Z github.com/ava-labs/coreth/accounts/abi/argument.go:233: Pack 100.0% +2025-07-23T19:39:15.3941239Z github.com/ava-labs/coreth/accounts/abi/argument.go:276: ToCamelCase 100.0% +2025-07-23T19:39:15.3942096Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:56: NewTransactor 0.0% +2025-07-23T19:39:15.3943056Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:73: NewKeyStoreTransactor 0.0% +2025-07-23T19:39:15.3944118Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:96: NewKeyedTransactor 0.0% +2025-07-23T19:39:15.3945153Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:118: NewTransactorWithChainID 0.0% +2025-07-23T19:39:15.3946755Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:132: NewKeyStoreTransactorWithChainID 0.0% +2025-07-23T19:39:15.3947980Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:155: NewKeyedTransactorWithChainID 72.7% +2025-07-23T19:39:15.3949244Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:179: NewClefTransactor 0.0% +2025-07-23T19:39:15.3950321Z github.com/ava-labs/coreth/accounts/abi/bind/backends/simulated.go:67: Fork 0.0% +2025-07-23T19:39:15.3951401Z github.com/ava-labs/coreth/accounts/abi/bind/backends/simulated.go:78: NewSimulatedBackend 0.0% +2025-07-23T19:39:15.3951993Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:128: GetAbi 0.0% +2025-07-23T19:39:15.3952521Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:155: NewBoundContract 100.0% +2025-07-23T19:39:15.3953079Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:167: DeployContract 77.8% +2025-07-23T19:39:15.3953597Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:187: Call 100.0% +2025-07-23T19:39:15.3954090Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:265: Transact 75.0% +2025-07-23T19:39:15.3954595Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:278: RawTransact 0.0% +2025-07-23T19:39:15.3955109Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:286: Transfer 0.0% +2025-07-23T19:39:15.3955647Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:294: wrapNativeAssetCall 83.3% +2025-07-23T19:39:15.3956212Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:324: createDynamicTx 84.0% +2025-07-23T19:39:15.3956770Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:376: createLegacyTx 81.8% +2025-07-23T19:39:15.3957309Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:419: estimateGasLimit 71.4% +2025-07-23T19:39:15.3957840Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:440: getNonce 75.0% +2025-07-23T19:39:15.3958688Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:451: transact 66.7% +2025-07-23T19:39:15.3959611Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:502: FilterLogs 0.0% +2025-07-23T19:39:15.3960513Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:551: WatchLogs 0.0% +2025-07-23T19:39:15.3961383Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:581: UnpackLog 0.0% +2025-07-23T19:39:15.3962301Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:604: UnpackLogIntoMap 83.3% +2025-07-23T19:39:15.3963018Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:628: ensureContext 100.0% +2025-07-23T19:39:15.3963541Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:54: isKeyWord 100.0% +2025-07-23T19:39:15.3964024Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:95: Bind 92.2% +2025-07-23T19:39:15.3964541Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:323: bindBasicTypeGo 100.0% +2025-07-23T19:39:15.3965263Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:349: bindTypeGo 100.0% +2025-07-23T19:39:15.3966162Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:370: bindTopicTypeGo 100.0% +2025-07-23T19:39:15.3967443Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:394: bindStructTypeGo 100.0% +2025-07-23T19:39:15.3968021Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:445: alias 100.0% +2025-07-23T19:39:15.3968930Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:462: decapitalise 75.0% +2025-07-23T19:39:15.3969543Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:473: structured 100.0% +2025-07-23T19:39:15.3970081Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:496: hasStruct 100.0% +2025-07-23T19:39:15.3970586Z github.com/ava-labs/coreth/accounts/abi/bind/util.go:43: WaitMined 91.7% +2025-07-23T19:39:15.3971090Z github.com/ava-labs/coreth/accounts/abi/bind/util.go:71: WaitDeployed 90.9% +2025-07-23T19:39:15.3971590Z github.com/ava-labs/coreth/accounts/abi/error.go:54: NewError 92.9% +2025-07-23T19:39:15.3972232Z github.com/ava-labs/coreth/accounts/abi/error.go:91: String 100.0% +2025-07-23T19:39:15.3972693Z github.com/ava-labs/coreth/accounts/abi/error.go:95: Unpack 0.0% +2025-07-23T19:39:15.3973219Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:50: formatSliceString 66.7% +2025-07-23T19:39:15.3973799Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:59: sliceTypeCheck 90.0% +2025-07-23T19:39:15.3974344Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:82: typeCheck 100.0% +2025-07-23T19:39:15.3974874Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:98: typeErr 100.0% +2025-07-23T19:39:15.3975374Z github.com/ava-labs/coreth/accounts/abi/event.go:73: NewEvent 100.0% +2025-07-23T19:39:15.3975844Z github.com/ava-labs/coreth/accounts/abi/event.go:112: String 100.0% +2025-07-23T19:39:15.3976330Z github.com/ava-labs/coreth/accounts/abi/method.go:105: NewMethod 100.0% +2025-07-23T19:39:15.3976957Z github.com/ava-labs/coreth/accounts/abi/method.go:164: String 100.0% +2025-07-23T19:39:15.3977487Z github.com/ava-labs/coreth/accounts/abi/method.go:169: IsConstant 0.0% +2025-07-23T19:39:15.3978053Z github.com/ava-labs/coreth/accounts/abi/method.go:175: IsPayable 0.0% +2025-07-23T19:39:15.3978796Z github.com/ava-labs/coreth/accounts/abi/pack.go:42: packBytesSlice 100.0% +2025-07-23T19:39:15.3979404Z github.com/ava-labs/coreth/accounts/abi/pack.go:49: packElement 83.3% +2025-07-23T19:39:15.3979967Z github.com/ava-labs/coreth/accounts/abi/pack.go:85: packNum 80.0% +2025-07-23T19:39:15.3980478Z github.com/ava-labs/coreth/accounts/abi/reflect.go:52: ConvertType 83.3% +2025-07-23T19:39:15.3981073Z github.com/ava-labs/coreth/accounts/abi/reflect.go:66: indirect 100.0% +2025-07-23T19:39:15.3981690Z github.com/ava-labs/coreth/accounts/abi/reflect.go:75: reflectIntType 100.0% +2025-07-23T19:39:15.3982294Z github.com/ava-labs/coreth/accounts/abi/reflect.go:103: mustArrayToByteSlice 100.0% +2025-07-23T19:39:15.3982880Z github.com/ava-labs/coreth/accounts/abi/reflect.go:113: set 100.0% +2025-07-23T19:39:15.3983448Z github.com/ava-labs/coreth/accounts/abi/reflect.go:137: setSlice 75.0% +2025-07-23T19:39:15.3984018Z github.com/ava-labs/coreth/accounts/abi/reflect.go:151: setArray 84.6% +2025-07-23T19:39:15.3984502Z github.com/ava-labs/coreth/accounts/abi/reflect.go:172: setStruct 75.0% +2025-07-23T19:39:15.3985153Z github.com/ava-labs/coreth/accounts/abi/reflect.go:195: mapArgNamesToStructFields 100.0% +2025-07-23T19:39:15.3985793Z github.com/ava-labs/coreth/accounts/abi/topics.go:45: packTopic 96.4% +2025-07-23T19:39:15.3986330Z github.com/ava-labs/coreth/accounts/abi/topics.go:111: PackTopics 85.7% +2025-07-23T19:39:15.3986866Z github.com/ava-labs/coreth/accounts/abi/topics.go:125: MakeTopics 87.5% +2025-07-23T19:39:15.3987631Z github.com/ava-labs/coreth/accounts/abi/topics.go:139: genIntType 100.0% +2025-07-23T19:39:15.3988466Z github.com/ava-labs/coreth/accounts/abi/topics.go:153: ParseTopics 100.0% +2025-07-23T19:39:15.3989114Z github.com/ava-labs/coreth/accounts/abi/topics.go:162: ParseTopicsIntoMap 100.0% +2025-07-23T19:39:15.3989788Z github.com/ava-labs/coreth/accounts/abi/topics.go:174: parseTopicWithSetter 95.0% +2025-07-23T19:39:15.3990335Z github.com/ava-labs/coreth/accounts/abi/type.go:81: NewType 93.1% +2025-07-23T19:39:15.3990876Z github.com/ava-labs/coreth/accounts/abi/type.go:239: GetType 80.0% +2025-07-23T19:39:15.3991429Z github.com/ava-labs/coreth/accounts/abi/type.go:275: String 100.0% +2025-07-23T19:39:15.3991892Z github.com/ava-labs/coreth/accounts/abi/type.go:279: pack 90.9% +2025-07-23T19:39:15.3992498Z github.com/ava-labs/coreth/accounts/abi/type.go:362: requiresLengthPrefix 100.0% +2025-07-23T19:39:15.3993149Z github.com/ava-labs/coreth/accounts/abi/type.go:373: isDynamicType 100.0% +2025-07-23T19:39:15.3993907Z github.com/ava-labs/coreth/accounts/abi/type.go:393: getTypeSize 100.0% +2025-07-23T19:39:15.3994444Z github.com/ava-labs/coreth/accounts/abi/type.go:412: isLetter 100.0% +2025-07-23T19:39:15.3995003Z github.com/ava-labs/coreth/accounts/abi/type.go:423: isValidFieldName 66.7% +2025-07-23T19:39:15.3995611Z github.com/ava-labs/coreth/accounts/abi/unpack.go:49: ReadInteger 100.0% +2025-07-23T19:39:15.3996205Z github.com/ava-labs/coreth/accounts/abi/unpack.go:119: readBool 100.0% +2025-07-23T19:39:15.3996721Z github.com/ava-labs/coreth/accounts/abi/unpack.go:138: readFunctionType 66.7% +2025-07-23T19:39:15.3997356Z github.com/ava-labs/coreth/accounts/abi/unpack.go:151: ReadFixedBytes 80.0% +2025-07-23T19:39:15.3997963Z github.com/ava-labs/coreth/accounts/abi/unpack.go:163: forEachUnpack 81.2% +2025-07-23T19:39:15.3998764Z github.com/ava-labs/coreth/accounts/abi/unpack.go:203: forTupleUnpack 83.3% +2025-07-23T19:39:15.3999372Z github.com/ava-labs/coreth/accounts/abi/unpack.go:235: toGoType 83.9% +2025-07-23T19:39:15.4000016Z github.com/ava-labs/coreth/accounts/abi/unpack.go:299: lengthPrefixPointsTo 94.1% +2025-07-23T19:39:15.4000570Z github.com/ava-labs/coreth/accounts/abi/unpack.go:329: tuplePointsTo 71.4% +2025-07-23T19:39:15.4001216Z github.com/ava-labs/coreth/accounts/abi/utils.go:43: ResolveNameConflict 100.0% +2025-07-23T19:39:15.4001819Z github.com/ava-labs/coreth/cmd/abigen/main.go:90: init 100.0% +2025-07-23T19:39:15.4002295Z github.com/ava-labs/coreth/cmd/abigen/main.go:106: abigen 0.0% +2025-07-23T19:39:15.4002785Z github.com/ava-labs/coreth/cmd/abigen/main.go:245: main 0.0% +2025-07-23T19:39:15.4003371Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:24: newNameFilter 100.0% +2025-07-23T19:39:15.4004227Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:38: add 100.0% +2025-07-23T19:39:15.4005068Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:57: Matches 100.0% +2025-07-23T19:39:15.4006016Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:53: BuildConfig 0.0% +2025-07-23T19:39:15.4007000Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:86: BuildViper 0.0% +2025-07-23T19:39:15.4007986Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:109: BuildFlagSet 0.0% +2025-07-23T19:39:15.4009574Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:115: addSimulatorFlags 0.0% +2025-07-23T19:39:15.4010546Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:22: CreateKey 0.0% +2025-07-23T19:39:15.4011347Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:27: Load 0.0% +2025-07-23T19:39:15.4012149Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:36: LoadAll 0.0% +2025-07-23T19:39:15.4012939Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:73: Save 0.0% +2025-07-23T19:39:15.4013914Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:79: Generate 0.0% +2025-07-23T19:39:15.4014863Z github.com/ava-labs/coreth/cmd/simulator/load/funder.go:25: DistributeFunds 0.0% +2025-07-23T19:39:15.4015796Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:46: New 0.0% +2025-07-23T19:39:15.4016678Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:60: Execute 0.0% +2025-07-23T19:39:15.4017622Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:89: ConfirmReachedTip 0.0% +2025-07-23T19:39:15.4018692Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:125: ExecuteLoader 0.0% +2025-07-23T19:39:15.4019699Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:30: NewSingleAddressTxWorker 0.0% +2025-07-23T19:39:15.4020660Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:50: NewTxReceiptWorker 0.0% +2025-07-23T19:39:15.4021583Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:67: IssueTx 0.0% +2025-07-23T19:39:15.4022387Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:71: ConfirmTx 0.0% +2025-07-23T19:39:15.4023097Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:78: confirmTxByNonce 0.0% +2025-07-23T19:39:15.4023674Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:103: confirmTxByReceipt 0.0% +2025-07-23T19:39:15.4024244Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:120: LatestHeight 0.0% +2025-07-23T19:39:15.4024953Z github.com/ava-labs/coreth/cmd/simulator/main/main.go:19: main 0.0% +2025-07-23T19:39:15.4025927Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:29: NewDefaultMetrics 0.0% +2025-07-23T19:39:15.4026965Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:35: NewMetrics 0.0% +2025-07-23T19:39:15.4027940Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:68: Serve 0.0% +2025-07-23T19:39:15.4028984Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:106: Shutdown 0.0% +2025-07-23T19:39:15.4029543Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:111: Print 0.0% +2025-07-23T19:39:15.4030086Z github.com/ava-labs/coreth/cmd/simulator/txs/agent.go:51: NewIssueNAgent 0.0% +2025-07-23T19:39:15.4030601Z github.com/ava-labs/coreth/cmd/simulator/txs/agent.go:61: Execute 0.0% +2025-07-23T19:39:15.4031149Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:20: GenerateTxSequence 0.0% +2025-07-23T19:39:15.4031761Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:43: GenerateTxSequences 0.0% +2025-07-23T19:39:15.4032332Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:55: addTxs 0.0% +2025-07-23T19:39:15.4032934Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:76: ConvertTxSliceToSequence 0.0% +2025-07-23T19:39:15.4033518Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:88: Chan 0.0% +2025-07-23T19:39:15.4033994Z github.com/ava-labs/coreth/cmd/utils/cmd.go:33: Fatalf 0.0% +2025-07-23T19:39:15.4034461Z github.com/ava-labs/coreth/cmd/utils/flags.go:33: CheckExclusive 0.0% +2025-07-23T19:39:15.4034985Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:81: NewDummyEngine 0.0% +2025-07-23T19:39:15.4035525Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:95: NewETHFaker 0.0% +2025-07-23T19:39:15.4036051Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:102: NewFaker 100.0% +2025-07-23T19:39:15.4036607Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:108: NewFakerWithClock 0.0% +2025-07-23T19:39:15.4037206Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:115: NewFakerWithCallbacks 0.0% +2025-07-23T19:39:15.4037789Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:122: NewFakerWithMode 0.0% +2025-07-23T19:39:15.4038618Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:130: NewFakerWithModeAndClock 0.0% +2025-07-23T19:39:15.4039223Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:137: NewCoinbaseFaker 0.0% +2025-07-23T19:39:15.4039946Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:144: NewFullFaker 0.0% +2025-07-23T19:39:15.4040521Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:151: verifyHeaderGasFields 0.0% +2025-07-23T19:39:15.4041098Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:203: verifyHeader 0.0% +2025-07-23T19:39:15.4041623Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:263: Author 0.0% +2025-07-23T19:39:15.4042141Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:267: VerifyHeader 0.0% +2025-07-23T19:39:15.4042671Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:285: VerifyUncles 0.0% +2025-07-23T19:39:15.4043198Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:292: Prepare 0.0% +2025-07-23T19:39:15.4043738Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:297: verifyBlockFee 81.0% +2025-07-23T19:39:15.4044275Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:367: Finalize 0.0% +2025-07-23T19:39:15.4044941Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:419: FinalizeAndAssemble 0.0% +2025-07-23T19:39:15.4045521Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:477: CalcDifficulty 0.0% +2025-07-23T19:39:15.4046052Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:481: Close 0.0% +2025-07-23T19:39:15.4046609Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:47: VerifyEIP4844Header 0.0% +2025-07-23T19:39:15.4047218Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:81: CalcExcessBlobGas 100.0% +2025-07-23T19:39:15.4047804Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:90: CalcBlobFee 100.0% +2025-07-23T19:39:15.4048725Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:96: fakeExponential 100.0% +2025-07-23T19:39:15.4049306Z github.com/ava-labs/coreth/core/block_validator.go:53: NewBlockValidator 100.0% +2025-07-23T19:39:15.4049832Z github.com/ava-labs/coreth/core/block_validator.go:65: ValidateBody 62.5% +2025-07-23T19:39:15.4050352Z github.com/ava-labs/coreth/core/block_validator.go:122: ValidateState 66.7% +2025-07-23T19:39:15.4050855Z github.com/ava-labs/coreth/core/block_validator.go:150: CalcGasLimit 85.7% +2025-07-23T19:39:15.4051351Z github.com/ava-labs/coreth/core/blockchain.go:210: triedbConfig 90.0% +2025-07-23T19:39:15.4051891Z github.com/ava-labs/coreth/core/blockchain.go:260: DefaultCacheConfigWithScheme 100.0% +2025-07-23T19:39:15.4052427Z github.com/ava-labs/coreth/core/blockchain.go:385: NewBlockChain 81.8% +2025-07-23T19:39:15.4052991Z github.com/ava-labs/coreth/core/blockchain.go:507: writeBlockAcceptedIndices 66.7% +2025-07-23T19:39:15.4053554Z github.com/ava-labs/coreth/core/blockchain.go:518: batchBlockAcceptedIndices 80.0% +2025-07-23T19:39:15.4054083Z github.com/ava-labs/coreth/core/blockchain.go:529: flattenSnapshot 87.5% +2025-07-23T19:39:15.4054600Z github.com/ava-labs/coreth/core/blockchain.go:558: warmAcceptedCaches 84.2% +2025-07-23T19:39:15.4055104Z github.com/ava-labs/coreth/core/blockchain.go:595: startAcceptor 92.0% +2025-07-23T19:39:15.4055602Z github.com/ava-labs/coreth/core/blockchain.go:646: addAcceptorQueue 100.0% +2025-07-23T19:39:15.4056105Z github.com/ava-labs/coreth/core/blockchain.go:663: DrainAcceptorQueue 80.0% +2025-07-23T19:39:15.4056607Z github.com/ava-labs/coreth/core/blockchain.go:677: stopAcceptor 100.0% +2025-07-23T19:39:15.4057113Z github.com/ava-labs/coreth/core/blockchain.go:699: InitializeSnapshots 0.0% +2025-07-23T19:39:15.4057606Z github.com/ava-labs/coreth/core/blockchain.go:708: SenderCacher 0.0% +2025-07-23T19:39:15.4058089Z github.com/ava-labs/coreth/core/blockchain.go:714: loadLastState 81.8% +2025-07-23T19:39:15.4058776Z github.com/ava-labs/coreth/core/blockchain.go:762: loadGenesisState 90.0% +2025-07-23T19:39:15.4059396Z github.com/ava-labs/coreth/core/blockchain.go:780: Export 0.0% +2025-07-23T19:39:15.4059852Z github.com/ava-labs/coreth/core/blockchain.go:785: ExportN 0.0% +2025-07-23T19:39:15.4060326Z github.com/ava-labs/coreth/core/blockchain.go:792: ExportCallback 0.0% +2025-07-23T19:39:15.4060817Z github.com/ava-labs/coreth/core/blockchain.go:828: writeHeadBlock 87.5% +2025-07-23T19:39:15.4061338Z github.com/ava-labs/coreth/core/blockchain.go:847: ValidateCanonicalChain 66.7% +2025-07-23T19:39:15.4061865Z github.com/ava-labs/coreth/core/blockchain.go:956: stopWithoutSaving 100.0% +2025-07-23T19:39:15.4062342Z github.com/ava-labs/coreth/core/blockchain.go:988: Stop 100.0% +2025-07-23T19:39:15.4062811Z github.com/ava-labs/coreth/core/blockchain.go:1022: SetPreference 100.0% +2025-07-23T19:39:15.4063298Z github.com/ava-labs/coreth/core/blockchain.go:1034: setPreference 87.5% +2025-07-23T19:39:15.4063841Z github.com/ava-labs/coreth/core/blockchain.go:1060: LastConsensusAcceptedBlock 100.0% +2025-07-23T19:39:15.4064406Z github.com/ava-labs/coreth/core/blockchain.go:1071: LastAcceptedBlock 100.0% +2025-07-23T19:39:15.4065014Z github.com/ava-labs/coreth/core/blockchain.go:1083: Accept 84.6% +2025-07-23T19:39:15.4065465Z github.com/ava-labs/coreth/core/blockchain.go:1132: Reject 76.9% +2025-07-23T19:39:15.4065949Z github.com/ava-labs/coreth/core/blockchain.go:1162: writeKnownBlock 83.3% +2025-07-23T19:39:15.4066500Z github.com/ava-labs/coreth/core/blockchain.go:1175: writeCanonicalBlockWithLogs 100.0% +2025-07-23T19:39:15.4067026Z github.com/ava-labs/coreth/core/blockchain.go:1186: newTip 100.0% +2025-07-23T19:39:15.4067525Z github.com/ava-labs/coreth/core/blockchain.go:1195: writeBlockAndSetHead 83.3% +2025-07-23T19:39:15.4068065Z github.com/ava-labs/coreth/core/blockchain.go:1213: writeBlockWithState 61.1% +2025-07-23T19:39:15.4069005Z github.com/ava-labs/coreth/core/blockchain.go:1260: InsertChain 86.7% +2025-07-23T19:39:15.4069501Z github.com/ava-labs/coreth/core/blockchain.go:1296: InsertBlock 100.0% +2025-07-23T19:39:15.4070015Z github.com/ava-labs/coreth/core/blockchain.go:1300: InsertBlockManual 100.0% +2025-07-23T19:39:15.4070510Z github.com/ava-labs/coreth/core/blockchain.go:1311: insertBlock 88.7% +2025-07-23T19:39:15.4071025Z github.com/ava-labs/coreth/core/blockchain.go:1448: collectUnflattenedLogs 81.2% +2025-07-23T19:39:15.4071540Z github.com/ava-labs/coreth/core/blockchain.go:1477: collectLogs 100.0% +2025-07-23T19:39:15.4072005Z github.com/ava-labs/coreth/core/blockchain.go:1485: reorg 67.2% +2025-07-23T19:39:15.4072455Z github.com/ava-labs/coreth/core/blockchain.go:1642: String 75.0% +2025-07-23T19:39:15.4072904Z github.com/ava-labs/coreth/core/blockchain.go:1668: BadBlocks 0.0% +2025-07-23T19:39:15.4073374Z github.com/ava-labs/coreth/core/blockchain.go:1681: addBadBlock 100.0% +2025-07-23T19:39:15.4073854Z github.com/ava-labs/coreth/core/blockchain.go:1689: reportBlock 100.0% +2025-07-23T19:39:15.4074348Z github.com/ava-labs/coreth/core/blockchain.go:1705: reprocessBlock 77.8% +2025-07-23T19:39:15.4074847Z github.com/ava-labs/coreth/core/blockchain.go:1747: commitWithSnap 75.0% +2025-07-23T19:39:15.4075341Z github.com/ava-labs/coreth/core/blockchain.go:1783: initSnapshot 90.0% +2025-07-23T19:39:15.4075829Z github.com/ava-labs/coreth/core/blockchain.go:1814: reprocessState 83.1% +2025-07-23T19:39:15.4076332Z github.com/ava-labs/coreth/core/blockchain.go:1956: protectTrieIndex 60.0% +2025-07-23T19:39:15.4076856Z github.com/ava-labs/coreth/core/blockchain.go:1978: populateMissingTries 74.3% +2025-07-23T19:39:15.4077440Z github.com/ava-labs/coreth/core/blockchain.go:2059: CleanBlockRootsAboveLastAccepted 85.7% +2025-07-23T19:39:15.4078058Z github.com/ava-labs/coreth/core/blockchain.go:2102: gatherBlockRootsAboveLastAccepted 90.9% +2025-07-23T19:39:15.4078850Z github.com/ava-labs/coreth/core/blockchain.go:2132: ResetToStateSyncedBlock 0.0% +2025-07-23T19:39:15.4079517Z github.com/ava-labs/coreth/core/blockchain.go:2187: CacheConfig 100.0% +2025-07-23T19:39:15.4080029Z github.com/ava-labs/coreth/core/blockchain.go:2191: repairTxIndexTail 100.0% +2025-07-23T19:39:15.4080691Z github.com/ava-labs/coreth/core/blockchain_ext.go:15: getOrOverrideAsRegisteredCounter 83.3% +2025-07-23T19:39:15.4081295Z github.com/ava-labs/coreth/core/blockchain_iterator.go:60: newBlockChainIterator 85.0% +2025-07-23T19:39:15.4081871Z github.com/ava-labs/coreth/core/blockchain_iterator.go:120: populateReaders 88.9% +2025-07-23T19:39:15.4082392Z github.com/ava-labs/coreth/core/blockchain_iterator.go:139: Next 75.0% +2025-07-23T19:39:15.4082882Z github.com/ava-labs/coreth/core/blockchain_iterator.go:180: Stop 100.0% +2025-07-23T19:39:15.4083386Z github.com/ava-labs/coreth/core/blockchain_reader.go:45: CurrentHeader 100.0% +2025-07-23T19:39:15.4083904Z github.com/ava-labs/coreth/core/blockchain_reader.go:51: CurrentBlock 100.0% +2025-07-23T19:39:15.4084413Z github.com/ava-labs/coreth/core/blockchain_reader.go:57: HasHeader 100.0% +2025-07-23T19:39:15.4085042Z github.com/ava-labs/coreth/core/blockchain_reader.go:63: GetHeader 100.0% +2025-07-23T19:39:15.4085557Z github.com/ava-labs/coreth/core/blockchain_reader.go:69: GetHeaderByHash 100.0% +2025-07-23T19:39:15.4086098Z github.com/ava-labs/coreth/core/blockchain_reader.go:75: GetHeaderByNumber 100.0% +2025-07-23T19:39:15.4086609Z github.com/ava-labs/coreth/core/blockchain_reader.go:81: GetBody 0.0% +2025-07-23T19:39:15.4087087Z github.com/ava-labs/coreth/core/blockchain_reader.go:100: HasBlock 60.0% +2025-07-23T19:39:15.4087587Z github.com/ava-labs/coreth/core/blockchain_reader.go:111: HasFastBlock 0.0% +2025-07-23T19:39:15.4088087Z github.com/ava-labs/coreth/core/blockchain_reader.go:123: GetBlock 100.0% +2025-07-23T19:39:15.4088799Z github.com/ava-labs/coreth/core/blockchain_reader.go:138: GetBlockByHash 75.0% +2025-07-23T19:39:15.4089336Z github.com/ava-labs/coreth/core/blockchain_reader.go:148: GetBlockByNumber 100.0% +2025-07-23T19:39:15.4089886Z github.com/ava-labs/coreth/core/blockchain_reader.go:158: GetBlocksFromHash 0.0% +2025-07-23T19:39:15.4090427Z github.com/ava-labs/coreth/core/blockchain_reader.go:176: GetReceiptsByHash 76.9% +2025-07-23T19:39:15.4090964Z github.com/ava-labs/coreth/core/blockchain_reader.go:197: GetCanonicalHash 100.0% +2025-07-23T19:39:15.4091528Z github.com/ava-labs/coreth/core/blockchain_reader.go:211: GetTransactionLookup 87.5% +2025-07-23T19:39:15.4092072Z github.com/ava-labs/coreth/core/blockchain_reader.go:235: HasState 100.0% +2025-07-23T19:39:15.4092596Z github.com/ava-labs/coreth/core/blockchain_reader.go:242: HasBlockAndState 100.0% +2025-07-23T19:39:15.4093115Z github.com/ava-labs/coreth/core/blockchain_reader.go:252: State 100.0% +2025-07-23T19:39:15.4093610Z github.com/ava-labs/coreth/core/blockchain_reader.go:257: StateAt 100.0% +2025-07-23T19:39:15.4094106Z github.com/ava-labs/coreth/core/blockchain_reader.go:262: Config 100.0% +2025-07-23T19:39:15.4094598Z github.com/ava-labs/coreth/core/blockchain_reader.go:265: Engine 100.0% +2025-07-23T19:39:15.4095083Z github.com/ava-labs/coreth/core/blockchain_reader.go:268: Snapshots 0.0% +2025-07-23T19:39:15.4095568Z github.com/ava-labs/coreth/core/blockchain_reader.go:273: Validator 0.0% +2025-07-23T19:39:15.4096066Z github.com/ava-labs/coreth/core/blockchain_reader.go:278: Processor 0.0% +2025-07-23T19:39:15.4096555Z github.com/ava-labs/coreth/core/blockchain_reader.go:283: StateCache 0.0% +2025-07-23T19:39:15.4097043Z github.com/ava-labs/coreth/core/blockchain_reader.go:288: GasLimit 0.0% +2025-07-23T19:39:15.4097530Z github.com/ava-labs/coreth/core/blockchain_reader.go:293: Genesis 100.0% +2025-07-23T19:39:15.4098031Z github.com/ava-labs/coreth/core/blockchain_reader.go:298: GetVMConfig 0.0% +2025-07-23T19:39:15.4098927Z github.com/ava-labs/coreth/core/blockchain_reader.go:303: TrieDB 100.0% +2025-07-23T19:39:15.4099435Z github.com/ava-labs/coreth/core/blockchain_reader.go:308: HeaderChain 0.0% +2025-07-23T19:39:15.4099998Z github.com/ava-labs/coreth/core/blockchain_reader.go:313: SubscribeRemovedLogsEvent 0.0% +2025-07-23T19:39:15.4100585Z github.com/ava-labs/coreth/core/blockchain_reader.go:318: SubscribeChainEvent 0.0% +2025-07-23T19:39:15.4101169Z github.com/ava-labs/coreth/core/blockchain_reader.go:323: SubscribeChainHeadEvent 0.0% +2025-07-23T19:39:15.4101761Z github.com/ava-labs/coreth/core/blockchain_reader.go:328: SubscribeChainSideEvent 0.0% +2025-07-23T19:39:15.4102330Z github.com/ava-labs/coreth/core/blockchain_reader.go:333: SubscribeLogsEvent 0.0% +2025-07-23T19:39:15.4102935Z github.com/ava-labs/coreth/core/blockchain_reader.go:339: SubscribeBlockProcessingEvent 0.0% +2025-07-23T19:39:15.4103554Z github.com/ava-labs/coreth/core/blockchain_reader.go:344: SubscribeChainAcceptedEvent 100.0% +2025-07-23T19:39:15.4104178Z github.com/ava-labs/coreth/core/blockchain_reader.go:349: SubscribeAcceptedLogsEvent 100.0% +2025-07-23T19:39:15.4104928Z github.com/ava-labs/coreth/core/blockchain_reader.go:354: SubscribeAcceptedTransactionEvent 0.0% +2025-07-23T19:39:15.4105495Z github.com/ava-labs/coreth/core/blockchain_reader.go:359: GetLogs 0.0% +2025-07-23T19:39:15.4106000Z github.com/ava-labs/coreth/core/bloom_indexer.go:60: NewBloomIndexer 0.0% +2025-07-23T19:39:15.4106479Z github.com/ava-labs/coreth/core/bloom_indexer.go:72: Reset 0.0% +2025-07-23T19:39:15.4106939Z github.com/ava-labs/coreth/core/bloom_indexer.go:80: Process 0.0% +2025-07-23T19:39:15.4107403Z github.com/ava-labs/coreth/core/bloom_indexer.go:88: Commit 0.0% +2025-07-23T19:39:15.4107848Z github.com/ava-labs/coreth/core/bloom_indexer.go:101: Prune 0.0% +2025-07-23T19:39:15.4108506Z github.com/ava-labs/coreth/core/bloombits/generator.go:56: NewGenerator 83.3% +2025-07-23T19:39:15.4109047Z github.com/ava-labs/coreth/core/bloombits/generator.go:69: AddBloom 90.5% +2025-07-23T19:39:15.4109552Z github.com/ava-labs/coreth/core/bloombits/generator.go:101: Bitset 60.0% +2025-07-23T19:39:15.4110090Z github.com/ava-labs/coreth/core/bloombits/matcher.go:49: calcBloomIndexes 100.0% +2025-07-23T19:39:15.4110630Z github.com/ava-labs/coreth/core/bloombits/matcher.go:103: NewMatcher 100.0% +2025-07-23T19:39:15.4111144Z github.com/ava-labs/coreth/core/bloombits/matcher.go:148: addScheduler 100.0% +2025-07-23T19:39:15.4111646Z github.com/ava-labs/coreth/core/bloombits/matcher.go:158: Start 97.0% +2025-07-23T19:39:15.4112126Z github.com/ava-labs/coreth/core/bloombits/matcher.go:235: run 100.0% +2025-07-23T19:39:15.4112613Z github.com/ava-labs/coreth/core/bloombits/matcher.go:270: subMatch 98.3% +2025-07-23T19:39:15.4113117Z github.com/ava-labs/coreth/core/bloombits/matcher.go:392: distributor 100.0% +2025-07-23T19:39:15.4113629Z github.com/ava-labs/coreth/core/bloombits/matcher.go:534: Close 100.0% +2025-07-23T19:39:15.4114112Z github.com/ava-labs/coreth/core/bloombits/matcher.go:543: Error 0.0% +2025-07-23T19:39:15.4114639Z github.com/ava-labs/coreth/core/bloombits/matcher.go:553: allocateRetrieval 100.0% +2025-07-23T19:39:15.4115199Z github.com/ava-labs/coreth/core/bloombits/matcher.go:567: pendingSections 100.0% +2025-07-23T19:39:15.4115759Z github.com/ava-labs/coreth/core/bloombits/matcher.go:581: allocateSections 100.0% +2025-07-23T19:39:15.4116307Z github.com/ava-labs/coreth/core/bloombits/matcher.go:599: deliverSections 100.0% +2025-07-23T19:39:15.4116830Z github.com/ava-labs/coreth/core/bloombits/matcher.go:609: Multiplex 81.8% +2025-07-23T19:39:15.4117353Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:60: newScheduler 100.0% +2025-07-23T19:39:15.4117864Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:70: run 100.0% +2025-07-23T19:39:15.4118669Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:84: reset 100.0% +2025-07-23T19:39:15.4119201Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:98: scheduleRequests 100.0% +2025-07-23T19:39:15.4119785Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:145: scheduleDeliveries 100.0% +2025-07-23T19:39:15.4120342Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:182: deliver 100.0% +2025-07-23T19:39:15.4120868Z github.com/ava-labs/coreth/core/bounded_buffer.go:21: NewBoundedBuffer 100.0% +2025-07-23T19:39:15.4121388Z github.com/ava-labs/coreth/core/bounded_buffer.go:32: Insert 90.0% +2025-07-23T19:39:15.4121845Z github.com/ava-labs/coreth/core/bounded_buffer.go:55: Last 100.0% +2025-07-23T19:39:15.4122331Z github.com/ava-labs/coreth/core/chain_indexer.go:115: NewChainIndexer 100.0% +2025-07-23T19:39:15.4122833Z github.com/ava-labs/coreth/core/chain_indexer.go:142: AddCheckpoint 0.0% +2025-07-23T19:39:15.4123310Z github.com/ava-labs/coreth/core/chain_indexer.go:160: Start 0.0% +2025-07-23T19:39:15.4123881Z github.com/ava-labs/coreth/core/chain_indexer.go:169: Close 58.8% +2025-07-23T19:39:15.4124341Z github.com/ava-labs/coreth/core/chain_indexer.go:209: eventLoop 0.0% +2025-07-23T19:39:15.4124805Z github.com/ava-labs/coreth/core/chain_indexer.go:255: newHead 78.1% +2025-07-23T19:39:15.4125274Z github.com/ava-labs/coreth/core/chain_indexer.go:316: updateLoop 95.2% +2025-07-23T19:39:15.4125773Z github.com/ava-labs/coreth/core/chain_indexer.go:400: processSection 68.4% +2025-07-23T19:39:15.4126275Z github.com/ava-labs/coreth/core/chain_indexer.go:434: verifyLastHead 75.0% +2025-07-23T19:39:15.4126762Z github.com/ava-labs/coreth/core/chain_indexer.go:446: Sections 100.0% +2025-07-23T19:39:15.4127254Z github.com/ava-labs/coreth/core/chain_indexer.go:455: AddChildIndexer 70.0% +2025-07-23T19:39:15.4127734Z github.com/ava-labs/coreth/core/chain_indexer.go:477: Prune 0.0% +2025-07-23T19:39:15.4128438Z github.com/ava-labs/coreth/core/chain_indexer.go:483: loadValidSections 66.7% +2025-07-23T19:39:15.4128983Z github.com/ava-labs/coreth/core/chain_indexer.go:491: setValidSections 100.0% +2025-07-23T19:39:15.4129490Z github.com/ava-labs/coreth/core/chain_indexer.go:507: SectionHead 100.0% +2025-07-23T19:39:15.4130002Z github.com/ava-labs/coreth/core/chain_indexer.go:520: setSectionHead 100.0% +2025-07-23T19:39:15.4130517Z github.com/ava-labs/coreth/core/chain_indexer.go:529: removeSectionHead 100.0% +2025-07-23T19:39:15.4131017Z github.com/ava-labs/coreth/core/chain_makers.go:68: SetCoinbase 50.0% +2025-07-23T19:39:15.4131479Z github.com/ava-labs/coreth/core/chain_makers.go:80: SetExtra 0.0% +2025-07-23T19:39:15.4131932Z github.com/ava-labs/coreth/core/chain_makers.go:85: AppendExtra 0.0% +2025-07-23T19:39:15.4132385Z github.com/ava-labs/coreth/core/chain_makers.go:90: SetNonce 0.0% +2025-07-23T19:39:15.4132859Z github.com/ava-labs/coreth/core/chain_makers.go:97: SetDifficulty 100.0% +2025-07-23T19:39:15.4133342Z github.com/ava-labs/coreth/core/chain_makers.go:102: Difficulty 0.0% +2025-07-23T19:39:15.4133845Z github.com/ava-labs/coreth/core/chain_makers.go:108: SetParentBeaconRoot 0.0% +2025-07-23T19:39:15.4134467Z github.com/ava-labs/coreth/core/chain_makers.go:124: addTx 90.9% +2025-07-23T19:39:15.4135010Z github.com/ava-labs/coreth/core/chain_makers.go:149: AddTx 100.0% +2025-07-23T19:39:15.4135735Z github.com/ava-labs/coreth/core/chain_makers.go:160: AddTxWithChain 0.0% +2025-07-23T19:39:15.4136376Z github.com/ava-labs/coreth/core/chain_makers.go:167: AddTxWithVMConfig 100.0% +2025-07-23T19:39:15.4137017Z github.com/ava-labs/coreth/core/chain_makers.go:172: GetBalance 0.0% +2025-07-23T19:39:15.4137608Z github.com/ava-labs/coreth/core/chain_makers.go:180: AddUncheckedTx 0.0% +2025-07-23T19:39:15.4138397Z github.com/ava-labs/coreth/core/chain_makers.go:185: Number 0.0% +2025-07-23T19:39:15.4139133Z github.com/ava-labs/coreth/core/chain_makers.go:190: Timestamp 100.0% +2025-07-23T19:39:15.4139727Z github.com/ava-labs/coreth/core/chain_makers.go:195: BaseFee 100.0% +2025-07-23T19:39:15.4140331Z github.com/ava-labs/coreth/core/chain_makers.go:200: Gas 0.0% +2025-07-23T19:39:15.4140865Z github.com/ava-labs/coreth/core/chain_makers.go:205: Signer 0.0% +2025-07-23T19:39:15.4141510Z github.com/ava-labs/coreth/core/chain_makers.go:214: AddUncheckedReceipt 0.0% +2025-07-23T19:39:15.4157424Z github.com/ava-labs/coreth/core/chain_makers.go:220: TxNonce 66.7% +2025-07-23T19:39:15.4158035Z github.com/ava-labs/coreth/core/chain_makers.go:228: AddUncle 100.0% +2025-07-23T19:39:15.4158800Z github.com/ava-labs/coreth/core/chain_makers.go:235: PrevBlock 60.0% +2025-07-23T19:39:15.4159314Z github.com/ava-labs/coreth/core/chain_makers.go:248: OffsetTime 0.0% +2025-07-23T19:39:15.4159832Z github.com/ava-labs/coreth/core/chain_makers.go:257: SetOnBlockGenerated 0.0% +2025-07-23T19:39:15.4160574Z github.com/ava-labs/coreth/core/chain_makers.go:273: GenerateChain 79.2% +2025-07-23T19:39:15.4161103Z github.com/ava-labs/coreth/core/chain_makers.go:362: GenerateChainWithGenesis 87.5% +2025-07-23T19:39:15.4161637Z github.com/ava-labs/coreth/core/chain_makers.go:374: makeHeader 89.5% +2025-07-23T19:39:15.4162136Z github.com/ava-labs/coreth/core/chain_makers.go:425: newChainMaker 100.0% +2025-07-23T19:39:15.4162608Z github.com/ava-labs/coreth/core/chain_makers.go:434: add 100.0% +2025-07-23T19:39:15.4163076Z github.com/ava-labs/coreth/core/chain_makers.go:440: blockByNumber 0.0% +2025-07-23T19:39:15.4163560Z github.com/ava-labs/coreth/core/chain_makers.go:455: Config 100.0% +2025-07-23T19:39:15.4164019Z github.com/ava-labs/coreth/core/chain_makers.go:460: Engine 0.0% +2025-07-23T19:39:15.4164491Z github.com/ava-labs/coreth/core/chain_makers.go:464: CurrentHeader 0.0% +2025-07-23T19:39:15.4164992Z github.com/ava-labs/coreth/core/chain_makers.go:471: GetHeaderByNumber 0.0% +2025-07-23T19:39:15.4165503Z github.com/ava-labs/coreth/core/chain_makers.go:479: GetHeaderByHash 0.0% +2025-07-23T19:39:15.4165981Z github.com/ava-labs/coreth/core/chain_makers.go:487: GetHeader 0.0% +2025-07-23T19:39:15.4166430Z github.com/ava-labs/coreth/core/chain_makers.go:491: GetBlock 0.0% +2025-07-23T19:39:15.4166952Z github.com/ava-labs/coreth/core/coretest/test_indices.go:21: CheckTxIndices 100.0% +2025-07-23T19:39:15.4167438Z github.com/ava-labs/coreth/core/evm.go:47: init 100.0% +2025-07-23T19:39:15.4167875Z github.com/ava-labs/coreth/core/evm.go:61: OverrideNewEVMArgs 100.0% +2025-07-23T19:39:15.4168583Z github.com/ava-labs/coreth/core/evm.go:74: OverrideEVMResetArgs 100.0% +2025-07-23T19:39:15.4169056Z github.com/ava-labs/coreth/core/evm.go:79: wrapStateDB 100.0% +2025-07-23T19:39:15.4169514Z github.com/ava-labs/coreth/core/evm.go:90: GetCommittedState 100.0% +2025-07-23T19:39:15.4169996Z github.com/ava-labs/coreth/core/evm.go:106: NewEVMBlockContext 100.0% +2025-07-23T19:39:15.4170536Z github.com/ava-labs/coreth/core/evm.go:147: NewEVMBlockContextWithPredicateResults 0.0% +2025-07-23T19:39:15.4171084Z github.com/ava-labs/coreth/core/evm.go:160: NewEVMTxContext 100.0% +2025-07-23T19:39:15.4171769Z github.com/ava-labs/coreth/core/evm.go:173: GetHashFn 10.0% +2025-07-23T19:39:15.4172351Z github.com/ava-labs/coreth/core/evm.go:213: CanTransfer 100.0% +2025-07-23T19:39:15.4172784Z github.com/ava-labs/coreth/core/evm.go:218: Transfer 100.0% +2025-07-23T19:39:15.4173245Z github.com/ava-labs/coreth/core/extstate/statedb.go:38: New 100.0% +2025-07-23T19:39:15.4173750Z github.com/ava-labs/coreth/core/extstate/statedb.go:45: Prepare 100.0% +2025-07-23T19:39:15.4174312Z github.com/ava-labs/coreth/core/extstate/statedb.go:61: GetPredicateStorageSlots 75.0% +2025-07-23T19:39:15.4175022Z github.com/ava-labs/coreth/core/fifo_cache.go:24: NewFIFOCache 100.0% +2025-07-23T19:39:15.4175485Z github.com/ava-labs/coreth/core/fifo_cache.go:43: Put 100.0% +2025-07-23T19:39:15.4175904Z github.com/ava-labs/coreth/core/fifo_cache.go:51: Get 100.0% +2025-07-23T19:39:15.4176321Z github.com/ava-labs/coreth/core/fifo_cache.go:61: remove 0.0% +2025-07-23T19:39:15.4176740Z github.com/ava-labs/coreth/core/fifo_cache.go:68: Put 0.0% +2025-07-23T19:39:15.4177150Z github.com/ava-labs/coreth/core/fifo_cache.go:69: Get 100.0% +2025-07-23T19:39:15.4177565Z github.com/ava-labs/coreth/core/gaspool.go:40: AddGas 75.0% +2025-07-23T19:39:15.4177984Z github.com/ava-labs/coreth/core/gaspool.go:50: SubGas 100.0% +2025-07-23T19:39:15.4178633Z github.com/ava-labs/coreth/core/gaspool.go:59: Gas 0.0% +2025-07-23T19:39:15.4179048Z github.com/ava-labs/coreth/core/gaspool.go:64: SetGas 0.0% +2025-07-23T19:39:15.4179467Z github.com/ava-labs/coreth/core/gaspool.go:68: String 0.0% +2025-07-23T19:39:15.4180059Z github.com/ava-labs/coreth/core/gen_genesis.go:20: MarshalJSON 0.0% +2025-07-23T19:39:15.4180540Z github.com/ava-labs/coreth/core/gen_genesis.go:63: UnmarshalJSON 0.0% +2025-07-23T19:39:15.4180988Z github.com/ava-labs/coreth/core/genesis.go:109: Error 0.0% +2025-07-23T19:39:15.4181457Z github.com/ava-labs/coreth/core/genesis.go:128: SetupGenesisBlock 77.8% +2025-07-23T19:39:15.4181943Z github.com/ava-labs/coreth/core/genesis.go:212: IsVerkle 100.0% +2025-07-23T19:39:15.4182396Z github.com/ava-labs/coreth/core/genesis.go:217: ToBlock 100.0% +2025-07-23T19:39:15.4182844Z github.com/ava-labs/coreth/core/genesis.go:222: trieConfig 100.0% +2025-07-23T19:39:15.4183300Z github.com/ava-labs/coreth/core/genesis.go:233: toBlock 90.5% +2025-07-23T19:39:15.4183739Z github.com/ava-labs/coreth/core/genesis.go:321: Commit 80.0% +2025-07-23T19:39:15.4184178Z github.com/ava-labs/coreth/core/genesis.go:344: MustCommit 75.0% +2025-07-23T19:39:15.4184688Z github.com/ava-labs/coreth/core/genesis.go:353: GenesisBlockForTesting 100.0% +2025-07-23T19:39:15.4185209Z github.com/ava-labs/coreth/core/genesis.go:363: ReadBlockByHash 75.0% +2025-07-23T19:39:15.4185712Z github.com/ava-labs/coreth/core/headerchain.go:84: NewHeaderChain 85.7% +2025-07-23T19:39:15.4186217Z github.com/ava-labs/coreth/core/headerchain.go:121: GetBlockNumber 100.0% +2025-07-23T19:39:15.4186713Z github.com/ava-labs/coreth/core/headerchain.go:134: GetHeader 100.0% +2025-07-23T19:39:15.4187207Z github.com/ava-labs/coreth/core/headerchain.go:150: GetHeaderByHash 75.0% +2025-07-23T19:39:15.4187699Z github.com/ava-labs/coreth/core/headerchain.go:161: HasHeader 66.7% +2025-07-23T19:39:15.4188308Z github.com/ava-labs/coreth/core/headerchain.go:170: GetHeaderByNumber 100.0% +2025-07-23T19:39:15.4188841Z github.com/ava-labs/coreth/core/headerchain.go:181: GetCanonicalHash 100.0% +2025-07-23T19:39:15.4189357Z github.com/ava-labs/coreth/core/headerchain.go:187: CurrentHeader 100.0% +2025-07-23T19:39:15.4189866Z github.com/ava-labs/coreth/core/headerchain.go:193: SetCurrentHeader 100.0% +2025-07-23T19:39:15.4190362Z github.com/ava-labs/coreth/core/headerchain.go:199: SetGenesis 100.0% +2025-07-23T19:39:15.4190826Z github.com/ava-labs/coreth/core/headerchain.go:204: Config 0.0% +2025-07-23T19:39:15.4191273Z github.com/ava-labs/coreth/core/headerchain.go:207: Engine 0.0% +2025-07-23T19:39:15.4191721Z github.com/ava-labs/coreth/core/headerchain.go:211: GetBlock 0.0% +2025-07-23T19:39:15.4192224Z github.com/ava-labs/coreth/core/predicate_check.go:22: CheckPredicates 100.0% +2025-07-23T19:39:15.4192764Z github.com/ava-labs/coreth/core/sender_cacher.go:61: NewTxSenderCacher 100.0% +2025-07-23T19:39:15.4193255Z github.com/ava-labs/coreth/core/sender_cacher.go:78: cache 100.0% +2025-07-23T19:39:15.4193843Z github.com/ava-labs/coreth/core/sender_cacher.go:89: Recover 90.9% +2025-07-23T19:39:15.4194316Z github.com/ava-labs/coreth/core/sender_cacher.go:119: Shutdown 100.0% +2025-07-23T19:39:15.4194810Z github.com/ava-labs/coreth/core/state/database.go:42: NewDatabase 100.0% +2025-07-23T19:39:15.4195345Z github.com/ava-labs/coreth/core/state/database.go:46: NewDatabaseWithConfig 100.0% +2025-07-23T19:39:15.4195911Z github.com/ava-labs/coreth/core/state/database.go:51: NewDatabaseWithNodeDB 0.0% +2025-07-23T19:39:15.4196455Z github.com/ava-labs/coreth/core/state/database.go:55: wrapIfFirewood 100.0% +2025-07-23T19:39:15.4196988Z github.com/ava-labs/coreth/core/state/firewood_database.go:25: OpenTrie 100.0% +2025-07-23T19:39:15.4197545Z github.com/ava-labs/coreth/core/state/firewood_database.go:30: OpenStorageTrie 75.0% +2025-07-23T19:39:15.4198303Z github.com/ava-labs/coreth/core/state/firewood_database.go:40: CopyTrie 0.0% +2025-07-23T19:39:15.4198899Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:42: stateBloomHash 100.0% +2025-07-23T19:39:15.4199604Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:69: newStateBloomWithSize 80.0% +2025-07-23T19:39:15.4200201Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:80: NewStateBloomFromDisk 0.0% +2025-07-23T19:39:15.4200743Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:90: Commit 63.6% +2025-07-23T19:39:15.4201230Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:112: Put 37.5% +2025-07-23T19:39:15.4201710Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:128: Delete 0.0% +2025-07-23T19:39:15.4202211Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:134: Contain 100.0% +2025-07-23T19:39:15.4202724Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:96: NewPruner 66.7% +2025-07-23T19:39:15.4203229Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:136: prune 38.2% +2025-07-23T19:39:15.4203728Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:261: Prune 66.7% +2025-07-23T19:39:15.4204337Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:315: RecoverPruning 26.7% +2025-07-23T19:39:15.4204893Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:344: extractGenesis 48.6% +2025-07-23T19:39:15.4205459Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:403: bloomFilterName 100.0% +2025-07-23T19:39:15.4206014Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:407: isBloomFilter 0.0% +2025-07-23T19:39:15.4206574Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:415: findBloomFilter 50.0% +2025-07-23T19:39:15.4207112Z github.com/ava-labs/coreth/core/state/snapshot/context.go:55: Info 100.0% +2025-07-23T19:39:15.4207620Z github.com/ava-labs/coreth/core/state/snapshot/context.go:61: Debug 100.0% +2025-07-23T19:39:15.4208237Z github.com/ava-labs/coreth/core/state/snapshot/context.go:67: log 45.0% +2025-07-23T19:39:15.4208832Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:65: GenerateAccountTrieRoot 0.0% +2025-07-23T19:39:15.4209492Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:70: GenerateStorageTrieRoot 0.0% +2025-07-23T19:39:15.4210100Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:77: GenerateTrie 0.0% +2025-07-23T19:39:15.4210706Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:134: newGenerateStats 100.0% +2025-07-23T19:39:15.4211318Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:143: progressAccounts 0.0% +2025-07-23T19:39:15.4211927Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:152: finishAccounts 100.0% +2025-07-23T19:39:15.4212528Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:160: progressContract 0.0% +2025-07-23T19:39:15.4213127Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:172: finishContract 100.0% +2025-07-23T19:39:15.4213826Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:182: report 42.9% +2025-07-23T19:39:15.4214391Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:222: reportDone 100.0% +2025-07-23T19:39:15.4214955Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:236: runReport 100.0% +2025-07-23T19:39:15.4215538Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:257: generateTrieRoot 79.4% +2025-07-23T19:39:15.4216147Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:375: stackTrieGenerate 75.0% +2025-07-23T19:39:15.4216713Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:92: init 80.0% +2025-07-23T19:39:15.4217282Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:140: destructBloomHash 100.0% +2025-07-23T19:39:15.4217888Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:145: accountBloomHash 100.0% +2025-07-23T19:39:15.4218703Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:150: storageBloomHash 100.0% +2025-07-23T19:39:15.4219306Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:157: newDiffLayer 83.3% +2025-07-23T19:39:15.4220062Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:201: rebloom 100.0% +2025-07-23T19:39:15.4220608Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:242: Root 100.0% +2025-07-23T19:39:15.4221154Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:247: BlockHash 100.0% +2025-07-23T19:39:15.4221735Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:252: Parent 100.0% +2025-07-23T19:39:15.4222287Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:261: Stale 100.0% +2025-07-23T19:39:15.4222831Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:267: Account 88.9% +2025-07-23T19:39:15.4223382Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:286: AccountRLP 86.7% +2025-07-23T19:39:15.4223933Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:318: accountRLP 95.0% +2025-07-23T19:39:15.4224484Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:357: Storage 60.0% +2025-07-23T19:39:15.4225026Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:389: storage 69.6% +2025-07-23T19:39:15.4225558Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:431: Update 100.0% +2025-07-23T19:39:15.4226091Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:438: flatten 95.5% +2025-07-23T19:39:15.4226644Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:497: AccountList 100.0% +2025-07-23T19:39:15.4227213Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:533: StorageList 100.0% +2025-07-23T19:39:15.4227760Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:70: Release 0.0% +2025-07-23T19:39:15.4228402Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:78: Root 100.0% +2025-07-23T19:39:15.4228948Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:83: BlockHash 100.0% +2025-07-23T19:39:15.4229499Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:88: Parent 100.0% +2025-07-23T19:39:15.4230033Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:94: Stale 100.0% +2025-07-23T19:39:15.4230573Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:103: Account 88.9% +2025-07-23T19:39:15.4231124Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:120: AccountRLP 100.0% +2025-07-23T19:39:15.4231672Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:158: Storage 100.0% +2025-07-23T19:39:15.4232211Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:199: Update 100.0% +2025-07-23T19:39:15.4232781Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:55: generateSnapshot 91.7% +2025-07-23T19:39:15.4233375Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:90: journalProgress 88.2% +2025-07-23T19:39:15.4234084Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:127: checkAndFlush 50.0% +2025-07-23T19:39:15.4234649Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:178: generate 68.9% +2025-07-23T19:39:15.4235254Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:335: newMeteredSnapshotCache 100.0% +2025-07-23T19:39:15.4235891Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:69: AccountIterator 100.0% +2025-07-23T19:39:15.4236441Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:83: Next 70.0% +2025-07-23T19:39:15.4236970Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:108: Error 100.0% +2025-07-23T19:39:15.4237499Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:113: Hash 100.0% +2025-07-23T19:39:15.4238024Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:125: Account 81.8% +2025-07-23T19:39:15.4238786Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:143: Release 0.0% +2025-07-23T19:39:15.4239371Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:153: AccountIterator 100.0% +2025-07-23T19:39:15.4240062Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:162: Next 90.0% +2025-07-23T19:39:15.4240592Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:186: Error 100.0% +2025-07-23T19:39:15.4241122Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:194: Hash 100.0% +2025-07-23T19:39:15.4241659Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:199: Account 100.0% +2025-07-23T19:39:15.4242199Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:204: Release 33.3% +2025-07-23T19:39:15.4242762Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:233: StorageIterator 100.0% +2025-07-23T19:39:15.4243319Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:250: Next 70.0% +2025-07-23T19:39:15.4243843Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:275: Error 100.0% +2025-07-23T19:39:15.4244372Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:280: Hash 100.0% +2025-07-23T19:39:15.4244884Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:292: Slot 72.7% +2025-07-23T19:39:15.4245405Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:311: Release 0.0% +2025-07-23T19:39:15.4245975Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:325: StorageIterator 100.0% +2025-07-23T19:39:15.4246526Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:341: Next 90.0% +2025-07-23T19:39:15.4247047Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:365: Error 100.0% +2025-07-23T19:39:15.4247568Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:373: Hash 100.0% +2025-07-23T19:39:15.4248090Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:378: Slot 100.0% +2025-07-23T19:39:15.4248878Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:383: Release 33.3% +2025-07-23T19:39:15.4249517Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:53: initBinaryAccountIterator 100.0% +2025-07-23T19:39:15.4250233Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:78: initBinaryStorageIterator 82.6% +2025-07-23T19:39:15.4250867Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:130: Next 100.0% +2025-07-23T19:39:15.4251439Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:162: Error 100.0% +2025-07-23T19:39:15.4252009Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:167: Hash 100.0% +2025-07-23T19:39:15.4252590Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:176: Account 57.1% +2025-07-23T19:39:15.4253168Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:194: Slot 57.1% +2025-07-23T19:39:15.4253736Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:207: Release 0.0% +2025-07-23T19:39:15.4254508Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:214: newBinaryAccountIterator 100.0% +2025-07-23T19:39:15.4255214Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:221: newBinaryStorageIterator 100.0% +2025-07-23T19:39:15.4255825Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:47: Cmp 50.0% +2025-07-23T19:39:15.4256420Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:86: newFastIterator 92.9% +2025-07-23T19:39:15.4257005Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:124: init 87.5% +2025-07-23T19:39:15.4257547Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:179: Next 83.3% +2025-07-23T19:39:15.4258090Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:235: next 100.0% +2025-07-23T19:39:15.4258858Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:296: move 100.0% +2025-07-23T19:39:15.4259422Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:304: Error 100.0% +2025-07-23T19:39:15.4259979Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:309: Hash 100.0% +2025-07-23T19:39:15.4260668Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:315: Account 100.0% +2025-07-23T19:39:15.4261230Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:321: Slot 100.0% +2025-07-23T19:39:15.4261792Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:327: Release 100.0% +2025-07-23T19:39:15.4262351Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:335: Debug 0.0% +2025-07-23T19:39:15.4262967Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:345: newFastAccountIterator 100.0% +2025-07-23T19:39:15.4263649Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:352: newFastStorageIterator 100.0% +2025-07-23T19:39:15.4264269Z github.com/ava-labs/coreth/core/state/snapshot/journal.go:61: loadSnapshot 0.0% +2025-07-23T19:39:15.4264878Z github.com/ava-labs/coreth/core/state/snapshot/journal.go:143: ResetSnapshotGeneration 0.0% +2025-07-23T19:39:15.4265457Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:205: New 0.0% +2025-07-23T19:39:15.4265998Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:254: insertSnap 100.0% +2025-07-23T19:39:15.4266552Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:266: Snapshot 100.0% +2025-07-23T19:39:15.4267105Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:272: getSnapshot 85.7% +2025-07-23T19:39:15.4267653Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:288: Snapshots 0.0% +2025-07-23T19:39:15.4268327Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:323: WithBlockHashes 0.0% +2025-07-23T19:39:15.4268896Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:329: Update 0.0% +2025-07-23T19:39:15.4269486Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:350: UpdateWithBlockHashes 81.8% +2025-07-23T19:39:15.4270119Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:386: verifyIntegrity 57.1% +2025-07-23T19:39:15.4270680Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:413: Cap 0.0% +2025-07-23T19:39:15.4271207Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:433: Flatten 83.1% +2025-07-23T19:39:15.4271773Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:533: NumStateLayers 100.0% +2025-07-23T19:39:15.4272365Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:540: NumBlockLayers 100.0% +2025-07-23T19:39:15.4272948Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:548: Discard 100.0% +2025-07-23T19:39:15.4273503Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:560: discard 78.6% +2025-07-23T19:39:15.4274070Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:592: AbortGeneration 0.0% +2025-07-23T19:39:15.4274801Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:603: abortGeneration 63.6% +2025-07-23T19:39:15.4275387Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:631: diffToDisk 75.4% +2025-07-23T19:39:15.4275935Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:779: Release 0.0% +2025-07-23T19:39:15.4276473Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:788: Rebuild 0.0% +2025-07-23T19:39:15.4277046Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:842: AccountIterator 71.4% +2025-07-23T19:39:15.4277649Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:859: StorageIterator 100.0% +2025-07-23T19:39:15.4278515Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:863: StorageIteratorWithForce 71.4% +2025-07-23T19:39:15.4279125Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:878: Verify 0.0% +2025-07-23T19:39:15.4279660Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:886: verify 66.7% +2025-07-23T19:39:15.4280213Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:918: disklayer 83.3% +2025-07-23T19:39:15.4280876Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:941: diskRoot 0.0% +2025-07-23T19:39:15.4281423Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:951: generating 87.5% +2025-07-23T19:39:15.4281966Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:965: DiskRoot 0.0% +2025-07-23T19:39:15.4282484Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:977: Size 0.0% +2025-07-23T19:39:15.4283066Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:14: DiskAccountIterator 0.0% +2025-07-23T19:39:15.4283699Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:21: DiskStorageIterator 0.0% +2025-07-23T19:39:15.4284305Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:41: NewDiskLayer 0.0% +2025-07-23T19:39:15.4284893Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:53: NewTestTree 100.0% +2025-07-23T19:39:15.4285496Z github.com/ava-labs/coreth/core/state/snapshot/utils.go:43: CheckDanglingStorage 50.0% +2025-07-23T19:39:15.4286123Z github.com/ava-labs/coreth/core/state/snapshot/utils.go:53: checkDanglingDiskStorage 76.5% +2025-07-23T19:39:15.4286708Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:45: WipeSnapshot 80.0% +2025-07-23T19:39:15.4287241Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:68: wipeContent 60.0% +2025-07-23T19:39:15.4287774Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:84: wipeKeyRange 59.4% +2025-07-23T19:39:15.4288369Z github.com/ava-labs/coreth/core/state/statedb.go:65: New 75.0% +2025-07-23T19:39:15.4288823Z github.com/ava-labs/coreth/core/state/statedb.go:81: Done 0.0% +2025-07-23T19:39:15.4289314Z github.com/ava-labs/coreth/core/state/statedb.go:87: WithConcurrentWorkers 0.0% +2025-07-23T19:39:15.4289863Z github.com/ava-labs/coreth/core/state/statedb.go:95: GetBalanceMultiCoin 100.0% +2025-07-23T19:39:15.4290390Z github.com/ava-labs/coreth/core/state/statedb.go:101: GetState 100.0% +2025-07-23T19:39:15.4290903Z github.com/ava-labs/coreth/core/state/statedb.go:107: AddBalanceMultiCoin 75.0% +2025-07-23T19:39:15.4291450Z github.com/ava-labs/coreth/core/state/statedb.go:121: SubBalanceMultiCoin 71.4% +2025-07-23T19:39:15.4291962Z github.com/ava-labs/coreth/core/state/statedb.go:136: SetState 100.0% +2025-07-23T19:39:15.4292451Z github.com/ava-labs/coreth/core/state/statedb.go:144: SetTxContext 0.0% +2025-07-23T19:39:15.4292935Z github.com/ava-labs/coreth/core/state/statedb.go:151: GetTxHash 0.0% +2025-07-23T19:39:15.4293405Z github.com/ava-labs/coreth/core/state/statedb.go:155: Copy 0.0% +2025-07-23T19:39:15.4293898Z github.com/ava-labs/coreth/core/state/statedb.go:169: NormalizeCoinID 100.0% +2025-07-23T19:39:15.4294429Z github.com/ava-labs/coreth/core/state/statedb.go:177: NormalizeStateKey 100.0% +2025-07-23T19:39:15.4295053Z github.com/ava-labs/coreth/core/state_manager.go:41: init 100.0% +2025-07-23T19:39:15.4295536Z github.com/ava-labs/coreth/core/state_manager.go:67: NewTrieWriter 100.0% +2025-07-23T19:39:15.4296034Z github.com/ava-labs/coreth/core/state_manager.go:91: InsertTrie 100.0% +2025-07-23T19:39:15.4296514Z github.com/ava-labs/coreth/core/state_manager.go:97: AcceptTrie 100.0% +2025-07-23T19:39:15.4297004Z github.com/ava-labs/coreth/core/state_manager.go:103: RejectTrie 100.0% +2025-07-23T19:39:15.4297484Z github.com/ava-labs/coreth/core/state_manager.go:107: Shutdown 100.0% +2025-07-23T19:39:15.4297964Z github.com/ava-labs/coreth/core/state_manager.go:120: InsertTrie 50.0% +2025-07-23T19:39:15.4298635Z github.com/ava-labs/coreth/core/state_manager.go:134: AcceptTrie 68.4% +2025-07-23T19:39:15.4299121Z github.com/ava-labs/coreth/core/state_manager.go:182: RejectTrie 100.0% +2025-07-23T19:39:15.4299608Z github.com/ava-labs/coreth/core/state_manager.go:187: Shutdown 100.0% +2025-07-23T19:39:15.4300235Z github.com/ava-labs/coreth/core/state_processor.go:55: NewStateProcessor 100.0% +2025-07-23T19:39:15.4300746Z github.com/ava-labs/coreth/core/state_processor.go:70: Process 90.9% +2025-07-23T19:39:15.4301257Z github.com/ava-labs/coreth/core/state_processor.go:120: applyTransaction 92.6% +2025-07-23T19:39:15.4301788Z github.com/ava-labs/coreth/core/state_processor.go:174: ApplyTransaction 83.3% +2025-07-23T19:39:15.4302343Z github.com/ava-labs/coreth/core/state_processor.go:187: ProcessBeaconBlockRoot 100.0% +2025-07-23T19:39:15.4302950Z github.com/ava-labs/coreth/core/state_processor_ext.go:24: ApplyPrecompileActivations 23.8% +2025-07-23T19:39:15.4303523Z github.com/ava-labs/coreth/core/state_processor_ext.go:77: ApplyUpgrades 100.0% +2025-07-23T19:39:15.4304067Z github.com/ava-labs/coreth/core/state_processor_ext.go:91: NewBlockContext 100.0% +2025-07-23T19:39:15.4304584Z github.com/ava-labs/coreth/core/state_processor_ext.go:98: Number 0.0% +2025-07-23T19:39:15.4305083Z github.com/ava-labs/coreth/core/state_processor_ext.go:99: Timestamp 100.0% +2025-07-23T19:39:15.4305576Z github.com/ava-labs/coreth/core/state_transition.go:56: Unwrap 0.0% +2025-07-23T19:39:15.4306050Z github.com/ava-labs/coreth/core/state_transition.go:61: Failed 100.0% +2025-07-23T19:39:15.4306524Z github.com/ava-labs/coreth/core/state_transition.go:65: Return 0.0% +2025-07-23T19:39:15.4306992Z github.com/ava-labs/coreth/core/state_transition.go:74: Revert 0.0% +2025-07-23T19:39:15.4307483Z github.com/ava-labs/coreth/core/state_transition.go:82: IntrinsicGas 88.2% +2025-07-23T19:39:15.4307993Z github.com/ava-labs/coreth/core/state_transition.go:139: accessListGas 91.3% +2025-07-23T19:39:15.4308610Z github.com/ava-labs/coreth/core/state_transition.go:179: toWordSize 66.7% +2025-07-23T19:39:15.4309155Z github.com/ava-labs/coreth/core/state_transition.go:210: TransactionToMessage 100.0% +2025-07-23T19:39:15.4309704Z github.com/ava-labs/coreth/core/state_transition.go:241: ApplyMessage 100.0% +2025-07-23T19:39:15.4310248Z github.com/ava-labs/coreth/core/state_transition.go:277: NewStateTransition 100.0% +2025-07-23T19:39:15.4310753Z github.com/ava-labs/coreth/core/state_transition.go:287: to 66.7% +2025-07-23T19:39:15.4311224Z github.com/ava-labs/coreth/core/state_transition.go:294: buyGas 77.8% +2025-07-23T19:39:15.4311705Z github.com/ava-labs/coreth/core/state_transition.go:333: preCheck 89.5% +2025-07-23T19:39:15.4312205Z github.com/ava-labs/coreth/core/state_transition.go:426: TransitionDb 88.2% +2025-07-23T19:39:15.4312708Z github.com/ava-labs/coreth/core/state_transition.go:514: refundGas 100.0% +2025-07-23T19:39:15.4313201Z github.com/ava-labs/coreth/core/state_transition.go:539: gasUsed 100.0% +2025-07-23T19:39:15.4313692Z github.com/ava-labs/coreth/core/state_transition.go:544: blobGasUsed 100.0% +2025-07-23T19:39:15.4314280Z github.com/ava-labs/coreth/core/txindexer.go:46: Done 0.0% +2025-07-23T19:39:15.4314735Z github.com/ava-labs/coreth/core/txindexer.go:68: newTxIndexer 90.9% +2025-07-23T19:39:15.4315178Z github.com/ava-labs/coreth/core/txindexer.go:97: run 90.9% +2025-07-23T19:39:15.4315590Z github.com/ava-labs/coreth/core/txindexer.go:124: loop 91.7% +2025-07-23T19:39:15.4316030Z github.com/ava-labs/coreth/core/txindexer.go:191: report 0.0% +2025-07-23T19:39:15.4316465Z github.com/ava-labs/coreth/core/txindexer.go:213: close 100.0% +2025-07-23T19:39:15.4316914Z github.com/ava-labs/coreth/core/txindexer.go:224: lockedRun 100.0% +2025-07-23T19:39:15.4317451Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:124: newBlobTxMeta 100.0% +2025-07-23T19:39:15.4318015Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:333: New 100.0% +2025-07-23T19:39:15.4318776Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:349: Filter 0.0% +2025-07-23T19:39:15.4319319Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:356: Init 78.8% +2025-07-23T19:39:15.4319977Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:458: Close 60.0% +2025-07-23T19:39:15.4320558Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:480: parseTransaction 88.0% +2025-07-23T19:39:15.4321140Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:528: recheck 90.9% +2025-07-23T19:39:15.4321711Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:779: offload 0.0% +2025-07-23T19:39:15.4322243Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:803: Reset 0.0% +2025-07-23T19:39:15.4322761Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:875: reorg 0.0% +2025-07-23T19:39:15.4323289Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1003: reinject 0.0% +2025-07-23T19:39:15.4323844Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1047: SetGasTip 97.2% +2025-07-23T19:39:15.4324430Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1112: validateTx 100.0% +2025-07-23T19:39:15.4324982Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1197: Has 0.0% +2025-07-23T19:39:15.4325506Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1205: HasLocal 0.0% +2025-07-23T19:39:15.4326037Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1211: Get 0.0% +2025-07-23T19:39:15.4326550Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1243: Add 0.0% +2025-07-23T19:39:15.4327064Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1263: add 89.3% +2025-07-23T19:39:15.4327583Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1430: drop 54.5% +2025-07-23T19:39:15.4328283Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1485: Pending 0.0% +2025-07-23T19:39:15.4328894Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1547: IteratePending 0.0% +2025-07-23T19:39:15.4329474Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1565: SetMinFee 0.0% +2025-07-23T19:39:15.4330494Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1569: updateStorageMetrics 100.0% +2025-07-23T19:39:15.4331167Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1616: updateLimboMetrics 100.0% +2025-07-23T19:39:15.4331808Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1644: SubscribeTransactions 0.0% +2025-07-23T19:39:15.4332389Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1654: Nonce 0.0% +2025-07-23T19:39:15.4332916Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1666: Stats 0.0% +2025-07-23T19:39:15.4333452Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1682: Content 0.0% +2025-07-23T19:39:15.4334010Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1691: ContentFrom 0.0% +2025-07-23T19:39:15.4334699Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1698: Locals 0.0% +2025-07-23T19:39:15.4335241Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1704: Status 0.0% +2025-07-23T19:39:15.4335775Z github.com/ava-labs/coreth/core/txpool/blobpool/config.go:50: sanitize 100.0% +2025-07-23T19:39:15.4336338Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:60: newPriceHeap 100.0% +2025-07-23T19:39:15.4336904Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:84: reinit 85.7% +2025-07-23T19:39:15.4337439Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:101: Len 100.0% +2025-07-23T19:39:15.4337969Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:107: Less 100.0% +2025-07-23T19:39:15.4338709Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:131: Swap 100.0% +2025-07-23T19:39:15.4339249Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:138: Push 100.0% +2025-07-23T19:39:15.4339786Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:148: Pop 100.0% +2025-07-23T19:39:15.4340442Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:62: newLimbo 50.0% +2025-07-23T19:39:15.4340951Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:93: Close 100.0% +2025-07-23T19:39:15.4341467Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:99: parseBlob 0.0% +2025-07-23T19:39:15.4341984Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:126: finalize 0.0% +2025-07-23T19:39:15.4342501Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:149: push 0.0% +2025-07-23T19:39:15.4343003Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:166: pull 0.0% +2025-07-23T19:39:15.4343507Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:190: update 0.0% +2025-07-23T19:39:15.4344029Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:221: getAndDrop 0.0% +2025-07-23T19:39:15.4344569Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:243: setAndIndex 0.0% +2025-07-23T19:39:15.4345160Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:45: evictionPriority 100.0% +2025-07-23T19:39:15.4345794Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:58: evictionPriority1D 100.0% +2025-07-23T19:39:15.4346420Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:77: dynamicFeeJumps 100.0% +2025-07-23T19:39:15.4346989Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:87: intLog2 50.0% +2025-07-23T19:39:15.4347540Z github.com/ava-labs/coreth/core/txpool/blobpool/slotter.go:39: newSlotter 100.0% +2025-07-23T19:39:15.4348189Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:52: Write 100.0% +2025-07-23T19:39:15.4348722Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:53: Close 0.0% +2025-07-23T19:39:15.4349275Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:63: newTxJournal 100.0% +2025-07-23T19:39:15.4349833Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:71: load 87.1% +2025-07-23T19:39:15.4350367Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:132: insert 60.0% +2025-07-23T19:39:15.4350904Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:144: rotate 76.9% +2025-07-23T19:39:15.4351440Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:189: close 100.0% +2025-07-23T19:39:15.4351999Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:186: sanitize 46.2% +2025-07-23T19:39:15.4352566Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:275: New 80.0% +2025-07-23T19:39:15.4353118Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:312: Filter 0.0% +2025-07-23T19:39:15.4353673Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:325: Init 81.0% +2025-07-23T19:39:15.4354229Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:371: loop 96.8% +2025-07-23T19:39:15.4354911Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:439: Close 100.0% +2025-07-23T19:39:15.4355468Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:455: Reset 0.0% +2025-07-23T19:39:15.4356089Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:462: SubscribeTransactions 0.0% +2025-07-23T19:39:15.4356732Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:472: SetGasTip 100.0% +2025-07-23T19:39:15.4357322Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:493: SetMinFee 0.0% +2025-07-23T19:39:15.4357891Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:502: Nonce 100.0% +2025-07-23T19:39:15.4358555Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:511: Stats 100.0% +2025-07-23T19:39:15.4359122Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:520: stats 100.0% +2025-07-23T19:39:15.4359686Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:534: Content 88.9% +2025-07-23T19:39:15.4360400Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:551: ContentFrom 0.0% +2025-07-23T19:39:15.4360986Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:571: Pending 0.0% +2025-07-23T19:39:15.4361583Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:631: IteratePending 0.0% +2025-07-23T19:39:15.4362172Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:646: Locals 0.0% +2025-07-23T19:39:15.4362738Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:656: local 100.0% +2025-07-23T19:39:15.4363343Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:673: validateTxBasics 100.0% +2025-07-23T19:39:15.4363973Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:694: validateTx 100.0% +2025-07-23T19:39:15.4364543Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:743: add 88.3% +2025-07-23T19:39:15.4365111Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:893: isGapped 100.0% +2025-07-23T19:39:15.4365699Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:919: enqueueTx 95.0% +2025-07-23T19:39:15.4366272Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:958: journalTx 75.0% +2025-07-23T19:39:15.4366851Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:972: promoteTx 58.8% +2025-07-23T19:39:15.4367444Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1009: addLocals 100.0% +2025-07-23T19:39:15.4368042Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1015: addLocal 100.0% +2025-07-23T19:39:15.4368736Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1024: addRemotes 100.0% +2025-07-23T19:39:15.4369334Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1030: addRemote 100.0% +2025-07-23T19:39:15.4369952Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1035: addRemotesSync 100.0% +2025-07-23T19:39:15.4370595Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1040: addRemoteSync 100.0% +2025-07-23T19:39:15.4371186Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1049: Add 100.0% +2025-07-23T19:39:15.4371778Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1104: addTxsLocked 100.0% +2025-07-23T19:39:15.4372376Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1120: Status 90.9% +2025-07-23T19:39:15.4372934Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1139: Get 0.0% +2025-07-23T19:39:15.4373481Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1148: get 100.0% +2025-07-23T19:39:15.4374027Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1154: Has 0.0% +2025-07-23T19:39:15.4374582Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1158: HasLocal 0.0% +2025-07-23T19:39:15.4375322Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1171: removeTx 93.3% +2025-07-23T19:39:15.4375922Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1236: requestReset 66.7% +2025-07-23T19:39:15.4376593Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1247: requestPromoteExecutables 66.7% +2025-07-23T19:39:15.4377264Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1257: queueTxEvent 100.0% +2025-07-23T19:39:15.4377902Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1267: scheduleReorgLoop 93.1% +2025-07-23T19:39:15.4378615Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1337: runReorg 84.1% +2025-07-23T19:39:15.4379191Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1420: reset 23.1% +2025-07-23T19:39:15.4379805Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1520: promoteExecutables 100.0% +2025-07-23T19:39:15.4380467Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1590: truncatePending 69.6% +2025-07-23T19:39:15.4381223Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1675: truncateQueue 100.0% +2025-07-23T19:39:15.4381876Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1726: demoteUnexecutables 96.9% +2025-07-23T19:39:15.4382562Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1781: startPeriodicFeeUpdate 85.7% +2025-07-23T19:39:15.4383252Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1797: periodicBaseFeeUpdate 100.0% +2025-07-23T19:39:15.4383907Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1820: updateBaseFee 80.0% +2025-07-23T19:39:15.4384541Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1831: updateBaseFeeAt 83.3% +2025-07-23T19:39:15.4385143Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1849: Len 100.0% +2025-07-23T19:39:15.4385710Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1850: Less 100.0% +2025-07-23T19:39:15.4386277Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1851: Swap 100.0% +2025-07-23T19:39:15.4386885Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1863: newAccountSet 100.0% +2025-07-23T19:39:15.4387499Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1875: contains 100.0% +2025-07-23T19:39:15.4388196Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1882: containsTx 66.7% +2025-07-23T19:39:15.4388783Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1890: add 100.0% +2025-07-23T19:39:15.4389353Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1896: addTx 100.0% +2025-07-23T19:39:15.4389933Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1904: flatten 100.0% +2025-07-23T19:39:15.4390507Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1916: merge 0.0% +2025-07-23T19:39:15.4391093Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1943: newLookup 100.0% +2025-07-23T19:39:15.4391676Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1953: Range 60.0% +2025-07-23T19:39:15.4392231Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1974: Get 80.0% +2025-07-23T19:39:15.4392798Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1985: GetLocal 0.0% +2025-07-23T19:39:15.4393387Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1993: GetRemote 100.0% +2025-07-23T19:39:15.4393971Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2001: Count 100.0% +2025-07-23T19:39:15.4394550Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2009: LocalCount 0.0% +2025-07-23T19:39:15.4395158Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2017: RemoteCount 100.0% +2025-07-23T19:39:15.4395883Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2025: Slots 100.0% +2025-07-23T19:39:15.4396445Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2033: Add 100.0% +2025-07-23T19:39:15.4397009Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2048: Remove 83.3% +2025-07-23T19:39:15.4397613Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2069: RemoteToLocals 66.7% +2025-07-23T19:39:15.4398358Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2085: RemotesBelowTip 100.0% +2025-07-23T19:39:15.4398980Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2097: numSlots 100.0% +2025-07-23T19:39:15.4399543Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:49: Len 100.0% +2025-07-23T19:39:15.4400058Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:50: Less 100.0% +2025-07-23T19:39:15.4400585Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:51: Swap 100.0% +2025-07-23T19:39:15.4401093Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:53: Push 100.0% +2025-07-23T19:39:15.4401723Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:57: Pop 100.0% +2025-07-23T19:39:15.4402265Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:76: newSortedMap 100.0% +2025-07-23T19:39:15.4402801Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:84: Get 100.0% +2025-07-23T19:39:15.4403300Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:90: Put 100.0% +2025-07-23T19:39:15.4403823Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:103: Forward 100.0% +2025-07-23T19:39:15.4404365Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:126: Filter 100.0% +2025-07-23T19:39:15.4404897Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:135: reheap 100.0% +2025-07-23T19:39:15.4405429Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:148: filter 100.0% +2025-07-23T19:39:15.4405953Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:168: Cap 92.3% +2025-07-23T19:39:15.4406475Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:195: Remove 100.0% +2025-07-23T19:39:15.4407002Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:223: Ready 100.0% +2025-07-23T19:39:15.4407520Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:243: Len 100.0% +2025-07-23T19:39:15.4408048Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:247: flatten 100.0% +2025-07-23T19:39:15.4408693Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:264: Flatten 100.0% +2025-07-23T19:39:15.4409245Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:274: LastElement 100.0% +2025-07-23T19:39:15.4409795Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:294: newList 100.0% +2025-07-23T19:39:15.4410338Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:305: Contains 100.0% +2025-07-23T19:39:15.4410860Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:314: Add 100.0% +2025-07-23T19:39:15.4411387Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:361: Forward 100.0% +2025-07-23T19:39:15.4411921Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:376: Filter 95.0% +2025-07-23T19:39:15.4412440Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:412: Cap 100.0% +2025-07-23T19:39:15.4412954Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:421: Remove 100.0% +2025-07-23T19:39:15.4413482Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:444: Ready 100.0% +2025-07-23T19:39:15.4413995Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:451: Len 100.0% +2025-07-23T19:39:15.4414510Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:456: Empty 100.0% +2025-07-23T19:39:15.4415034Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:463: Flatten 100.0% +2025-07-23T19:39:15.4415715Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:469: LastElement 100.0% +2025-07-23T19:39:15.4416283Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:475: subTotalCost 75.0% +2025-07-23T19:39:15.4416817Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:493: Len 100.0% +2025-07-23T19:39:15.4417333Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:494: Swap 100.0% +2025-07-23T19:39:15.4417852Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:496: Less 100.0% +2025-07-23T19:39:15.4418459Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:507: cmp 100.0% +2025-07-23T19:39:15.4418966Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:522: Push 100.0% +2025-07-23T19:39:15.4419477Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:527: Pop 100.0% +2025-07-23T19:39:15.4420022Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:563: newPricedList 100.0% +2025-07-23T19:39:15.4420580Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:570: Put 100.0% +2025-07-23T19:39:15.4421217Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:581: Removed 100.0% +2025-07-23T19:39:15.4421806Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:593: Underpriced 100.0% +2025-07-23T19:39:15.4422376Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:603: underpricedFor 70.0% +2025-07-23T19:39:15.4422928Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:628: Discard 61.9% +2025-07-23T19:39:15.4423463Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:667: Reheap 100.0% +2025-07-23T19:39:15.4424006Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:695: SetBaseFee 100.0% +2025-07-23T19:39:15.4424564Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:47: newNoncer 100.0% +2025-07-23T19:39:15.4425098Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:56: get 100.0% +2025-07-23T19:39:15.4425619Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:72: set 100.0% +2025-07-23T19:39:15.4426156Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:81: setIfLower 62.5% +2025-07-23T19:39:15.4426705Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:97: setAll 100.0% +2025-07-23T19:39:15.4427214Z github.com/ava-labs/coreth/core/txpool/subpool.go:65: Resolve 66.7% +2025-07-23T19:39:15.4427686Z github.com/ava-labs/coreth/core/txpool/txpool.go:103: New 76.9% +2025-07-23T19:39:15.4428248Z github.com/ava-labs/coreth/core/txpool/txpool.go:143: reserver 69.2% +2025-07-23T19:39:15.4428718Z github.com/ava-labs/coreth/core/txpool/txpool.go:186: Close 76.9% +2025-07-23T19:39:15.4429186Z github.com/ava-labs/coreth/core/txpool/txpool.go:215: loop 92.6% +2025-07-23T19:39:15.4429652Z github.com/ava-labs/coreth/core/txpool/txpool.go:308: GasTip 100.0% +2025-07-23T19:39:15.4430136Z github.com/ava-labs/coreth/core/txpool/txpool.go:314: SetGasTip 100.0% +2025-07-23T19:39:15.4430617Z github.com/ava-labs/coreth/core/txpool/txpool.go:323: MinFee 0.0% +2025-07-23T19:39:15.4431090Z github.com/ava-labs/coreth/core/txpool/txpool.go:329: SetMinFee 100.0% +2025-07-23T19:39:15.4431558Z github.com/ava-labs/coreth/core/txpool/txpool.go:339: Has 75.0% +2025-07-23T19:39:15.4432023Z github.com/ava-labs/coreth/core/txpool/txpool.go:350: HasLocal 0.0% +2025-07-23T19:39:15.4432481Z github.com/ava-labs/coreth/core/txpool/txpool.go:360: Get 0.0% +2025-07-23T19:39:15.4432925Z github.com/ava-labs/coreth/core/txpool/txpool.go:372: Add 90.0% +2025-07-23T19:39:15.4433413Z github.com/ava-labs/coreth/core/txpool/txpool.go:415: AddRemotesSync 100.0% +2025-07-23T19:39:15.4433912Z github.com/ava-labs/coreth/core/txpool/txpool.go:425: Pending 100.0% +2025-07-23T19:39:15.4434408Z github.com/ava-labs/coreth/core/txpool/txpool.go:439: PendingSize 100.0% +2025-07-23T19:39:15.4435040Z github.com/ava-labs/coreth/core/txpool/txpool.go:451: IteratePending 66.7% +2025-07-23T19:39:15.4435594Z github.com/ava-labs/coreth/core/txpool/txpool.go:461: SubscribeTransactions 85.7% +2025-07-23T19:39:15.4436159Z github.com/ava-labs/coreth/core/txpool/txpool.go:475: SubscribeNewReorgEvent 100.0% +2025-07-23T19:39:15.4436683Z github.com/ava-labs/coreth/core/txpool/txpool.go:481: Nonce 100.0% +2025-07-23T19:39:15.4437145Z github.com/ava-labs/coreth/core/txpool/txpool.go:496: Stats 0.0% +2025-07-23T19:39:15.4437607Z github.com/ava-labs/coreth/core/txpool/txpool.go:509: Content 0.0% +2025-07-23T19:39:15.4438078Z github.com/ava-labs/coreth/core/txpool/txpool.go:529: ContentFrom 0.0% +2025-07-23T19:39:15.4438656Z github.com/ava-labs/coreth/core/txpool/txpool.go:540: Locals 75.0% +2025-07-23T19:39:15.4439121Z github.com/ava-labs/coreth/core/txpool/txpool.go:558: Status 0.0% +2025-07-23T19:39:15.4439577Z github.com/ava-labs/coreth/core/txpool/txpool.go:574: Sync 75.0% +2025-07-23T19:39:15.4440211Z github.com/ava-labs/coreth/core/txpool/validation.go:67: ValidateTransaction 73.9% +2025-07-23T19:39:15.4440799Z github.com/ava-labs/coreth/core/txpool/validation.go:160: validateBlobSidecar 66.7% +2025-07-23T19:39:15.4441410Z github.com/ava-labs/coreth/core/txpool/validation.go:222: ValidateTransactionWithState 88.9% +2025-07-23T19:39:15.4441962Z github.com/ava-labs/coreth/core/vm/runtime/env.go:35: NewEnv 100.0% +2025-07-23T19:39:15.4442460Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:71: setDefaults 94.7% +2025-07-23T19:39:15.4442976Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:134: Execute 100.0% +2025-07-23T19:39:15.4443472Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:169: Create 77.8% +2025-07-23T19:39:15.4443966Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:203: Call 100.0% +2025-07-23T19:39:15.4444431Z github.com/ava-labs/coreth/eth/api.go:40: NewEthereumAPI 0.0% +2025-07-23T19:39:15.4444852Z github.com/ava-labs/coreth/eth/api.go:45: Etherbase 0.0% +2025-07-23T19:39:15.4445259Z github.com/ava-labs/coreth/eth/api.go:50: Coinbase 0.0% +2025-07-23T19:39:15.4445689Z github.com/ava-labs/coreth/eth/api_admin.go:50: NewAdminAPI 0.0% +2025-07-23T19:39:15.4446145Z github.com/ava-labs/coreth/eth/api_admin.go:56: ExportChain 0.0% +2025-07-23T19:39:15.4446600Z github.com/ava-labs/coreth/eth/api_admin.go:93: hasAllBlocks 0.0% +2025-07-23T19:39:15.4447047Z github.com/ava-labs/coreth/eth/api_admin.go:104: ImportChain 0.0% +2025-07-23T19:39:15.4447496Z github.com/ava-labs/coreth/eth/api_backend.go:72: ChainConfig 0.0% +2025-07-23T19:39:15.4447946Z github.com/ava-labs/coreth/eth/api_backend.go:77: IsArchive 0.0% +2025-07-23T19:39:15.4448554Z github.com/ava-labs/coreth/eth/api_backend.go:83: HistoricalProofQueryWindow 0.0% +2025-07-23T19:39:15.4449125Z github.com/ava-labs/coreth/eth/api_backend.go:87: IsAllowUnfinalizedQueries 0.0% +2025-07-23T19:39:15.4449676Z github.com/ava-labs/coreth/eth/api_backend.go:91: SetAllowUnfinalizedQueries 0.0% +2025-07-23T19:39:15.4450183Z github.com/ava-labs/coreth/eth/api_backend.go:95: CurrentBlock 0.0% +2025-07-23T19:39:15.4450663Z github.com/ava-labs/coreth/eth/api_backend.go:99: LastAcceptedBlock 0.0% +2025-07-23T19:39:15.4451152Z github.com/ava-labs/coreth/eth/api_backend.go:103: HeaderByNumber 0.0% +2025-07-23T19:39:15.4451629Z github.com/ava-labs/coreth/eth/api_backend.go:126: HeaderByHash 0.0% +2025-07-23T19:39:15.4452124Z github.com/ava-labs/coreth/eth/api_backend.go:149: HeaderByNumberOrHash 0.0% +2025-07-23T19:39:15.4452628Z github.com/ava-labs/coreth/eth/api_backend.go:166: BlockByNumber 0.0% +2025-07-23T19:39:15.4453101Z github.com/ava-labs/coreth/eth/api_backend.go:190: BlockByHash 0.0% +2025-07-23T19:39:15.4453558Z github.com/ava-labs/coreth/eth/api_backend.go:215: GetBody 0.0% +2025-07-23T19:39:15.4454158Z github.com/ava-labs/coreth/eth/api_backend.go:225: BlockByNumberOrHash 0.0% +2025-07-23T19:39:15.4454651Z github.com/ava-labs/coreth/eth/api_backend.go:245: BadBlocks 0.0% +2025-07-23T19:39:15.4455145Z github.com/ava-labs/coreth/eth/api_backend.go:249: StateAndHeaderByNumber 0.0% +2025-07-23T19:39:15.4455699Z github.com/ava-labs/coreth/eth/api_backend.go:265: StateAndHeaderByNumberOrHash 0.0% +2025-07-23T19:39:15.4456211Z github.com/ava-labs/coreth/eth/api_backend.go:289: GetReceipts 0.0% +2025-07-23T19:39:15.4456665Z github.com/ava-labs/coreth/eth/api_backend.go:296: GetLogs 0.0% +2025-07-23T19:39:15.4457107Z github.com/ava-labs/coreth/eth/api_backend.go:303: GetEVM 0.0% +2025-07-23T19:39:15.4457593Z github.com/ava-labs/coreth/eth/api_backend.go:317: SubscribeRemovedLogsEvent 0.0% +2025-07-23T19:39:15.4458235Z github.com/ava-labs/coreth/eth/api_backend.go:321: SubscribePendingLogsEvent 0.0% +2025-07-23T19:39:15.4458772Z github.com/ava-labs/coreth/eth/api_backend.go:325: SubscribeChainEvent 0.0% +2025-07-23T19:39:15.4459425Z github.com/ava-labs/coreth/eth/api_backend.go:329: SubscribeChainAcceptedEvent 0.0% +2025-07-23T19:39:15.4459969Z github.com/ava-labs/coreth/eth/api_backend.go:333: SubscribeChainHeadEvent 0.0% +2025-07-23T19:39:15.4460501Z github.com/ava-labs/coreth/eth/api_backend.go:337: SubscribeChainSideEvent 0.0% +2025-07-23T19:39:15.4461020Z github.com/ava-labs/coreth/eth/api_backend.go:341: SubscribeLogsEvent 0.0% +2025-07-23T19:39:15.4461557Z github.com/ava-labs/coreth/eth/api_backend.go:345: SubscribeAcceptedLogsEvent 0.0% +2025-07-23T19:39:15.4462129Z github.com/ava-labs/coreth/eth/api_backend.go:349: SubscribeAcceptedTransactionEvent 0.0% +2025-07-23T19:39:15.4462647Z github.com/ava-labs/coreth/eth/api_backend.go:353: SendTx 0.0% +2025-07-23T19:39:15.4463126Z github.com/ava-labs/coreth/eth/api_backend.go:367: GetPoolTransactions 0.0% +2025-07-23T19:39:15.4463637Z github.com/ava-labs/coreth/eth/api_backend.go:380: GetPoolTransaction 0.0% +2025-07-23T19:39:15.4464138Z github.com/ava-labs/coreth/eth/api_backend.go:384: GetTransaction 0.0% +2025-07-23T19:39:15.4464618Z github.com/ava-labs/coreth/eth/api_backend.go:407: GetPoolNonce 0.0% +2025-07-23T19:39:15.4465072Z github.com/ava-labs/coreth/eth/api_backend.go:411: Stats 0.0% +2025-07-23T19:39:15.4465524Z github.com/ava-labs/coreth/eth/api_backend.go:415: TxPoolContent 0.0% +2025-07-23T19:39:15.4466013Z github.com/ava-labs/coreth/eth/api_backend.go:419: TxPoolContentFrom 0.0% +2025-07-23T19:39:15.4466530Z github.com/ava-labs/coreth/eth/api_backend.go:423: SubscribeNewTxsEvent 0.0% +2025-07-23T19:39:15.4467040Z github.com/ava-labs/coreth/eth/api_backend.go:427: EstimateBaseFee 0.0% +2025-07-23T19:39:15.4467516Z github.com/ava-labs/coreth/eth/api_backend.go:431: SuggestPrice 0.0% +2025-07-23T19:39:15.4468003Z github.com/ava-labs/coreth/eth/api_backend.go:435: SuggestGasTipCap 0.0% +2025-07-23T19:39:15.4468901Z github.com/ava-labs/coreth/eth/api_backend.go:439: FeeHistory 0.0% +2025-07-23T19:39:15.4469463Z github.com/ava-labs/coreth/eth/api_backend.go:443: ChainDb 0.0% +2025-07-23T19:39:15.4469918Z github.com/ava-labs/coreth/eth/api_backend.go:447: EventMux 0.0% +2025-07-23T19:39:15.4470386Z github.com/ava-labs/coreth/eth/api_backend.go:451: AccountManager 0.0% +2025-07-23T19:39:15.4470866Z github.com/ava-labs/coreth/eth/api_backend.go:455: ExtRPCEnabled 0.0% +2025-07-23T19:39:15.4471358Z github.com/ava-labs/coreth/eth/api_backend.go:459: UnprotectedAllowed 75.0% +2025-07-23T19:39:15.4471845Z github.com/ava-labs/coreth/eth/api_backend.go:479: RPCGasCap 0.0% +2025-07-23T19:39:15.4472311Z github.com/ava-labs/coreth/eth/api_backend.go:483: RPCEVMTimeout 0.0% +2025-07-23T19:39:15.4472785Z github.com/ava-labs/coreth/eth/api_backend.go:487: RPCTxFeeCap 0.0% +2025-07-23T19:39:15.4473416Z github.com/ava-labs/coreth/eth/api_backend.go:491: PriceOptionsConfig 0.0% +2025-07-23T19:39:15.4473907Z github.com/ava-labs/coreth/eth/api_backend.go:495: BloomStatus 0.0% +2025-07-23T19:39:15.4474377Z github.com/ava-labs/coreth/eth/api_backend.go:500: ServiceFilter 0.0% +2025-07-23T19:39:15.4474832Z github.com/ava-labs/coreth/eth/api_backend.go:506: Engine 0.0% +2025-07-23T19:39:15.4475286Z github.com/ava-labs/coreth/eth/api_backend.go:510: CurrentHeader 0.0% +2025-07-23T19:39:15.4475798Z github.com/ava-labs/coreth/eth/api_backend.go:514: GetMaxBlocksPerRequest 0.0% +2025-07-23T19:39:15.4476300Z github.com/ava-labs/coreth/eth/api_backend.go:518: StateAtBlock 0.0% +2025-07-23T19:39:15.4476777Z github.com/ava-labs/coreth/eth/api_backend.go:522: StateAtNextBlock 0.0% +2025-07-23T19:39:15.4477275Z github.com/ava-labs/coreth/eth/api_backend.go:526: StateAtTransaction 0.0% +2025-07-23T19:39:15.4477770Z github.com/ava-labs/coreth/eth/api_backend.go:530: MinRequiredTip 0.0% +2025-07-23T19:39:15.4478376Z github.com/ava-labs/coreth/eth/api_backend.go:535: isLatestAndAllowed 0.0% +2025-07-23T19:39:15.4478980Z github.com/ava-labs/coreth/eth/api_debug.go:56: NewDebugAPI 0.0% +2025-07-23T19:39:15.4479433Z github.com/ava-labs/coreth/eth/api_debug.go:61: DumpBlock 0.0% +2025-07-23T19:39:15.4479868Z github.com/ava-labs/coreth/eth/api_debug.go:91: Preimage 0.0% +2025-07-23T19:39:15.4480308Z github.com/ava-labs/coreth/eth/api_debug.go:100: GetBadBlocks 0.0% +2025-07-23T19:39:15.4480764Z github.com/ava-labs/coreth/eth/api_debug.go:109: AccountRange 0.0% +2025-07-23T19:39:15.4481224Z github.com/ava-labs/coreth/eth/api_debug.go:175: StorageRangeAt 0.0% +2025-07-23T19:39:15.4481693Z github.com/ava-labs/coreth/eth/api_debug.go:194: storageRangeAt 84.0% +2025-07-23T19:39:15.4482198Z github.com/ava-labs/coreth/eth/api_debug.go:235: GetModifiedAccountsByNumber 0.0% +2025-07-23T19:39:15.4482749Z github.com/ava-labs/coreth/eth/api_debug.go:263: GetModifiedAccountsByHash 0.0% +2025-07-23T19:39:15.4483277Z github.com/ava-labs/coreth/eth/api_debug.go:285: getModifiedAccounts 0.0% +2025-07-23T19:39:15.4483771Z github.com/ava-labs/coreth/eth/api_debug.go:326: GetAccessibleState 0.0% +2025-07-23T19:39:15.4484260Z github.com/ava-labs/coreth/eth/backend.go:121: roundUpCacheSize 0.0% +2025-07-23T19:39:15.4484704Z github.com/ava-labs/coreth/eth/backend.go:128: New 0.0% +2025-07-23T19:39:15.4485105Z github.com/ava-labs/coreth/eth/backend.go:309: APIs 0.0% +2025-07-23T19:39:15.4485521Z github.com/ava-labs/coreth/eth/backend.go:349: Etherbase 0.0% +2025-07-23T19:39:15.4485966Z github.com/ava-labs/coreth/eth/backend.go:361: SetEtherbase 0.0% +2025-07-23T19:39:15.4486401Z github.com/ava-labs/coreth/eth/backend.go:369: Miner 0.0% +2025-07-23T19:39:15.4486841Z github.com/ava-labs/coreth/eth/backend.go:371: AccountManager 0.0% +2025-07-23T19:39:15.4487301Z github.com/ava-labs/coreth/eth/backend.go:372: BlockChain 0.0% +2025-07-23T19:39:15.4487740Z github.com/ava-labs/coreth/eth/backend.go:373: TxPool 0.0% +2025-07-23T19:39:15.4488256Z github.com/ava-labs/coreth/eth/backend.go:374: EventMux 0.0% +2025-07-23T19:39:15.4488802Z github.com/ava-labs/coreth/eth/backend.go:375: Engine 0.0% +2025-07-23T19:39:15.4489217Z github.com/ava-labs/coreth/eth/backend.go:376: ChainDb 0.0% +2025-07-23T19:39:15.4489648Z github.com/ava-labs/coreth/eth/backend.go:378: NetVersion 0.0% +2025-07-23T19:39:15.4490092Z github.com/ava-labs/coreth/eth/backend.go:379: ArchiveMode 0.0% +2025-07-23T19:39:15.4490541Z github.com/ava-labs/coreth/eth/backend.go:380: BloomIndexer 0.0% +2025-07-23T19:39:15.4490973Z github.com/ava-labs/coreth/eth/backend.go:384: Start 0.0% +2025-07-23T19:39:15.4491377Z github.com/ava-labs/coreth/eth/backend.go:395: Stop 0.0% +2025-07-23T19:39:15.4491817Z github.com/ava-labs/coreth/eth/backend.go:413: LastAcceptedBlock 0.0% +2025-07-23T19:39:15.4492468Z github.com/ava-labs/coreth/eth/backend.go:423: precheckPopulateMissingTries 0.0% +2025-07-23T19:39:15.4493009Z github.com/ava-labs/coreth/eth/backend.go:447: handleOfflinePruning 0.0% +2025-07-23T19:39:15.4493517Z github.com/ava-labs/coreth/eth/bloombits.go:57: startBloomHandlers 0.0% +2025-07-23T19:39:15.4494049Z github.com/ava-labs/coreth/eth/chain_with_final_block.go:20: CurrentFinalBlock 0.0% +2025-07-23T19:39:15.4494608Z github.com/ava-labs/coreth/eth/ethconfig/config.go:58: NewDefaultConfig 100.0% +2025-07-23T19:39:15.4495142Z github.com/ava-labs/coreth/eth/ethconfig/gen_config.go:18: MarshalTOML 0.0% +2025-07-23T19:39:15.4495670Z github.com/ava-labs/coreth/eth/ethconfig/gen_config.go:108: UnmarshalTOML 0.0% +2025-07-23T19:39:15.4496173Z github.com/ava-labs/coreth/eth/filters/api.go:87: NewFilterAPI 100.0% +2025-07-23T19:39:15.4496654Z github.com/ava-labs/coreth/eth/filters/api.go:101: timeoutLoop 100.0% +2025-07-23T19:39:15.4497193Z github.com/ava-labs/coreth/eth/filters/api.go:134: NewPendingTransactionFilter 100.0% +2025-07-23T19:39:15.4497867Z github.com/ava-labs/coreth/eth/filters/api.go:168: NewPendingTransactions 0.0% +2025-07-23T19:39:15.4498507Z github.com/ava-labs/coreth/eth/filters/api.go:211: NewAcceptedTransactions 0.0% +2025-07-23T19:39:15.4499047Z github.com/ava-labs/coreth/eth/filters/api.go:253: NewBlockFilter 0.0% +2025-07-23T19:39:15.4499526Z github.com/ava-labs/coreth/eth/filters/api.go:291: NewHeads 0.0% +2025-07-23T19:39:15.4499961Z github.com/ava-labs/coreth/eth/filters/api.go:328: Logs 0.0% +2025-07-23T19:39:15.4500403Z github.com/ava-labs/coreth/eth/filters/api.go:387: NewFilter 87.0% +2025-07-23T19:39:15.4500859Z github.com/ava-labs/coreth/eth/filters/api.go:432: GetLogs 90.0% +2025-07-23T19:39:15.4501337Z github.com/ava-labs/coreth/eth/filters/api.go:470: UninstallFilter 100.0% +2025-07-23T19:39:15.4501841Z github.com/ava-labs/coreth/eth/filters/api.go:486: GetFilterLogs 0.0% +2025-07-23T19:39:15.4502333Z github.com/ava-labs/coreth/eth/filters/api.go:528: GetFilterChanges 80.0% +2025-07-23T19:39:15.4502822Z github.com/ava-labs/coreth/eth/filters/api.go:581: returnHashes 0.0% +2025-07-23T19:39:15.4503290Z github.com/ava-labs/coreth/eth/filters/api.go:590: returnLogs 66.7% +2025-07-23T19:39:15.4503766Z github.com/ava-labs/coreth/eth/filters/api.go:598: UnmarshalJSON 75.5% +2025-07-23T19:39:15.4504249Z github.com/ava-labs/coreth/eth/filters/api.go:703: decodeAddress 75.0% +2025-07-23T19:39:15.4504731Z github.com/ava-labs/coreth/eth/filters/api.go:711: decodeTopic 75.0% +2025-07-23T19:39:15.4505222Z github.com/ava-labs/coreth/eth/filters/filter.go:58: NewRangeFilter 100.0% +2025-07-23T19:39:15.4505741Z github.com/ava-labs/coreth/eth/filters/filter.go:91: NewBlockFilter 100.0% +2025-07-23T19:39:15.4506242Z github.com/ava-labs/coreth/eth/filters/filter.go:100: newFilter 100.0% +2025-07-23T19:39:15.4506710Z github.com/ava-labs/coreth/eth/filters/filter.go:110: Logs 80.4% +2025-07-23T19:39:15.4507195Z github.com/ava-labs/coreth/eth/filters/filter.go:222: rangeLogsAsync 70.6% +2025-07-23T19:39:15.4507693Z github.com/ava-labs/coreth/eth/filters/filter.go:263: indexedLogs 0.0% +2025-07-23T19:39:15.4508288Z github.com/ava-labs/coreth/eth/filters/filter.go:309: unindexedLogs 81.8% +2025-07-23T19:39:15.4508781Z github.com/ava-labs/coreth/eth/filters/filter.go:331: blockLogs 100.0% +2025-07-23T19:39:15.4509271Z github.com/ava-labs/coreth/eth/filters/filter.go:340: checkMatches 82.4% +2025-07-23T19:39:15.4509755Z github.com/ava-labs/coreth/eth/filters/filter.go:370: includes 100.0% +2025-07-23T19:39:15.4510239Z github.com/ava-labs/coreth/eth/filters/filter.go:380: filterLogs 100.0% +2025-07-23T19:39:15.4510736Z github.com/ava-labs/coreth/eth/filters/filter.go:414: bloomFilter 100.0% +2025-07-23T19:39:15.4511377Z github.com/ava-labs/coreth/eth/filters/filter_system.go:55: withDefaults 100.0% +2025-07-23T19:39:15.4511942Z github.com/ava-labs/coreth/eth/filters/filter_system.go:101: NewFilterSystem 100.0% +2025-07-23T19:39:15.4512480Z github.com/ava-labs/coreth/eth/filters/filter_system.go:111: getLogs 66.7% +2025-07-23T19:39:15.4513016Z github.com/ava-labs/coreth/eth/filters/filter_system.go:209: NewEventSystem 92.3% +2025-07-23T19:39:15.4513544Z github.com/ava-labs/coreth/eth/filters/filter_system.go:253: Err 100.0% +2025-07-23T19:39:15.4514064Z github.com/ava-labs/coreth/eth/filters/filter_system.go:258: Unsubscribe 100.0% +2025-07-23T19:39:15.4514595Z github.com/ava-labs/coreth/eth/filters/filter_system.go:283: subscribe 100.0% +2025-07-23T19:39:15.4515137Z github.com/ava-labs/coreth/eth/filters/filter_system.go:292: SubscribeLogs 100.0% +2025-07-23T19:39:15.4515719Z github.com/ava-labs/coreth/eth/filters/filter_system.go:334: SubscribeAcceptedLogs 0.0% +2025-07-23T19:39:15.4516328Z github.com/ava-labs/coreth/eth/filters/filter_system.go:359: subscribeAcceptedLogs 0.0% +2025-07-23T19:39:15.4517062Z github.com/ava-labs/coreth/eth/filters/filter_system.go:376: subscribeMinedPendingLogs 100.0% +2025-07-23T19:39:15.4517654Z github.com/ava-labs/coreth/eth/filters/filter_system.go:393: subscribeLogs 100.0% +2025-07-23T19:39:15.4518332Z github.com/ava-labs/coreth/eth/filters/filter_system.go:410: subscribePendingLogs 100.0% +2025-07-23T19:39:15.4518926Z github.com/ava-labs/coreth/eth/filters/filter_system.go:427: SubscribeNewHeads 100.0% +2025-07-23T19:39:15.4519527Z github.com/ava-labs/coreth/eth/filters/filter_system.go:443: SubscribeAcceptedHeads 0.0% +2025-07-23T19:39:15.4520125Z github.com/ava-labs/coreth/eth/filters/filter_system.go:459: SubscribePendingTxs 100.0% +2025-07-23T19:39:15.4520718Z github.com/ava-labs/coreth/eth/filters/filter_system.go:475: SubscribeAcceptedTxs 0.0% +2025-07-23T19:39:15.4521304Z github.com/ava-labs/coreth/eth/filters/filter_system.go:491: handleLogs 83.3% +2025-07-23T19:39:15.4521868Z github.com/ava-labs/coreth/eth/filters/filter_system.go:503: handleAcceptedLogs 33.3% +2025-07-23T19:39:15.4522129Z github.com/ava-labs/coreth/eth/filters/filter_system.go:515: handlePendingLogs 83.3% +2025-07-23T19:39:15.4522376Z github.com/ava-labs/coreth/eth/filters/filter_system.go:527: handleTxsEvent 100.0% +2025-07-23T19:39:15.4522646Z github.com/ava-labs/coreth/eth/filters/filter_system.go:533: handleTxsAcceptedEvent 0.0% +2025-07-23T19:39:15.4522902Z github.com/ava-labs/coreth/eth/filters/filter_system.go:539: handleChainEvent 100.0% +2025-07-23T19:39:15.4523180Z github.com/ava-labs/coreth/eth/filters/filter_system.go:545: handleChainAcceptedEvent 0.0% +2025-07-23T19:39:15.4523416Z github.com/ava-labs/coreth/eth/filters/filter_system.go:552: eventLoop 53.8% +2025-07-23T19:39:15.4523657Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:63: Estimate 73.4% +2025-07-23T19:39:15.4523898Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:199: execute 88.9% +2025-07-23T19:39:15.4524131Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:218: run 91.7% +2025-07-23T19:39:15.4524409Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:63: newFeeInfoProvider 100.0% +2025-07-23T19:39:15.4524650Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:92: addHeader 100.0% +2025-07-23T19:39:15.4524881Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:125: get 100.0% +2025-07-23T19:39:15.4525138Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:136: populateCache 83.3% +2025-07-23T19:39:15.4525380Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:68: processBlock 84.6% +2025-07-23T19:39:15.4525638Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:89: processPercentiles 72.2% +2025-07-23T19:39:15.4525895Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:124: resolveBlockRange 100.0% +2025-07-23T19:39:15.4526293Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:177: FeeHistory 74.4% +2025-07-23T19:39:15.4526515Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:132: NewOracle 83.3% +2025-07-23T19:39:15.4526754Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:211: EstimateBaseFee 0.0% +2025-07-23T19:39:15.4527007Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:220: estimateNextBaseFee 57.1% +2025-07-23T19:39:15.4527233Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:239: SuggestPrice 60.0% +2025-07-23T19:39:15.4527471Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:266: SuggestTipCap 100.0% +2025-07-23T19:39:15.4527692Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:271: suggestTip 85.7% +2025-07-23T19:39:15.4527910Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:347: getFeeInfo 42.9% +2025-07-23T19:39:15.4528213Z github.com/ava-labs/coreth/eth/state_accessor.go:53: hashState 0.0% +2025-07-23T19:39:15.4528425Z github.com/ava-labs/coreth/eth/state_accessor.go:193: pathState 0.0% +2025-07-23T19:39:15.4528750Z github.com/ava-labs/coreth/eth/state_accessor.go:227: stateAtBlock 0.0% +2025-07-23T19:39:15.4528976Z github.com/ava-labs/coreth/eth/state_accessor.go:240: stateAtTransaction 0.0% +2025-07-23T19:39:15.4529194Z github.com/ava-labs/coreth/eth/state_accessor.go:287: StateAtNextBlock 0.0% +2025-07-23T19:39:15.4529393Z github.com/ava-labs/coreth/eth/tracers/api.go:115: NewAPI 100.0% +2025-07-23T19:39:15.4529607Z github.com/ava-labs/coreth/eth/tracers/api.go:127: NewFileTracerAPI 0.0% +2025-07-23T19:39:15.4529820Z github.com/ava-labs/coreth/eth/tracers/api.go:133: chainContext 100.0% +2025-07-23T19:39:15.4530028Z github.com/ava-labs/coreth/eth/tracers/api.go:139: blockByNumber 83.3% +2025-07-23T19:39:15.4530228Z github.com/ava-labs/coreth/eth/tracers/api.go:152: blockByHash 0.0% +2025-07-23T19:39:15.4530467Z github.com/ava-labs/coreth/eth/tracers/api.go:168: blockByNumberAndHash 66.7% +2025-07-23T19:39:15.4530662Z github.com/ava-labs/coreth/eth/tracers/api.go:213: String 0.0% +2025-07-23T19:39:15.4530859Z github.com/ava-labs/coreth/eth/tracers/api.go:243: TraceChain 0.0% +2025-07-23T19:39:15.4531063Z github.com/ava-labs/coreth/eth/tracers/api.go:276: traceChain 76.8% +2025-07-23T19:39:15.4531291Z github.com/ava-labs/coreth/eth/tracers/api.go:467: TraceBlockByNumber 100.0% +2025-07-23T19:39:15.4531514Z github.com/ava-labs/coreth/eth/tracers/api.go:477: TraceBlockByHash 0.0% +2025-07-23T19:39:15.4531712Z github.com/ava-labs/coreth/eth/tracers/api.go:487: TraceBlock 0.0% +2025-07-23T19:39:15.4531932Z github.com/ava-labs/coreth/eth/tracers/api.go:497: TraceBlockFromFile 0.0% +2025-07-23T19:39:15.4532143Z github.com/ava-labs/coreth/eth/tracers/api.go:508: TraceBadBlock 0.0% +2025-07-23T19:39:15.4532385Z github.com/ava-labs/coreth/eth/tracers/api.go:529: StandardTraceBlockToFile 0.0% +2025-07-23T19:39:15.4532613Z github.com/ava-labs/coreth/eth/tracers/api.go:539: IntermediateRoots 0.0% +2025-07-23T19:39:15.4532867Z github.com/ava-labs/coreth/eth/tracers/api.go:598: StandardTraceBadBlockToFile 0.0% +2025-07-23T19:39:15.4533064Z github.com/ava-labs/coreth/eth/tracers/api.go:619: traceBlock 76.0% +2025-07-23T19:39:15.4533291Z github.com/ava-labs/coreth/eth/tracers/api.go:679: traceBlockParallel 0.0% +2025-07-23T19:39:15.4533530Z github.com/ava-labs/coreth/eth/tracers/api.go:756: standardTraceBlockToFile 0.0% +2025-07-23T19:39:15.4533725Z github.com/ava-labs/coreth/eth/tracers/api.go:866: containsTx 0.0% +2025-07-23T19:39:15.4533945Z github.com/ava-labs/coreth/eth/tracers/api.go:877: TraceTransaction 73.7% +2025-07-23T19:39:15.4534139Z github.com/ava-labs/coreth/eth/tracers/api.go:920: TraceCall 80.6% +2025-07-23T19:39:15.4534335Z github.com/ava-labs/coreth/eth/tracers/api.go:996: traceTx 69.6% +2025-07-23T19:39:15.4534633Z github.com/ava-labs/coreth/eth/tracers/api.go:1042: APIs 0.0% +2025-07-23T19:39:15.4534850Z github.com/ava-labs/coreth/eth/tracers/api.go:1060: overrideConfig 0.0% +2025-07-23T19:39:15.4535089Z github.com/ava-labs/coreth/eth/tracers/tracker.go:49: newStateTracker 100.0% +2025-07-23T19:39:15.4535311Z github.com/ava-labs/coreth/eth/tracers/tracker.go:62: releaseState 100.0% +2025-07-23T19:39:15.4535533Z github.com/ava-labs/coreth/eth/tracers/tracker.go:95: callReleases 100.0% +2025-07-23T19:39:15.4535723Z github.com/ava-labs/coreth/eth/tracers/tracker.go:106: wait 87.5% +2025-07-23T19:39:15.4535967Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:53: New 0.0% +2025-07-23T19:39:15.4536269Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:59: CreateAccessList 0.0% +2025-07-23T19:39:15.4536531Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:92: GetProof 0.0% +2025-07-23T19:39:15.4536811Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:156: CallContract 0.0% +2025-07-23T19:39:15.4537160Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:166: GCStats 0.0% +2025-07-23T19:39:15.4537420Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:173: MemStats 0.0% +2025-07-23T19:39:15.4537771Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:180: SubscribePendingTransactions 0.0% +2025-07-23T19:39:15.4538039Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:184: toCallArg 0.0% +2025-07-23T19:39:15.4538417Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:219: toOverrideMap 0.0% +2025-07-23T19:39:15.4538620Z github.com/ava-labs/coreth/ethclient/ethclient.go:53: Dial 0.0% +2025-07-23T19:39:15.4538833Z github.com/ava-labs/coreth/ethclient/ethclient.go:58: DialContext 0.0% +2025-07-23T19:39:15.4539049Z github.com/ava-labs/coreth/ethclient/ethclient.go:67: NewClient 100.0% +2025-07-23T19:39:15.4539251Z github.com/ava-labs/coreth/ethclient/ethclient.go:72: Close 100.0% +2025-07-23T19:39:15.4539449Z github.com/ava-labs/coreth/ethclient/ethclient.go:77: Client 0.0% +2025-07-23T19:39:15.4539659Z github.com/ava-labs/coreth/ethclient/ethclient.go:84: ChainID 80.0% +2025-07-23T19:39:15.4539869Z github.com/ava-labs/coreth/ethclient/ethclient.go:97: BlockByHash 0.0% +2025-07-23T19:39:15.4540106Z github.com/ava-labs/coreth/ethclient/ethclient.go:106: BlockByNumber 100.0% +2025-07-23T19:39:15.4540326Z github.com/ava-labs/coreth/ethclient/ethclient.go:111: BlockNumber 100.0% +2025-07-23T19:39:15.4540546Z github.com/ava-labs/coreth/ethclient/ethclient.go:125: BlockReceipts 0.0% +2025-07-23T19:39:15.4540757Z github.com/ava-labs/coreth/ethclient/ethclient.go:141: getBlock 51.2% +2025-07-23T19:39:15.4540986Z github.com/ava-labs/coreth/ethclient/ethclient.go:221: HeaderByHash 80.0% +2025-07-23T19:39:15.4541219Z github.com/ava-labs/coreth/ethclient/ethclient.go:232: HeaderByNumber 80.0% +2025-07-23T19:39:15.4541454Z github.com/ava-labs/coreth/ethclient/ethclient.go:252: UnmarshalJSON 66.7% +2025-07-23T19:39:15.4541687Z github.com/ava-labs/coreth/ethclient/ethclient.go:260: TransactionByHash 0.0% +2025-07-23T19:39:15.4541925Z github.com/ava-labs/coreth/ethclient/ethclient.go:282: TransactionSender 0.0% +2025-07-23T19:39:15.4542153Z github.com/ava-labs/coreth/ethclient/ethclient.go:304: TransactionCount 0.0% +2025-07-23T19:39:15.4542391Z github.com/ava-labs/coreth/ethclient/ethclient.go:311: TransactionInBlock 0.0% +2025-07-23T19:39:15.4542640Z github.com/ava-labs/coreth/ethclient/ethclient.go:330: TransactionReceipt 80.0% +2025-07-23T19:39:15.4542859Z github.com/ava-labs/coreth/ethclient/ethclient.go:341: SyncProgress 0.0% +2025-07-23T19:39:15.4543092Z github.com/ava-labs/coreth/ethclient/ethclient.go:357: SubscribeNewHead 0.0% +2025-07-23T19:39:15.4543426Z github.com/ava-labs/coreth/ethclient/ethclient.go:371: NetworkID 0.0% +2025-07-23T19:39:15.4543637Z github.com/ava-labs/coreth/ethclient/ethclient.go:385: BalanceAt 0.0% +2025-07-23T19:39:15.4543866Z github.com/ava-labs/coreth/ethclient/ethclient.go:392: BalanceAtHash 0.0% +2025-07-23T19:39:15.4544073Z github.com/ava-labs/coreth/ethclient/ethclient.go:400: StorageAt 0.0% +2025-07-23T19:39:15.4544294Z github.com/ava-labs/coreth/ethclient/ethclient.go:407: StorageAtHash 0.0% +2025-07-23T19:39:15.4544499Z github.com/ava-labs/coreth/ethclient/ethclient.go:415: CodeAt 0.0% +2025-07-23T19:39:15.4544708Z github.com/ava-labs/coreth/ethclient/ethclient.go:422: CodeAtHash 0.0% +2025-07-23T19:39:15.4544918Z github.com/ava-labs/coreth/ethclient/ethclient.go:430: NonceAt 100.0% +2025-07-23T19:39:15.4545133Z github.com/ava-labs/coreth/ethclient/ethclient.go:437: NonceAtHash 0.0% +2025-07-23T19:39:15.4545339Z github.com/ava-labs/coreth/ethclient/ethclient.go:446: FilterLogs 0.0% +2025-07-23T19:39:15.4545592Z github.com/ava-labs/coreth/ethclient/ethclient.go:457: SubscribeFilterLogs 0.0% +2025-07-23T19:39:15.4545913Z github.com/ava-labs/coreth/ethclient/ethclient.go:472: toFilterArg 0.0% +2025-07-23T19:39:15.4546138Z github.com/ava-labs/coreth/ethclient/ethclient.go:539: CallContract 80.0% +2025-07-23T19:39:15.4546376Z github.com/ava-labs/coreth/ethclient/ethclient.go:550: CallContractAtHash 0.0% +2025-07-23T19:39:15.4546606Z github.com/ava-labs/coreth/ethclient/ethclient.go:572: SuggestGasPrice 0.0% +2025-07-23T19:39:15.4546843Z github.com/ava-labs/coreth/ethclient/ethclient.go:582: SuggestGasTipCap 0.0% +2025-07-23T19:39:15.4547053Z github.com/ava-labs/coreth/ethclient/ethclient.go:598: FeeHistory 0.0% +2025-07-23T19:39:15.4547267Z github.com/ava-labs/coreth/ethclient/ethclient.go:626: EstimateGas 0.0% +2025-07-23T19:39:15.4547506Z github.com/ava-labs/coreth/ethclient/ethclient.go:639: SendTransaction 75.0% +2025-07-23T19:39:15.4547733Z github.com/ava-labs/coreth/ethclient/ethclient.go:647: toBlockNumArg 85.7% +2025-07-23T19:39:15.4547950Z github.com/ava-labs/coreth/ethclient/ethclient.go:662: toCallArg 60.0% +2025-07-23T19:39:15.4548292Z github.com/ava-labs/coreth/ethclient/ethclient.go:722: toSyncProgress 0.0% +2025-07-23T19:39:15.4548536Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:44: NewClientWithHook 0.0% +2025-07-23T19:39:15.4548838Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:61: SubscribeNewAcceptedTransactions 0.0% +2025-07-23T19:39:15.4549128Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:73: SubscribeNewPendingTransactions 0.0% +2025-07-23T19:39:15.4549367Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:85: AcceptedCodeAt 0.0% +2025-07-23T19:39:15.4549599Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:91: AcceptedNonceAt 0.0% +2025-07-23T19:39:15.4549855Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:97: AcceptedCallContract 0.0% +2025-07-23T19:39:15.4550100Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:104: EstimateBaseFee 0.0% +2025-07-23T19:39:15.4550331Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:113: ToBlockNumArg 0.0% +2025-07-23T19:39:15.4550578Z github.com/ava-labs/coreth/ethclient/signer.go:48: setSenderFromServer 100.0% +2025-07-23T19:39:15.4550767Z github.com/ava-labs/coreth/ethclient/signer.go:53: Equal 0.0% +2025-07-23T19:39:15.4550959Z github.com/ava-labs/coreth/ethclient/signer.go:58: Sender 66.7% +2025-07-23T19:39:15.4551151Z github.com/ava-labs/coreth/ethclient/signer.go:65: ChainID 0.0% +2025-07-23T19:39:15.4551329Z github.com/ava-labs/coreth/ethclient/signer.go:68: Hash 0.0% +2025-07-23T19:39:15.4551543Z github.com/ava-labs/coreth/ethclient/signer.go:71: SignatureValues 0.0% +2025-07-23T19:39:15.4551763Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:48: Add 0.0% +2025-07-23T19:39:15.4552120Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:87: NewBackend 88.9% +2025-07-23T19:39:15.4552377Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:122: newWithNode 83.3% +2025-07-23T19:39:15.4552607Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:154: Close 100.0% +2025-07-23T19:39:15.4552833Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:163: Commit 75.0% +2025-07-23T19:39:15.4553075Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:171: buildBlock 73.3% +2025-07-23T19:39:15.4553344Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:196: acceptAncestors 83.3% +2025-07-23T19:39:15.4553581Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:219: Rollback 100.0% +2025-07-23T19:39:15.4553803Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:239: Fork 76.5% +2025-07-23T19:39:15.4554045Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:274: AdjustTime 100.0% +2025-07-23T19:39:15.4554279Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:280: Client 100.0% +2025-07-23T19:39:15.4554659Z github.com/ava-labs/coreth/ethclient/simulated/options.go:29: WithBlockGasLimit 100.0% +2025-07-23T19:39:15.4554921Z github.com/ava-labs/coreth/ethclient/simulated/options.go:37: WithCallGasLimit 100.0% +2025-07-23T19:39:15.4555163Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:51: NewHasher 100.0% +2025-07-23T19:39:15.4555386Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:56: Reset 100.0% +2025-07-23T19:39:15.4555617Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:61: Update 100.0% +2025-07-23T19:39:15.4555838Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:68: Hash 100.0% +2025-07-23T19:39:15.4556039Z github.com/ava-labs/coreth/internal/debug/api.go:70: Verbosity 0.0% +2025-07-23T19:39:15.4556243Z github.com/ava-labs/coreth/internal/debug/api.go:76: Vmodule 0.0% +2025-07-23T19:39:15.4556439Z github.com/ava-labs/coreth/internal/debug/api.go:81: MemStats 0.0% +2025-07-23T19:39:15.4556644Z github.com/ava-labs/coreth/internal/debug/api.go:88: GcStats 0.0% +2025-07-23T19:39:15.4556849Z github.com/ava-labs/coreth/internal/debug/api.go:96: CpuProfile 0.0% +2025-07-23T19:39:15.4557076Z github.com/ava-labs/coreth/internal/debug/api.go:106: StartCPUProfile 0.0% +2025-07-23T19:39:15.4557298Z github.com/ava-labs/coreth/internal/debug/api.go:127: StopCPUProfile 0.0% +2025-07-23T19:39:15.4557494Z github.com/ava-labs/coreth/internal/debug/api.go:143: GoTrace 0.0% +2025-07-23T19:39:15.4557706Z github.com/ava-labs/coreth/internal/debug/api.go:155: BlockProfile 0.0% +2025-07-23T19:39:15.4557947Z github.com/ava-labs/coreth/internal/debug/api.go:164: SetBlockProfileRate 0.0% +2025-07-23T19:39:15.4558270Z github.com/ava-labs/coreth/internal/debug/api.go:169: WriteBlockProfile 0.0% +2025-07-23T19:39:15.4565299Z github.com/ava-labs/coreth/internal/debug/api.go:176: MutexProfile 0.0% +2025-07-23T19:39:15.4565641Z github.com/ava-labs/coreth/internal/debug/api.go:184: SetMutexProfileFraction 0.0% +2025-07-23T19:39:15.4565896Z github.com/ava-labs/coreth/internal/debug/api.go:189: WriteMutexProfile 0.0% +2025-07-23T19:39:15.4566136Z github.com/ava-labs/coreth/internal/debug/api.go:196: WriteMemProfile 0.0% +2025-07-23T19:39:15.4566340Z github.com/ava-labs/coreth/internal/debug/api.go:203: Stacks 0.0% +2025-07-23T19:39:15.4566576Z github.com/ava-labs/coreth/internal/debug/api.go:242: FreeOSMemory 0.0% +2025-07-23T19:39:15.4566797Z github.com/ava-labs/coreth/internal/debug/api.go:248: SetGCPercent 0.0% +2025-07-23T19:39:15.4567010Z github.com/ava-labs/coreth/internal/debug/api.go:252: writeProfile 0.0% +2025-07-23T19:39:15.4567227Z github.com/ava-labs/coreth/internal/debug/api.go:265: expandHome 0.0% +2025-07-23T19:39:15.4567432Z github.com/ava-labs/coreth/internal/debug/flags.go:181: init 100.0% +2025-07-23T19:39:15.4567816Z github.com/ava-labs/coreth/internal/debug/flags.go:187: Setup 0.0% +2025-07-23T19:39:15.4568045Z github.com/ava-labs/coreth/internal/debug/flags.go:314: StartPProf 0.0% +2025-07-23T19:39:15.4568391Z github.com/ava-labs/coreth/internal/debug/flags.go:325: Exit 0.0% +2025-07-23T19:39:15.4568656Z github.com/ava-labs/coreth/internal/debug/flags.go:333: validateLogLocation 0.0% +2025-07-23T19:39:15.4568885Z github.com/ava-labs/coreth/internal/debug/loudpanic.go:33: LoudPanic 0.0% +2025-07-23T19:39:15.4569107Z github.com/ava-labs/coreth/internal/debug/trace.go:39: StartGoTrace 0.0% +2025-07-23T19:39:15.4569325Z github.com/ava-labs/coreth/internal/debug/trace.go:60: StopGoTrace 0.0% +2025-07-23T19:39:15.4569532Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:42: lock 0.0% +2025-07-23T19:39:15.4569746Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:57: LockAddr 0.0% +2025-07-23T19:39:15.4569982Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:62: UnlockAddr 0.0% +2025-07-23T19:39:15.4570379Z github.com/ava-labs/coreth/internal/ethapi/api.coreth.go:46: SuggestPriceOptions 86.7% +2025-07-23T19:39:15.4570661Z github.com/ava-labs/coreth/internal/ethapi/api.coreth.go:104: calculateFeeSpeeds 100.0% +2025-07-23T19:39:15.4570901Z github.com/ava-labs/coreth/internal/ethapi/api.go:76: NewEthereumAPI 100.0% +2025-07-23T19:39:15.4571105Z github.com/ava-labs/coreth/internal/ethapi/api.go:81: GasPrice 0.0% +2025-07-23T19:39:15.4571309Z github.com/ava-labs/coreth/internal/ethapi/api.go:91: BaseFee 0.0% +2025-07-23T19:39:15.4571558Z github.com/ava-labs/coreth/internal/ethapi/api.go:100: MaxPriorityFeePerGas 0.0% +2025-07-23T19:39:15.4571781Z github.com/ava-labs/coreth/internal/ethapi/api.go:116: FeeHistory 0.0% +2025-07-23T19:39:15.4571982Z github.com/ava-labs/coreth/internal/ethapi/api.go:148: Syncing 0.0% +2025-07-23T19:39:15.4572208Z github.com/ava-labs/coreth/internal/ethapi/api.go:158: NewTxPoolAPI 0.0% +2025-07-23T19:39:15.4572418Z github.com/ava-labs/coreth/internal/ethapi/api.go:163: Content 0.0% +2025-07-23T19:39:15.4572633Z github.com/ava-labs/coreth/internal/ethapi/api.go:191: ContentFrom 0.0% +2025-07-23T19:39:15.4572833Z github.com/ava-labs/coreth/internal/ethapi/api.go:215: Status 0.0% +2025-07-23T19:39:15.4573035Z github.com/ava-labs/coreth/internal/ethapi/api.go:225: Inspect 0.0% +2025-07-23T19:39:15.4573287Z github.com/ava-labs/coreth/internal/ethapi/api.go:265: NewEthereumAccountAPI 0.0% +2025-07-23T19:39:15.4573493Z github.com/ava-labs/coreth/internal/ethapi/api.go:270: Accounts 0.0% +2025-07-23T19:39:15.4573746Z github.com/ava-labs/coreth/internal/ethapi/api.go:284: NewPersonalAccountAPI 0.0% +2025-07-23T19:39:15.4573965Z github.com/ava-labs/coreth/internal/ethapi/api.go:293: ListAccounts 0.0% +2025-07-23T19:39:15.4574183Z github.com/ava-labs/coreth/internal/ethapi/api.go:307: ListWallets 0.0% +2025-07-23T19:39:15.4574396Z github.com/ava-labs/coreth/internal/ethapi/api.go:329: OpenWallet 0.0% +2025-07-23T19:39:15.4574626Z github.com/ava-labs/coreth/internal/ethapi/api.go:343: DeriveAccount 0.0% +2025-07-23T19:39:15.4574837Z github.com/ava-labs/coreth/internal/ethapi/api.go:359: NewAccount 0.0% +2025-07-23T19:39:15.4575057Z github.com/ava-labs/coreth/internal/ethapi/api.go:376: fetchKeystore 0.0% +2025-07-23T19:39:15.4575280Z github.com/ava-labs/coreth/internal/ethapi/api.go:385: ImportRawKey 0.0% +2025-07-23T19:39:15.4575500Z github.com/ava-labs/coreth/internal/ethapi/api.go:401: UnlockAccount 0.0% +2025-07-23T19:39:15.4575717Z github.com/ava-labs/coreth/internal/ethapi/api.go:430: LockAccount 0.0% +2025-07-23T19:39:15.4575947Z github.com/ava-labs/coreth/internal/ethapi/api.go:440: signTransaction 0.0% +2025-07-23T19:39:15.4576172Z github.com/ava-labs/coreth/internal/ethapi/api.go:460: SendTransaction 0.0% +2025-07-23T19:39:15.4576521Z github.com/ava-labs/coreth/internal/ethapi/api.go:482: SignTransaction 0.0% +2025-07-23T19:39:15.4576725Z github.com/ava-labs/coreth/internal/ethapi/api.go:526: Sign 0.0% +2025-07-23T19:39:15.4576930Z github.com/ava-labs/coreth/internal/ethapi/api.go:554: EcRecover 0.0% +2025-07-23T19:39:15.4577161Z github.com/ava-labs/coreth/internal/ethapi/api.go:571: InitializeWallet 0.0% +2025-07-23T19:39:15.4577360Z github.com/ava-labs/coreth/internal/ethapi/api.go:598: Unpair 0.0% +2025-07-23T19:39:15.4577602Z github.com/ava-labs/coreth/internal/ethapi/api.go:618: NewBlockChainAPI 100.0% +2025-07-23T19:39:15.4577803Z github.com/ava-labs/coreth/internal/ethapi/api.go:628: ChainId 0.0% +2025-07-23T19:39:15.4578016Z github.com/ava-labs/coreth/internal/ethapi/api.go:633: BlockNumber 0.0% +2025-07-23T19:39:15.4578333Z github.com/ava-labs/coreth/internal/ethapi/api.go:641: GetBalance 0.0% +2025-07-23T19:39:15.4578535Z github.com/ava-labs/coreth/internal/ethapi/api.go:671: Put 0.0% +2025-07-23T19:39:15.4578851Z github.com/ava-labs/coreth/internal/ethapi/api.go:676: Delete 0.0% +2025-07-23T19:39:15.4579054Z github.com/ava-labs/coreth/internal/ethapi/api.go:683: GetProof 0.0% +2025-07-23T19:39:15.4579258Z github.com/ava-labs/coreth/internal/ethapi/api.go:766: decodeHash 0.0% +2025-07-23T19:39:15.4579506Z github.com/ava-labs/coreth/internal/ethapi/api.go:788: GetHeaderByNumber 100.0% +2025-07-23T19:39:15.4579740Z github.com/ava-labs/coreth/internal/ethapi/api.go:805: GetHeaderByHash 100.0% +2025-07-23T19:39:15.4579973Z github.com/ava-labs/coreth/internal/ethapi/api.go:820: GetBlockByNumber 100.0% +2025-07-23T19:39:15.4580210Z github.com/ava-labs/coreth/internal/ethapi/api.go:838: GetBlockByHash 100.0% +2025-07-23T19:39:15.4580493Z github.com/ava-labs/coreth/internal/ethapi/api.go:847: GetUncleByBlockNumberAndIndex 0.0% +2025-07-23T19:39:15.4580778Z github.com/ava-labs/coreth/internal/ethapi/api.go:862: GetUncleByBlockHashAndIndex 0.0% +2025-07-23T19:39:15.4581049Z github.com/ava-labs/coreth/internal/ethapi/api.go:877: GetUncleCountByBlockNumber 0.0% +2025-07-23T19:39:15.4581312Z github.com/ava-labs/coreth/internal/ethapi/api.go:886: GetUncleCountByBlockHash 0.0% +2025-07-23T19:39:15.4581519Z github.com/ava-labs/coreth/internal/ethapi/api.go:895: GetCode 0.0% +2025-07-23T19:39:15.4581739Z github.com/ava-labs/coreth/internal/ethapi/api.go:907: GetStorageAt 0.0% +2025-07-23T19:39:15.4581976Z github.com/ava-labs/coreth/internal/ethapi/api.go:921: GetBlockReceipts 85.7% +2025-07-23T19:39:15.4582174Z github.com/ava-labs/coreth/internal/ethapi/api.go:966: Apply 84.2% +2025-07-23T19:39:15.4582375Z github.com/ava-labs/coreth/internal/ethapi/api.go:1017: Apply 56.2% +2025-07-23T19:39:15.4582618Z github.com/ava-labs/coreth/internal/ethapi/api.go:1058: NewChainContext 100.0% +2025-07-23T19:39:15.4582826Z github.com/ava-labs/coreth/internal/ethapi/api.go:1062: Engine 100.0% +2025-07-23T19:39:15.4583037Z github.com/ava-labs/coreth/internal/ethapi/api.go:1066: GetHeader 0.0% +2025-07-23T19:39:15.4583248Z github.com/ava-labs/coreth/internal/ethapi/api.go:1076: doCall 80.8% +2025-07-23T19:39:15.4583450Z github.com/ava-labs/coreth/internal/ethapi/api.go:1128: DoCall 43.8% +2025-07-23T19:39:15.4583650Z github.com/ava-labs/coreth/internal/ethapi/api.go:1163: Call 66.7% +2025-07-23T19:39:15.4583878Z github.com/ava-labs/coreth/internal/ethapi/api.go:1183: DoEstimateGas 77.8% +2025-07-23T19:39:15.4584102Z github.com/ava-labs/coreth/internal/ethapi/api.go:1227: EstimateGas 100.0% +2025-07-23T19:39:15.4584349Z github.com/ava-labs/coreth/internal/ethapi/api.go:1236: RPCMarshalHeader 80.0% +2025-07-23T19:39:15.4584592Z github.com/ava-labs/coreth/internal/ethapi/api.go:1281: RPCMarshalBlock 95.0% +2025-07-23T19:39:15.4584838Z github.com/ava-labs/coreth/internal/ethapi/api.go:1313: rpcMarshalHeader 100.0% +2025-07-23T19:39:15.4585189Z github.com/ava-labs/coreth/internal/ethapi/api.go:1323: rpcMarshalBlock 100.0% +2025-07-23T19:39:15.4585427Z github.com/ava-labs/coreth/internal/ethapi/api.go:1361: newRPCTransaction 94.9% +2025-07-23T19:39:15.4585670Z github.com/ava-labs/coreth/internal/ethapi/api.go:1438: effectiveGasPrice 0.0% +2025-07-23T19:39:15.4585905Z github.com/ava-labs/coreth/internal/ethapi/api.go:1450: NewRPCTransaction 0.0% +2025-07-23T19:39:15.4586203Z github.com/ava-labs/coreth/internal/ethapi/api.go:1463: newRPCTransactionFromBlockIndex 75.0% +2025-07-23T19:39:15.4586507Z github.com/ava-labs/coreth/internal/ethapi/api.go:1472: newRPCRawTransactionFromBlockIndex 0.0% +2025-07-23T19:39:15.4586740Z github.com/ava-labs/coreth/internal/ethapi/api.go:1492: CreateAccessList 0.0% +2025-07-23T19:39:15.4586963Z github.com/ava-labs/coreth/internal/ethapi/api.go:1511: AccessList 0.0% +2025-07-23T19:39:15.4587211Z github.com/ava-labs/coreth/internal/ethapi/api.go:1573: NewTransactionAPI 100.0% +2025-07-23T19:39:15.4587576Z github.com/ava-labs/coreth/internal/ethapi/api.go:1581: GetBlockTransactionCountByNumber 0.0% +2025-07-23T19:39:15.4587865Z github.com/ava-labs/coreth/internal/ethapi/api.go:1590: GetBlockTransactionCountByHash 0.0% +2025-07-23T19:39:15.4588257Z github.com/ava-labs/coreth/internal/ethapi/api.go:1599: GetTransactionByBlockNumberAndIndex 0.0% +2025-07-23T19:39:15.4588551Z github.com/ava-labs/coreth/internal/ethapi/api.go:1607: GetTransactionByBlockHashAndIndex 0.0% +2025-07-23T19:39:15.4588861Z github.com/ava-labs/coreth/internal/ethapi/api.go:1615: GetRawTransactionByBlockNumberAndIndex 0.0% +2025-07-23T19:39:15.4589156Z github.com/ava-labs/coreth/internal/ethapi/api.go:1623: GetRawTransactionByBlockHashAndIndex 0.0% +2025-07-23T19:39:15.4589406Z github.com/ava-labs/coreth/internal/ethapi/api.go:1631: GetTransactionCount 0.0% +2025-07-23T19:39:15.4589657Z github.com/ava-labs/coreth/internal/ethapi/api.go:1650: GetTransactionByHash 0.0% +2025-07-23T19:39:15.4589934Z github.com/ava-labs/coreth/internal/ethapi/api.go:1672: GetRawTransactionByHash 0.0% +2025-07-23T19:39:15.4590190Z github.com/ava-labs/coreth/internal/ethapi/api.go:1688: GetTransactionReceipt 75.0% +2025-07-23T19:39:15.4590424Z github.com/ava-labs/coreth/internal/ethapi/api.go:1715: marshalReceipt 84.6% +2025-07-23T19:39:15.4590631Z github.com/ava-labs/coreth/internal/ethapi/api.go:1757: sign 80.0% +2025-07-23T19:39:15.4590877Z github.com/ava-labs/coreth/internal/ethapi/api.go:1770: SubmitTransaction 0.0% +2025-07-23T19:39:15.4591111Z github.com/ava-labs/coreth/internal/ethapi/api.go:1802: SendTransaction 37.5% +2025-07-23T19:39:15.4591342Z github.com/ava-labs/coreth/internal/ethapi/api.go:1838: FillTransaction 87.5% +2025-07-23T19:39:15.4591580Z github.com/ava-labs/coreth/internal/ethapi/api.go:1856: SendRawTransaction 0.0% +2025-07-23T19:39:15.4591783Z github.com/ava-labs/coreth/internal/ethapi/api.go:1873: Sign 0.0% +2025-07-23T19:39:15.4592017Z github.com/ava-labs/coreth/internal/ethapi/api.go:1898: SignTransaction 65.0% +2025-07-23T19:39:15.4592261Z github.com/ava-labs/coreth/internal/ethapi/api.go:1932: PendingTransactions 0.0% +2025-07-23T19:39:15.4592470Z github.com/ava-labs/coreth/internal/ethapi/api.go:1957: Resend 0.0% +2025-07-23T19:39:15.4592694Z github.com/ava-labs/coreth/internal/ethapi/api.go:2014: NewDebugAPI 0.0% +2025-07-23T19:39:15.4592922Z github.com/ava-labs/coreth/internal/ethapi/api.go:2019: GetRawHeader 0.0% +2025-07-23T19:39:15.4593139Z github.com/ava-labs/coreth/internal/ethapi/api.go:2038: GetRawBlock 0.0% +2025-07-23T19:39:15.4593369Z github.com/ava-labs/coreth/internal/ethapi/api.go:2057: GetRawReceipts 0.0% +2025-07-23T19:39:15.4593611Z github.com/ava-labs/coreth/internal/ethapi/api.go:2084: GetRawTransaction 0.0% +2025-07-23T19:39:15.4593830Z github.com/ava-labs/coreth/internal/ethapi/api.go:2100: PrintBlock 0.0% +2025-07-23T19:39:15.4594165Z github.com/ava-labs/coreth/internal/ethapi/api.go:2114: NewNetAPI 0.0% +2025-07-23T19:39:15.4594378Z github.com/ava-labs/coreth/internal/ethapi/api.go:2119: Listening 0.0% +2025-07-23T19:39:15.4594585Z github.com/ava-labs/coreth/internal/ethapi/api.go:2124: PeerCount 0.0% +2025-07-23T19:39:15.4594794Z github.com/ava-labs/coreth/internal/ethapi/api.go:2129: Version 0.0% +2025-07-23T19:39:15.4595011Z github.com/ava-labs/coreth/internal/ethapi/api.go:2135: checkTxFee 28.6% +2025-07-23T19:39:15.4595249Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:20: GetChainConfig 0.0% +2025-07-23T19:39:15.4595487Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:32: CallDetailed 0.0% +2025-07-23T19:39:15.4595717Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:71: GetBadBlocks 0.0% +2025-07-23T19:39:15.4596015Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:103: stateQueryBlockNumberAllowed 90.5% +2025-07-23T19:39:15.4596241Z github.com/ava-labs/coreth/internal/ethapi/backend.go:115: GetAPIs 0.0% +2025-07-23T19:39:15.4596597Z github.com/ava-labs/coreth/internal/ethapi/errors.go:47: ErrorCode 0.0% +2025-07-23T19:39:15.4596810Z github.com/ava-labs/coreth/internal/ethapi/errors.go:52: ErrorData 0.0% +2025-07-23T19:39:15.4597043Z github.com/ava-labs/coreth/internal/ethapi/errors.go:57: newRevertError 0.0% +2025-07-23T19:39:15.4597288Z github.com/ava-labs/coreth/internal/ethapi/errors.go:75: NewTxIndexingError 0.0% +2025-07-23T19:39:15.4597490Z github.com/ava-labs/coreth/internal/ethapi/errors.go:78: Error 0.0% +2025-07-23T19:39:15.4597702Z github.com/ava-labs/coreth/internal/ethapi/errors.go:84: ErrorCode 0.0% +2025-07-23T19:39:15.4597916Z github.com/ava-labs/coreth/internal/ethapi/errors.go:89: ErrorData 0.0% +2025-07-23T19:39:15.4598257Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:91: from 100.0% +2025-07-23T19:39:15.4598500Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:99: data 100.0% +2025-07-23T19:39:15.4598775Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:110: setDefaults 61.9% +2025-07-23T19:39:15.4599052Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:203: setFeeDefaults 89.7% +2025-07-23T19:39:15.4599356Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:263: setCancunFeeDefaults 100.0% +2025-07-23T19:39:15.4599674Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:282: setApricotPhase3FeeDefault 90.9% +2025-07-23T19:39:15.4599956Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:310: setBlobTxSidecar 90.5% +2025-07-23T19:39:15.4600223Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:387: ToMessage 78.6% +2025-07-23T19:39:15.4600494Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:476: toTransaction 73.3% +2025-07-23T19:39:15.4600790Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:548: IsEIP4844 100.0% +2025-07-23T19:39:15.4601013Z github.com/ava-labs/coreth/internal/flags/categories.go:53: init 100.0% +2025-07-23T19:39:15.4601223Z github.com/ava-labs/coreth/internal/flags/helpers.go:47: NewApp 80.0% +2025-07-23T19:39:15.4601431Z github.com/ava-labs/coreth/internal/flags/helpers.go:62: Merge 0.0% +2025-07-23T19:39:15.4601676Z github.com/ava-labs/coreth/internal/flags/helpers.go:87: MigrateGlobalFlags 0.0% +2025-07-23T19:39:15.4601915Z github.com/ava-labs/coreth/internal/flags/helpers.go:114: doMigrateFlags 0.0% +2025-07-23T19:39:15.4602119Z github.com/ava-labs/coreth/internal/flags/helpers.go:149: init 50.0% +2025-07-23T19:39:15.4602338Z github.com/ava-labs/coreth/internal/flags/helpers.go:162: FlagString 0.0% +2025-07-23T19:39:15.4602549Z github.com/ava-labs/coreth/internal/flags/helpers.go:194: indent 0.0% +2025-07-23T19:39:15.4602762Z github.com/ava-labs/coreth/internal/flags/helpers.go:199: wordWrap 0.0% +2025-07-23T19:39:15.4603088Z github.com/ava-labs/coreth/internal/reexec/reexec.go:31: Register 0.0% +2025-07-23T19:39:15.4603297Z github.com/ava-labs/coreth/internal/reexec/reexec.go:40: Init 0.0% +2025-07-23T19:39:15.4603504Z github.com/ava-labs/coreth/internal/reexec/self_linux.go:23: Self 0.0% +2025-07-23T19:39:15.4603826Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:49: NewShutdownTracker 100.0% +2025-07-23T19:39:15.4604113Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:59: MarkStartup 71.4% +2025-07-23T19:39:15.4604378Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:75: Start 85.7% +2025-07-23T19:39:15.4604645Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:91: Stop 100.0% +2025-07-23T19:39:15.4604868Z github.com/ava-labs/coreth/internal/version/vcs.go:43: buildInfoVCS 36.4% +2025-07-23T19:39:15.4605083Z github.com/ava-labs/coreth/internal/version/version.go:54: VCS 83.3% +2025-07-23T19:39:15.4605307Z github.com/ava-labs/coreth/internal/version/version.go:69: ClientName 0.0% +2025-07-23T19:39:15.4605617Z github.com/ava-labs/coreth/internal/version/version.go:85: Info 42.9% +2025-07-23T19:39:15.4605855Z github.com/ava-labs/coreth/internal/version/version.go:112: versionInfo 50.0% +2025-07-23T19:39:15.4606085Z github.com/ava-labs/coreth/internal/version/version.go:142: findModule 50.0% +2025-07-23T19:39:15.4606268Z github.com/ava-labs/coreth/log/format.go:45: format 66.7% +2025-07-23T19:39:15.4606474Z github.com/ava-labs/coreth/log/format.go:103: formatAttributes 82.1% +2025-07-23T19:39:15.4606676Z github.com/ava-labs/coreth/log/format.go:150: FormatSlogValue 84.0% +2025-07-23T19:39:15.4606879Z github.com/ava-labs/coreth/log/format.go:206: appendInt64 100.0% +2025-07-23T19:39:15.4607070Z github.com/ava-labs/coreth/log/format.go:214: appendUint64 88.2% +2025-07-23T19:39:15.4607280Z github.com/ava-labs/coreth/log/format.go:249: FormatLogfmtUint64 0.0% +2025-07-23T19:39:15.4607480Z github.com/ava-labs/coreth/log/format.go:254: appendBigInt 12.5% +2025-07-23T19:39:15.4607668Z github.com/ava-labs/coreth/log/format.go:288: appendU256 50.0% +2025-07-23T19:39:15.4607890Z github.com/ava-labs/coreth/log/format.go:298: appendEscapeString 100.0% +2025-07-23T19:39:15.4608085Z github.com/ava-labs/coreth/log/format.go:331: escapeMessage 60.0% +2025-07-23T19:39:15.4608404Z github.com/ava-labs/coreth/log/format.go:352: writeTimeTermFormat 100.0% +2025-07-23T19:39:15.4608612Z github.com/ava-labs/coreth/log/format.go:372: writePosIntWidth 91.7% +2025-07-23T19:39:15.4608811Z github.com/ava-labs/coreth/log/handler.go:22: DiscardHandler 0.0% +2025-07-23T19:39:15.4608983Z github.com/ava-labs/coreth/log/handler.go:26: Handle 0.0% +2025-07-23T19:39:15.4609165Z github.com/ava-labs/coreth/log/handler.go:30: Enabled 0.0% +2025-07-23T19:39:15.4609351Z github.com/ava-labs/coreth/log/handler.go:34: WithGroup 0.0% +2025-07-23T19:39:15.4609535Z github.com/ava-labs/coreth/log/handler.go:38: WithAttrs 0.0% +2025-07-23T19:39:15.4609748Z github.com/ava-labs/coreth/log/handler.go:67: NewTerminalHandler 0.0% +2025-07-23T19:39:15.4609991Z github.com/ava-labs/coreth/log/handler.go:73: NewTerminalHandlerWithLevel 100.0% +2025-07-23T19:39:15.4610172Z github.com/ava-labs/coreth/log/handler.go:82: Handle 100.0% +2025-07-23T19:39:15.4610353Z github.com/ava-labs/coreth/log/handler.go:91: Enabled 100.0% +2025-07-23T19:39:15.4610534Z github.com/ava-labs/coreth/log/handler.go:95: WithGroup 0.0% +2025-07-23T19:39:15.4610722Z github.com/ava-labs/coreth/log/handler.go:99: WithAttrs 100.0% +2025-07-23T19:39:15.4610929Z github.com/ava-labs/coreth/log/handler.go:110: ResetFieldPadding 0.0% +2025-07-23T19:39:15.4611125Z github.com/ava-labs/coreth/log/handler.go:117: JSONHandler 0.0% +2025-07-23T19:39:15.4611468Z github.com/ava-labs/coreth/log/handler.go:123: JSONHandlerWithLevel 100.0% +2025-07-23T19:39:15.4611669Z github.com/ava-labs/coreth/log/handler.go:134: LogfmtHandler 0.0% +2025-07-23T19:39:15.4611898Z github.com/ava-labs/coreth/log/handler.go:142: LogfmtHandlerWithLevel 0.0% +2025-07-23T19:39:15.4612119Z github.com/ava-labs/coreth/log/handler.go:149: builtinReplaceLogfmt 0.0% +2025-07-23T19:39:15.4612339Z github.com/ava-labs/coreth/log/handler.go:153: builtinReplaceJSON 0.0% +2025-07-23T19:39:15.4612540Z github.com/ava-labs/coreth/log/handler.go:157: builtinReplace 0.0% +2025-07-23T19:39:15.4612738Z github.com/ava-labs/coreth/log/logger.go:46: LvlFromString 37.5% +2025-07-23T19:39:15.4612943Z github.com/ava-labs/coreth/log/logger.go:67: FromLegacyLevel 0.0% +2025-07-23T19:39:15.4613155Z github.com/ava-labs/coreth/log/logger.go:93: LevelAlignedString 37.5% +2025-07-23T19:39:15.4613349Z github.com/ava-labs/coreth/log/logger.go:113: LevelString 0.0% +2025-07-23T19:39:15.4613524Z github.com/ava-labs/coreth/log/logger.go:173: NewLogger 0.0% +2025-07-23T19:39:15.4613801Z github.com/ava-labs/coreth/log/logger.go:180: Write 0.0% +2025-07-23T19:39:15.4613972Z github.com/ava-labs/coreth/log/logger.go:196: Log 0.0% +2025-07-23T19:39:15.4614139Z github.com/ava-labs/coreth/log/logger.go:200: With 0.0% +2025-07-23T19:39:15.4614298Z github.com/ava-labs/coreth/log/logger.go:204: New 0.0% +2025-07-23T19:39:15.4614481Z github.com/ava-labs/coreth/log/logger.go:209: Enabled 0.0% +2025-07-23T19:39:15.4614648Z github.com/ava-labs/coreth/log/logger.go:213: Trace 0.0% +2025-07-23T19:39:15.4614819Z github.com/ava-labs/coreth/log/logger.go:217: Debug 0.0% +2025-07-23T19:39:15.4614981Z github.com/ava-labs/coreth/log/logger.go:221: Info 0.0% +2025-07-23T19:39:15.4615141Z github.com/ava-labs/coreth/log/logger.go:225: Warn 0.0% +2025-07-23T19:39:15.4615311Z github.com/ava-labs/coreth/log/logger.go:229: Error 0.0% +2025-07-23T19:39:15.4615475Z github.com/ava-labs/coreth/log/logger.go:233: Crit 0.0% +2025-07-23T19:39:15.4615722Z github.com/ava-labs/coreth/metrics/metricstest/metrics.go:15: WithMetrics 40.0% +2025-07-23T19:39:15.4615992Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:28: NewGatherer 100.0% +2025-07-23T19:39:15.4616235Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:36: Gather 100.0% +2025-07-23T19:39:15.4616476Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:64: ptrTo 100.0% +2025-07-23T19:39:15.4616734Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:66: metricFamily 94.1% +2025-07-23T19:39:15.4616896Z github.com/ava-labs/coreth/miner/miner.go:59: New 0.0% +2025-07-23T19:39:15.4617097Z github.com/ava-labs/coreth/miner/miner.go:65: SetEtherbase 0.0% +2025-07-23T19:39:15.4617291Z github.com/ava-labs/coreth/miner/miner.go:69: GenerateBlock 0.0% +2025-07-23T19:39:15.4617517Z github.com/ava-labs/coreth/miner/miner.go:75: SubscribePendingLogs 0.0% +2025-07-23T19:39:15.4617744Z github.com/ava-labs/coreth/miner/ordering.go:50: newTxWithMinerFee 100.0% +2025-07-23T19:39:15.4617921Z github.com/ava-labs/coreth/miner/ordering.go:72: Len 100.0% +2025-07-23T19:39:15.4618196Z github.com/ava-labs/coreth/miner/ordering.go:73: Less 100.0% +2025-07-23T19:39:15.4618376Z github.com/ava-labs/coreth/miner/ordering.go:82: Swap 100.0% +2025-07-23T19:39:15.4618554Z github.com/ava-labs/coreth/miner/ordering.go:84: Push 0.0% +2025-07-23T19:39:15.4618732Z github.com/ava-labs/coreth/miner/ordering.go:88: Pop 100.0% +2025-07-23T19:39:15.4619001Z github.com/ava-labs/coreth/miner/ordering.go:112: newTransactionsByPriceAndNonce 100.0% +2025-07-23T19:39:15.4619188Z github.com/ava-labs/coreth/miner/ordering.go:141: Peek 100.0% +2025-07-23T19:39:15.4619374Z github.com/ava-labs/coreth/miner/ordering.go:149: Shift 100.0% +2025-07-23T19:39:15.4619668Z github.com/ava-labs/coreth/miner/ordering.go:164: Pop 0.0% +2025-07-23T19:39:15.4619851Z github.com/ava-labs/coreth/miner/ordering.go:170: Empty 0.0% +2025-07-23T19:39:15.4620026Z github.com/ava-labs/coreth/miner/ordering.go:175: Clear 0.0% +2025-07-23T19:39:15.4620211Z github.com/ava-labs/coreth/miner/worker.go:116: newWorker 0.0% +2025-07-23T19:39:15.4620413Z github.com/ava-labs/coreth/miner/worker.go:133: setEtherbase 0.0% +2025-07-23T19:39:15.4620615Z github.com/ava-labs/coreth/miner/worker.go:140: commitNewWork 0.0% +2025-07-23T19:39:15.4620856Z github.com/ava-labs/coreth/miner/worker.go:264: createCurrentEnvironment 0.0% +2025-07-23T19:39:15.4621069Z github.com/ava-labs/coreth/miner/worker.go:313: commitTransaction 0.0% +2025-07-23T19:39:15.4621327Z github.com/ava-labs/coreth/miner/worker.go:327: commitBlobTransaction 0.0% +2025-07-23T19:39:15.4621545Z github.com/ava-labs/coreth/miner/worker.go:352: applyTransaction 0.0% +2025-07-23T19:39:15.4621879Z github.com/ava-labs/coreth/miner/worker.go:386: commitTransactions 0.0% +2025-07-23T19:39:15.4622058Z github.com/ava-labs/coreth/miner/worker.go:493: commit 0.0% +2025-07-23T19:39:15.4622252Z github.com/ava-labs/coreth/miner/worker.go:511: handleResult 0.0% +2025-07-23T19:39:15.4622447Z github.com/ava-labs/coreth/miner/worker.go:557: copyReceipts 0.0% +2025-07-23T19:39:15.4622640Z github.com/ava-labs/coreth/miner/worker.go:567: totalFees 0.0% +2025-07-23T19:39:15.4622926Z github.com/ava-labs/coreth/nativeasset/contract.go:36: PackNativeAssetBalanceInput 100.0% +2025-07-23T19:39:15.4623212Z github.com/ava-labs/coreth/nativeasset/contract.go:44: UnpackNativeAssetBalanceInput 100.0% +2025-07-23T19:39:15.4623412Z github.com/ava-labs/coreth/nativeasset/contract.go:55: Run 90.0% +2025-07-23T19:39:15.4623685Z github.com/ava-labs/coreth/nativeasset/contract.go:84: PackNativeAssetCallInput 100.0% +2025-07-23T19:39:15.4623969Z github.com/ava-labs/coreth/nativeasset/contract.go:94: UnpackNativeAssetCallInput 100.0% +2025-07-23T19:39:15.4624175Z github.com/ava-labs/coreth/nativeasset/contract.go:106: Run 100.0% +2025-07-23T19:39:15.4624369Z github.com/ava-labs/coreth/nativeasset/contract.go:123: run 81.0% +2025-07-23T19:39:15.4624574Z github.com/ava-labs/coreth/nativeasset/contract.go:168: Run 100.0% +2025-07-23T19:39:15.4624773Z github.com/ava-labs/coreth/network/network.go:125: NewNetwork 75.0% +2025-07-23T19:39:15.4625008Z github.com/ava-labs/coreth/network/network.go:155: SendAppRequestAny 90.0% +2025-07-23T19:39:15.4625223Z github.com/ava-labs/coreth/network/network.go:177: SendAppRequest 88.9% +2025-07-23T19:39:15.4625440Z github.com/ava-labs/coreth/network/network.go:204: sendAppRequest 70.0% +2025-07-23T19:39:15.4625644Z github.com/ava-labs/coreth/network/network.go:259: AppRequest 81.8% +2025-07-23T19:39:15.4625854Z github.com/ava-labs/coreth/network/network.go:304: AppResponse 100.0% +2025-07-23T19:39:15.4626079Z github.com/ava-labs/coreth/network/network.go:325: AppRequestFailed 71.4% +2025-07-23T19:39:15.4626339Z github.com/ava-labs/coreth/network/network.go:343: calculateTimeUntilDeadline 100.0% +2025-07-23T19:39:15.4626577Z github.com/ava-labs/coreth/network/network.go:365: markRequestFulfilled 100.0% +2025-07-23T19:39:15.4626781Z github.com/ava-labs/coreth/network/network.go:382: AppGossip 100.0% +2025-07-23T19:39:15.4626979Z github.com/ava-labs/coreth/network/network.go:387: Connected 87.5% +2025-07-23T19:39:15.4627183Z github.com/ava-labs/coreth/network/network.go:406: Disconnected 0.0% +2025-07-23T19:39:15.4627383Z github.com/ava-labs/coreth/network/network.go:424: Shutdown 100.0% +2025-07-23T19:39:15.4627626Z github.com/ava-labs/coreth/network/network.go:438: SetRequestHandler 100.0% +2025-07-23T19:39:15.4627922Z github.com/ava-labs/coreth/network/network.go:445: Size 100.0% +2025-07-23T19:39:15.4628228Z github.com/ava-labs/coreth/network/network.go:452: TrackBandwidth 0.0% +2025-07-23T19:39:15.4628488Z github.com/ava-labs/coreth/network/network.go:463: SendSyncedAppRequestAny 100.0% +2025-07-23T19:39:15.4628729Z github.com/ava-labs/coreth/network/network.go:475: SendSyncedAppRequest 75.0% +2025-07-23T19:39:15.4628923Z github.com/ava-labs/coreth/network/network.go:483: NewClient 0.0% +2025-07-23T19:39:15.4629125Z github.com/ava-labs/coreth/network/network.go:487: AddHandler 100.0% +2025-07-23T19:39:15.4629349Z github.com/ava-labs/coreth/network/network.go:492: P2PValidators 0.0% +2025-07-23T19:39:15.4629562Z github.com/ava-labs/coreth/network/network.go:501: nextRequestID 100.0% +2025-07-23T19:39:15.4629790Z github.com/ava-labs/coreth/network/network.go:511: IsNetworkRequest 100.0% +2025-07-23T19:39:15.4630022Z github.com/ava-labs/coreth/network/peer_tracker.go:55: NewPeerTracker 100.0% +2025-07-23T19:39:15.4630268Z github.com/ava-labs/coreth/network/peer_tracker.go:70: shouldTrackNewPeer 85.7% +2025-07-23T19:39:15.4630625Z github.com/ava-labs/coreth/network/peer_tracker.go:85: getResponsivePeer 75.0% +2025-07-23T19:39:15.4630845Z github.com/ava-labs/coreth/network/peer_tracker.go:98: GetAnyPeer 100.0% +2025-07-23T19:39:15.4631067Z github.com/ava-labs/coreth/network/peer_tracker.go:133: TrackPeer 100.0% +2025-07-23T19:39:15.4631295Z github.com/ava-labs/coreth/network/peer_tracker.go:138: TrackBandwidth 86.7% +2025-07-23T19:39:15.4631508Z github.com/ava-labs/coreth/network/peer_tracker.go:165: Connected 71.4% +2025-07-23T19:39:15.4631738Z github.com/ava-labs/coreth/network/peer_tracker.go:188: Disconnected 100.0% +2025-07-23T19:39:15.4631937Z github.com/ava-labs/coreth/network/peer_tracker.go:198: Size 100.0% +2025-07-23T19:39:15.4632207Z github.com/ava-labs/coreth/network/stats/stats.go:23: IncDeadlineDroppedRequest 100.0% +2025-07-23T19:39:15.4632479Z github.com/ava-labs/coreth/network/stats/stats.go:27: UpdateTimeUntilDeadline 100.0% +2025-07-23T19:39:15.4632742Z github.com/ava-labs/coreth/network/stats/stats.go:31: NewRequestHandlerStats 100.0% +2025-07-23T19:39:15.4633030Z github.com/ava-labs/coreth/network/waiting_handler.go:29: newWaitingResponseHandler 100.0% +2025-07-23T19:39:15.4633257Z github.com/ava-labs/coreth/network/waiting_handler.go:39: OnResponse 100.0% +2025-07-23T19:39:15.4633481Z github.com/ava-labs/coreth/network/waiting_handler.go:46: OnFailure 100.0% +2025-07-23T19:39:15.4633720Z github.com/ava-labs/coreth/network/waiting_handler.go:52: WaitForResult 100.0% +2025-07-23T19:39:15.4633885Z github.com/ava-labs/coreth/node/api.go:38: apis 100.0% +2025-07-23T19:39:15.4634074Z github.com/ava-labs/coreth/node/api.go:59: ClientVersion 0.0% +2025-07-23T19:39:15.4634231Z github.com/ava-labs/coreth/node/api.go:65: Sha3 0.0% +2025-07-23T19:39:15.4634436Z github.com/ava-labs/coreth/node/config.go:75: ExtRPCEnabled 100.0% +2025-07-23T19:39:15.4634640Z github.com/ava-labs/coreth/node/config.go:81: KeyDirConfig 60.0% +2025-07-23T19:39:15.4634840Z github.com/ava-labs/coreth/node/config.go:97: GetKeyStoreDir 75.0% +2025-07-23T19:39:15.4635056Z github.com/ava-labs/coreth/node/config.go:119: makeAccountManager 58.8% +2025-07-23T19:39:15.4635223Z github.com/ava-labs/coreth/node/node.go:42: New 87.5% +2025-07-23T19:39:15.4635396Z github.com/ava-labs/coreth/node/node.go:62: Config 100.0% +2025-07-23T19:39:15.4635602Z github.com/ava-labs/coreth/node/node.go:67: AccountManager 100.0% +2025-07-23T19:39:15.4635767Z github.com/ava-labs/coreth/node/node.go:72: APIs 100.0% +2025-07-23T19:39:15.4635996Z github.com/ava-labs/coreth/params/config_extra.go:34: SetEthUpgrades 79.3% +2025-07-23T19:39:15.4636205Z github.com/ava-labs/coreth/params/config_extra.go:91: GetExtra 60.0% +2025-07-23T19:39:15.4636513Z github.com/ava-labs/coreth/params/config_extra.go:100: Copy 0.0% +2025-07-23T19:39:15.4636734Z github.com/ava-labs/coreth/params/config_extra.go:107: WithExtra 100.0% +2025-07-23T19:39:15.4636945Z github.com/ava-labs/coreth/params/config_extra.go:122: MarshalJSON 0.0% +2025-07-23T19:39:15.4637164Z github.com/ava-labs/coreth/params/config_extra.go:152: UnmarshalJSON 0.0% +2025-07-23T19:39:15.4637402Z github.com/ava-labs/coreth/params/config_extra.go:174: ToWithUpgradesJSON 0.0% +2025-07-23T19:39:15.4637619Z github.com/ava-labs/coreth/params/config_libevm.go:18: libevmInit 100.0% +2025-07-23T19:39:15.4637863Z github.com/ava-labs/coreth/params/config_libevm.go:31: constructRulesExtra 53.3% +2025-07-23T19:39:15.4638086Z github.com/ava-labs/coreth/params/extras/config.go:96: copyAndSet 100.0% +2025-07-23T19:39:15.4638437Z github.com/ava-labs/coreth/params/extras/config.go:123: CheckConfigCompatible 0.0% +2025-07-23T19:39:15.4638664Z github.com/ava-labs/coreth/params/extras/config.go:145: Description 0.0% +2025-07-23T19:39:15.4639049Z github.com/ava-labs/coreth/params/extras/config.go:166: isForkTimestampIncompatible 0.0% +2025-07-23T19:39:15.4639294Z github.com/ava-labs/coreth/params/extras/config.go:172: isTimestampForked 100.0% +2025-07-23T19:39:15.4639552Z github.com/ava-labs/coreth/params/extras/config.go:179: configTimestampEqual 0.0% +2025-07-23T19:39:15.4639777Z github.com/ava-labs/coreth/params/extras/config.go:194: UnmarshalJSON 0.0% +2025-07-23T19:39:15.4639998Z github.com/ava-labs/coreth/params/extras/config.go:210: MarshalJSON 0.0% +2025-07-23T19:39:15.4640250Z github.com/ava-labs/coreth/params/extras/config.go:223: CheckConfigForkOrder 0.0% +2025-07-23T19:39:15.4640464Z github.com/ava-labs/coreth/params/extras/config.go:240: checkForks 0.0% +2025-07-23T19:39:15.4640670Z github.com/ava-labs/coreth/params/extras/config.go:281: Verify 0.0% +2025-07-23T19:39:15.4640919Z github.com/ava-labs/coreth/params/extras/config.go:291: IsPrecompileEnabled 0.0% +2025-07-23T19:39:15.4641170Z github.com/ava-labs/coreth/params/extras/config.go:303: IsForkTransition 100.0% +2025-07-23T19:39:15.4641399Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:61: Equal 0.0% +2025-07-23T19:39:15.4641718Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:65: checkNetworkUpgradesCompatible 0.0% +2025-07-23T19:39:15.4641964Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:112: forkOrder 0.0% +2025-07-23T19:39:15.4642230Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:133: IsApricotPhase1 0.0% +2025-07-23T19:39:15.4642493Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:139: IsApricotPhase2 0.0% +2025-07-23T19:39:15.4642761Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:145: IsApricotPhase3 0.0% +2025-07-23T19:39:15.4643019Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:151: IsApricotPhase4 0.0% +2025-07-23T19:39:15.4643288Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:157: IsApricotPhase5 0.0% +2025-07-23T19:39:15.4643566Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:163: IsApricotPhasePre6 0.0% +2025-07-23T19:39:15.4643826Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:169: IsApricotPhase6 0.0% +2025-07-23T19:39:15.4644112Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:175: IsApricotPhasePost6 0.0% +2025-07-23T19:39:15.4644350Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:181: IsBanff 0.0% +2025-07-23T19:39:15.4644595Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:187: IsCortina 0.0% +2025-07-23T19:39:15.4644833Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:193: IsDurango 0.0% +2025-07-23T19:39:15.4645064Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:199: IsEtna 0.0% +2025-07-23T19:39:15.4645422Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:205: IsFortuna 0.0% +2025-07-23T19:39:15.4645664Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:211: IsGranite 0.0% +2025-07-23T19:39:15.4645918Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:215: Description 0.0% +2025-07-23T19:39:15.4646189Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:234: GetNetworkUpgrades 0.0% +2025-07-23T19:39:15.4646456Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:264: GetAvalancheRules 0.0% +2025-07-23T19:39:15.4646709Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:283: ptrToString 0.0% +2025-07-23T19:39:15.4646978Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:32: UnmarshalJSON 0.0% +2025-07-23T19:39:15.4647236Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:59: MarshalJSON 0.0% +2025-07-23T19:39:15.4647547Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:71: verifyPrecompileUpgrades 0.0% +2025-07-23T19:39:15.4647861Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:137: GetActivePrecompileConfig 0.0% +2025-07-23T19:39:15.4648369Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:147: GetActivatingPrecompileConfigs 0.0% +2025-07-23T19:39:15.4648688Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:176: checkPrecompilesCompatible 0.0% +2025-07-23T19:39:15.4648996Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:192: checkPrecompileCompatible 0.0% +2025-07-23T19:39:15.4649313Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:230: EnabledStatefulPrecompiles 0.0% +2025-07-23T19:39:15.4649557Z github.com/ava-labs/coreth/params/extras/precompiles.go:18: UnmarshalJSON 0.0% +2025-07-23T19:39:15.4649793Z github.com/ava-labs/coreth/params/extras/rules.go:28: PredicatersExist 0.0% +2025-07-23T19:39:15.4650022Z github.com/ava-labs/coreth/params/extras/rules.go:32: PredicaterExists 0.0% +2025-07-23T19:39:15.4650263Z github.com/ava-labs/coreth/params/extras/rules.go:38: IsPrecompileEnabled 0.0% +2025-07-23T19:39:15.4650495Z github.com/ava-labs/coreth/params/hooks_libevm.go:28: GetRulesExtra 100.0% +2025-07-23T19:39:15.4650734Z github.com/ava-labs/coreth/params/hooks_libevm.go:33: CanCreateContract 0.0% +2025-07-23T19:39:15.4650986Z github.com/ava-labs/coreth/params/hooks_libevm.go:37: CanExecuteTransaction 0.0% +2025-07-23T19:39:15.4651234Z github.com/ava-labs/coreth/params/hooks_libevm.go:42: MinimumGasConsumption 0.0% +2025-07-23T19:39:15.4651463Z github.com/ava-labs/coreth/params/hooks_libevm.go:70: ActivePrecompiles 0.0% +2025-07-23T19:39:15.4651730Z github.com/ava-labs/coreth/params/hooks_libevm.go:92: precompileOverrideBuiltin 0.0% +2025-07-23T19:39:15.4651955Z github.com/ava-labs/coreth/params/hooks_libevm.go:113: makePrecompile 0.0% +2025-07-23T19:39:15.4652188Z github.com/ava-labs/coreth/params/hooks_libevm.go:140: PrecompileOverride 0.0% +2025-07-23T19:39:15.4652408Z github.com/ava-labs/coreth/params/hooks_libevm.go:160: GetStateDB 0.0% +2025-07-23T19:39:15.4652637Z github.com/ava-labs/coreth/params/hooks_libevm.go:172: GetBlockContext 0.0% +2025-07-23T19:39:15.4652861Z github.com/ava-labs/coreth/params/hooks_libevm.go:176: GetChainConfig 0.0% +2025-07-23T19:39:15.4653081Z github.com/ava-labs/coreth/params/hooks_libevm.go:180: GetSnowContext 0.0% +2025-07-23T19:39:15.4653306Z github.com/ava-labs/coreth/params/hooks_libevm.go:184: GetPrecompileEnv 0.0% +2025-07-23T19:39:15.4653513Z github.com/ava-labs/coreth/params/hooks_libevm.go:194: Number 0.0% +2025-07-23T19:39:15.4653719Z github.com/ava-labs/coreth/params/hooks_libevm.go:198: Timestamp 0.0% +2025-07-23T19:39:15.4653958Z github.com/ava-labs/coreth/params/hooks_libevm.go:202: GetPredicateResults 0.0% +2025-07-23T19:39:15.4654177Z github.com/ava-labs/coreth/params/version.go:53: VersionWithCommit 0.0% +2025-07-23T19:39:15.4654511Z github.com/ava-labs/coreth/plugin/evm/admin.go:22: NewAdminService 0.0% +2025-07-23T19:39:15.4654735Z github.com/ava-labs/coreth/plugin/evm/admin.go:30: StartCPUProfiler 0.0% +2025-07-23T19:39:15.4654953Z github.com/ava-labs/coreth/plugin/evm/admin.go:40: StopCPUProfiler 0.0% +2025-07-23T19:39:15.4655161Z github.com/ava-labs/coreth/plugin/evm/admin.go:50: MemoryProfile 0.0% +2025-07-23T19:39:15.4655367Z github.com/ava-labs/coreth/plugin/evm/admin.go:60: LockProfile 0.0% +2025-07-23T19:39:15.4655565Z github.com/ava-labs/coreth/plugin/evm/admin.go:69: SetLogLevel 0.0% +2025-07-23T19:39:15.4655766Z github.com/ava-labs/coreth/plugin/evm/admin.go:81: GetVMConfig 0.0% +2025-07-23T19:39:15.4656055Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/ops.go:12: ConvertToAtomicOps 75.0% +2025-07-23T19:39:15.4656440Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:26: AddItemsToBeRemovedToPeerChain 87.5% +2025-07-23T19:39:15.4656780Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:40: AssertOpsApplied 100.0% +2025-07-23T19:39:15.4657231Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:58: AssertOpsNotApplied 100.0% +2025-07-23T19:39:15.4657573Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:76: NewSharedMemories 100.0% +2025-07-23T19:39:15.4657894Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:85: TestSharedMemory 100.0% +2025-07-23T19:39:15.4658310Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:28: init 83.3% +2025-07-23T19:39:15.4658622Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:58: GasUsed 100.0% +2025-07-23T19:39:15.4658864Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:61: Verify 0.0% +2025-07-23T19:39:15.4659117Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:64: AtomicOps 100.0% +2025-07-23T19:39:15.4659372Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:69: Initialize 0.0% +2025-07-23T19:39:15.4659605Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:72: ID 100.0% +2025-07-23T19:39:15.4659853Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:75: Burned 100.0% +2025-07-23T19:39:15.4660085Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:78: Bytes 0.0% +2025-07-23T19:39:15.4660335Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:81: SignedBytes 0.0% +2025-07-23T19:39:15.4660598Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:84: InputUTXOs 100.0% +2025-07-23T19:39:15.4660827Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:87: Visit 0.0% +2025-07-23T19:39:15.4661107Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:92: EVMStateTransfer 0.0% +2025-07-23T19:39:15.4661430Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:98: GenerateTestImportTxWithGas 100.0% +2025-07-23T19:39:15.4661736Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:115: GenerateTestImportTx 100.0% +2025-07-23T19:39:15.4662038Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:130: GenerateTestExportTx 100.0% +2025-07-23T19:39:15.4662287Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:151: NewTestTx 80.0% +2025-07-23T19:39:15.4662553Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:163: NewTestTxs 100.0% +2025-07-23T19:39:15.4662763Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:25: init 85.7% +2025-07-23T19:39:15.4663004Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:57: ExtractAtomicTxs 0.0% +2025-07-23T19:39:15.4663250Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:76: ExtractAtomicTx 66.7% +2025-07-23T19:39:15.4663513Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:89: ExtractAtomicTxsBatch 0.0% +2025-07-23T19:39:15.4663748Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:60: InputUTXOs 0.0% +2025-07-23T19:39:15.4664103Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:75: Verify 0.0% +2025-07-23T19:39:15.4664334Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:134: GasUsed 0.0% +2025-07-23T19:39:15.4664563Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:156: Burned 0.0% +2025-07-23T19:39:15.4664784Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:182: Visit 0.0% +2025-07-23T19:39:15.4665014Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:185: AtomicOps 0.0% +2025-07-23T19:39:15.4665260Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:219: NewExportTx 0.0% +2025-07-23T19:39:15.4665517Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:313: EVMStateTransfer 0.0% +2025-07-23T19:39:15.4665785Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:352: getSpendableFunds 0.0% +2025-07-23T19:39:15.4666072Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:409: getSpendableAVAXWithFee 0.0% +2025-07-23T19:39:15.4666464Z github.com/ava-labs/coreth/plugin/evm/atomic/gossip.go:12: MarshalGossip 100.0% +2025-07-23T19:39:15.4666720Z github.com/ava-labs/coreth/plugin/evm/atomic/gossip.go:16: UnmarshalGossip 100.0% +2025-07-23T19:39:15.4666953Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:63: InputUTXOs 0.0% +2025-07-23T19:39:15.4667177Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:72: Verify 0.0% +2025-07-23T19:39:15.4667404Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:136: GasUsed 0.0% +2025-07-23T19:39:15.4667628Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:161: Burned 0.0% +2025-07-23T19:39:15.4667865Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:192: AtomicOps 0.0% +2025-07-23T19:39:15.4668211Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:202: NewImportTx 0.0% +2025-07-23T19:39:15.4668478Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:335: EVMStateTransfer 0.0% +2025-07-23T19:39:15.4668708Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:352: Visit 0.0% +2025-07-23T19:39:15.4668943Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:18: Initialize 100.0% +2025-07-23T19:39:15.4669163Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:25: ID 100.0% +2025-07-23T19:39:15.4669381Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:30: Bytes 0.0% +2025-07-23T19:39:15.4669623Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:35: SignedBytes 100.0% +2025-07-23T19:39:15.4669923Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:42: NewAtomicBackend 75.0% +2025-07-23T19:39:15.4670201Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:79: initialize 72.0% +2025-07-23T19:39:15.4670521Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:182: ApplyToSharedMemory 63.3% +2025-07-23T19:39:15.4670880Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:303: MarkApplyToSharedMemoryCursor 100.0% +2025-07-23T19:39:15.4671204Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:309: GetVerifiedAtomicState 0.0% +2025-07-23T19:39:15.4671503Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:320: getAtomicRootAt 0.0% +2025-07-23T19:39:15.4671794Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:332: SetLastAccepted 0.0% +2025-07-23T19:39:15.4672070Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:343: InsertTxs 0.0% +2025-07-23T19:39:15.4672335Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:393: IsBonus 0.0% +2025-07-23T19:39:15.4672617Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:400: AtomicTrie 100.0% +2025-07-23T19:39:15.4672913Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:406: mergeAtomicOps 91.7% +2025-07-23T19:39:15.4673347Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:428: mergeAtomicOpsToMap 100.0% +2025-07-23T19:39:15.4673640Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:438: AddBonusBlock 0.0% +2025-07-23T19:39:15.4673975Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:65: NewAtomicTxRepository 75.0% +2025-07-23T19:39:15.4674303Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:85: initializeHeightIndex 59.6% +2025-07-23T19:39:15.4674606Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:185: GetIndexHeight 0.0% +2025-07-23T19:39:15.4674889Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:201: GetByTxID 0.0% +2025-07-23T19:39:15.4675184Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:229: GetByHeight 100.0% +2025-07-23T19:39:15.4675503Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:236: getByHeightBytes 100.0% +2025-07-23T19:39:15.4675787Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:248: Write 100.0% +2025-07-23T19:39:15.4676182Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:254: WriteBonus 0.0% +2025-07-23T19:39:15.4676454Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:258: write 72.2% +2025-07-23T19:39:15.4676744Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:300: indexTxByID 80.0% +2025-07-23T19:39:15.4677056Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:320: indexTxsAtHeight 66.7% +2025-07-23T19:39:15.4677390Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:335: appendTxToHeightIndex 75.0% +2025-07-23T19:39:15.4677708Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:356: IterateByHeight 100.0% +2025-07-23T19:39:15.4677957Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:28: Root 0.0% +2025-07-23T19:39:15.4678321Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:35: Accept 0.0% +2025-07-23T19:39:15.4678583Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:78: Reject 0.0% +2025-07-23T19:39:15.4678862Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:52: newAtomicTrie 58.3% +2025-07-23T19:39:15.4679194Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:103: lastCommittedRootIfExists 72.7% +2025-07-23T19:39:15.4679498Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:126: nearestCommitHeight 100.0% +2025-07-23T19:39:15.4679764Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:130: OpenTrie 100.0% +2025-07-23T19:39:15.4680028Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:135: Commit 75.0% +2025-07-23T19:39:15.4680300Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:143: UpdateTrie 80.0% +2025-07-23T19:39:15.4680592Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:165: LastCommitted 100.0% +2025-07-23T19:39:15.4680900Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:171: updateLastCommitted 75.0% +2025-07-23T19:39:15.4681163Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:191: Iterator 75.0% +2025-07-23T19:39:15.4681421Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:205: TrieDB 0.0% +2025-07-23T19:39:15.4681671Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:212: Root 100.0% +2025-07-23T19:39:15.4681936Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:218: getRoot 62.5% +2025-07-23T19:39:15.4682231Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:237: LastAcceptedRoot 100.0% +2025-07-23T19:39:15.4682497Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:241: InsertTrie 55.6% +2025-07-23T19:39:15.4682884Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:263: AcceptTrie 83.3% +2025-07-23T19:39:15.4683153Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:293: RejectTrie 0.0% +2025-07-23T19:39:15.4683497Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:28: NewAtomicTrieIterator 100.0% +2025-07-23T19:39:15.4683786Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:33: Error 100.0% +2025-07-23T19:39:15.4684065Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:42: Next 81.0% +2025-07-23T19:39:15.4684368Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:81: resetFields 100.0% +2025-07-23T19:39:15.4684665Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:90: BlockNumber 100.0% +2025-07-23T19:39:15.4684972Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:95: BlockchainID 100.0% +2025-07-23T19:39:15.4685278Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:101: AtomicOps 100.0% +2025-07-23T19:39:15.4685657Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:107: Key 0.0% +2025-07-23T19:39:15.4685942Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:112: Value 0.0% +2025-07-23T19:39:15.4686175Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:29: MarshalJSON 0.0% +2025-07-23T19:39:15.4686417Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:37: UnmarshalJSON 0.0% +2025-07-23T19:39:15.4686633Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:58: Valid 0.0% +2025-07-23T19:39:15.4686846Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:67: String 0.0% +2025-07-23T19:39:15.4687098Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:29: Initialize 0.0% +2025-07-23T19:39:15.4687327Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:36: Sync 0.0% +2025-07-23T19:39:15.4687620Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:69: OnFinishBeforeCommit 0.0% +2025-07-23T19:39:15.4687907Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:81: OnFinishAfterCommit 0.0% +2025-07-23T19:39:15.4688279Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:28: OnLeafsRequest 0.0% +2025-07-23T19:39:15.4688564Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:38: NewLeafHandler 0.0% +2025-07-23T19:39:15.4688827Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:45: Initialize 0.0% +2025-07-23T19:39:15.4689078Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:32: NewSummary 80.0% +2025-07-23T19:39:15.4689320Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:57: Bytes 100.0% +2025-07-23T19:39:15.4689546Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:61: ID 100.0% +2025-07-23T19:39:15.4689781Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:65: String 0.0% +2025-07-23T19:39:15.4690020Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:69: Accept 66.7% +2025-07-23T19:39:15.4690319Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_parser.go:17: NewSummaryParser 100.0% +2025-07-23T19:39:15.4690584Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_parser.go:21: Parse 80.0% +2025-07-23T19:39:15.4690859Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_provider.go:25: Initialize 0.0% +2025-07-23T19:39:15.4691171Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_provider.go:30: StateSummaryAtBlock 0.0% +2025-07-23T19:39:15.4691419Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:88: Validate 100.0% +2025-07-23T19:39:15.4691663Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:162: addZeroes 100.0% +2025-07-23T19:39:15.4691909Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:170: newSyncer 86.7% +2025-07-23T19:39:15.4692258Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:211: Start 100.0% +2025-07-23T19:39:15.4692497Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:219: onLeafs 70.8% +2025-07-23T19:39:15.4692737Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:267: onFinish 58.3% +2025-07-23T19:39:15.4693002Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:293: onSyncFailure 100.0% +2025-07-23T19:39:15.4693237Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:300: Wait 100.0% +2025-07-23T19:39:15.4693465Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:318: Start 100.0% +2025-07-23T19:39:15.4693690Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:319: End 100.0% +2025-07-23T19:39:15.4693936Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:320: NodeType 100.0% +2025-07-23T19:39:15.4694173Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:321: OnFinish 100.0% +2025-07-23T19:39:15.4694419Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:322: OnStart 100.0% +2025-07-23T19:39:15.4694760Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:323: Root 100.0% +2025-07-23T19:39:15.4694995Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:324: Account 100.0% +2025-07-23T19:39:15.4695242Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:325: OnLeafs 100.0% +2025-07-23T19:39:15.4695449Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:70: Compare 0.0% +2025-07-23T19:39:15.4695654Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:86: Compare 0.0% +2025-07-23T19:39:15.4695859Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:95: Verify 0.0% +2025-07-23T19:39:15.4696058Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:108: Verify 0.0% +2025-07-23T19:39:15.4696269Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:183: Compare 0.0% +2025-07-23T19:39:15.4696470Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:197: Sign 82.4% +2025-07-23T19:39:15.4696724Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:231: BlockFeeContribution 0.0% +2025-07-23T19:39:15.4696945Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:261: GossipID 100.0% +2025-07-23T19:39:15.4697143Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:271: Less 0.0% +2025-07-23T19:39:15.4697338Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:279: Len 0.0% +2025-07-23T19:39:15.4697541Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:281: Swap 0.0% +2025-07-23T19:39:15.4697803Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:287: SortEVMInputsAndSigners 0.0% +2025-07-23T19:39:15.4698056Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:293: CalculateDynamicFee 0.0% +2025-07-23T19:39:15.4698381Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:309: calcBytesCost 0.0% +2025-07-23T19:39:15.4698677Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:48: newMempoolMetrics 100.0% +2025-07-23T19:39:15.4698954Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:89: Initialize 93.3% +2025-07-23T19:39:15.4699218Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:114: PendingLen 0.0% +2025-07-23T19:39:15.4699461Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:119: Len 0.0% +2025-07-23T19:39:15.4699712Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:127: length 100.0% +2025-07-23T19:39:15.4699996Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:133: atomicTxGasPrice 77.8% +2025-07-23T19:39:15.4700238Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:148: Add 100.0% +2025-07-23T19:39:15.4700507Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:157: AddRemoteTx 100.0% +2025-07-23T19:39:15.4700768Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:180: AddLocalTx 0.0% +2025-07-23T19:39:15.4701145Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:193: ForceAddTx 0.0% +2025-07-23T19:39:15.4701427Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:203: checkConflictTx 26.7% +2025-07-23T19:39:15.4701674Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:234: addTx 64.6% +2025-07-23T19:39:15.4701925Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:352: Iterate 100.0% +2025-07-23T19:39:15.4702176Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:363: GetFilter 0.0% +2025-07-23T19:39:15.4702427Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:371: NextTx 88.9% +2025-07-23T19:39:15.4702691Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:391: GetPendingTx 0.0% +2025-07-23T19:39:15.4702937Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:401: GetTx 72.7% +2025-07-23T19:39:15.4703174Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:422: Has 100.0% +2025-07-23T19:39:15.4703455Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:428: IssueCurrentTxs 88.9% +2025-07-23T19:39:15.4703847Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:451: CancelCurrentTx 0.0% +2025-07-23T19:39:15.4704123Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:464: CancelCurrentTxs 0.0% +2025-07-23T19:39:15.4704378Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:484: cancelTx 0.0% +2025-07-23T19:39:15.4704650Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:505: DiscardCurrentTx 0.0% +2025-07-23T19:39:15.4704927Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:515: DiscardCurrentTxs 0.0% +2025-07-23T19:39:15.4705201Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:526: discardCurrentTx 0.0% +2025-07-23T19:39:15.4705454Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:540: removeTx 91.7% +2025-07-23T19:39:15.4705736Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:565: removeSpenders 50.0% +2025-07-23T19:39:15.4705983Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:573: RemoveTx 0.0% +2025-07-23T19:39:15.4706248Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:581: addPending 100.0% +2025-07-23T19:39:15.4706546Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:590: SubscribePendingTxs 0.0% +2025-07-23T19:39:15.4706829Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:29: newInternalTxHeap 100.0% +2025-07-23T19:39:15.4707064Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:37: Len 100.0% +2025-07-23T19:39:15.4707307Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:39: Less 100.0% +2025-07-23T19:39:15.4707543Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:46: Swap 100.0% +2025-07-23T19:39:15.4707780Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:52: Push 80.0% +2025-07-23T19:39:15.4708021Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:61: Pop 100.0% +2025-07-23T19:39:15.4708380Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:70: Get 100.0% +2025-07-23T19:39:15.4708618Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:78: Has 100.0% +2025-07-23T19:39:15.4708873Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:88: newTxHeap 100.0% +2025-07-23T19:39:15.4709115Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:95: Push 100.0% +2025-07-23T19:39:15.4709360Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:113: PeekMax 0.0% +2025-07-23T19:39:15.4709612Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:119: PeekMin 100.0% +2025-07-23T19:39:15.4709864Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:125: PopMax 100.0% +2025-07-23T19:39:15.4710230Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:130: PopMin 100.0% +2025-07-23T19:39:15.4710480Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:134: Remove 75.0% +2025-07-23T19:39:15.4710713Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:150: Len 100.0% +2025-07-23T19:39:15.4710955Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:154: Get 100.0% +2025-07-23T19:39:15.4711192Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:162: Has 100.0% +2025-07-23T19:39:15.4711413Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:43: Version 0.0% +2025-07-23T19:39:15.4711630Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:53: GetUTXOs 0.0% +2025-07-23T19:39:15.4711857Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:141: IssueTx 0.0% +2025-07-23T19:39:15.4712106Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:170: GetAtomicTxStatus 0.0% +2025-07-23T19:39:15.4712343Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:205: GetAtomicTx 0.0% +2025-07-23T19:39:15.4712752Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:48: newBlockExtender 100.0% +2025-07-23T19:39:15.4713043Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:61: NewBlockExtension 75.0% +2025-07-23T19:39:15.4713338Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:82: SyntacticVerify 66.7% +2025-07-23T19:39:15.4713621Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:172: SemanticVerify 100.0% +2025-07-23T19:39:15.4713886Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:193: Accept 85.7% +2025-07-23T19:39:15.4714146Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:213: Reject 77.8% +2025-07-23T19:39:15.4714445Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:231: CleanupVerified 100.0% +2025-07-23T19:39:15.4714720Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:239: AtomicTxs 100.0% +2025-07-23T19:39:15.4715024Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:245: verifyUTXOsPresent 92.9% +2025-07-23T19:39:15.4715322Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/bonus_blocks.go:9: readMainnetBonusBlocks 0.0% +2025-07-23T19:39:15.4715568Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/ext_data_hashes.go:23: init 66.7% +2025-07-23T19:39:15.4715851Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:18: ParseServiceAddress 0.0% +2025-07-23T19:39:15.4716134Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:27: ParseLocalAddress 0.0% +2025-07-23T19:39:15.4716411Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:40: FormatLocalAddress 0.0% +2025-07-23T19:39:15.4716672Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:51: ParseAddress 0.0% +2025-07-23T19:39:15.4716980Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:50: NewVerifierBackend 100.0% +2025-07-23T19:39:15.4717274Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:62: SemanticVerify 100.0% +2025-07-23T19:39:15.4717556Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:80: ImportTx 95.7% +2025-07-23T19:39:15.4717834Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:167: conflicts 88.2% +2025-07-23T19:39:15.4718202Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:205: ExportTx 86.8% +2025-07-23T19:39:15.4718434Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:108: WrapVM 100.0% +2025-07-23T19:39:15.4718662Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:113: Initialize 74.4% +2025-07-23T19:39:15.4718886Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:231: SetState 57.1% +2025-07-23T19:39:15.4719146Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:248: onBootstrapStarted 100.0% +2025-07-23T19:39:15.4719539Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:253: onNormalOperationsStarted 83.9% +2025-07-23T19:39:15.4719765Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:342: Shutdown 75.0% +2025-07-23T19:39:15.4720002Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:356: CreateHandlers 0.0% +2025-07-23T19:39:15.4720245Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:371: verifyTxAtTip 77.3% +2025-07-23T19:39:15.4720461Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:414: verifyTx 85.7% +2025-07-23T19:39:15.4720684Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:428: verifyTxs 88.2% +2025-07-23T19:39:15.4720931Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:464: CodecRegistry 100.0% +2025-07-23T19:39:15.4721149Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:467: Clock 100.0% +2025-07-23T19:39:15.4721402Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:470: Logger 100.0% +2025-07-23T19:39:15.4721687Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:472: createConsensusCallbacks 100.0% +2025-07-23T19:39:15.4722089Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:479: preBatchOnFinalizeAndAssemble 84.0% +2025-07-23T19:39:15.4722388Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:526: postBatchOnFinalizeAndAssemble 84.1% +2025-07-23T19:39:15.4722658Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:636: onFinalizeAndAssemble 100.0% +2025-07-23T19:39:15.4722913Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:648: onExtraStateChange 83.9% +2025-07-23T19:39:15.4723152Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:721: BuildBlock 100.0% +2025-07-23T19:39:15.4723418Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:725: BuildBlockWithContext 50.0% +2025-07-23T19:39:15.4723673Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:744: chainConfigExtra 100.0% +2025-07-23T19:39:15.4723889Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:748: rules 100.0% +2025-07-23T19:39:15.4724129Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:754: CurrentRules 100.0% +2025-07-23T19:39:15.4724366Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:763: GetAtomicTx 22.2% +2025-07-23T19:39:15.4724596Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:780: NewImportTx 85.7% +2025-07-23T19:39:15.4724821Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:800: NewExportTx 71.4% +2025-07-23T19:39:15.4725068Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:49: NewBlockBuilder 100.0% +2025-07-23T19:39:15.4725334Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:62: handleGenerateBlock 100.0% +2025-07-23T19:39:15.4725573Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:70: needToBuild 100.0% +2025-07-23T19:39:15.4725815Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:78: signalCanBuild 100.0% +2025-07-23T19:39:15.4726074Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:87: awaitSubmittedTxs 100.0% +2025-07-23T19:39:15.4726311Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:119: waitForEvent 91.7% +2025-07-23T19:39:15.4726574Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:145: waitForNeedToBuild 100.0% +2025-07-23T19:39:15.4726802Z github.com/ava-labs/coreth/plugin/evm/client/client.go:49: NewClient 0.0% +2025-07-23T19:39:15.4727045Z github.com/ava-labs/coreth/plugin/evm/client/client.go:57: NewCChainClient 0.0% +2025-07-23T19:39:15.4727262Z github.com/ava-labs/coreth/plugin/evm/client/client.go:62: IssueTx 0.0% +2025-07-23T19:39:15.4727515Z github.com/ava-labs/coreth/plugin/evm/client/client.go:82: GetAtomicTxStatus 0.0% +2025-07-23T19:39:15.4727743Z github.com/ava-labs/coreth/plugin/evm/client/client.go:91: GetAtomicTx 0.0% +2025-07-23T19:39:15.4727988Z github.com/ava-labs/coreth/plugin/evm/client/client.go:106: GetAtomicUTXOs 0.0% +2025-07-23T19:39:15.4728431Z github.com/ava-labs/coreth/plugin/evm/client/client.go:138: StartCPUProfiler 0.0% +2025-07-23T19:39:15.4728686Z github.com/ava-labs/coreth/plugin/evm/client/client.go:142: StopCPUProfiler 0.0% +2025-07-23T19:39:15.4728934Z github.com/ava-labs/coreth/plugin/evm/client/client.go:146: MemoryProfile 0.0% +2025-07-23T19:39:15.4729162Z github.com/ava-labs/coreth/plugin/evm/client/client.go:150: LockProfile 0.0% +2025-07-23T19:39:15.4729395Z github.com/ava-labs/coreth/plugin/evm/client/client.go:159: SetLogLevel 0.0% +2025-07-23T19:39:15.4729622Z github.com/ava-labs/coreth/plugin/evm/client/client.go:170: GetVMConfig 0.0% +2025-07-23T19:39:15.4729857Z github.com/ava-labs/coreth/plugin/evm/client/utils.go:8: ParseEthAddress 0.0% +2025-07-23T19:39:15.4730083Z github.com/ava-labs/coreth/plugin/evm/config/config.go:265: EthAPIs 0.0% +2025-07-23T19:39:15.4730311Z github.com/ava-labs/coreth/plugin/evm/config/config.go:269: SetDefaults 0.0% +2025-07-23T19:39:15.4730554Z github.com/ava-labs/coreth/plugin/evm/config/config.go:327: UnmarshalJSON 80.0% +2025-07-23T19:39:15.4730891Z github.com/ava-labs/coreth/plugin/evm/config/config.go:337: String 0.0% +2025-07-23T19:39:15.4731117Z github.com/ava-labs/coreth/plugin/evm/config/config.go:342: MarshalJSON 0.0% +2025-07-23T19:39:15.4731339Z github.com/ava-labs/coreth/plugin/evm/config/config.go:347: Validate 0.0% +2025-07-23T19:39:15.4731568Z github.com/ava-labs/coreth/plugin/evm/config/config.go:382: Deprecate 57.1% +2025-07-23T19:39:15.4731813Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:28: New 0.0% +2025-07-23T19:39:15.4732065Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:35: Dial 0.0% +2025-07-23T19:39:15.4732342Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:40: DialContext 0.0% +2025-07-23T19:39:15.4732638Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:60: OnBlockDecoded 0.0% +2025-07-23T19:39:15.4732894Z github.com/ava-labs/coreth/plugin/evm/customlogs/log_ext.go:8: FlattenLogs 100.0% +2025-07-23T19:39:15.4733250Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:16: writeCurrentTimeMarker 0.0% +2025-07-23T19:39:15.4733576Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:25: readTimeMarker 0.0% +2025-07-23T19:39:15.4733913Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:44: WriteOfflinePruning 0.0% +2025-07-23T19:39:15.4734249Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:50: ReadOfflinePruning 0.0% +2025-07-23T19:39:15.4734592Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:55: DeleteOfflinePruning 0.0% +2025-07-23T19:39:15.4734953Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:61: WritePopulateMissingTries 0.0% +2025-07-23T19:39:15.4735311Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:67: ReadPopulateMissingTries 0.0% +2025-07-23T19:39:15.4735674Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:73: DeletePopulateMissingTries 0.0% +2025-07-23T19:39:15.4736025Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:79: WritePruningDisabled 0.0% +2025-07-23T19:39:15.4736359Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:85: HasPruningDisabled 0.0% +2025-07-23T19:39:15.4736688Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:90: WriteAcceptorTip 0.0% +2025-07-23T19:39:15.4737018Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:97: ReadAcceptorTip 0.0% +2025-07-23T19:39:15.4737363Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:15: ReadSnapshotBlockHash 0.0% +2025-07-23T19:39:15.4737719Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:25: WriteSnapshotBlockHash 50.0% +2025-07-23T19:39:15.4738320Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:35: DeleteSnapshotBlockHash 0.0% +2025-07-23T19:39:15.4738672Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:42: IterateAccountSnapshots 0.0% +2025-07-23T19:39:15.4738983Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:18: ReadSyncRoot 0.0% +2025-07-23T19:39:15.4739290Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:31: WriteSyncRoot 0.0% +2025-07-23T19:39:15.4739607Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:36: AddCodeToFetch 50.0% +2025-07-23T19:39:15.4739923Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:43: DeleteCodeToFetch 0.0% +2025-07-23T19:39:15.4740260Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:52: NewCodeToFetchIterator 0.0% +2025-07-23T19:39:15.4740576Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:59: codeToFetchKey 100.0% +2025-07-23T19:39:15.4740921Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:69: NewSyncSegmentsIterator 0.0% +2025-07-23T19:39:15.4741355Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:81: WriteSyncSegment 100.0% +2025-07-23T19:39:15.4741668Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:86: ClearSyncSegments 0.0% +2025-07-23T19:39:15.4742002Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:94: ClearAllSyncSegments 100.0% +2025-07-23T19:39:15.4742342Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:100: UnpackSyncSegmentKey 0.0% +2025-07-23T19:39:15.4742673Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:108: packSyncSegmentKey 100.0% +2025-07-23T19:39:15.4743040Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:119: NewSyncStorageTriesIterator 0.0% +2025-07-23T19:39:15.4743380Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:124: WriteSyncStorageTrie 100.0% +2025-07-23T19:39:15.4743714Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:130: ClearSyncStorageTrie 0.0% +2025-07-23T19:39:15.4744063Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:138: ClearAllSyncStorageTries 0.0% +2025-07-23T19:39:15.4744408Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:144: UnpackSyncStorageTrieKey 0.0% +2025-07-23T19:39:15.4744759Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:152: packSyncStorageTrieKey 100.0% +2025-07-23T19:39:15.4745089Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:161: WriteSyncPerformed 100.0% +2025-07-23T19:39:15.4745429Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:171: NewSyncPerformedIterator 0.0% +2025-07-23T19:39:15.4745775Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:177: UnpackSyncPerformedKey 0.0% +2025-07-23T19:39:15.4746118Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:182: GetLatestSyncPerformed 0.0% +2025-07-23T19:39:15.4746427Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:198: clearPrefix 68.8% +2025-07-23T19:39:15.4746721Z github.com/ava-labs/coreth/plugin/evm/customrawdb/database_ext.go:17: InspectDatabase 100.0% +2025-07-23T19:39:15.4747019Z github.com/ava-labs/coreth/plugin/evm/customrawdb/database_ext.go:67: ParseStateSchemeExt 0.0% +2025-07-23T19:39:15.4747299Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:16: SetBlockExtra 100.0% +2025-07-23T19:39:15.4747540Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:33: Copy 100.0% +2025-07-23T19:39:15.4747850Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:48: BodyRLPFieldsForEncoding 100.0% +2025-07-23T19:39:15.4748408Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:61: BodyRLPFieldPointersForDecoding 100.0% +2025-07-23T19:39:15.4748737Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:78: BlockRLPFieldsForEncoding 100.0% +2025-07-23T19:39:15.4749076Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:92: BlockRLPFieldPointersForDecoding 100.0% +2025-07-23T19:39:15.4749347Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:104: BlockExtData 100.0% +2025-07-23T19:39:15.4749615Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:111: BlockVersion 100.0% +2025-07-23T19:39:15.4749915Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:115: BlockExtDataGasUsed 100.0% +2025-07-23T19:39:15.4750181Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:123: BlockGasCost 100.0% +2025-07-23T19:39:15.4750464Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:131: CalcExtDataHash 66.7% +2025-07-23T19:39:15.4750764Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:138: NewBlockWithExtData 100.0% +2025-07-23T19:39:15.4751204Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_json.go:18: MarshalJSON 100.0% +2025-07-23T19:39:15.4751537Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_json.go:72: UnmarshalJSON 76.2% +2025-07-23T19:39:15.4751845Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_rlp.go:8: EncodeRLP 85.9% +2025-07-23T19:39:15.4752125Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:17: GetHeaderExtra 100.0% +2025-07-23T19:39:15.4752404Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:22: SetHeaderExtra 100.0% +2025-07-23T19:39:15.4752690Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:28: WithHeaderExtra 100.0% +2025-07-23T19:39:15.4752957Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:45: EncodeRLP 100.0% +2025-07-23T19:39:15.4753219Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:56: DecodeRLP 100.0% +2025-07-23T19:39:15.4753489Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:70: EncodeJSON 100.0% +2025-07-23T19:39:15.4753744Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:81: DecodeJSON 83.3% +2025-07-23T19:39:15.4754000Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:93: PostCopy 100.0% +2025-07-23T19:39:15.4754280Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:106: updateFromEth 100.0% +2025-07-23T19:39:15.4754549Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:128: updateToEth 100.0% +2025-07-23T19:39:15.4754841Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:150: updateFromExtras 100.0% +2025-07-23T19:39:15.4755121Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:156: updateToExtras 100.0% +2025-07-23T19:39:15.4755373Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:233: Hash 100.0% +2025-07-23T19:39:15.4755660Z github.com/ava-labs/coreth/plugin/evm/customtypes/state_account_ext.go:14: IsMultiCoin 0.0% +2025-07-23T19:39:15.4755944Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:22: WrapDatabase 100.0% +2025-07-23T19:39:15.4756197Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:25: Stat 0.0% +2025-07-23T19:39:15.4756468Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:28: NewBatch 100.0% +2025-07-23T19:39:15.4756755Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:32: NewBatchWithSize 0.0% +2025-07-23T19:39:15.4757028Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:36: NewSnapshot 0.0% +2025-07-23T19:39:15.4757302Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:44: NewIterator 100.0% +2025-07-23T19:39:15.4757605Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:57: NewIteratorWithStart 0.0% +2025-07-23T19:39:15.4757989Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:65: ValueSize 100.0% +2025-07-23T19:39:15.4758350Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:68: Replay 100.0% +2025-07-23T19:39:15.4758606Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:38: NewGossipEthTxPool 75.0% +2025-07-23T19:39:15.4758838Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:70: IsSubscribed 100.0% +2025-07-23T19:39:15.4759056Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:74: Subscribe 92.6% +2025-07-23T19:39:15.4759265Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:119: Add 100.0% +2025-07-23T19:39:15.4759466Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:125: Has 100.0% +2025-07-23T19:39:15.4759691Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:129: Iterate 100.0% +2025-07-23T19:39:15.4759907Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:135: GetFilter 0.0% +2025-07-23T19:39:15.4760148Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:144: MarshalGossip 100.0% +2025-07-23T19:39:15.4760507Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:148: UnmarshalGossip 100.0% +2025-07-23T19:39:15.4760729Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:160: GossipID 100.0% +2025-07-23T19:39:15.4760936Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:170: Add 75.0% +2025-07-23T19:39:15.4761172Z github.com/ava-labs/coreth/plugin/evm/extension/config.go:161: Validate 55.6% +2025-07-23T19:39:15.4761435Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:19: NewTxGossipHandler 100.0% +2025-07-23T19:39:15.4761670Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:61: AppGossip 100.0% +2025-07-23T19:39:15.4761901Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:65: AppRequest 100.0% +2025-07-23T19:39:15.4762129Z github.com/ava-labs/coreth/plugin/evm/header/base_fee.go:21: BaseFee 100.0% +2025-07-23T19:39:15.4762403Z github.com/ava-labs/coreth/plugin/evm/header/base_fee.go:50: EstimateNextBaseFee 100.0% +2025-07-23T19:39:15.4762667Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:28: BlockGasCost 100.0% +2025-07-23T19:39:15.4762962Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:60: BlockGasCostWithStep 100.0% +2025-07-23T19:39:15.4763247Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:88: EstimateRequiredTip 100.0% +2025-07-23T19:39:15.4763545Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_state.go:19: feeStateBeforeBlock 100.0% +2025-07-23T19:39:15.4763843Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_state.go:51: feeStateAfterBlock 100.0% +2025-07-23T19:39:15.4764132Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:40: baseFeeFromWindow 97.4% +2025-07-23T19:39:15.4764405Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:148: feeWindow 100.0% +2025-07-23T19:39:15.4764730Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:221: selectBigWithinBounds 100.0% +2025-07-23T19:39:15.4764962Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:29: ExtraPrefix 100.0% +2025-07-23T19:39:15.4765215Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:61: VerifyExtraPrefix 100.0% +2025-07-23T19:39:15.4765448Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:116: VerifyExtra 100.0% +2025-07-23T19:39:15.4765730Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:169: PredicateBytesFromExtra 100.0% +2025-07-23T19:39:15.4766004Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:187: SetPredicateBytesInExtra 100.0% +2025-07-23T19:39:15.4766234Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:28: GasLimit 100.0% +2025-07-23T19:39:15.4766487Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:61: VerifyGasUsed 100.0% +2025-07-23T19:39:15.4766853Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:97: VerifyGasLimit 100.0% +2025-07-23T19:39:15.4767102Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:159: GasCapacity 100.0% +2025-07-23T19:39:15.4767399Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:179: RemainingAtomicGasCapacity 100.0% +2025-07-23T19:39:15.4767606Z github.com/ava-labs/coreth/plugin/evm/health.go:11: HealthCheck 0.0% +2025-07-23T19:39:15.4767817Z github.com/ava-labs/coreth/plugin/evm/log/log.go:26: InitLogger 55.0% +2025-07-23T19:39:15.4768033Z github.com/ava-labs/coreth/plugin/evm/log/log.go:62: SetLogLevel 100.0% +2025-07-23T19:39:15.4768340Z github.com/ava-labs/coreth/plugin/evm/log/log.go:77: trimPrefixes 88.9% +2025-07-23T19:39:15.4768546Z github.com/ava-labs/coreth/plugin/evm/log/log.go:92: getSource 0.0% +2025-07-23T19:39:15.4768742Z github.com/ava-labs/coreth/plugin/evm/log/log.go:104: Handle 0.0% +2025-07-23T19:39:15.4768990Z github.com/ava-labs/coreth/plugin/evm/message/block_request.go:24: String 0.0% +2025-07-23T19:39:15.4769337Z github.com/ava-labs/coreth/plugin/evm/message/block_request.go:31: Handle 0.0% +2025-07-23T19:39:15.4769638Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:31: NewBlockSyncSummary 80.0% +2025-07-23T19:39:15.4769920Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:53: GetBlockHash 100.0% +2025-07-23T19:39:15.4770200Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:57: GetBlockRoot 100.0% +2025-07-23T19:39:15.4770466Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:61: Bytes 100.0% +2025-07-23T19:39:15.4770728Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:65: Height 100.0% +2025-07-23T19:39:15.4770969Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:69: ID 0.0% +2025-07-23T19:39:15.4771229Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:73: String 0.0% +2025-07-23T19:39:15.4771493Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:77: Accept 66.7% +2025-07-23T19:39:15.4771851Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_parser.go:14: NewBlockSyncSummaryParser 100.0% +2025-07-23T19:39:15.4772136Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_parser.go:18: Parse 80.0% +2025-07-23T19:39:15.4772460Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_provider.go:14: StateSummaryAtBlock 0.0% +2025-07-23T19:39:15.4772699Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:23: String 0.0% +2025-07-23T19:39:15.4772932Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:31: Handle 0.0% +2025-07-23T19:39:15.4773189Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:35: NewCodeRequest 0.0% +2025-07-23T19:39:15.4773408Z github.com/ava-labs/coreth/plugin/evm/message/codec.go:20: init 88.9% +2025-07-23T19:39:15.4773674Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:35: HandleLeafsRequest 0.0% +2025-07-23T19:39:15.4773942Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:39: HandleBlockRequest 0.0% +2025-07-23T19:39:15.4774196Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:43: HandleCodeRequest 0.0% +2025-07-23T19:39:15.4774433Z github.com/ava-labs/coreth/plugin/evm/message/leafs_request.go:40: String 0.0% +2025-07-23T19:39:15.4774672Z github.com/ava-labs/coreth/plugin/evm/message/leafs_request.go:47: Handle 0.0% +2025-07-23T19:39:15.4774918Z github.com/ava-labs/coreth/plugin/evm/message/request.go:25: RequestToBytes 0.0% +2025-07-23T19:39:15.4775182Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:39: newNetworkHandler 100.0% +2025-07-23T19:39:15.4775437Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:54: HandleLeafsRequest 60.0% +2025-07-23T19:39:15.4775697Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:63: HandleBlockRequest 100.0% +2025-07-23T19:39:15.4776063Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:67: HandleCodeRequest 0.0% +2025-07-23T19:39:15.4776289Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:99: NewClient 100.0% +2025-07-23T19:39:15.4776540Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:127: StateSyncEnabled 100.0% +2025-07-23T19:39:15.4776817Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:134: GetOngoingSyncStateSummary 0.0% +2025-07-23T19:39:15.4777071Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:153: ClearOngoingSummary 60.0% +2025-07-23T19:39:15.4777326Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:165: ParseStateSummary 100.0% +2025-07-23T19:39:15.4777548Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:171: stateSync 71.4% +2025-07-23T19:39:15.4777791Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:189: acceptSyncSummary 92.0% +2025-07-23T19:39:15.4778021Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:257: syncBlocks 89.3% +2025-07-23T19:39:15.4778356Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:304: syncStateTrie 77.8% +2025-07-23T19:39:15.4778691Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:326: Shutdown 100.0% +2025-07-23T19:39:15.4778914Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:336: finishSync 66.7% +2025-07-23T19:39:15.4779151Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:405: commitVMMarkers 66.7% +2025-07-23T19:39:15.4779368Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:420: Error 100.0% +2025-07-23T19:39:15.4779583Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:36: NewServer 100.0% +2025-07-23T19:39:15.4779849Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:48: GetLastStateSummary 75.0% +2025-07-23T19:39:15.4780083Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:64: GetStateSummary 66.7% +2025-07-23T19:39:15.4780335Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:82: stateSummaryAtHeight 62.5% +2025-07-23T19:39:15.4780605Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:53: ParseState 100.0% +2025-07-23T19:39:15.4780849Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:74: Target 100.0% +2025-07-23T19:39:15.4781112Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:83: MaxCapacity 100.0% +2025-07-23T19:39:15.4781365Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:91: GasPrice 100.0% +2025-07-23T19:39:15.4781628Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:99: AdvanceTime 100.0% +2025-07-23T19:39:15.4781891Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:114: ConsumeGas 100.0% +2025-07-23T19:39:15.4782185Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:144: UpdateTargetExcess 100.0% +2025-07-23T19:39:15.4782427Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:160: Bytes 100.0% +2025-07-23T19:39:15.4782731Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:170: DesiredTargetExcess 100.0% +2025-07-23T19:39:15.4783003Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:184: targetExcess 100.0% +2025-07-23T19:39:15.4783271Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:195: scaleExcess 100.0% +2025-07-23T19:39:15.4783559Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:214: mulWithUpperBound 100.0% +2025-07-23T19:39:15.4783815Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:67: ParseWindow 100.0% +2025-07-23T19:39:15.4784050Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:87: Add 100.0% +2025-07-23T19:39:15.4784282Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:94: Shift 100.0% +2025-07-23T19:39:15.4784513Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:108: Sum 100.0% +2025-07-23T19:39:15.4784747Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:112: Bytes 100.0% +2025-07-23T19:39:15.4785086Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:121: add 100.0% +2025-07-23T19:39:15.4785342Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap4/cost.go:53: BlockGasCost 93.3% +2025-07-23T19:39:15.4785536Z github.com/ava-labs/coreth/plugin/evm/version.go:15: init 50.0% +2025-07-23T19:39:15.4785717Z github.com/ava-labs/coreth/plugin/evm/vm.go:175: init 100.0% +2025-07-23T19:39:15.4785916Z github.com/ava-labs/coreth/plugin/evm/vm.go:271: Initialize 80.3% +2025-07-23T19:39:15.4786125Z github.com/ava-labs/coreth/plugin/evm/vm.go:500: parseGenesis 76.9% +2025-07-23T19:39:15.4786348Z github.com/ava-labs/coreth/plugin/evm/vm.go:530: initializeMetrics 54.5% +2025-07-23T19:39:15.4786558Z github.com/ava-labs/coreth/plugin/evm/vm.go:549: initializeChain 84.2% +2025-07-23T19:39:15.4786781Z github.com/ava-labs/coreth/plugin/evm/vm.go:604: initializeStateSync 76.7% +2025-07-23T19:39:15.4787000Z github.com/ava-labs/coreth/plugin/evm/vm.go:704: initChainState 75.0% +2025-07-23T19:39:15.4787266Z github.com/ava-labs/coreth/plugin/evm/vm.go:737: SetState 83.3% +2025-07-23T19:39:15.4787492Z github.com/ava-labs/coreth/plugin/evm/vm.go:752: onBootstrapStarted 71.4% +2025-07-23T19:39:15.4787734Z github.com/ava-labs/coreth/plugin/evm/vm.go:768: onNormalOperationsStarted 75.0% +2025-07-23T19:39:15.4787950Z github.com/ava-labs/coreth/plugin/evm/vm.go:779: initBlockBuilding 91.3% +2025-07-23T19:39:15.4788252Z github.com/ava-labs/coreth/plugin/evm/vm.go:886: WaitForEvent 77.8% +2025-07-23T19:39:15.4788441Z github.com/ava-labs/coreth/plugin/evm/vm.go:907: Shutdown 76.9% +2025-07-23T19:39:15.4788637Z github.com/ava-labs/coreth/plugin/evm/vm.go:929: buildBlock 100.0% +2025-07-23T19:39:15.4788871Z github.com/ava-labs/coreth/plugin/evm/vm.go:933: buildBlockWithContext 86.7% +2025-07-23T19:39:15.4789066Z github.com/ava-labs/coreth/plugin/evm/vm.go:978: parseBlock 77.8% +2025-07-23T19:39:15.4789278Z github.com/ava-labs/coreth/plugin/evm/vm.go:997: ParseEthBlock 75.0% +2025-07-23T19:39:15.4789472Z github.com/ava-labs/coreth/plugin/evm/vm.go:1008: getBlock 100.0% +2025-07-23T19:39:15.4789685Z github.com/ava-labs/coreth/plugin/evm/vm.go:1021: GetAcceptedBlock 90.0% +2025-07-23T19:39:15.4789896Z github.com/ava-labs/coreth/plugin/evm/vm.go:1041: SetPreference 75.0% +2025-07-23T19:39:15.4790117Z github.com/ava-labs/coreth/plugin/evm/vm.go:1057: GetBlockIDAtHeight 85.7% +2025-07-23T19:39:15.4790307Z github.com/ava-labs/coreth/plugin/evm/vm.go:1070: Version 0.0% +2025-07-23T19:39:15.4790512Z github.com/ava-labs/coreth/plugin/evm/vm.go:1075: CreateHandlers 0.0% +2025-07-23T19:39:15.4790715Z github.com/ava-labs/coreth/plugin/evm/vm.go:1122: NewHTTPHandler 0.0% +2025-07-23T19:39:15.4790935Z github.com/ava-labs/coreth/plugin/evm/vm.go:1126: chainConfigExtra 100.0% +2025-07-23T19:39:15.4791120Z github.com/ava-labs/coreth/plugin/evm/vm.go:1130: rules 100.0% +2025-07-23T19:39:15.4791329Z github.com/ava-labs/coreth/plugin/evm/vm.go:1136: currentRules 100.0% +2025-07-23T19:39:15.4791588Z github.com/ava-labs/coreth/plugin/evm/vm.go:1144: requirePrimaryNetworkSigners 0.0% +2025-07-23T19:39:15.4791827Z github.com/ava-labs/coreth/plugin/evm/vm.go:1153: startContinuousProfiler 91.7% +2025-07-23T19:39:15.4792046Z github.com/ava-labs/coreth/plugin/evm/vm.go:1183: ReadLastAccepted 70.0% +2025-07-23T19:39:15.4792259Z github.com/ava-labs/coreth/plugin/evm/vm.go:1207: attachEthService 0.0% +2025-07-23T19:39:15.4792477Z github.com/ava-labs/coreth/plugin/evm/vm.go:1242: stateSyncEnabled 100.0% +2025-07-23T19:39:15.4792704Z github.com/ava-labs/coreth/plugin/evm/vm.go:1252: PutLastAcceptedID 100.0% +2025-07-23T19:39:15.4792934Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:20: initializeDBs 100.0% +2025-07-23T19:39:15.4793169Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:35: inspectDatabases 0.0% +2025-07-23T19:39:15.4793497Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:54: inspectDB 0.0% +2025-07-23T19:39:15.4793753Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:28: SetExtensionConfig 66.7% +2025-07-23T19:39:15.4793998Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:41: GetExtendedBlock 75.0% +2025-07-23T19:39:15.4794279Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:53: LastAcceptedExtendedBlock 75.0% +2025-07-23T19:39:15.4794507Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:64: ChainConfig 100.0% +2025-07-23T19:39:15.4794736Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:68: Blockchain 100.0% +2025-07-23T19:39:15.4794951Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:72: Config 100.0% +2025-07-23T19:39:15.4795193Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:76: MetricRegistry 100.0% +2025-07-23T19:39:15.4795414Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:80: Validators 0.0% +2025-07-23T19:39:15.4795748Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:84: VersionDB 100.0% +2025-07-23T19:39:15.4795981Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:88: SyncerClient 0.0% +2025-07-23T19:39:15.4796203Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:58: wrapBlock 85.7% +2025-07-23T19:39:15.4796418Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:75: ID 100.0% +2025-07-23T19:39:15.4796632Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:78: Accept 76.5% +2025-07-23T19:39:15.4796910Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:125: handlePrecompileAccept 78.6% +2025-07-23T19:39:15.4797131Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:159: Reject 83.3% +2025-07-23T19:39:15.4797351Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:176: Parent 100.0% +2025-07-23T19:39:15.4797571Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:181: Height 100.0% +2025-07-23T19:39:15.4797800Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:186: Timestamp 100.0% +2025-07-23T19:39:15.4798021Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:191: Verify 100.0% +2025-07-23T19:39:15.4798399Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:199: ShouldVerifyWithContext 72.7% +2025-07-23T19:39:15.4798662Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:223: VerifyWithContext 100.0% +2025-07-23T19:39:15.4798883Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:233: verify 100.0% +2025-07-23T19:39:15.4799134Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:279: semanticVerify 100.0% +2025-07-23T19:39:15.4799379Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:295: syntacticVerify 71.0% +2025-07-23T19:39:15.4799631Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:434: verifyPredicates 85.0% +2025-07-23T19:39:15.4799849Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:468: Bytes 75.0% +2025-07-23T19:39:15.4800066Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:476: String 0.0% +2025-07-23T19:39:15.4800305Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:478: GetEthBlock 100.0% +2025-07-23T19:39:15.4800559Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:482: GetBlockExtension 100.0% +2025-07-23T19:39:15.4800765Z github.com/ava-labs/coreth/plugin/factory/factory.go:25: New 0.0% +2025-07-23T19:39:15.4800988Z github.com/ava-labs/coreth/plugin/factory/factory.go:29: NewPluginVM 0.0% +2025-07-23T19:39:15.4801161Z github.com/ava-labs/coreth/plugin/main.go:19: main 0.0% +2025-07-23T19:39:15.4801375Z github.com/ava-labs/coreth/plugin/params.go:13: corethFlagSet 0.0% +2025-07-23T19:39:15.4801565Z github.com/ava-labs/coreth/plugin/params.go:22: getViper 0.0% +2025-07-23T19:39:15.4801766Z github.com/ava-labs/coreth/plugin/params.go:35: PrintVersion 0.0% +2025-07-23T19:39:15.4802136Z github.com/ava-labs/coreth/precompile/contract/contract.go:32: IsActivated 0.0% +2025-07-23T19:39:15.4802455Z github.com/ava-labs/coreth/precompile/contract/contract.go:40: NewStatefulPrecompileFunction 0.0% +2025-07-23T19:39:15.4802818Z github.com/ava-labs/coreth/precompile/contract/contract.go:47: NewStatefulPrecompileFunctionWithActivator 0.0% +2025-07-23T19:39:15.4803128Z github.com/ava-labs/coreth/precompile/contract/contract.go:65: NewStatefulPrecompileContract 0.0% +2025-07-23T19:39:15.4803350Z github.com/ava-labs/coreth/precompile/contract/contract.go:84: Run 0.0% +2025-07-23T19:39:15.4803602Z github.com/ava-labs/coreth/precompile/contract/mocks.go:38: NewMockStateDB 0.0% +2025-07-23T19:39:15.4803819Z github.com/ava-labs/coreth/precompile/contract/mocks.go:45: EXPECT 0.0% +2025-07-23T19:39:15.4804054Z github.com/ava-labs/coreth/precompile/contract/mocks.go:50: AddBalance 0.0% +2025-07-23T19:39:15.4804282Z github.com/ava-labs/coreth/precompile/contract/mocks.go:56: AddBalance 0.0% +2025-07-23T19:39:15.4804550Z github.com/ava-labs/coreth/precompile/contract/mocks.go:62: AddBalanceMultiCoin 0.0% +2025-07-23T19:39:15.4804922Z github.com/ava-labs/coreth/precompile/contract/mocks.go:68: AddBalanceMultiCoin 0.0% +2025-07-23T19:39:15.4805143Z github.com/ava-labs/coreth/precompile/contract/mocks.go:74: AddLog 0.0% +2025-07-23T19:39:15.4805363Z github.com/ava-labs/coreth/precompile/contract/mocks.go:80: AddLog 0.0% +2025-07-23T19:39:15.4805605Z github.com/ava-labs/coreth/precompile/contract/mocks.go:86: CreateAccount 0.0% +2025-07-23T19:39:15.4805844Z github.com/ava-labs/coreth/precompile/contract/mocks.go:92: CreateAccount 0.0% +2025-07-23T19:39:15.4806060Z github.com/ava-labs/coreth/precompile/contract/mocks.go:98: Exist 0.0% +2025-07-23T19:39:15.4806274Z github.com/ava-labs/coreth/precompile/contract/mocks.go:106: Exist 0.0% +2025-07-23T19:39:15.4806505Z github.com/ava-labs/coreth/precompile/contract/mocks.go:112: GetBalance 0.0% +2025-07-23T19:39:15.4806752Z github.com/ava-labs/coreth/precompile/contract/mocks.go:120: GetBalance 0.0% +2025-07-23T19:39:15.4807025Z github.com/ava-labs/coreth/precompile/contract/mocks.go:126: GetBalanceMultiCoin 0.0% +2025-07-23T19:39:15.4807300Z github.com/ava-labs/coreth/precompile/contract/mocks.go:134: GetBalanceMultiCoin 0.0% +2025-07-23T19:39:15.4807525Z github.com/ava-labs/coreth/precompile/contract/mocks.go:140: GetNonce 0.0% +2025-07-23T19:39:15.4807748Z github.com/ava-labs/coreth/precompile/contract/mocks.go:148: GetNonce 0.0% +2025-07-23T19:39:15.4808040Z github.com/ava-labs/coreth/precompile/contract/mocks.go:154: GetPredicateStorageSlots 0.0% +2025-07-23T19:39:15.4808422Z github.com/ava-labs/coreth/precompile/contract/mocks.go:163: GetPredicateStorageSlots 0.0% +2025-07-23T19:39:15.4808651Z github.com/ava-labs/coreth/precompile/contract/mocks.go:169: GetState 0.0% +2025-07-23T19:39:15.4808877Z github.com/ava-labs/coreth/precompile/contract/mocks.go:177: GetState 0.0% +2025-07-23T19:39:15.4809108Z github.com/ava-labs/coreth/precompile/contract/mocks.go:183: GetTxHash 0.0% +2025-07-23T19:39:15.4809339Z github.com/ava-labs/coreth/precompile/contract/mocks.go:191: GetTxHash 0.0% +2025-07-23T19:39:15.4809555Z github.com/ava-labs/coreth/precompile/contract/mocks.go:197: Logs 0.0% +2025-07-23T19:39:15.4809773Z github.com/ava-labs/coreth/precompile/contract/mocks.go:205: Logs 0.0% +2025-07-23T19:39:15.4810029Z github.com/ava-labs/coreth/precompile/contract/mocks.go:211: RevertToSnapshot 0.0% +2025-07-23T19:39:15.4810281Z github.com/ava-labs/coreth/precompile/contract/mocks.go:217: RevertToSnapshot 0.0% +2025-07-23T19:39:15.4810510Z github.com/ava-labs/coreth/precompile/contract/mocks.go:223: SetNonce 0.0% +2025-07-23T19:39:15.4810731Z github.com/ava-labs/coreth/precompile/contract/mocks.go:229: SetNonce 0.0% +2025-07-23T19:39:15.4810952Z github.com/ava-labs/coreth/precompile/contract/mocks.go:235: SetState 0.0% +2025-07-23T19:39:15.4811348Z github.com/ava-labs/coreth/precompile/contract/mocks.go:241: SetState 0.0% +2025-07-23T19:39:15.4811573Z github.com/ava-labs/coreth/precompile/contract/mocks.go:247: Snapshot 0.0% +2025-07-23T19:39:15.4811801Z github.com/ava-labs/coreth/precompile/contract/mocks.go:255: Snapshot 0.0% +2025-07-23T19:39:15.4812068Z github.com/ava-labs/coreth/precompile/contract/mocks.go:261: SubBalanceMultiCoin 0.0% +2025-07-23T19:39:15.4812335Z github.com/ava-labs/coreth/precompile/contract/mocks.go:267: SubBalanceMultiCoin 0.0% +2025-07-23T19:39:15.4812619Z github.com/ava-labs/coreth/precompile/contract/mocks.go:285: NewMockAccessibleState 0.0% +2025-07-23T19:39:15.4812844Z github.com/ava-labs/coreth/precompile/contract/mocks.go:292: EXPECT 0.0% +2025-07-23T19:39:15.4813098Z github.com/ava-labs/coreth/precompile/contract/mocks.go:297: GetBlockContext 0.0% +2025-07-23T19:39:15.4813351Z github.com/ava-labs/coreth/precompile/contract/mocks.go:305: GetBlockContext 0.0% +2025-07-23T19:39:15.4813699Z github.com/ava-labs/coreth/precompile/contract/mocks.go:311: GetChainConfig 0.0% +2025-07-23T19:39:15.4813949Z github.com/ava-labs/coreth/precompile/contract/mocks.go:319: GetChainConfig 0.0% +2025-07-23T19:39:15.4814202Z github.com/ava-labs/coreth/precompile/contract/mocks.go:325: GetPrecompileEnv 0.0% +2025-07-23T19:39:15.4814450Z github.com/ava-labs/coreth/precompile/contract/mocks.go:333: GetPrecompileEnv 0.0% +2025-07-23T19:39:15.4814698Z github.com/ava-labs/coreth/precompile/contract/mocks.go:339: GetSnowContext 0.0% +2025-07-23T19:39:15.4814943Z github.com/ava-labs/coreth/precompile/contract/mocks.go:347: GetSnowContext 0.0% +2025-07-23T19:39:15.4815181Z github.com/ava-labs/coreth/precompile/contract/mocks.go:353: GetStateDB 0.0% +2025-07-23T19:39:15.4815414Z github.com/ava-labs/coreth/precompile/contract/mocks.go:361: GetStateDB 0.0% +2025-07-23T19:39:15.4815685Z github.com/ava-labs/coreth/precompile/contract/mocks.go:379: NewMockBlockContext 0.0% +2025-07-23T19:39:15.4815917Z github.com/ava-labs/coreth/precompile/contract/mocks.go:386: EXPECT 0.0% +2025-07-23T19:39:15.4816182Z github.com/ava-labs/coreth/precompile/contract/mocks.go:391: GetPredicateResults 0.0% +2025-07-23T19:39:15.4816453Z github.com/ava-labs/coreth/precompile/contract/mocks.go:399: GetPredicateResults 0.0% +2025-07-23T19:39:15.4816673Z github.com/ava-labs/coreth/precompile/contract/mocks.go:405: Number 0.0% +2025-07-23T19:39:15.4816892Z github.com/ava-labs/coreth/precompile/contract/mocks.go:413: Number 0.0% +2025-07-23T19:39:15.4817127Z github.com/ava-labs/coreth/precompile/contract/mocks.go:419: Timestamp 0.0% +2025-07-23T19:39:15.4817353Z github.com/ava-labs/coreth/precompile/contract/mocks.go:427: Timestamp 0.0% +2025-07-23T19:39:15.4817640Z github.com/ava-labs/coreth/precompile/contract/utils.go:35: CalculateFunctionSelector 0.0% +2025-07-23T19:39:15.4817874Z github.com/ava-labs/coreth/precompile/contract/utils.go:44: DeductGas 0.0% +2025-07-23T19:39:15.4818190Z github.com/ava-labs/coreth/precompile/contract/utils.go:53: ParseABI 0.0% +2025-07-23T19:39:15.4818458Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:57: NewConfig 100.0% +2025-07-23T19:39:15.4818742Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:67: NewDefaultConfig 100.0% +2025-07-23T19:39:15.4819021Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:73: NewDisableConfig 0.0% +2025-07-23T19:39:15.4819256Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:84: Key 0.0% +2025-07-23T19:39:15.4819503Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:87: Verify 100.0% +2025-07-23T19:39:15.4819753Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:107: Equal 100.0% +2025-07-23T19:39:15.4819997Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:117: Accept 0.0% +2025-07-23T19:39:15.4820406Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:145: PredicateGas 84.6% +2025-07-23T19:39:15.4820696Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:186: VerifyPredicate 80.0% +2025-07-23T19:39:15.4821007Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:85: PackGetBlockchainID 100.0% +2025-07-23T19:39:15.4821369Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:91: PackGetBlockchainIDOutput 100.0% +2025-07-23T19:39:15.4821662Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:96: getBlockchainID 83.3% +2025-07-23T19:39:15.4822026Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:111: UnpackGetVerifiedWarpBlockHashInput 0.0% +2025-07-23T19:39:15.4822377Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:125: PackGetVerifiedWarpBlockHash 100.0% +2025-07-23T19:39:15.4822738Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:131: PackGetVerifiedWarpBlockHashOutput 100.0% +2025-07-23T19:39:15.4823216Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:140: UnpackGetVerifiedWarpBlockHashOutput 0.0% +2025-07-23T19:39:15.4823545Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:147: getVerifiedWarpBlockHash 100.0% +2025-07-23T19:39:15.4823901Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:153: UnpackGetVerifiedWarpMessageInput 100.0% +2025-07-23T19:39:15.4824244Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:167: PackGetVerifiedWarpMessage 100.0% +2025-07-23T19:39:15.4824599Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:173: PackGetVerifiedWarpMessageOutput 100.0% +2025-07-23T19:39:15.4824957Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:182: UnpackGetVerifiedWarpMessageOutput 0.0% +2025-07-23T19:39:15.4825281Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:191: getVerifiedWarpMessage 100.0% +2025-07-23T19:39:15.4825619Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:197: UnpackSendWarpMessageInput 100.0% +2025-07-23T19:39:15.4825940Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:209: PackSendWarpMessage 100.0% +2025-07-23T19:39:15.4826270Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:215: PackSendWarpMessageOutput 100.0% +2025-07-23T19:39:15.4826614Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:221: UnpackSendWarpMessageOutput 0.0% +2025-07-23T19:39:15.4826908Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:232: sendWarpMessage 81.5% +2025-07-23T19:39:15.4827232Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:301: PackSendWarpMessageEvent 100.0% +2025-07-23T19:39:15.4827590Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:306: UnpackSendWarpEventDataToMessage 80.0% +2025-07-23T19:39:15.4827898Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:316: createWarpPrecompile 81.8% +2025-07-23T19:39:15.4828295Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:29: init 75.0% +2025-07-23T19:39:15.4828634Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:48: handleWarpMessage 96.7% +2025-07-23T19:39:15.4828952Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:98: packFailed 100.0% +2025-07-23T19:39:15.4829284Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:102: handleMessage 100.0% +2025-07-23T19:39:15.4829598Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:119: packFailed 100.0% +2025-07-23T19:39:15.4829928Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:123: handleMessage 100.0% +2025-07-23T19:39:15.4830171Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:35: init 50.0% +2025-07-23T19:39:15.4830548Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:45: MakeConfig 0.0% +2025-07-23T19:39:15.4830806Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:50: Configure 0.0% +2025-07-23T19:39:15.4831023Z github.com/ava-labs/coreth/precompile/modules/module.go:27: Len 100.0% +2025-07-23T19:39:15.4831244Z github.com/ava-labs/coreth/precompile/modules/module.go:31: Swap 100.0% +2025-07-23T19:39:15.4831467Z github.com/ava-labs/coreth/precompile/modules/module.go:35: Less 100.0% +2025-07-23T19:39:15.4831743Z github.com/ava-labs/coreth/precompile/modules/registerer.go:37: ReservedAddress 75.0% +2025-07-23T19:39:15.4832018Z github.com/ava-labs/coreth/precompile/modules/registerer.go:48: RegisterModule 46.2% +2025-07-23T19:39:15.4832334Z github.com/ava-labs/coreth/precompile/modules/registerer.go:72: GetPrecompileModuleByAddress 0.0% +2025-07-23T19:39:15.4832617Z github.com/ava-labs/coreth/precompile/modules/registerer.go:81: GetPrecompileModule 0.0% +2025-07-23T19:39:15.4832898Z github.com/ava-labs/coreth/precompile/modules/registerer.go:90: RegisteredModules 0.0% +2025-07-23T19:39:15.4833308Z github.com/ava-labs/coreth/precompile/modules/registerer.go:94: insertSortedByAddress 100.0% +2025-07-23T19:39:15.4833599Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:32: NewMockPredicater 0.0% +2025-07-23T19:39:15.4833852Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:39: EXPECT 0.0% +2025-07-23T19:39:15.4834125Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:44: PredicateGas 0.0% +2025-07-23T19:39:15.4834400Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:53: PredicateGas 0.0% +2025-07-23T19:39:15.4834680Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:59: VerifyPredicate 0.0% +2025-07-23T19:39:15.4834967Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:67: VerifyPredicate 0.0% +2025-07-23T19:39:15.4835244Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:85: NewMockConfig 0.0% +2025-07-23T19:39:15.4835495Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:92: EXPECT 0.0% +2025-07-23T19:39:15.4835745Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:97: Equal 0.0% +2025-07-23T19:39:15.4835991Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:105: Equal 0.0% +2025-07-23T19:39:15.4836259Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:111: IsDisabled 0.0% +2025-07-23T19:39:15.4836530Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:119: IsDisabled 0.0% +2025-07-23T19:39:15.4836771Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:125: Key 0.0% +2025-07-23T19:39:15.4837014Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:133: Key 0.0% +2025-07-23T19:39:15.4837276Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:139: Timestamp 0.0% +2025-07-23T19:39:15.4837538Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:147: Timestamp 0.0% +2025-07-23T19:39:15.4837797Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:153: Verify 0.0% +2025-07-23T19:39:15.4838046Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:161: Verify 0.0% +2025-07-23T19:39:15.4838442Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:179: NewMockChainConfig 0.0% +2025-07-23T19:39:15.4838695Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:186: EXPECT 0.0% +2025-07-23T19:39:15.4838953Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:191: IsDurango 0.0% +2025-07-23T19:39:15.4839216Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:199: IsDurango 0.0% +2025-07-23T19:39:15.4839503Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:217: NewMockAccepter 0.0% +2025-07-23T19:39:15.4839760Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:224: EXPECT 0.0% +2025-07-23T19:39:15.4840124Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:229: Accept 0.0% +2025-07-23T19:39:15.4840376Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:237: Accept 0.0% +2025-07-23T19:39:15.4840660Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:17: Timestamp 0.0% +2025-07-23T19:39:15.4840943Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:22: IsDisabled 0.0% +2025-07-23T19:39:15.4841211Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:28: Equal 0.0% +2025-07-23T19:39:15.4841528Z github.com/ava-labs/coreth/precompile/precompiletest/test_config.go:28: RunVerifyTests 100.0% +2025-07-23T19:39:15.4841826Z github.com/ava-labs/coreth/precompile/precompiletest/test_config.go:51: RunEqualTests 100.0% +2025-07-23T19:39:15.4842102Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:66: Run 100.0% +2025-07-23T19:39:15.4842381Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:88: setup 96.0% +2025-07-23T19:39:15.4842821Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:135: RunPrecompileTests 100.0% +2025-07-23T19:39:15.4843140Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:153: newTestStateDB 100.0% +2025-07-23T19:39:15.4843490Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:163: GetPredicateStorageSlots 100.0% +2025-07-23T19:39:15.4843764Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:26: Run 100.0% +2025-07-23T19:39:15.4844077Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:43: RunPredicateTests 100.0% +2025-07-23T19:39:15.4844369Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:53: RunBenchmark 0.0% +2025-07-23T19:39:15.4844703Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:73: RunPredicateBenchmarks 0.0% +2025-07-23T19:39:15.4844952Z github.com/ava-labs/coreth/predicate/predicate_bytes.go:28: PackPredicate 100.0% +2025-07-23T19:39:15.4845211Z github.com/ava-labs/coreth/predicate/predicate_bytes.go:36: UnpackPredicate 87.5% +2025-07-23T19:39:15.4845436Z github.com/ava-labs/coreth/predicate/predicate_results.go:24: init 83.3% +2025-07-23T19:39:15.4845702Z github.com/ava-labs/coreth/predicate/predicate_results.go:47: GetPredicateResults 0.0% +2025-07-23T19:39:15.4845948Z github.com/ava-labs/coreth/predicate/predicate_results.go:56: NewResults 100.0% +2025-07-23T19:39:15.4846210Z github.com/ava-labs/coreth/predicate/predicate_results.go:62: NewResultsFromMap 100.0% +2025-07-23T19:39:15.4846458Z github.com/ava-labs/coreth/predicate/predicate_results.go:69: ParseResults 71.4% +2025-07-23T19:39:15.4846699Z github.com/ava-labs/coreth/predicate/predicate_results.go:82: GetResults 100.0% +2025-07-23T19:39:15.4846945Z github.com/ava-labs/coreth/predicate/predicate_results.go:91: SetTxResults 100.0% +2025-07-23T19:39:15.4847219Z github.com/ava-labs/coreth/predicate/predicate_results.go:101: DeleteTxResults 100.0% +2025-07-23T19:39:15.4847450Z github.com/ava-labs/coreth/predicate/predicate_results.go:106: Bytes 100.0% +2025-07-23T19:39:15.4847678Z github.com/ava-labs/coreth/predicate/predicate_results.go:110: String 0.0% +2025-07-23T19:39:15.4847979Z github.com/ava-labs/coreth/predicate/predicate_slots.go:20: PreparePredicateStorageSlots 0.0% +2025-07-23T19:39:15.4848306Z github.com/ava-labs/coreth/predicate/predicate_tx.go:16: NewPredicateTx 0.0% +2025-07-23T19:39:15.4848520Z github.com/ava-labs/coreth/rpc/client.go:128: newClientConn 100.0% +2025-07-23T19:39:15.4848700Z github.com/ava-labs/coreth/rpc/client.go:141: close 100.0% +2025-07-23T19:39:15.4848873Z github.com/ava-labs/coreth/rpc/client.go:161: wait 100.0% +2025-07-23T19:39:15.4849045Z github.com/ava-labs/coreth/rpc/client.go:189: Dial 100.0% +2025-07-23T19:39:15.4849361Z github.com/ava-labs/coreth/rpc/client.go:197: DialContext 100.0% +2025-07-23T19:39:15.4849563Z github.com/ava-labs/coreth/rpc/client.go:208: DialOptions 80.0% +2025-07-23T19:39:15.4849777Z github.com/ava-labs/coreth/rpc/client.go:242: ClientFromContext 100.0% +2025-07-23T19:39:15.4849965Z github.com/ava-labs/coreth/rpc/client.go:247: newClient 100.0% +2025-07-23T19:39:15.4850161Z github.com/ava-labs/coreth/rpc/client.go:257: initClient 100.0% +2025-07-23T19:39:15.4850348Z github.com/ava-labs/coreth/rpc/client.go:293: RegisterName 0.0% +2025-07-23T19:39:15.4850526Z github.com/ava-labs/coreth/rpc/client.go:297: nextID 100.0% +2025-07-23T19:39:15.4850739Z github.com/ava-labs/coreth/rpc/client.go:304: SupportedModules 100.0% +2025-07-23T19:39:15.4850913Z github.com/ava-labs/coreth/rpc/client.go:313: Close 100.0% +2025-07-23T19:39:15.4851098Z github.com/ava-labs/coreth/rpc/client.go:327: SetHeader 83.3% +2025-07-23T19:39:15.4851276Z github.com/ava-labs/coreth/rpc/client.go:342: Call 100.0% +2025-07-23T19:39:15.4851572Z github.com/ava-labs/coreth/rpc/client.go:352: CallContext 95.2% +2025-07-23T19:39:15.4851762Z github.com/ava-labs/coreth/rpc/client.go:400: BatchCall 100.0% +2025-07-23T19:39:15.4851967Z github.com/ava-labs/coreth/rpc/client.go:414: BatchCallContext 85.7% +2025-07-23T19:39:15.4852143Z github.com/ava-labs/coreth/rpc/client.go:485: Notify 75.0% +2025-07-23T19:39:15.4852339Z github.com/ava-labs/coreth/rpc/client.go:500: EthSubscribe 100.0% +2025-07-23T19:39:15.4852526Z github.com/ava-labs/coreth/rpc/client.go:506: ShhSubscribe 0.0% +2025-07-23T19:39:15.4852713Z github.com/ava-labs/coreth/rpc/client.go:522: Subscribe 81.2% +2025-07-23T19:39:15.4852939Z github.com/ava-labs/coreth/rpc/client.go:559: SupportsSubscriptions 0.0% +2025-07-23T19:39:15.4853122Z github.com/ava-labs/coreth/rpc/client.go:563: newMessage 83.3% +2025-07-23T19:39:15.4853298Z github.com/ava-labs/coreth/rpc/client.go:576: send 100.0% +2025-07-23T19:39:15.4853472Z github.com/ava-labs/coreth/rpc/client.go:591: write 100.0% +2025-07-23T19:39:15.4853656Z github.com/ava-labs/coreth/rpc/client.go:608: reconnect 93.3% +2025-07-23T19:39:15.4853832Z github.com/ava-labs/coreth/rpc/client.go:636: dispatch 94.1% +2025-07-23T19:39:15.4854012Z github.com/ava-labs/coreth/rpc/client.go:717: drainRead 100.0% +2025-07-23T19:39:15.4854183Z github.com/ava-labs/coreth/rpc/client.go:728: read 100.0% +2025-07-23T19:39:15.4854386Z github.com/ava-labs/coreth/rpc/client_opt.go:57: initHeaders 100.0% +2025-07-23T19:39:15.4854580Z github.com/ava-labs/coreth/rpc/client_opt.go:63: setHeader 100.0% +2025-07-23T19:39:15.4854785Z github.com/ava-labs/coreth/rpc/client_opt.go:70: applyOption 100.0% +2025-07-23T19:39:15.4855009Z github.com/ava-labs/coreth/rpc/client_opt.go:75: WithWebsocketDialer 0.0% +2025-07-23T19:39:15.4855273Z github.com/ava-labs/coreth/rpc/client_opt.go:83: WithWebsocketMessageSizeLimit 100.0% +2025-07-23T19:39:15.4855466Z github.com/ava-labs/coreth/rpc/client_opt.go:91: WithHeader 0.0% +2025-07-23T19:39:15.4855664Z github.com/ava-labs/coreth/rpc/client_opt.go:100: WithHeaders 0.0% +2025-07-23T19:39:15.4855879Z github.com/ava-labs/coreth/rpc/client_opt.go:110: WithHTTPClient 0.0% +2025-07-23T19:39:15.4856077Z github.com/ava-labs/coreth/rpc/client_opt.go:119: WithHTTPAuth 0.0% +2025-07-23T19:39:15.4856301Z github.com/ava-labs/coreth/rpc/client_opt.go:139: WithBatchItemLimit 0.0% +2025-07-23T19:39:15.4856546Z github.com/ava-labs/coreth/rpc/client_opt.go:151: WithBatchResponseSizeLimit 0.0% +2025-07-23T19:39:15.4856797Z github.com/ava-labs/coreth/rpc/context_headers.go:39: NewContextWithHeaders 87.5% +2025-07-23T19:39:15.4857045Z github.com/ava-labs/coreth/rpc/context_headers.go:56: headersFromContext 100.0% +2025-07-23T19:39:15.4857346Z github.com/ava-labs/coreth/rpc/context_headers.go:62: setHeaders 100.0% +2025-07-23T19:39:15.4857520Z github.com/ava-labs/coreth/rpc/errors.go:40: Error 66.7% +2025-07-23T19:39:15.4857709Z github.com/ava-labs/coreth/rpc/errors.go:89: ErrorCode 100.0% +2025-07-23T19:39:15.4857878Z github.com/ava-labs/coreth/rpc/errors.go:91: Error 100.0% +2025-07-23T19:39:15.4858053Z github.com/ava-labs/coreth/rpc/errors.go:97: Error 0.0% +2025-07-23T19:39:15.4858329Z github.com/ava-labs/coreth/rpc/errors.go:101: ErrorCode 0.0% +2025-07-23T19:39:15.4858490Z github.com/ava-labs/coreth/rpc/errors.go:111: Is 0.0% +2025-07-23T19:39:15.4858684Z github.com/ava-labs/coreth/rpc/errors.go:125: ErrorCode 100.0% +2025-07-23T19:39:15.4858855Z github.com/ava-labs/coreth/rpc/errors.go:127: Error 100.0% +2025-07-23T19:39:15.4859044Z github.com/ava-labs/coreth/rpc/errors.go:134: ErrorCode 100.0% +2025-07-23T19:39:15.4859219Z github.com/ava-labs/coreth/rpc/errors.go:136: Error 100.0% +2025-07-23T19:39:15.4859403Z github.com/ava-labs/coreth/rpc/errors.go:141: ErrorCode 100.0% +2025-07-23T19:39:15.4859706Z github.com/ava-labs/coreth/rpc/errors.go:143: Error 100.0% +2025-07-23T19:39:15.4859881Z github.com/ava-labs/coreth/rpc/errors.go:148: ErrorCode 0.0% +2025-07-23T19:39:15.4860049Z github.com/ava-labs/coreth/rpc/errors.go:150: Error 0.0% +2025-07-23T19:39:15.4860235Z github.com/ava-labs/coreth/rpc/errors.go:155: ErrorCode 100.0% +2025-07-23T19:39:15.4860404Z github.com/ava-labs/coreth/rpc/errors.go:157: Error 100.0% +2025-07-23T19:39:15.4860588Z github.com/ava-labs/coreth/rpc/errors.go:165: ErrorCode 100.0% +2025-07-23T19:39:15.4860756Z github.com/ava-labs/coreth/rpc/errors.go:167: Error 100.0% +2025-07-23T19:39:15.4860947Z github.com/ava-labs/coreth/rpc/handler.go:96: newHandler 100.0% +2025-07-23T19:39:15.4861133Z github.com/ava-labs/coreth/rpc/handler.go:130: nextCall 100.0% +2025-07-23T19:39:15.4861338Z github.com/ava-labs/coreth/rpc/handler.go:144: pushResponse 100.0% +2025-07-23T19:39:15.4861516Z github.com/ava-labs/coreth/rpc/handler.go:155: write 100.0% +2025-07-23T19:39:15.4861735Z github.com/ava-labs/coreth/rpc/handler.go:164: respondWithError 100.0% +2025-07-23T19:39:15.4861916Z github.com/ava-labs/coreth/rpc/handler.go:178: doWrite 100.0% +2025-07-23T19:39:15.4862109Z github.com/ava-labs/coreth/rpc/handler.go:193: addLimiter 66.7% +2025-07-23T19:39:15.4862298Z github.com/ava-labs/coreth/rpc/handler.go:201: handleBatch 84.1% +2025-07-23T19:39:15.4862540Z github.com/ava-labs/coreth/rpc/handler.go:283: respondWithBatchTooLarge 100.0% +2025-07-23T19:39:15.4862734Z github.com/ava-labs/coreth/rpc/handler.go:298: handleMsg 100.0% +2025-07-23T19:39:15.4862951Z github.com/ava-labs/coreth/rpc/handler.go:307: handleNonBatchCall 66.7% +2025-07-23T19:39:15.4863129Z github.com/ava-labs/coreth/rpc/handler.go:346: close 100.0% +2025-07-23T19:39:15.4863329Z github.com/ava-labs/coreth/rpc/handler.go:354: addRequestOp 100.0% +2025-07-23T19:39:15.4863542Z github.com/ava-labs/coreth/rpc/handler.go:361: removeRequestOp 100.0% +2025-07-23T19:39:15.4863759Z github.com/ava-labs/coreth/rpc/handler.go:368: cancelAllRequests 100.0% +2025-07-23T19:39:15.4863970Z github.com/ava-labs/coreth/rpc/handler.go:390: addSubscriptions 100.0% +2025-07-23T19:39:15.4864208Z github.com/ava-labs/coreth/rpc/handler.go:402: cancelServerSubscriptions 100.0% +2025-07-23T19:39:15.4864401Z github.com/ava-labs/coreth/rpc/handler.go:415: awaitLimit 22.2% +2025-07-23T19:39:15.4864597Z github.com/ava-labs/coreth/rpc/handler.go:435: consumeLimit 28.6% +2025-07-23T19:39:15.4864799Z github.com/ava-labs/coreth/rpc/handler.go:450: startCallProc 87.5% +2025-07-23T19:39:15.4865008Z github.com/ava-labs/coreth/rpc/handler.go:484: handleResponses 93.3% +2025-07-23T19:39:15.4865356Z github.com/ava-labs/coreth/rpc/handler.go:541: handleSubscriptionResult 66.7% +2025-07-23T19:39:15.4865570Z github.com/ava-labs/coreth/rpc/handler.go:553: handleCallMsg 100.0% +2025-07-23T19:39:15.4865756Z github.com/ava-labs/coreth/rpc/handler.go:595: handleCall 95.5% +2025-07-23T19:39:15.4865962Z github.com/ava-labs/coreth/rpc/handler.go:635: handleSubscribe 83.3% +2025-07-23T19:39:15.4866154Z github.com/ava-labs/coreth/rpc/handler.go:668: runMethod 100.0% +2025-07-23T19:39:15.4866345Z github.com/ava-labs/coreth/rpc/handler.go:677: unsubscribe 87.5% +2025-07-23T19:39:15.4866522Z github.com/ava-labs/coreth/rpc/handler.go:692: String 0.0% +2025-07-23T19:39:15.4866694Z github.com/ava-labs/coreth/rpc/handler.go:706: Write 66.7% +2025-07-23T19:39:15.4866900Z github.com/ava-labs/coreth/rpc/handler.go:716: formatErrorData 66.7% +2025-07-23T19:39:15.4867073Z github.com/ava-labs/coreth/rpc/http.go:68: writeJSON 0.0% +2025-07-23T19:39:15.4867287Z github.com/ava-labs/coreth/rpc/http.go:72: writeJSONSkipDeadline 0.0% +2025-07-23T19:39:15.4867537Z github.com/ava-labs/coreth/rpc/http.go:76: peerInfo 0.0% +2025-07-23T19:39:15.4867709Z github.com/ava-labs/coreth/rpc/http.go:80: remoteAddr 0.0% +2025-07-23T19:39:15.4867875Z github.com/ava-labs/coreth/rpc/http.go:84: readBatch 0.0% +2025-07-23T19:39:15.4868039Z github.com/ava-labs/coreth/rpc/http.go:89: close 0.0% +2025-07-23T19:39:15.4868296Z github.com/ava-labs/coreth/rpc/http.go:93: closed 0.0% +2025-07-23T19:39:15.4868470Z github.com/ava-labs/coreth/rpc/http.go:139: DialHTTP 100.0% +2025-07-23T19:39:15.4868679Z github.com/ava-labs/coreth/rpc/http.go:147: DialHTTPWithClient 85.7% +2025-07-23T19:39:15.4868897Z github.com/ava-labs/coreth/rpc/http.go:160: newClientTransportHTTP 90.9% +2025-07-23T19:39:15.4869073Z github.com/ava-labs/coreth/rpc/http.go:186: sendHTTP 90.9% +2025-07-23T19:39:15.4869270Z github.com/ava-labs/coreth/rpc/http.go:203: sendBatchHTTP 80.0% +2025-07-23T19:39:15.4869439Z github.com/ava-labs/coreth/rpc/http.go:219: doRequest 81.5% +2025-07-23T19:39:15.4869648Z github.com/ava-labs/coreth/rpc/http.go:271: newHTTPServerConn 47.1% +2025-07-23T19:39:15.4869811Z github.com/ava-labs/coreth/rpc/http.go:313: Close 100.0% +2025-07-23T19:39:15.4869989Z github.com/ava-labs/coreth/rpc/http.go:316: RemoteAddr 100.0% +2025-07-23T19:39:15.4870194Z github.com/ava-labs/coreth/rpc/http.go:321: SetWriteDeadline 100.0% +2025-07-23T19:39:15.4870369Z github.com/ava-labs/coreth/rpc/http.go:324: ServeHTTP 100.0% +2025-07-23T19:39:15.4870570Z github.com/ava-labs/coreth/rpc/http.go:355: validateRequest 92.3% +2025-07-23T19:39:15.4870784Z github.com/ava-labs/coreth/rpc/http.go:381: ContextRequestTimeout 50.0% +2025-07-23T19:39:15.4870970Z github.com/ava-labs/coreth/rpc/inproc.go:36: DialInProc 100.0% +2025-07-23T19:39:15.4871171Z github.com/ava-labs/coreth/rpc/json.go:82: isNotification 100.0% +2025-07-23T19:39:15.4871335Z github.com/ava-labs/coreth/rpc/json.go:86: isCall 100.0% +2025-07-23T19:39:15.4871518Z github.com/ava-labs/coreth/rpc/json.go:90: isResponse 100.0% +2025-07-23T19:39:15.4871693Z github.com/ava-labs/coreth/rpc/json.go:94: hasValidID 100.0% +2025-07-23T19:39:15.4871889Z github.com/ava-labs/coreth/rpc/json.go:98: hasValidVersion 100.0% +2025-07-23T19:39:15.4872077Z github.com/ava-labs/coreth/rpc/json.go:102: isSubscribe 100.0% +2025-07-23T19:39:15.4872267Z github.com/ava-labs/coreth/rpc/json.go:106: isUnsubscribe 100.0% +2025-07-23T19:39:15.4872439Z github.com/ava-labs/coreth/rpc/json.go:110: namespace 100.0% +2025-07-23T19:39:15.4872608Z github.com/ava-labs/coreth/rpc/json.go:115: String 0.0% +2025-07-23T19:39:15.4872799Z github.com/ava-labs/coreth/rpc/json.go:120: errorResponse 100.0% +2025-07-23T19:39:15.4872976Z github.com/ava-labs/coreth/rpc/json.go:126: response 100.0% +2025-07-23T19:39:15.4873287Z github.com/ava-labs/coreth/rpc/json.go:134: errorMessage 100.0% +2025-07-23T19:39:15.4873453Z github.com/ava-labs/coreth/rpc/json.go:156: Error 66.7% +2025-07-23T19:39:15.4873632Z github.com/ava-labs/coreth/rpc/json.go:163: ErrorCode 100.0% +2025-07-23T19:39:15.4873806Z github.com/ava-labs/coreth/rpc/json.go:167: ErrorData 100.0% +2025-07-23T19:39:15.4873994Z github.com/ava-labs/coreth/rpc/json.go:208: NewFuncCodec 100.0% +2025-07-23T19:39:15.4874171Z github.com/ava-labs/coreth/rpc/json.go:223: NewCodec 100.0% +2025-07-23T19:39:15.4874344Z github.com/ava-labs/coreth/rpc/json.go:234: peerInfo 100.0% +2025-07-23T19:39:15.4874526Z github.com/ava-labs/coreth/rpc/json.go:239: remoteAddr 100.0% +2025-07-23T19:39:15.4874700Z github.com/ava-labs/coreth/rpc/json.go:243: readBatch 100.0% +2025-07-23T19:39:15.4874871Z github.com/ava-labs/coreth/rpc/json.go:261: writeJSON 100.0% +2025-07-23T19:39:15.4875097Z github.com/ava-labs/coreth/rpc/json.go:265: writeJSONSkipDeadline 100.0% +2025-07-23T19:39:15.4875407Z github.com/ava-labs/coreth/rpc/json.go:280: close 100.0% +2025-07-23T19:39:15.4875583Z github.com/ava-labs/coreth/rpc/json.go:288: closed 100.0% +2025-07-23T19:39:15.4875774Z github.com/ava-labs/coreth/rpc/json.go:296: parseMessage 100.0% +2025-07-23T19:39:15.4875943Z github.com/ava-labs/coreth/rpc/json.go:313: isBatch 60.0% +2025-07-23T19:39:15.4876171Z github.com/ava-labs/coreth/rpc/json.go:327: parsePositionalArguments 84.6% +2025-07-23T19:39:15.4876377Z github.com/ava-labs/coreth/rpc/json.go:355: parseArgumentArray 75.0% +2025-07-23T19:39:15.4876592Z github.com/ava-labs/coreth/rpc/json.go:376: parseSubscriptionName 75.0% +2025-07-23T19:39:15.4876828Z github.com/ava-labs/coreth/rpc/metrics.go:58: updateServeTimeHistogram 0.0% +2025-07-23T19:39:15.4877009Z github.com/ava-labs/coreth/rpc/server.go:74: NewServer 100.0% +2025-07-23T19:39:15.4877218Z github.com/ava-labs/coreth/rpc/server.go:95: SetBatchLimits 100.0% +2025-07-23T19:39:15.4877423Z github.com/ava-labs/coreth/rpc/server.go:103: SetHTTPBodyLimit 0.0% +2025-07-23T19:39:15.4877620Z github.com/ava-labs/coreth/rpc/server.go:111: RegisterName 100.0% +2025-07-23T19:39:15.4877812Z github.com/ava-labs/coreth/rpc/server.go:120: ServeCodec 87.5% +2025-07-23T19:39:15.4877997Z github.com/ava-labs/coreth/rpc/server.go:138: trackCodec 83.3% +2025-07-23T19:39:15.4878285Z github.com/ava-labs/coreth/rpc/server.go:149: untrackCodec 100.0% +2025-07-23T19:39:15.4878503Z github.com/ava-labs/coreth/rpc/server.go:159: serveSingleRequest 60.0% +2025-07-23T19:39:15.4878671Z github.com/ava-labs/coreth/rpc/server.go:188: Stop 100.0% +2025-07-23T19:39:15.4878854Z github.com/ava-labs/coreth/rpc/server.go:207: Modules 100.0% +2025-07-23T19:39:15.4879074Z github.com/ava-labs/coreth/rpc/server.go:248: PeerInfoFromContext 100.0% +2025-07-23T19:39:15.4879274Z github.com/ava-labs/coreth/rpc/service.go:71: registerName 89.5% +2025-07-23T19:39:15.4879460Z github.com/ava-labs/coreth/rpc/service.go:106: callback 83.3% +2025-07-23T19:39:15.4879658Z github.com/ava-labs/coreth/rpc/service.go:117: subscription 100.0% +2025-07-23T19:39:15.4879872Z github.com/ava-labs/coreth/rpc/service.go:126: suitableCallbacks 91.7% +2025-07-23T19:39:15.4880066Z github.com/ava-labs/coreth/rpc/service.go:146: newCallback 100.0% +2025-07-23T19:39:15.4880261Z github.com/ava-labs/coreth/rpc/service.go:175: makeArgTypes 100.0% +2025-07-23T19:39:15.4880436Z github.com/ava-labs/coreth/rpc/service.go:194: call 100.0% +2025-07-23T19:39:15.4880631Z github.com/ava-labs/coreth/rpc/service.go:229: isErrorType 100.0% +2025-07-23T19:39:15.4880850Z github.com/ava-labs/coreth/rpc/service.go:234: isSubscriptionType 100.0% +2025-07-23T19:39:15.4881038Z github.com/ava-labs/coreth/rpc/service.go:243: isPubSub 100.0% +2025-07-23T19:39:15.4881359Z github.com/ava-labs/coreth/rpc/service.go:254: formatName 100.0% +2025-07-23T19:39:15.4881559Z github.com/ava-labs/coreth/rpc/subscription.go:67: NewID 100.0% +2025-07-23T19:39:15.4881785Z github.com/ava-labs/coreth/rpc/subscription.go:72: randomIDGenerator 91.7% +2025-07-23T19:39:15.4881980Z github.com/ava-labs/coreth/rpc/subscription.go:94: encodeID 80.0% +2025-07-23T19:39:15.4882227Z github.com/ava-labs/coreth/rpc/subscription.go:106: NotifierFromContext 100.0% +2025-07-23T19:39:15.4882463Z github.com/ava-labs/coreth/rpc/subscription.go:128: CreateSubscription 75.0% +2025-07-23T19:39:15.4882661Z github.com/ava-labs/coreth/rpc/subscription.go:143: Notify 80.0% +2025-07-23T19:39:15.4882856Z github.com/ava-labs/coreth/rpc/subscription.go:161: Closed 100.0% +2025-07-23T19:39:15.4883084Z github.com/ava-labs/coreth/rpc/subscription.go:167: takeSubscription 100.0% +2025-07-23T19:39:15.4883291Z github.com/ava-labs/coreth/rpc/subscription.go:177: activate 100.0% +2025-07-23T19:39:15.4883584Z github.com/ava-labs/coreth/rpc/subscription.go:190: send 100.0% +2025-07-23T19:39:15.4883769Z github.com/ava-labs/coreth/rpc/subscription.go:211: Err 100.0% +2025-07-23T19:39:15.4883987Z github.com/ava-labs/coreth/rpc/subscription.go:216: MarshalJSON 100.0% +2025-07-23T19:39:15.4884235Z github.com/ava-labs/coreth/rpc/subscription.go:248: newClientSubscription 100.0% +2025-07-23T19:39:15.4884424Z github.com/ava-labs/coreth/rpc/subscription.go:271: Err 100.0% +2025-07-23T19:39:15.4884633Z github.com/ava-labs/coreth/rpc/subscription.go:277: Unsubscribe 100.0% +2025-07-23T19:39:15.4884832Z github.com/ava-labs/coreth/rpc/subscription.go:289: deliver 100.0% +2025-07-23T19:39:15.4885028Z github.com/ava-labs/coreth/rpc/subscription.go:299: close 100.0% +2025-07-23T19:39:15.4885210Z github.com/ava-labs/coreth/rpc/subscription.go:308: run 100.0% +2025-07-23T19:39:15.4885410Z github.com/ava-labs/coreth/rpc/subscription.go:335: forward 95.7% +2025-07-23T19:39:15.4885622Z github.com/ava-labs/coreth/rpc/subscription.go:383: unmarshal 100.0% +2025-07-23T19:39:15.4885858Z github.com/ava-labs/coreth/rpc/subscription.go:389: requestUnsubscribe 100.0% +2025-07-23T19:39:15.4886052Z github.com/ava-labs/coreth/rpc/types.go:90: UnmarshalJSON 81.0% +2025-07-23T19:39:15.4886218Z github.com/ava-labs/coreth/rpc/types.go:127: Int64 0.0% +2025-07-23T19:39:15.4886403Z github.com/ava-labs/coreth/rpc/types.go:134: MarshalText 100.0% +2025-07-23T19:39:15.4886577Z github.com/ava-labs/coreth/rpc/types.go:138: String 66.7% +2025-07-23T19:39:15.4886754Z github.com/ava-labs/coreth/rpc/types.go:159: IsAccepted 0.0% +2025-07-23T19:39:15.4886927Z github.com/ava-labs/coreth/rpc/types.go:163: IsLatest 0.0% +2025-07-23T19:39:15.4887120Z github.com/ava-labs/coreth/rpc/types.go:173: UnmarshalJSON 84.4% +2025-07-23T19:39:15.4887293Z github.com/ava-labs/coreth/rpc/types.go:237: Number 100.0% +2025-07-23T19:39:15.4887467Z github.com/ava-labs/coreth/rpc/types.go:244: String 80.0% +2025-07-23T19:39:15.4887631Z github.com/ava-labs/coreth/rpc/types.go:254: Hash 100.0% +2025-07-23T19:39:15.4887870Z github.com/ava-labs/coreth/rpc/types.go:261: BlockNumberOrHashWithNumber 100.0% +2025-07-23T19:39:15.4888211Z github.com/ava-labs/coreth/rpc/types.go:269: BlockNumberOrHashWithHash 100.0% +2025-07-23T19:39:15.4888437Z github.com/ava-labs/coreth/rpc/websocket.go:61: WebsocketHandler 100.0% +2025-07-23T19:39:15.4888701Z github.com/ava-labs/coreth/rpc/websocket.go:65: WebsocketHandlerWithDuration 100.0% +2025-07-23T19:39:15.4888935Z github.com/ava-labs/coreth/rpc/websocket.go:86: wsHandshakeValidator 100.0% +2025-07-23T19:39:15.4889111Z github.com/ava-labs/coreth/rpc/websocket.go:132: Error 0.0% +2025-07-23T19:39:15.4889331Z github.com/ava-labs/coreth/rpc/websocket.go:140: originIsAllowed 100.0% +2025-07-23T19:39:15.4889657Z github.com/ava-labs/coreth/rpc/websocket.go:150: ruleAllowsOrigin 62.5% +2025-07-23T19:39:15.4889877Z github.com/ava-labs/coreth/rpc/websocket.go:178: parseOriginURL 92.9% +2025-07-23T19:39:15.4890113Z github.com/ava-labs/coreth/rpc/websocket.go:205: DialWebsocketWithDialer 0.0% +2025-07-23T19:39:15.4890317Z github.com/ava-labs/coreth/rpc/websocket.go:223: DialWebsocket 85.7% +2025-07-23T19:39:15.4890549Z github.com/ava-labs/coreth/rpc/websocket.go:235: newClientTransportWS 87.5% +2025-07-23T19:39:15.4890759Z github.com/ava-labs/coreth/rpc/websocket.go:278: wsClientHeaders 90.9% +2025-07-23T19:39:15.4890974Z github.com/ava-labs/coreth/rpc/websocket.go:305: newWebsocketCodec 84.6% +2025-07-23T19:39:15.4891164Z github.com/ava-labs/coreth/rpc/websocket.go:337: close 100.0% +2025-07-23T19:39:15.4891356Z github.com/ava-labs/coreth/rpc/websocket.go:342: peerInfo 100.0% +2025-07-23T19:39:15.4891570Z github.com/ava-labs/coreth/rpc/websocket.go:346: writeJSON 100.0% +2025-07-23T19:39:15.4891910Z github.com/ava-labs/coreth/rpc/websocket.go:350: writeJSONSkipDeadline 100.0% +2025-07-23T19:39:15.4892101Z github.com/ava-labs/coreth/rpc/websocket.go:363: pingLoop 50.0% +2025-07-23T19:39:15.4892322Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:55: Crit 0.0% +2025-07-23T19:39:15.4892574Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:58: Warn 0.0% +2025-07-23T19:39:15.4892965Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:61: Info 0.0% +2025-07-23T19:39:15.4893364Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:66: GetWarnings 0.0% +2025-07-23T19:39:15.4893604Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:103: String 0.0% +2025-07-23T19:39:15.4893862Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:112: ToTransaction 0.0% +2025-07-23T19:39:15.4894073Z github.com/ava-labs/coreth/sync/client/client.go:99: NewClient 100.0% +2025-07-23T19:39:15.4894283Z github.com/ava-labs/coreth/sync/client/client.go:114: GetLeafs 100.0% +2025-07-23T19:39:15.4894538Z github.com/ava-labs/coreth/sync/client/client.go:132: parseLeafsResponse 88.5% +2025-07-23T19:39:15.4894745Z github.com/ava-labs/coreth/sync/client/client.go:188: GetBlocks 100.0% +2025-07-23T19:39:15.4894970Z github.com/ava-labs/coreth/sync/client/client.go:207: parseBlocks 100.0% +2025-07-23T19:39:15.4895174Z github.com/ava-labs/coreth/sync/client/client.go:243: GetCode 100.0% +2025-07-23T19:39:15.4895380Z github.com/ava-labs/coreth/sync/client/client.go:257: parseCode 93.3% +2025-07-23T19:39:15.4895573Z github.com/ava-labs/coreth/sync/client/client.go:289: get 72.1% +2025-07-23T19:39:15.4895834Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:51: NewCallbackLeafSyncer 0.0% +2025-07-23T19:39:15.4896062Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:62: workerLoop 0.0% +2025-07-23T19:39:15.4896272Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:80: syncTask 0.0% +2025-07-23T19:39:15.4896478Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:149: Start 0.0% +2025-07-23T19:39:15.4896683Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:171: Done 0.0% +2025-07-23T19:39:15.4896929Z github.com/ava-labs/coreth/sync/client/stats/stats.go:42: NewMessageMetric 100.0% +2025-07-23T19:39:15.4897160Z github.com/ava-labs/coreth/sync/client/stats/stats.go:53: IncRequested 100.0% +2025-07-23T19:39:15.4897396Z github.com/ava-labs/coreth/sync/client/stats/stats.go:57: IncSucceeded 100.0% +2025-07-23T19:39:15.4897618Z github.com/ava-labs/coreth/sync/client/stats/stats.go:61: IncFailed 100.0% +2025-07-23T19:39:15.4897869Z github.com/ava-labs/coreth/sync/client/stats/stats.go:65: IncInvalidResponse 0.0% +2025-07-23T19:39:15.4898212Z github.com/ava-labs/coreth/sync/client/stats/stats.go:69: IncReceived 100.0% +2025-07-23T19:39:15.4898631Z github.com/ava-labs/coreth/sync/client/stats/stats.go:73: UpdateRequestLatency 100.0% +2025-07-23T19:39:15.4898914Z github.com/ava-labs/coreth/sync/client/stats/stats.go:84: NewClientSyncerStats 100.0% +2025-07-23T19:39:15.4899134Z github.com/ava-labs/coreth/sync/client/stats/stats.go:97: GetMetric 62.5% +2025-07-23T19:39:15.4899368Z github.com/ava-labs/coreth/sync/client/stats/stats.go:121: IncRequested 0.0% +2025-07-23T19:39:15.4899595Z github.com/ava-labs/coreth/sync/client/stats/stats.go:122: IncSucceeded 0.0% +2025-07-23T19:39:15.4899812Z github.com/ava-labs/coreth/sync/client/stats/stats.go:123: IncFailed 0.0% +2025-07-23T19:39:15.4900070Z github.com/ava-labs/coreth/sync/client/stats/stats.go:124: IncInvalidResponse 0.0% +2025-07-23T19:39:15.4900296Z github.com/ava-labs/coreth/sync/client/stats/stats.go:125: IncReceived 0.0% +2025-07-23T19:39:15.4900555Z github.com/ava-labs/coreth/sync/client/stats/stats.go:126: UpdateRequestLatency 0.0% +2025-07-23T19:39:15.4900800Z github.com/ava-labs/coreth/sync/client/stats/stats.go:128: NewNoOpStats 100.0% +2025-07-23T19:39:15.4901136Z github.com/ava-labs/coreth/sync/client/stats/stats.go:132: GetMetric 100.0% +2025-07-23T19:39:15.4901366Z github.com/ava-labs/coreth/sync/client/test_client.go:44: NewTestClient 0.0% +2025-07-23T19:39:15.4901575Z github.com/ava-labs/coreth/sync/client/test_client.go:58: GetLeafs 0.0% +2025-07-23T19:39:15.4901804Z github.com/ava-labs/coreth/sync/client/test_client.go:77: LeavesReceived 0.0% +2025-07-23T19:39:15.4902016Z github.com/ava-labs/coreth/sync/client/test_client.go:81: GetCode 0.0% +2025-07-23T19:39:15.4902241Z github.com/ava-labs/coreth/sync/client/test_client.go:105: CodeReceived 0.0% +2025-07-23T19:39:15.4902459Z github.com/ava-labs/coreth/sync/client/test_client.go:109: GetBlocks 0.0% +2025-07-23T19:39:15.4902692Z github.com/ava-labs/coreth/sync/client/test_client.go:136: BlocksReceived 0.0% +2025-07-23T19:39:15.4902949Z github.com/ava-labs/coreth/sync/client/test_client.go:142: newTestBlockParser 100.0% +2025-07-23T19:39:15.4903192Z github.com/ava-labs/coreth/sync/client/test_client.go:146: ParseEthBlock 100.0% +2025-07-23T19:39:15.4903466Z github.com/ava-labs/coreth/sync/client/test_network.go:31: SendSyncedAppRequestAny 80.0% +2025-07-23T19:39:15.4903733Z github.com/ava-labs/coreth/sync/client/test_network.go:42: SendSyncedAppRequest 75.0% +2025-07-23T19:39:15.4903959Z github.com/ava-labs/coreth/sync/client/test_network.go:52: processTest 84.6% +2025-07-23T19:39:15.4904171Z github.com/ava-labs/coreth/sync/client/test_network.go:76: Gossip 0.0% +2025-07-23T19:39:15.4904408Z github.com/ava-labs/coreth/sync/client/test_network.go:80: testResponse 100.0% +2025-07-23T19:39:15.4904642Z github.com/ava-labs/coreth/sync/client/test_network.go:89: testResponses 100.0% +2025-07-23T19:39:15.4904876Z github.com/ava-labs/coreth/sync/client/test_network.go:95: TrackBandwidth 0.0% +2025-07-23T19:39:15.4905175Z github.com/ava-labs/coreth/sync/handlers/block_request.go:36: NewBlockRequestHandler 100.0% +2025-07-23T19:39:15.4905434Z github.com/ava-labs/coreth/sync/handlers/block_request.go:49: OnBlockRequest 87.8% +2025-07-23T19:39:15.4905713Z github.com/ava-labs/coreth/sync/handlers/code_request.go:29: NewCodeRequestHandler 100.0% +2025-07-23T19:39:15.4905958Z github.com/ava-labs/coreth/sync/handlers/code_request.go:43: OnCodeRequest 82.1% +2025-07-23T19:39:15.4906183Z github.com/ava-labs/coreth/sync/handlers/code_request.go:85: isUnique 100.0% +2025-07-23T19:39:15.4906473Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:58: NewLeafsRequestHandler 100.0% +2025-07-23T19:39:15.4906721Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:81: OnLeafsRequest 89.8% +2025-07-23T19:39:15.4906974Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:186: handleRequest 73.9% +2025-07-23T19:39:15.4907319Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:230: fillFromSnapshot 69.5% +2025-07-23T19:39:15.4907590Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:333: generateRangeProof 73.3% +2025-07-23T19:39:15.4907859Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:360: verifyRangeProof 100.0% +2025-07-23T19:39:15.4908193Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:372: iterateVals 87.5% +2025-07-23T19:39:15.4908449Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:393: isRangeValid 88.9% +2025-07-23T19:39:15.4908684Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:410: nextKey 100.0% +2025-07-23T19:39:15.4908929Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:424: fillFromTrie 94.4% +2025-07-23T19:39:15.4909216Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:459: readLeafsFromSnapshot 92.3% +2025-07-23T19:39:15.4909468Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:88: IncBlockRequest 100.0% +2025-07-23T19:39:15.4909731Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:92: IncMissingBlockHash 0.0% +2025-07-23T19:39:15.4910123Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:96: UpdateBlocksReturned 100.0% +2025-07-23T19:39:15.4910440Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:100: UpdateBlockRequestProcessingTime 100.0% +2025-07-23T19:39:15.4910689Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:104: IncCodeRequest 0.0% +2025-07-23T19:39:15.4910947Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:108: IncMissingCodeHash 0.0% +2025-07-23T19:39:15.4911234Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:112: IncTooManyHashesRequested 0.0% +2025-07-23T19:39:15.4911530Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:116: IncDuplicateHashesRequested 0.0% +2025-07-23T19:39:15.4911788Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:120: UpdateCodeReadTime 0.0% +2025-07-23T19:39:15.4912076Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:124: UpdateCodeBytesReturned 0.0% +2025-07-23T19:39:15.4912332Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:128: IncLeafsRequest 100.0% +2025-07-23T19:39:15.4912607Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:132: IncInvalidLeafsRequest 0.0% +2025-07-23T19:39:15.4912925Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:136: UpdateLeafsRequestProcessingTime 100.0% +2025-07-23T19:39:15.4913196Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:140: UpdateLeafsReturned 100.0% +2025-07-23T19:39:15.4913468Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:144: UpdateReadLeafsTime 100.0% +2025-07-23T19:39:15.4913749Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:148: UpdateSnapshotReadTime 100.0% +2025-07-23T19:39:15.4914050Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:152: UpdateGenerateRangeProofTime 100.0% +2025-07-23T19:39:15.4914355Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:156: UpdateRangeProofValsReturned 100.0% +2025-07-23T19:39:15.4914601Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:160: IncMissingRoot 0.0% +2025-07-23T19:39:15.4914842Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:161: IncTrieError 0.0% +2025-07-23T19:39:15.4915084Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:162: IncProofError 0.0% +2025-07-23T19:39:15.4915351Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:163: IncSnapshotReadError 0.0% +2025-07-23T19:39:15.4915665Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:164: IncSnapshotReadAttempt 100.0% +2025-07-23T19:39:15.4916082Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:165: IncSnapshotReadSuccess 0.0% +2025-07-23T19:39:15.4916368Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:166: IncSnapshotSegmentValid 0.0% +2025-07-23T19:39:15.4916662Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:167: IncSnapshotSegmentInvalid 100.0% +2025-07-23T19:39:15.4917073Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:172: GetOrRegisterHandlerStats 66.7% +2025-07-23T19:39:15.4917350Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:214: NewNoopHandlerStats 100.0% +2025-07-23T19:39:15.4917601Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:219: IncBlockRequest 0.0% +2025-07-23T19:39:15.4917863Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:220: IncMissingBlockHash 0.0% +2025-07-23T19:39:15.4918245Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:221: UpdateBlocksReturned 0.0% +2025-07-23T19:39:15.4918556Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:222: UpdateBlockRequestProcessingTime 0.0% +2025-07-23T19:39:15.4918806Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:223: IncCodeRequest 0.0% +2025-07-23T19:39:15.4919062Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:224: IncMissingCodeHash 0.0% +2025-07-23T19:39:15.4919348Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:225: IncTooManyHashesRequested 0.0% +2025-07-23T19:39:15.4919756Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:226: IncDuplicateHashesRequested 0.0% +2025-07-23T19:39:15.4920014Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:227: UpdateCodeReadTime 0.0% +2025-07-23T19:39:15.4920297Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:228: UpdateCodeBytesReturned 0.0% +2025-07-23T19:39:15.4920546Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:229: IncLeafsRequest 0.0% +2025-07-23T19:39:15.4920818Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:230: IncInvalidLeafsRequest 0.0% +2025-07-23T19:39:15.4921128Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:231: UpdateLeafsRequestProcessingTime 0.0% +2025-07-23T19:39:15.4921423Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:232: UpdateLeafsReturned 0.0% +2025-07-23T19:39:15.4921698Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:233: UpdateReadLeafsTime 0.0% +2025-07-23T19:39:15.4921980Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:234: UpdateSnapshotReadTime 0.0% +2025-07-23T19:39:15.4922279Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:235: UpdateGenerateRangeProofTime 0.0% +2025-07-23T19:39:15.4922580Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:236: UpdateRangeProofValsReturned 0.0% +2025-07-23T19:39:15.4922825Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:237: IncMissingRoot 0.0% +2025-07-23T19:39:15.4923063Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:238: IncTrieError 0.0% +2025-07-23T19:39:15.4923311Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:239: IncProofError 0.0% +2025-07-23T19:39:15.4923578Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:240: IncSnapshotReadError 0.0% +2025-07-23T19:39:15.4923858Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:241: IncSnapshotReadAttempt 0.0% +2025-07-23T19:39:15.4924134Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:242: IncSnapshotReadSuccess 0.0% +2025-07-23T19:39:15.4924419Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:243: IncSnapshotSegmentValid 0.0% +2025-07-23T19:39:15.4924707Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:244: IncSnapshotSegmentInvalid 0.0% +2025-07-23T19:39:15.4924979Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:49: Reset 100.0% +2025-07-23T19:39:15.4925292Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:80: IncBlockRequest 100.0% +2025-07-23T19:39:15.4925616Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:86: IncMissingBlockHash 100.0% +2025-07-23T19:39:15.4925939Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:92: UpdateBlocksReturned 100.0% +2025-07-23T19:39:15.4926326Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:98: UpdateBlockRequestProcessingTime 100.0% +2025-07-23T19:39:15.4926749Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:104: IncCodeRequest 100.0% +2025-07-23T19:39:15.4927069Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:110: IncMissingCodeHash 0.0% +2025-07-23T19:39:15.4927419Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:116: IncTooManyHashesRequested 100.0% +2025-07-23T19:39:15.4927772Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:122: IncDuplicateHashesRequested 100.0% +2025-07-23T19:39:15.4928193Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:128: UpdateCodeReadTime 100.0% +2025-07-23T19:39:15.4928538Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:134: UpdateCodeBytesReturned 100.0% +2025-07-23T19:39:15.4928857Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:140: IncLeafsRequest 100.0% +2025-07-23T19:39:15.4929199Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:146: IncInvalidLeafsRequest 100.0% +2025-07-23T19:39:15.4929633Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:152: UpdateLeafsReturned 100.0% +2025-07-23T19:39:15.4930008Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:158: UpdateLeafsRequestProcessingTime 100.0% +2025-07-23T19:39:15.4930328Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:164: UpdateReadLeafsTime 100.0% +2025-07-23T19:39:15.4930690Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:170: UpdateGenerateRangeProofTime 100.0% +2025-07-23T19:39:15.4931133Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:176: UpdateSnapshotReadTime 100.0% +2025-07-23T19:39:15.4931497Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:182: UpdateRangeProofValsReturned 100.0% +2025-07-23T19:39:15.4931818Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:188: IncMissingRoot 100.0% +2025-07-23T19:39:15.4932121Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:194: IncTrieError 100.0% +2025-07-23T19:39:15.4932421Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:200: IncProofError 0.0% +2025-07-23T19:39:15.4932741Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:206: IncSnapshotReadError 0.0% +2025-07-23T19:39:15.4933078Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:212: IncSnapshotReadAttempt 100.0% +2025-07-23T19:39:15.4933420Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:218: IncSnapshotReadSuccess 100.0% +2025-07-23T19:39:15.4933761Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:224: IncSnapshotSegmentValid 100.0% +2025-07-23T19:39:15.4934112Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:230: IncSnapshotSegmentInvalid 100.0% +2025-07-23T19:39:15.4934357Z github.com/ava-labs/coreth/sync/handlers/test_providers.go:21: GetBlock 100.0% +2025-07-23T19:39:15.4934601Z github.com/ava-labs/coreth/sync/handlers/test_providers.go:29: Snapshots 100.0% +2025-07-23T19:39:15.4934856Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:63: newCodeSyncer 100.0% +2025-07-23T19:39:15.4935079Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:75: start 93.3% +2025-07-23T19:39:15.4935378Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:107: addCodeToFetchFromDBToQueue 55.0% +2025-07-23T19:39:15.4935601Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:143: work 100.0% +2025-07-23T19:39:15.4935865Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:180: fulfillCodeRequest 92.3% +2025-07-23T19:39:15.4936100Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:204: addCode 91.7% +2025-07-23T19:39:15.4936397Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:230: notifyAccountTrieCompleted 100.0% +2025-07-23T19:39:15.4936852Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:236: addHashesToQueue 100.0% +2025-07-23T19:39:15.4937091Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:249: setError 100.0% +2025-07-23T19:39:15.4937313Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:257: Done 100.0% +2025-07-23T19:39:15.4937575Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:65: NewStateSyncer 84.6% +2025-07-23T19:39:15.4937856Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:113: onStorageTrieFinished 80.0% +2025-07-23T19:39:15.4946915Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:136: onMainTrieFinished 87.5% +2025-07-23T19:39:15.4947388Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:156: onSyncComplete 100.0% +2025-07-23T19:39:15.4947747Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:165: storageTrieProducer 82.6% +2025-07-23T19:39:15.4948034Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:220: Start 100.0% +2025-07-23T19:39:15.4948701Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:247: Done 100.0% +2025-07-23T19:39:15.4948987Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:250: addTrieInProgress 100.0% +2025-07-23T19:39:15.4949282Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:259: removeTrieInProgress 85.7% +2025-07-23T19:39:15.4949541Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:274: onSyncFailure 85.7% +2025-07-23T19:39:15.4949934Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_sync.go:21: FillAccountsWithOverlappingStorage 100.0% +2025-07-23T19:39:15.4950232Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:29: GenerateTrie 66.7% +2025-07-23T19:39:15.4950506Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:39: FillTrie 95.7% +2025-07-23T19:39:15.4950853Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:78: AssertTrieConsistency 81.5% +2025-07-23T19:39:15.4951170Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:118: CorruptTrie 71.4% +2025-07-23T19:39:15.4951480Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:146: FillAccounts 77.3% +2025-07-23T19:39:15.4951770Z github.com/ava-labs/coreth/sync/statesync/sync_helpers.go:16: writeAccountSnapshot 100.0% +2025-07-23T19:39:15.4952098Z github.com/ava-labs/coreth/sync/statesync/sync_helpers.go:23: writeAccountStorageSnapshotFromTrie 0.0% +2025-07-23T19:39:15.4952350Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:20: NewTrieQueue 100.0% +2025-07-23T19:39:15.4952632Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:28: clearIfRootDoesNotMatch 66.7% +2025-07-23T19:39:15.4952904Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:50: RegisterStorageTrie 100.0% +2025-07-23T19:39:15.4953159Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:56: StorageTrieDone 100.0% +2025-07-23T19:39:15.4953405Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:65: getNextTrie 100.0% +2025-07-23T19:39:15.4953643Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:97: countTries 100.0% +2025-07-23T19:39:15.4953899Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:66: NewTrieToSync 100.0% +2025-07-23T19:39:15.4954152Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:86: loadSegments 76.0% +2025-07-23T19:39:15.4954403Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:142: startSyncing 100.0% +2025-07-23T19:39:15.4954646Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:152: addSegment 100.0% +2025-07-23T19:39:15.4954912Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:166: segmentFinished 76.9% +2025-07-23T19:39:15.4955200Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:245: createSegmentsIfNeeded 66.7% +2025-07-23T19:39:15.4955573Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:254: shouldSegment 83.3% +2025-07-23T19:39:15.4955831Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:277: createSegments 0.0% +2025-07-23T19:39:15.4956062Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:336: String 0.0% +2025-07-23T19:39:15.4956294Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:346: Root 100.0% +2025-07-23T19:39:15.4956532Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:347: Account 100.0% +2025-07-23T19:39:15.4956757Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:348: End 100.0% +2025-07-23T19:39:15.4957004Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:349: NodeType 100.0% +2025-07-23T19:39:15.4957235Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:350: OnStart 100.0% +2025-07-23T19:39:15.4957476Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:351: OnFinish 100.0% +2025-07-23T19:39:15.4957715Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:353: Start 100.0% +2025-07-23T19:39:15.4958062Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:360: OnLeafs 92.9% +2025-07-23T19:39:15.4958453Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:391: estimateSize 83.3% +2025-07-23T19:39:15.4958697Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:415: addPadding 0.0% +2025-07-23T19:39:15.4958971Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:45: newTrieSyncStats 100.0% +2025-07-23T19:39:15.4959256Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:59: incTriesSegmented 0.0% +2025-07-23T19:39:15.4959511Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:65: incLeafs 72.7% +2025-07-23T19:39:15.4959894Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:84: estimateSegmentsInProgressTime 25.0% +2025-07-23T19:39:15.4960230Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:101: trieDone 100.0% +2025-07-23T19:39:15.4963211Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:118: updateETA 76.9% +2025-07-23T19:39:15.4963520Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:145: setTriesRemaining 100.0% +2025-07-23T19:39:15.4963764Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:155: roundETA 80.0% +2025-07-23T19:39:15.4964045Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:41: NewMainTrieTask 100.0% +2025-07-23T19:39:15.4964301Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:47: IterateLeafs 100.0% +2025-07-23T19:39:15.4964552Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:53: OnStart 100.0% +2025-07-23T19:39:15.4964789Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:57: OnFinish 100.0% +2025-07-23T19:39:15.4965024Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:61: OnLeafs 92.3% +2025-07-23T19:39:15.4965308Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:97: NewStorageTrieTask 100.0% +2025-07-23T19:39:15.4965569Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:105: IterateLeafs 100.0% +2025-07-23T19:39:15.4965802Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:111: OnStart 54.5% +2025-07-23T19:39:15.4966042Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:138: OnFinish 100.0% +2025-07-23T19:39:15.4966278Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:142: OnLeafs 100.0% +2025-07-23T19:39:15.4966499Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:25: Next 85.7% +2025-07-23T19:39:15.4966708Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:37: Key 66.7% +2025-07-23T19:39:15.4966923Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:44: Value 66.7% +2025-07-23T19:39:15.4967132Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:51: Error 66.7% +2025-07-23T19:39:15.4967499Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:63: Key 100.0% +2025-07-23T19:39:15.4967731Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:67: Value 100.0% +2025-07-23T19:39:15.4967995Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:38: NewAccountTrie 100.0% +2025-07-23T19:39:15.4968370Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:53: GetAccount 87.5% +2025-07-23T19:39:15.4968612Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:87: GetStorage 72.2% +2025-07-23T19:39:15.4968867Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:123: UpdateAccount 88.9% +2025-07-23T19:39:15.4969120Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:138: UpdateStorage 92.3% +2025-07-23T19:39:15.4969373Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:159: DeleteAccount 100.0% +2025-07-23T19:39:15.4969624Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:170: DeleteStorage 100.0% +2025-07-23T19:39:15.4969859Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:186: Hash 60.0% +2025-07-23T19:39:15.4970199Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:195: hash 85.7% +2025-07-23T19:39:15.4970432Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:209: Commit 85.7% +2025-07-23T19:39:15.4970710Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:229: UpdateContractCode 100.0% +2025-07-23T19:39:15.4970939Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:234: GetKey 0.0% +2025-07-23T19:39:15.4971186Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:239: NodeIterator 0.0% +2025-07-23T19:39:15.4971418Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:244: Prove 0.0% +2025-07-23T19:39:15.4971648Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:248: Copy 57.1% +2025-07-23T19:39:15.4971911Z github.com/ava-labs/coreth/triedb/firewood/database.go:79: BackendConstructor 100.0% +2025-07-23T19:39:15.4972115Z github.com/ava-labs/coreth/triedb/firewood/database.go:97: New 66.7% +2025-07-23T19:39:15.4972354Z github.com/ava-labs/coreth/triedb/firewood/database.go:126: validatePath 50.0% +2025-07-23T19:39:15.4972574Z github.com/ava-labs/coreth/triedb/firewood/database.go:163: Scheme 100.0% +2025-07-23T19:39:15.4972805Z github.com/ava-labs/coreth/triedb/firewood/database.go:168: Initialized 66.7% +2025-07-23T19:39:15.4973027Z github.com/ava-labs/coreth/triedb/firewood/database.go:182: Update 93.8% +2025-07-23T19:39:15.4973247Z github.com/ava-labs/coreth/triedb/firewood/database.go:226: propose 82.6% +2025-07-23T19:39:15.4973463Z github.com/ava-labs/coreth/triedb/firewood/database.go:291: Commit 82.8% +2025-07-23T19:39:15.4973676Z github.com/ava-labs/coreth/triedb/firewood/database.go:353: Size 100.0% +2025-07-23T19:39:15.4973896Z github.com/ava-labs/coreth/triedb/firewood/database.go:358: Reference 0.0% +2025-07-23T19:39:15.4974129Z github.com/ava-labs/coreth/triedb/firewood/database.go:370: Dereference 0.0% +2025-07-23T19:39:15.4974333Z github.com/ava-labs/coreth/triedb/firewood/database.go:374: Cap 0.0% +2025-07-23T19:39:15.4974548Z github.com/ava-labs/coreth/triedb/firewood/database.go:378: Close 100.0% +2025-07-23T19:39:15.4974792Z github.com/ava-labs/coreth/triedb/firewood/database.go:392: createProposal 66.7% +2025-07-23T19:39:15.4975081Z github.com/ava-labs/coreth/triedb/firewood/database.go:432: cleanupCommittedProposal 100.0% +2025-07-23T19:39:15.4975310Z github.com/ava-labs/coreth/triedb/firewood/database.go:452: dereference 85.7% +2025-07-23T19:39:15.4975582Z github.com/ava-labs/coreth/triedb/firewood/database.go:471: removeProposalFromMap 100.0% +2025-07-23T19:39:15.4975798Z github.com/ava-labs/coreth/triedb/firewood/database.go:490: Reader 100.0% +2025-07-23T19:39:15.4976007Z github.com/ava-labs/coreth/triedb/firewood/database.go:505: Node 66.7% +2025-07-23T19:39:15.4976381Z github.com/ava-labs/coreth/triedb/firewood/database.go:519: getProposalHash 81.8% +2025-07-23T19:39:15.4976659Z github.com/ava-labs/coreth/triedb/firewood/database.go:563: arrangeKeyValuePairs 100.0% +2025-07-23T19:39:15.4976921Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:18: NewStorageTrie 100.0% +2025-07-23T19:39:15.4977154Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:28: Commit 100.0% +2025-07-23T19:39:15.4977375Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:33: Hash 100.0% +2025-07-23T19:39:15.4977590Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:39: Copy 0.0% +2025-07-23T19:39:15.4977849Z github.com/ava-labs/coreth/triedb/hashdb/database.go:119: BackendConstructor 100.0% +2025-07-23T19:39:15.4978076Z github.com/ava-labs/coreth/triedb/hashdb/database.go:181: forChildren 100.0% +2025-07-23T19:39:15.4978395Z github.com/ava-labs/coreth/triedb/hashdb/database.go:189: New 83.3% +2025-07-23T19:39:15.4978626Z github.com/ava-labs/coreth/triedb/hashdb/database.go:209: insert 100.0% +2025-07-23T19:39:15.4978942Z github.com/ava-labs/coreth/triedb/hashdb/database.go:239: node 89.3% +2025-07-23T19:39:15.4979167Z github.com/ava-labs/coreth/triedb/hashdb/database.go:295: Reference 100.0% +2025-07-23T19:39:15.4979388Z github.com/ava-labs/coreth/triedb/hashdb/database.go:303: reference 100.0% +2025-07-23T19:39:15.4979612Z github.com/ava-labs/coreth/triedb/hashdb/database.go:328: Dereference 88.2% +2025-07-23T19:39:15.4979840Z github.com/ava-labs/coreth/triedb/hashdb/database.go:357: dereference 100.0% +2025-07-23T19:39:15.4980080Z github.com/ava-labs/coreth/triedb/hashdb/database.go:410: writeFlushItems 71.4% +2025-07-23T19:39:15.4980286Z github.com/ava-labs/coreth/triedb/hashdb/database.go:438: Cap 0.0% +2025-07-23T19:39:15.4980495Z github.com/ava-labs/coreth/triedb/hashdb/database.go:518: Commit 87.9% +2025-07-23T19:39:15.4980705Z github.com/ava-labs/coreth/triedb/hashdb/database.go:576: commit 90.9% +2025-07-23T19:39:15.4980964Z github.com/ava-labs/coreth/triedb/hashdb/database.go:607: removeFromDirties 100.0% +2025-07-23T19:39:15.4981188Z github.com/ava-labs/coreth/triedb/hashdb/database.go:646: Initialized 100.0% +2025-07-23T19:39:15.4981399Z github.com/ava-labs/coreth/triedb/hashdb/database.go:654: Update 80.0% +2025-07-23T19:39:15.4981604Z github.com/ava-labs/coreth/triedb/hashdb/database.go:674: update 95.2% +2025-07-23T19:39:15.4981807Z github.com/ava-labs/coreth/triedb/hashdb/database.go:721: Size 100.0% +2025-07-23T19:39:15.4982017Z github.com/ava-labs/coreth/triedb/hashdb/database.go:733: Close 100.0% +2025-07-23T19:39:15.4982228Z github.com/ava-labs/coreth/triedb/hashdb/database.go:741: Scheme 100.0% +2025-07-23T19:39:15.4982437Z github.com/ava-labs/coreth/triedb/hashdb/database.go:747: Reader 100.0% +2025-07-23T19:39:15.4982646Z github.com/ava-labs/coreth/triedb/hashdb/database.go:761: Node 100.0% +2025-07-23T19:39:15.4982896Z github.com/ava-labs/coreth/triedb/pathdb/database.go:108: BackendConstructor 0.0% +2025-07-23T19:39:15.4983119Z github.com/ava-labs/coreth/triedb/pathdb/database.go:114: sanitize 60.0% +2025-07-23T19:39:15.4983319Z github.com/ava-labs/coreth/triedb/pathdb/database.go:163: New 100.0% +2025-07-23T19:39:15.4983528Z github.com/ava-labs/coreth/triedb/pathdb/database.go:231: Reader 100.0% +2025-07-23T19:39:15.4983742Z github.com/ava-labs/coreth/triedb/pathdb/database.go:246: Update 71.4% +2025-07-23T19:39:15.4983948Z github.com/ava-labs/coreth/triedb/pathdb/database.go:269: Commit 80.0% +2025-07-23T19:39:15.4984160Z github.com/ava-labs/coreth/triedb/pathdb/database.go:284: Disable 72.7% +2025-07-23T19:39:15.4984364Z github.com/ava-labs/coreth/triedb/pathdb/database.go:310: Enable 88.2% +2025-07-23T19:39:15.4984580Z github.com/ava-labs/coreth/triedb/pathdb/database.go:356: Recover 100.0% +2025-07-23T19:39:15.4984922Z github.com/ava-labs/coreth/triedb/pathdb/database.go:362: Recoverable 100.0% +2025-07-23T19:39:15.4985129Z github.com/ava-labs/coreth/triedb/pathdb/database.go:394: Close 100.0% +2025-07-23T19:39:15.4985329Z github.com/ava-labs/coreth/triedb/pathdb/database.go:416: Size 0.0% +2025-07-23T19:39:15.4985559Z github.com/ava-labs/coreth/triedb/pathdb/database.go:430: Initialized 0.0% +2025-07-23T19:39:15.4985787Z github.com/ava-labs/coreth/triedb/pathdb/database.go:445: SetBufferSize 0.0% +2025-07-23T19:39:15.4985993Z github.com/ava-labs/coreth/triedb/pathdb/database.go:458: Scheme 0.0% +2025-07-23T19:39:15.4986224Z github.com/ava-labs/coreth/triedb/pathdb/database.go:464: modifyAllowed 60.0% +2025-07-23T19:39:15.4986456Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:59: newDiffLayer 100.0% +2025-07-23T19:39:15.4986681Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:91: rootHash 100.0% +2025-07-23T19:39:15.4986900Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:96: stateID 100.0% +2025-07-23T19:39:15.4987217Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:102: parentLayer 100.0% +2025-07-23T19:39:15.4987420Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:112: node 82.4% +2025-07-23T19:39:15.4987627Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:146: Node 100.0% +2025-07-23T19:39:15.4987849Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:152: update 100.0% +2025-07-23T19:39:15.4988065Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:157: persist 77.8% +2025-07-23T19:39:15.4988503Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:179: diffToDisk 75.0% +2025-07-23T19:39:15.4988745Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:57: newDiskLayer 100.0% +2025-07-23T19:39:15.4988964Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:74: rootHash 100.0% +2025-07-23T19:39:15.4989185Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:79: stateID 100.0% +2025-07-23T19:39:15.4989423Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:85: parentLayer 100.0% +2025-07-23T19:39:15.4989640Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:91: isStale 100.0% +2025-07-23T19:39:15.4989860Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:99: markStale 80.0% +2025-07-23T19:39:15.4990065Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:111: Node 81.1% +2025-07-23T19:39:15.4990288Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:175: update 100.0% +2025-07-23T19:39:15.4990502Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:182: commit 85.7% +2025-07-23T19:39:15.4990709Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:252: revert 0.0% +2025-07-23T19:39:15.4990945Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:300: setBufferSize 0.0% +2025-07-23T19:39:15.4991146Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:311: size 0.0% +2025-07-23T19:39:15.4991373Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:322: resetCache 83.3% +2025-07-23T19:39:15.4991607Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:342: newHasher 100.0% +2025-07-23T19:39:15.4991813Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:346: hash 100.0% +2025-07-23T19:39:15.4992036Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:350: release 100.0% +2025-07-23T19:39:15.4992295Z github.com/ava-labs/coreth/triedb/pathdb/errors.go:67: newUnexpectedNodeError 0.0% +2025-07-23T19:39:15.4992505Z github.com/ava-labs/coreth/triedb/pathdb/history.go:158: encode 100.0% +2025-07-23T19:39:15.4992714Z github.com/ava-labs/coreth/triedb/pathdb/history.go:169: decode 100.0% +2025-07-23T19:39:15.4992917Z github.com/ava-labs/coreth/triedb/pathdb/history.go:185: encode 100.0% +2025-07-23T19:39:15.4993127Z github.com/ava-labs/coreth/triedb/pathdb/history.go:194: decode 100.0% +2025-07-23T19:39:15.4993454Z github.com/ava-labs/coreth/triedb/pathdb/history.go:210: encode 87.5% +2025-07-23T19:39:15.4993659Z github.com/ava-labs/coreth/triedb/pathdb/history.go:223: decode 62.5% +2025-07-23T19:39:15.4993879Z github.com/ava-labs/coreth/triedb/pathdb/history.go:263: newHistory 92.9% +2025-07-23T19:39:15.4994085Z github.com/ava-labs/coreth/triedb/pathdb/history.go:304: encode 100.0% +2025-07-23T19:39:15.4994287Z github.com/ava-labs/coreth/triedb/pathdb/history.go:365: verify 60.0% +2025-07-23T19:39:15.4994512Z github.com/ava-labs/coreth/triedb/pathdb/history.go:376: readAccount 75.0% +2025-07-23T19:39:15.4994733Z github.com/ava-labs/coreth/triedb/pathdb/history.go:409: readStorage 76.2% +2025-07-23T19:39:15.4994939Z github.com/ava-labs/coreth/triedb/pathdb/history.go:456: decode 85.0% +2025-07-23T19:39:15.4995157Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:85: loadJournal 77.3% +2025-07-23T19:39:15.4995379Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:127: loadLayers 100.0% +2025-07-23T19:39:15.4995713Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:149: loadDiskLayer 81.8% +2025-07-23T19:39:15.4995938Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:190: loadDiffLayer 83.3% +2025-07-23T19:39:15.4996151Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:257: journal 77.8% +2025-07-23T19:39:15.4996359Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:291: journal 80.0% +2025-07-23T19:39:15.4996567Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:350: Journal 76.0% +2025-07-23T19:39:15.4996803Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:52: newLayerTree 100.0% +2025-07-23T19:39:15.4997008Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:60: reset 100.0% +2025-07-23T19:39:15.4997205Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:73: get 100.0% +2025-07-23T19:39:15.4997417Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:82: forEach 0.0% +2025-07-23T19:39:15.4997620Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:92: len 100.0% +2025-07-23T19:39:15.4997827Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:100: add 81.8% +2025-07-23T19:39:15.4998026Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:125: cap 79.0% +2025-07-23T19:39:15.4998351Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:236: bottom 90.9% +2025-07-23T19:39:15.4998604Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:54: newNodeBuffer 100.0% +2025-07-23T19:39:15.4998809Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:73: node 72.7% +2025-07-23T19:39:15.4999031Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:94: commit 100.0% +2025-07-23T19:39:15.4999244Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:139: revert 0.0% +2025-07-23T19:39:15.4999470Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:189: updateSize 57.1% +2025-07-23T19:39:15.4999697Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:201: reset 100.0% +2025-07-23T19:39:15.4999908Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:209: empty 0.0% +2025-07-23T19:39:15.5000123Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:215: setSize 0.0% +2025-07-23T19:39:15.5000340Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:222: flush 88.2% +2025-07-23T19:39:15.5000571Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:254: writeNodes 100.0% +2025-07-23T19:39:15.5000803Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:283: cacheKey 100.0% +2025-07-23T19:39:15.5001034Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:55: newTestHasher 80.0% +2025-07-23T19:39:15.5001234Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:71: Get 0.0% +2025-07-23T19:39:15.5001453Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:81: Update 100.0% +2025-07-23T19:39:15.5001790Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:87: Delete 100.0% +2025-07-23T19:39:15.5002007Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:94: Commit 93.8% +2025-07-23T19:39:15.5002212Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:126: hash 100.0% +2025-07-23T19:39:15.5002451Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:152: newHashLoader 100.0% +2025-07-23T19:39:15.5002669Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:160: OpenTrie 0.0% +2025-07-23T19:39:15.5002907Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:165: OpenStorageTrie 0.0% +2025-07-23T19:39:15.5003105Z github.com/ava-labs/coreth/utils/address_range.go:20: Contains 0.0% +2025-07-23T19:39:15.5003347Z github.com/ava-labs/coreth/utils/bounded_workers.go:22: NewBoundedWorkers 0.0% +2025-07-23T19:39:15.5003564Z github.com/ava-labs/coreth/utils/bounded_workers.go:31: startWorker 0.0% +2025-07-23T19:39:15.5003772Z github.com/ava-labs/coreth/utils/bounded_workers.go:51: Execute 0.0% +2025-07-23T19:39:15.5003971Z github.com/ava-labs/coreth/utils/bounded_workers.go:75: Wait 0.0% +2025-07-23T19:39:15.5004257Z github.com/ava-labs/coreth/utils/bytes.go:9: IncrOne 100.0% +2025-07-23T19:39:15.5004467Z github.com/ava-labs/coreth/utils/bytes.go:23: HashSliceToBytes 100.0% +2025-07-23T19:39:15.5004669Z github.com/ava-labs/coreth/utils/bytes.go:33: BytesToHashSlice 100.0% +2025-07-23T19:39:15.5004897Z github.com/ava-labs/coreth/utils/metered_cache.go:37: NewMeteredCache 0.0% +2025-07-23T19:39:15.5005132Z github.com/ava-labs/coreth/utils/metered_cache.go:60: updateStatsIfNeeded 0.0% +2025-07-23T19:39:15.5005320Z github.com/ava-labs/coreth/utils/metered_cache.go:81: Del 0.0% +2025-07-23T19:39:15.5005505Z github.com/ava-labs/coreth/utils/metered_cache.go:86: Get 0.0% +2025-07-23T19:39:15.5005699Z github.com/ava-labs/coreth/utils/metered_cache.go:91: GetBig 0.0% +2025-07-23T19:39:15.5005882Z github.com/ava-labs/coreth/utils/metered_cache.go:96: Has 0.0% +2025-07-23T19:39:15.5006090Z github.com/ava-labs/coreth/utils/metered_cache.go:101: HasGet 0.0% +2025-07-23T19:39:15.5006281Z github.com/ava-labs/coreth/utils/metered_cache.go:106: Set 0.0% +2025-07-23T19:39:15.5006481Z github.com/ava-labs/coreth/utils/metered_cache.go:111: SetBig 0.0% +2025-07-23T19:39:15.5006662Z github.com/ava-labs/coreth/utils/numbers.go:11: NewUint64 0.0% +2025-07-23T19:39:15.5006867Z github.com/ava-labs/coreth/utils/numbers.go:13: TimeToNewUint64 0.0% +2025-07-23T19:39:15.5007064Z github.com/ava-labs/coreth/utils/numbers.go:18: Uint64ToTime 0.0% +2025-07-23T19:39:15.5007264Z github.com/ava-labs/coreth/utils/numbers.go:25: Uint64PtrEqual 0.0% +2025-07-23T19:39:15.5007456Z github.com/ava-labs/coreth/utils/numbers.go:34: BigEqual 100.0% +2025-07-23T19:39:15.5007662Z github.com/ava-labs/coreth/utils/numbers.go:43: BigEqualUint64 100.0% +2025-07-23T19:39:15.5007894Z github.com/ava-labs/coreth/utils/numbers.go:51: BigLessOrEqualUint64 100.0% +2025-07-23T19:39:15.5008207Z github.com/ava-labs/coreth/utils/rpc/handler.go:16: NewHandler 0.0% +2025-07-23T19:39:15.5008433Z github.com/ava-labs/coreth/utils/snow.go:17: NewTestValidatorState 0.0% +2025-07-23T19:39:15.5008635Z github.com/ava-labs/coreth/utils/utilstest/key.go:24: NewKey 100.0% +2025-07-23T19:39:15.5008837Z github.com/ava-labs/coreth/warp/backend.go:65: NewBackend 100.0% +2025-07-23T19:39:15.5009064Z github.com/ava-labs/coreth/warp/backend.go:88: initOffChainMessages 76.9% +2025-07-23T19:39:15.5009260Z github.com/ava-labs/coreth/warp/backend.go:113: AddMessage 71.4% +2025-07-23T19:39:15.5009484Z github.com/ava-labs/coreth/warp/backend.go:130: GetMessageSignature 100.0% +2025-07-23T19:39:15.5009698Z github.com/ava-labs/coreth/warp/backend.go:144: GetBlockSignature 73.3% +2025-07-23T19:39:15.5009891Z github.com/ava-labs/coreth/warp/backend.go:172: GetMessage 83.3% +2025-07-23T19:39:15.5010201Z github.com/ava-labs/coreth/warp/backend.go:194: signMessage 80.0% +2025-07-23T19:39:15.5010391Z github.com/ava-labs/coreth/warp/client.go:31: NewClient 0.0% +2025-07-23T19:39:15.5010575Z github.com/ava-labs/coreth/warp/client.go:41: GetMessage 0.0% +2025-07-23T19:39:15.5010786Z github.com/ava-labs/coreth/warp/client.go:49: GetMessageSignature 0.0% +2025-07-23T19:39:15.5011031Z github.com/ava-labs/coreth/warp/client.go:57: GetMessageAggregateSignature 0.0% +2025-07-23T19:39:15.5011236Z github.com/ava-labs/coreth/warp/client.go:65: GetBlockSignature 0.0% +2025-07-23T19:39:15.5011471Z github.com/ava-labs/coreth/warp/client.go:73: GetBlockAggregateSignature 0.0% +2025-07-23T19:39:15.5011662Z github.com/ava-labs/coreth/warp/service.go:32: NewAPI 0.0% +2025-07-23T19:39:15.5011847Z github.com/ava-labs/coreth/warp/service.go:42: GetMessage 0.0% +2025-07-23T19:39:15.5012070Z github.com/ava-labs/coreth/warp/service.go:51: GetMessageSignature 0.0% +2025-07-23T19:39:15.5012279Z github.com/ava-labs/coreth/warp/service.go:64: GetBlockSignature 0.0% +2025-07-23T19:39:15.5012676Z github.com/ava-labs/coreth/warp/service.go:73: GetMessageAggregateSignature 0.0% +2025-07-23T19:39:15.5012916Z github.com/ava-labs/coreth/warp/service.go:82: GetBlockAggregateSignature 0.0% +2025-07-23T19:39:15.5013130Z github.com/ava-labs/coreth/warp/service.go:95: aggregateSignatures 0.0% +2025-07-23T19:39:15.5013349Z github.com/ava-labs/coreth/warp/validators/state.go:31: NewState 100.0% +2025-07-23T19:39:15.5013587Z github.com/ava-labs/coreth/warp/validators/state.go:40: GetValidatorSet 100.0% +2025-07-23T19:39:15.5013790Z github.com/ava-labs/coreth/warp/verifier_backend.go:23: Verify 76.9% +2025-07-23T19:39:15.5014042Z github.com/ava-labs/coreth/warp/verifier_backend.go:58: verifyBlockMessage 100.0% +2025-07-23T19:39:15.5014271Z github.com/ava-labs/coreth/warp/verifier_stats.go:14: newVerifierStats 100.0% +2025-07-23T19:39:15.5014530Z github.com/ava-labs/coreth/warp/verifier_stats.go:21: IncBlockValidationFail 100.0% +2025-07-23T19:39:15.5014782Z github.com/ava-labs/coreth/warp/verifier_stats.go:25: IncMessageParseFail 100.0% +2025-07-23T19:39:15.5015039Z github.com/ava-labs/coreth/warp/warptest/block_client.go:23: GetAcceptedBlock 100.0% +2025-07-23T19:39:15.5015299Z github.com/ava-labs/coreth/warp/warptest/block_client.go:30: MakeBlockClient 100.0% +2025-07-23T19:39:15.5015400Z total: (statements) 60.0% diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/1_Set up job.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/1_Set up job.txt new file mode 100644 index 0000000000..3e5ef8cbfe --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/1_Set up job.txt @@ -0,0 +1,50 @@ +2025-07-23T19:28:54.5252718Z Current runner version: '2.326.0' +2025-07-23T19:28:54.5275784Z ##[group]Runner Image Provisioner +2025-07-23T19:28:54.5277158Z Hosted Compute Agent +2025-07-23T19:28:54.5277941Z Version: 20250711.363 +2025-07-23T19:28:54.5279041Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c +2025-07-23T19:28:54.5280207Z Build Date: 2025-07-11T20:04:25Z +2025-07-23T19:28:54.5281144Z ##[endgroup] +2025-07-23T19:28:54.5281890Z ##[group]Operating System +2025-07-23T19:28:54.5282815Z Ubuntu +2025-07-23T19:28:54.5283580Z 24.04.2 +2025-07-23T19:28:54.5284237Z LTS +2025-07-23T19:28:54.5285092Z ##[endgroup] +2025-07-23T19:28:54.5285860Z ##[group]Runner Image +2025-07-23T19:28:54.5286696Z Image: ubuntu-24.04 +2025-07-23T19:28:54.5287394Z Version: 20250720.1.0 +2025-07-23T19:28:54.5289378Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md +2025-07-23T19:28:54.5291732Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 +2025-07-23T19:28:54.5293798Z ##[endgroup] +2025-07-23T19:28:54.5297969Z ##[group]GITHUB_TOKEN Permissions +2025-07-23T19:28:54.5301354Z Actions: write +2025-07-23T19:28:54.5302135Z Attestations: write +2025-07-23T19:28:54.5303021Z Checks: write +2025-07-23T19:28:54.5303867Z Contents: write +2025-07-23T19:28:54.5304721Z Deployments: write +2025-07-23T19:28:54.5305545Z Discussions: write +2025-07-23T19:28:54.5306524Z Issues: write +2025-07-23T19:28:54.5307292Z Metadata: read +2025-07-23T19:28:54.5308404Z Models: read +2025-07-23T19:28:54.5309499Z Packages: write +2025-07-23T19:28:54.5310344Z Pages: write +2025-07-23T19:28:54.5311205Z PullRequests: write +2025-07-23T19:28:54.5312218Z RepositoryProjects: write +2025-07-23T19:28:54.5313210Z SecurityEvents: write +2025-07-23T19:28:54.5314209Z Statuses: write +2025-07-23T19:28:54.5315260Z ##[endgroup] +2025-07-23T19:28:54.5318077Z Secret source: Actions +2025-07-23T19:28:54.5319334Z Prepare workflow directory +2025-07-23T19:28:54.5782163Z Prepare all required actions +2025-07-23T19:28:54.5837087Z Getting action download info +2025-07-23T19:28:54.8949202Z ##[group]Download immutable action package 'actions/checkout@v4' +2025-07-23T19:28:54.8950356Z Version: 4.2.2 +2025-07-23T19:28:54.8951360Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 +2025-07-23T19:28:54.8952525Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 +2025-07-23T19:28:54.8953287Z ##[endgroup] +2025-07-23T19:28:54.9874276Z ##[group]Download immutable action package 'actions/setup-go@v5' +2025-07-23T19:28:54.9875043Z Version: 5.5.0 +2025-07-23T19:28:54.9875772Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb +2025-07-23T19:28:54.9876767Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 +2025-07-23T19:28:54.9877473Z ##[endgroup] +2025-07-23T19:28:55.3208614Z Complete job name: Golang Unit Tests (ubuntu-latest) diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/21_Post Run actions_setup-go@v5.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/21_Post Run actions_setup-go@v5.txt new file mode 100644 index 0000000000..41aca5e4b7 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/21_Post Run actions_setup-go@v5.txt @@ -0,0 +1,6 @@ +2025-07-23T19:39:15.5068973Z Post job cleanup. +2025-07-23T19:39:15.7636309Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:39:15.7681414Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:39:15.7711592Z /home/runner/go/pkg/mod +2025-07-23T19:39:15.7771663Z /home/runner/.cache/go-build +2025-07-23T19:39:15.7777369Z Cache hit occurred on the primary key setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d, not saving cache. diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/22_Post Run actions_checkout@v4.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/22_Post Run actions_checkout@v4.txt new file mode 100644 index 0000000000..e4696d744a --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/22_Post Run actions_checkout@v4.txt @@ -0,0 +1,12 @@ +2025-07-23T19:39:15.7894892Z Post job cleanup. +2025-07-23T19:39:15.8866287Z [command]/usr/bin/git version +2025-07-23T19:39:15.8901664Z git version 2.50.1 +2025-07-23T19:39:15.8944135Z Temporarily overriding HOME='/home/runner/work/_temp/101d9922-e92b-4888-8039-5f9f345795cc' before making global git config changes +2025-07-23T19:39:15.8945234Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:39:15.8956697Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:39:15.8990411Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:39:15.9021332Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:39:15.9258042Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:39:15.9278905Z http.https://github.com/.extraheader +2025-07-23T19:39:15.9291531Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +2025-07-23T19:39:15.9323375Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/23_Complete job.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/23_Complete job.txt new file mode 100644 index 0000000000..a79fb14e3a --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/23_Complete job.txt @@ -0,0 +1 @@ +2025-07-23T19:39:15.9663691Z Cleaning up orphan processes diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/2_Run actions_checkout@v4.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/2_Run actions_checkout@v4.txt new file mode 100644 index 0000000000..68979da8ca --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/2_Run actions_checkout@v4.txt @@ -0,0 +1,85 @@ +2025-07-23T19:28:55.3815735Z ##[group]Run actions/checkout@v4 +2025-07-23T19:28:55.3816640Z with: +2025-07-23T19:28:55.3817040Z repository: ava-labs/coreth +2025-07-23T19:28:55.3817679Z token: *** +2025-07-23T19:28:55.3818068Z ssh-strict: true +2025-07-23T19:28:55.3818633Z ssh-user: git +2025-07-23T19:28:55.3819110Z persist-credentials: true +2025-07-23T19:28:55.3819551Z clean: true +2025-07-23T19:28:55.3819942Z sparse-checkout-cone-mode: true +2025-07-23T19:28:55.3820405Z fetch-depth: 1 +2025-07-23T19:28:55.3820790Z fetch-tags: false +2025-07-23T19:28:55.3821186Z show-progress: true +2025-07-23T19:28:55.3821597Z lfs: false +2025-07-23T19:28:55.3821962Z submodules: false +2025-07-23T19:28:55.3822370Z set-safe-directory: true +2025-07-23T19:28:55.3823065Z ##[endgroup] +2025-07-23T19:28:55.4877654Z Syncing repository: ava-labs/coreth +2025-07-23T19:28:55.4879707Z ##[group]Getting Git version info +2025-07-23T19:28:55.4880403Z Working directory is '/home/runner/work/coreth/coreth' +2025-07-23T19:28:55.4881295Z [command]/usr/bin/git version +2025-07-23T19:28:55.4927676Z git version 2.50.1 +2025-07-23T19:28:55.4960792Z ##[endgroup] +2025-07-23T19:28:55.4971438Z Temporarily overriding HOME='/home/runner/work/_temp/befb0eca-fb3f-4a02-a4de-d1960c4d6cff' before making global git config changes +2025-07-23T19:28:55.4974300Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:28:55.4976292Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:28:55.5010645Z Deleting the contents of '/home/runner/work/coreth/coreth' +2025-07-23T19:28:55.5014187Z ##[group]Initializing the repository +2025-07-23T19:28:55.5017770Z [command]/usr/bin/git init /home/runner/work/coreth/coreth +2025-07-23T19:28:55.5077736Z hint: Using 'master' as the name for the initial branch. This default branch name +2025-07-23T19:28:55.5079549Z hint: is subject to change. To configure the initial branch name to use in all +2025-07-23T19:28:55.5081003Z hint: of your new repositories, which will suppress this warning, call: +2025-07-23T19:28:55.5082098Z hint: +2025-07-23T19:28:55.5082629Z hint: git config --global init.defaultBranch +2025-07-23T19:28:55.5083213Z hint: +2025-07-23T19:28:55.5083742Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2025-07-23T19:28:55.5084621Z hint: 'development'. The just-created branch can be renamed via this command: +2025-07-23T19:28:55.5085298Z hint: +2025-07-23T19:28:55.5085746Z hint: git branch -m +2025-07-23T19:28:55.5086451Z hint: +2025-07-23T19:28:55.5087133Z hint: Disable this message with "git config set advice.defaultBranchName false" +2025-07-23T19:28:55.5088051Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ +2025-07-23T19:28:55.5091680Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth +2025-07-23T19:28:55.5122123Z ##[endgroup] +2025-07-23T19:28:55.5123347Z ##[group]Disabling automatic garbage collection +2025-07-23T19:28:55.5125739Z [command]/usr/bin/git config --local gc.auto 0 +2025-07-23T19:28:55.5156323Z ##[endgroup] +2025-07-23T19:28:55.5157488Z ##[group]Setting up auth +2025-07-23T19:28:55.5163531Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:28:55.5194669Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:28:55.5476758Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:28:55.5508036Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:28:55.5751461Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2025-07-23T19:28:55.5797110Z ##[endgroup] +2025-07-23T19:28:55.5797932Z ##[group]Fetching the repository +2025-07-23T19:28:55.5807792Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge +2025-07-23T19:28:56.1034350Z From https://github.com/ava-labs/coreth +2025-07-23T19:28:56.1036189Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge +2025-07-23T19:28:56.1061344Z ##[endgroup] +2025-07-23T19:28:56.1062647Z ##[group]Determining the checkout info +2025-07-23T19:28:56.1064147Z ##[endgroup] +2025-07-23T19:28:56.1069022Z [command]/usr/bin/git sparse-checkout disable +2025-07-23T19:28:56.1107291Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig +2025-07-23T19:28:56.1136096Z ##[group]Checking out the ref +2025-07-23T19:28:56.1140603Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge +2025-07-23T19:28:56.2232869Z Note: switching to 'refs/remotes/pull/1065/merge'. +2025-07-23T19:28:56.2234317Z +2025-07-23T19:28:56.2235227Z You are in 'detached HEAD' state. You can look around, make experimental +2025-07-23T19:28:56.2237304Z changes and commit them, and you can discard any commits you make in this +2025-07-23T19:28:56.2239474Z state without impacting any branches by switching back to a branch. +2025-07-23T19:28:56.2240207Z +2025-07-23T19:28:56.2240754Z If you want to create a new branch to retain commits you create, you may +2025-07-23T19:28:56.2242093Z do so (now or later) by using -c with the switch command. Example: +2025-07-23T19:28:56.2243009Z +2025-07-23T19:28:56.2243317Z git switch -c +2025-07-23T19:28:56.2243762Z +2025-07-23T19:28:56.2244071Z Or undo this operation with: +2025-07-23T19:28:56.2244514Z +2025-07-23T19:28:56.2244775Z git switch - +2025-07-23T19:28:56.2245160Z +2025-07-23T19:28:56.2245733Z Turn off this advice by setting config variable advice.detachedHead to false +2025-07-23T19:28:56.2246726Z +2025-07-23T19:28:56.2247777Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 +2025-07-23T19:28:56.2251123Z ##[endgroup] +2025-07-23T19:28:56.2281486Z [command]/usr/bin/git log -1 --format=%H +2025-07-23T19:28:56.2303766Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/4_Run actions_setup-go@v5.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/4_Run actions_setup-go@v5.txt new file mode 100644 index 0000000000..30b757eef8 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/4_Run actions_setup-go@v5.txt @@ -0,0 +1,79 @@ +2025-07-23T19:28:56.2600373Z ##[group]Run actions/setup-go@v5 +2025-07-23T19:28:56.2601453Z with: +2025-07-23T19:28:56.2602260Z go-version-file: go.mod +2025-07-23T19:28:56.2603204Z check-latest: false +2025-07-23T19:28:56.2604360Z token: *** +2025-07-23T19:28:56.2605178Z cache: true +2025-07-23T19:28:56.2605988Z ##[endgroup] +2025-07-23T19:28:56.4204644Z Setup go version spec 1.23.9 +2025-07-23T19:28:56.4215866Z Attempting to download 1.23.9... +2025-07-23T19:28:56.7474880Z matching 1.23.9... +2025-07-23T19:28:56.7515870Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz +2025-07-23T19:28:57.2963206Z Extracting Go... +2025-07-23T19:28:57.3063009Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/2608b46e-5bc4-41b4-861d-ee2edbf1ffd4 -f /home/runner/work/_temp/f2203187-69d5-475d-85d1-f2452dbefc33 +2025-07-23T19:28:58.9503832Z Successfully extracted go to /home/runner/work/_temp/2608b46e-5bc4-41b4-861d-ee2edbf1ffd4 +2025-07-23T19:28:58.9504806Z Adding to the cache ... +2025-07-23T19:29:03.1923244Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 +2025-07-23T19:29:03.1924859Z Added go to the path +2025-07-23T19:29:03.1927769Z Successfully set up Go version 1.23.9 +2025-07-23T19:29:03.2123130Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:29:03.2149696Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:29:03.2177913Z /home/runner/go/pkg/mod +2025-07-23T19:29:03.2193229Z /home/runner/.cache/go-build +2025-07-23T19:29:03.3457865Z Cache hit for: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:04.3870268Z Received 192937984 of 743127682 (26.0%), 182.5 MBs/sec +2025-07-23T19:29:05.3882678Z Received 402653184 of 743127682 (54.2%), 191.0 MBs/sec +2025-07-23T19:29:06.3884906Z Received 658505728 of 743127682 (88.6%), 208.6 MBs/sec +2025-07-23T19:29:06.8440609Z Received 743127682 of 743127682 (100.0%), 204.5 MBs/sec +2025-07-23T19:29:06.8442564Z Cache Size: ~709 MB (743127682 B) +2025-07-23T19:29:06.8564798Z [command]/usr/bin/tar -xf /home/runner/work/_temp/ec881acd-ae8f-4528-804a-8272d685508f/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd +2025-07-23T19:29:14.1899842Z Cache restored successfully +2025-07-23T19:29:14.3280097Z Cache restored from key: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:14.3303694Z go version go1.23.9 linux/amd64 +2025-07-23T19:29:14.3304001Z +2025-07-23T19:29:14.3304395Z ##[group]go env +2025-07-23T19:29:14.4781870Z GO111MODULE='' +2025-07-23T19:29:14.4782305Z GOARCH='amd64' +2025-07-23T19:29:14.4782698Z GOBIN='' +2025-07-23T19:29:14.4783058Z GOCACHE='/home/runner/.cache/go-build' +2025-07-23T19:29:14.4783536Z GOENV='/home/runner/.config/go/env' +2025-07-23T19:29:14.4784529Z GOEXE='' +2025-07-23T19:29:14.4784805Z GOEXPERIMENT='' +2025-07-23T19:29:14.4785107Z GOFLAGS='' +2025-07-23T19:29:14.4785430Z GOHOSTARCH='amd64' +2025-07-23T19:29:14.4785744Z GOHOSTOS='linux' +2025-07-23T19:29:14.4786038Z GOINSECURE='' +2025-07-23T19:29:14.4786368Z GOMODCACHE='/home/runner/go/pkg/mod' +2025-07-23T19:29:14.4786760Z GONOPROXY='' +2025-07-23T19:29:14.4787043Z GONOSUMDB='' +2025-07-23T19:29:14.4787741Z GOOS='linux' +2025-07-23T19:29:14.4788051Z GOPATH='/home/runner/go' +2025-07-23T19:29:14.4788844Z GOPRIVATE='' +2025-07-23T19:29:14.4789374Z GOPROXY='https://proxy.golang.org,direct' +2025-07-23T19:29:14.4789867Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' +2025-07-23T19:29:14.4790305Z GOSUMDB='sum.golang.org' +2025-07-23T19:29:14.4790634Z GOTMPDIR='' +2025-07-23T19:29:14.4790911Z GOTOOLCHAIN='auto' +2025-07-23T19:29:14.4791404Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' +2025-07-23T19:29:14.4791935Z GOVCS='' +2025-07-23T19:29:14.4792212Z GOVERSION='go1.23.9' +2025-07-23T19:29:14.4792523Z GODEBUG='' +2025-07-23T19:29:14.4792803Z GOTELEMETRY='local' +2025-07-23T19:29:14.4793453Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' +2025-07-23T19:29:14.4794234Z GCCGO='gccgo' +2025-07-23T19:29:14.4794527Z GOAMD64='v1' +2025-07-23T19:29:14.4794799Z AR='ar' +2025-07-23T19:29:14.4795048Z CC='gcc' +2025-07-23T19:29:14.4795298Z CXX='g++' +2025-07-23T19:29:14.4795565Z CGO_ENABLED='1' +2025-07-23T19:29:14.4795921Z GOMOD='/home/runner/work/coreth/coreth/go.mod' +2025-07-23T19:29:14.4796329Z GOWORK='' +2025-07-23T19:29:14.4796627Z CGO_CFLAGS='-O2 -g' +2025-07-23T19:29:14.4796922Z CGO_CPPFLAGS='' +2025-07-23T19:29:14.4797227Z CGO_CXXFLAGS='-O2 -g' +2025-07-23T19:29:14.4797562Z CGO_FFLAGS='-O2 -g' +2025-07-23T19:29:14.4797873Z CGO_LDFLAGS='-O2 -g' +2025-07-23T19:29:14.4798399Z PKG_CONFIG='pkg-config' +2025-07-23T19:29:14.4799402Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build2181527828=/tmp/go-build -gno-record-gcc-switches' +2025-07-23T19:29:14.4800237Z +2025-07-23T19:29:14.4800683Z ##[endgroup] diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/6_Run go mod download.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/6_Run go mod download.txt new file mode 100644 index 0000000000..f8e576e7ed --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/6_Run go mod download.txt @@ -0,0 +1,4 @@ +2025-07-23T19:29:14.4963398Z ##[group]Run go mod download +2025-07-23T19:29:14.4963733Z go mod download +2025-07-23T19:29:14.4997118Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:14.4997389Z ##[endgroup] diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/7_Check generated codec files are up to date.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/7_Check generated codec files are up to date.txt new file mode 100644 index 0000000000..fb1f48ed68 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/7_Check generated codec files are up to date.txt @@ -0,0 +1,10 @@ +2025-07-23T19:29:14.5786094Z ##[group]Run ./scripts/run_task.sh check-generate-codec +2025-07-23T19:29:14.5786586Z ./scripts/run_task.sh check-generate-codec +2025-07-23T19:29:14.5815188Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:14.5815485Z ##[endgroup] +2025-07-23T19:29:15.5306158Z task: [generate-codec] grep -lr -E '^// Code generated by github\.com\/fjl\/gencodec\. DO NOT EDIT\.$' . | xargs -r rm +2025-07-23T19:29:15.5465310Z task: [generate-codec] go generate -run "github.com/fjl/gencodec" ./... +2025-07-23T19:29:22.5040173Z task: [check-clean-branch] git add --all +2025-07-23T19:29:22.5624793Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null +2025-07-23T19:29:22.5675800Z task: [check-clean-branch] git status --short +2025-07-23T19:29:22.5744410Z task: [check-clean-branch] git diff-index --quiet HEAD diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/8_Check generated mocks are up to date.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/8_Check generated mocks are up to date.txt new file mode 100644 index 0000000000..fed021c7f0 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/8_Check generated mocks are up to date.txt @@ -0,0 +1,10 @@ +2025-07-23T19:29:22.5877792Z ##[group]Run ./scripts/run_task.sh check-generate-mocks +2025-07-23T19:29:22.5878908Z ./scripts/run_task.sh check-generate-mocks +2025-07-23T19:29:22.5907651Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:22.5907895Z ##[endgroup] +2025-07-23T19:29:23.0133975Z task: [generate-mocks] grep -lr -E '^// Code generated by MockGen\. DO NOT EDIT\.$' . | xargs -r rm +2025-07-23T19:29:23.0278707Z task: [generate-mocks] go generate -run "go.uber.org/mock/mockgen" ./... +2025-07-23T19:29:29.6979927Z task: [check-clean-branch] git add --all +2025-07-23T19:29:29.7052575Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null +2025-07-23T19:29:29.7094199Z task: [check-clean-branch] git status --short +2025-07-23T19:29:29.7166303Z task: [check-clean-branch] git diff-index --quiet HEAD diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/9_Run ._scripts_run_task.sh build.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/9_Run ._scripts_run_task.sh build.txt new file mode 100644 index 0000000000..eb6f31f743 --- /dev/null +++ b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/9_Run ._scripts_run_task.sh build.txt @@ -0,0 +1,7 @@ +2025-07-23T19:29:29.7295401Z ##[group]Run ./scripts/run_task.sh build +2025-07-23T19:29:29.7295747Z ./scripts/run_task.sh build +2025-07-23T19:29:29.7324573Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:29.7324809Z ##[endgroup] +2025-07-23T19:29:30.1577556Z task: [build] ./scripts/build.sh +2025-07-23T19:29:30.1786073Z Using branch: d85ec03 +2025-07-23T19:29:30.1802849Z Building Coreth @ GitCommit: d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 at /home/runner/.avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy diff --git a/logs_42241282643/Lint/16_Post Run actions_checkout@v4.txt b/logs_42241282643/Lint/16_Post Run actions_checkout@v4.txt new file mode 100644 index 0000000000..b27a32d881 --- /dev/null +++ b/logs_42241282643/Lint/16_Post Run actions_checkout@v4.txt @@ -0,0 +1,12 @@ +2025-07-23T19:30:07.5175429Z Post job cleanup. +2025-07-23T19:30:07.6108842Z [command]/usr/bin/git version +2025-07-23T19:30:07.6143824Z git version 2.50.1 +2025-07-23T19:30:07.6190915Z Temporarily overriding HOME='/home/runner/work/_temp/9677b321-d7be-49b4-8b47-75fbc3723d01' before making global git config changes +2025-07-23T19:30:07.6192027Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:30:07.6195770Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:30:07.6228589Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:30:07.6259156Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:30:07.6478683Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:30:07.6497722Z http.https://github.com/.extraheader +2025-07-23T19:30:07.6509587Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +2025-07-23T19:30:07.6538379Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" diff --git a/logs_42241282643/Lint/17_Complete job.txt b/logs_42241282643/Lint/17_Complete job.txt new file mode 100644 index 0000000000..7af046ddd0 --- /dev/null +++ b/logs_42241282643/Lint/17_Complete job.txt @@ -0,0 +1 @@ +2025-07-23T19:30:07.6858647Z Cleaning up orphan processes diff --git a/logs_42241282643/Lint/1_Set up job.txt b/logs_42241282643/Lint/1_Set up job.txt new file mode 100644 index 0000000000..e1650c3187 --- /dev/null +++ b/logs_42241282643/Lint/1_Set up job.txt @@ -0,0 +1,50 @@ +2025-07-23T19:28:54.7285991Z Current runner version: '2.326.0' +2025-07-23T19:28:54.7311362Z ##[group]Runner Image Provisioner +2025-07-23T19:28:54.7312151Z Hosted Compute Agent +2025-07-23T19:28:54.7312771Z Version: 20250711.363 +2025-07-23T19:28:54.7313347Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c +2025-07-23T19:28:54.7314017Z Build Date: 2025-07-11T20:04:25Z +2025-07-23T19:28:54.7314644Z ##[endgroup] +2025-07-23T19:28:54.7315181Z ##[group]Operating System +2025-07-23T19:28:54.7315745Z Ubuntu +2025-07-23T19:28:54.7316172Z 24.04.2 +2025-07-23T19:28:54.7317069Z LTS +2025-07-23T19:28:54.7317524Z ##[endgroup] +2025-07-23T19:28:54.7318000Z ##[group]Runner Image +2025-07-23T19:28:54.7318632Z Image: ubuntu-24.04 +2025-07-23T19:28:54.7319140Z Version: 20250720.1.0 +2025-07-23T19:28:54.7320111Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md +2025-07-23T19:28:54.7321403Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 +2025-07-23T19:28:54.7322544Z ##[endgroup] +2025-07-23T19:28:54.7324919Z ##[group]GITHUB_TOKEN Permissions +2025-07-23T19:28:54.7327000Z Actions: write +2025-07-23T19:28:54.7327690Z Attestations: write +2025-07-23T19:28:54.7328184Z Checks: write +2025-07-23T19:28:54.7328654Z Contents: write +2025-07-23T19:28:54.7329258Z Deployments: write +2025-07-23T19:28:54.7329733Z Discussions: write +2025-07-23T19:28:54.7330209Z Issues: write +2025-07-23T19:28:54.7330720Z Metadata: read +2025-07-23T19:28:54.7331208Z Models: read +2025-07-23T19:28:54.7331687Z Packages: write +2025-07-23T19:28:54.7332299Z Pages: write +2025-07-23T19:28:54.7332757Z PullRequests: write +2025-07-23T19:28:54.7333272Z RepositoryProjects: write +2025-07-23T19:28:54.7333860Z SecurityEvents: write +2025-07-23T19:28:54.7334462Z Statuses: write +2025-07-23T19:28:54.7334946Z ##[endgroup] +2025-07-23T19:28:54.7337331Z Secret source: Actions +2025-07-23T19:28:54.7338102Z Prepare workflow directory +2025-07-23T19:28:54.7662641Z Prepare all required actions +2025-07-23T19:28:54.7700999Z Getting action download info +2025-07-23T19:28:55.1589622Z ##[group]Download immutable action package 'actions/checkout@v4' +2025-07-23T19:28:55.1590782Z Version: 4.2.2 +2025-07-23T19:28:55.1591877Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 +2025-07-23T19:28:55.1593195Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 +2025-07-23T19:28:55.1594010Z ##[endgroup] +2025-07-23T19:28:55.2611670Z ##[group]Download immutable action package 'actions/setup-go@v5' +2025-07-23T19:28:55.2612648Z Version: 5.5.0 +2025-07-23T19:28:55.2613451Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb +2025-07-23T19:28:55.2614414Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 +2025-07-23T19:28:55.2615240Z ##[endgroup] +2025-07-23T19:28:55.5639364Z Complete job name: Lint diff --git a/logs_42241282643/Lint/2_Run actions_checkout@v4.txt b/logs_42241282643/Lint/2_Run actions_checkout@v4.txt new file mode 100644 index 0000000000..e2d9da16fb --- /dev/null +++ b/logs_42241282643/Lint/2_Run actions_checkout@v4.txt @@ -0,0 +1,85 @@ +2025-07-23T19:28:55.6281588Z ##[group]Run actions/checkout@v4 +2025-07-23T19:28:55.6282496Z with: +2025-07-23T19:28:55.6282959Z repository: ava-labs/coreth +2025-07-23T19:28:55.6283648Z token: *** +2025-07-23T19:28:55.6284109Z ssh-strict: true +2025-07-23T19:28:55.6284542Z ssh-user: git +2025-07-23T19:28:55.6284978Z persist-credentials: true +2025-07-23T19:28:55.6285488Z clean: true +2025-07-23T19:28:55.6285935Z sparse-checkout-cone-mode: true +2025-07-23T19:28:55.6286677Z fetch-depth: 1 +2025-07-23T19:28:55.6287133Z fetch-tags: false +2025-07-23T19:28:55.6287574Z show-progress: true +2025-07-23T19:28:55.6288014Z lfs: false +2025-07-23T19:28:55.6288422Z submodules: false +2025-07-23T19:28:55.6288862Z set-safe-directory: true +2025-07-23T19:28:55.6289660Z ##[endgroup] +2025-07-23T19:28:55.7412106Z Syncing repository: ava-labs/coreth +2025-07-23T19:28:55.7415318Z ##[group]Getting Git version info +2025-07-23T19:28:55.7416863Z Working directory is '/home/runner/work/coreth/coreth' +2025-07-23T19:28:55.7418755Z [command]/usr/bin/git version +2025-07-23T19:28:55.7454440Z git version 2.50.1 +2025-07-23T19:28:55.7481452Z ##[endgroup] +2025-07-23T19:28:55.7498707Z Temporarily overriding HOME='/home/runner/work/_temp/7f4d34e6-b629-46b0-b54a-489047ff8aac' before making global git config changes +2025-07-23T19:28:55.7501874Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:28:55.7504301Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:28:55.7542599Z Deleting the contents of '/home/runner/work/coreth/coreth' +2025-07-23T19:28:55.7546548Z ##[group]Initializing the repository +2025-07-23T19:28:55.7550403Z [command]/usr/bin/git init /home/runner/work/coreth/coreth +2025-07-23T19:28:55.7668996Z hint: Using 'master' as the name for the initial branch. This default branch name +2025-07-23T19:28:55.7671013Z hint: is subject to change. To configure the initial branch name to use in all +2025-07-23T19:28:55.7672819Z hint: of your new repositories, which will suppress this warning, call: +2025-07-23T19:28:55.7674220Z hint: +2025-07-23T19:28:55.7675057Z hint: git config --global init.defaultBranch +2025-07-23T19:28:55.7675829Z hint: +2025-07-23T19:28:55.7676688Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2025-07-23T19:28:55.7677796Z hint: 'development'. The just-created branch can be renamed via this command: +2025-07-23T19:28:55.7678624Z hint: +2025-07-23T19:28:55.7679040Z hint: git branch -m +2025-07-23T19:28:55.7679521Z hint: +2025-07-23T19:28:55.7680135Z hint: Disable this message with "git config set advice.defaultBranchName false" +2025-07-23T19:28:55.7681203Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ +2025-07-23T19:28:55.7690564Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth +2025-07-23T19:28:55.7734069Z ##[endgroup] +2025-07-23T19:28:55.7735352Z ##[group]Disabling automatic garbage collection +2025-07-23T19:28:55.7738386Z [command]/usr/bin/git config --local gc.auto 0 +2025-07-23T19:28:55.7772627Z ##[endgroup] +2025-07-23T19:28:55.7773401Z ##[group]Setting up auth +2025-07-23T19:28:55.7784091Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:28:55.7824412Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:28:55.8134184Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:28:55.8163995Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:28:55.8401619Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2025-07-23T19:28:55.8442946Z ##[endgroup] +2025-07-23T19:28:55.8443834Z ##[group]Fetching the repository +2025-07-23T19:28:55.8451657Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge +2025-07-23T19:28:56.3796699Z From https://github.com/ava-labs/coreth +2025-07-23T19:28:56.3798611Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge +2025-07-23T19:28:56.3822544Z ##[endgroup] +2025-07-23T19:28:56.3824092Z ##[group]Determining the checkout info +2025-07-23T19:28:56.3825296Z ##[endgroup] +2025-07-23T19:28:56.3828909Z [command]/usr/bin/git sparse-checkout disable +2025-07-23T19:28:56.3866070Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig +2025-07-23T19:28:56.3893794Z ##[group]Checking out the ref +2025-07-23T19:28:56.3897107Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge +2025-07-23T19:28:56.5008648Z Note: switching to 'refs/remotes/pull/1065/merge'. +2025-07-23T19:28:56.5009567Z +2025-07-23T19:28:56.5010319Z You are in 'detached HEAD' state. You can look around, make experimental +2025-07-23T19:28:56.5011928Z changes and commit them, and you can discard any commits you make in this +2025-07-23T19:28:56.5014078Z state without impacting any branches by switching back to a branch. +2025-07-23T19:28:56.5015645Z +2025-07-23T19:28:56.5016923Z If you want to create a new branch to retain commits you create, you may +2025-07-23T19:28:56.5019171Z do so (now or later) by using -c with the switch command. Example: +2025-07-23T19:28:56.5020538Z +2025-07-23T19:28:56.5021217Z git switch -c +2025-07-23T19:28:56.5022287Z +2025-07-23T19:28:56.5022886Z Or undo this operation with: +2025-07-23T19:28:56.5023760Z +2025-07-23T19:28:56.5024212Z git switch - +2025-07-23T19:28:56.5024890Z +2025-07-23T19:28:56.5026017Z Turn off this advice by setting config variable advice.detachedHead to false +2025-07-23T19:28:56.5028031Z +2025-07-23T19:28:56.5029859Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 +2025-07-23T19:28:56.5035346Z ##[endgroup] +2025-07-23T19:28:56.5062830Z [command]/usr/bin/git log -1 --format=%H +2025-07-23T19:28:56.5085711Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 diff --git a/logs_42241282643/Lint/4_Run actions_setup-go@v5.txt b/logs_42241282643/Lint/4_Run actions_setup-go@v5.txt new file mode 100644 index 0000000000..b974aa5f2e --- /dev/null +++ b/logs_42241282643/Lint/4_Run actions_setup-go@v5.txt @@ -0,0 +1,79 @@ +2025-07-23T19:28:56.5403330Z ##[group]Run actions/setup-go@v5 +2025-07-23T19:28:56.5404503Z with: +2025-07-23T19:28:56.5405348Z go-version-file: go.mod +2025-07-23T19:28:56.5406527Z check-latest: false +2025-07-23T19:28:56.5407768Z token: *** +2025-07-23T19:28:56.5408617Z cache: true +2025-07-23T19:28:56.5409492Z ##[endgroup] +2025-07-23T19:28:56.7220072Z Setup go version spec 1.23.9 +2025-07-23T19:28:56.7236184Z Attempting to download 1.23.9... +2025-07-23T19:28:57.0090191Z matching 1.23.9... +2025-07-23T19:28:57.0130534Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz +2025-07-23T19:28:57.5881155Z Extracting Go... +2025-07-23T19:28:57.5979247Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/6a2ca727-1390-4aa5-890a-80b94a46f362 -f /home/runner/work/_temp/a8b54835-6227-4553-a3c0-533eed767c9f +2025-07-23T19:28:59.2811269Z Successfully extracted go to /home/runner/work/_temp/6a2ca727-1390-4aa5-890a-80b94a46f362 +2025-07-23T19:28:59.2812085Z Adding to the cache ... +2025-07-23T19:29:03.6671481Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 +2025-07-23T19:29:03.6675312Z Added go to the path +2025-07-23T19:29:03.6676181Z Successfully set up Go version 1.23.9 +2025-07-23T19:29:03.6869910Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:29:03.6900801Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:29:03.6937178Z /home/runner/go/pkg/mod +2025-07-23T19:29:03.6957916Z /home/runner/.cache/go-build +2025-07-23T19:29:03.7653106Z Cache hit for: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:04.8324754Z Received 176160768 of 743127682 (23.7%), 166.5 MBs/sec +2025-07-23T19:29:05.8404595Z Received 402653184 of 743127682 (54.2%), 190.4 MBs/sec +2025-07-23T19:29:06.8401603Z Received 641728512 of 743127682 (86.4%), 202.9 MBs/sec +2025-07-23T19:29:07.4514541Z Received 743127682 of 743127682 (100.0%), 195.3 MBs/sec +2025-07-23T19:29:07.4515464Z Cache Size: ~709 MB (743127682 B) +2025-07-23T19:29:07.4627042Z [command]/usr/bin/tar -xf /home/runner/work/_temp/d536043f-5a09-4e50-8110-ac5952001aec/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd +2025-07-23T19:29:14.3057506Z Cache restored successfully +2025-07-23T19:29:14.4415783Z Cache restored from key: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:14.4443228Z go version go1.23.9 linux/amd64 +2025-07-23T19:29:14.4443442Z +2025-07-23T19:29:14.4443713Z ##[group]go env +2025-07-23T19:29:14.6216538Z GO111MODULE='' +2025-07-23T19:29:14.6217279Z GOARCH='amd64' +2025-07-23T19:29:14.6218788Z GOBIN='' +2025-07-23T19:29:14.6219196Z GOCACHE='/home/runner/.cache/go-build' +2025-07-23T19:29:14.6219704Z GOENV='/home/runner/.config/go/env' +2025-07-23T19:29:14.6220125Z GOEXE='' +2025-07-23T19:29:14.6220799Z GOEXPERIMENT='' +2025-07-23T19:29:14.6221134Z GOFLAGS='' +2025-07-23T19:29:14.6221475Z GOHOSTARCH='amd64' +2025-07-23T19:29:14.6221819Z GOHOSTOS='linux' +2025-07-23T19:29:14.6222117Z GOINSECURE='' +2025-07-23T19:29:14.6222457Z GOMODCACHE='/home/runner/go/pkg/mod' +2025-07-23T19:29:14.6222852Z GONOPROXY='' +2025-07-23T19:29:14.6223137Z GONOSUMDB='' +2025-07-23T19:29:14.6223414Z GOOS='linux' +2025-07-23T19:29:14.6223714Z GOPATH='/home/runner/go' +2025-07-23T19:29:14.6224059Z GOPRIVATE='' +2025-07-23T19:29:14.6224634Z GOPROXY='https://proxy.golang.org,direct' +2025-07-23T19:29:14.6225139Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' +2025-07-23T19:29:14.6225579Z GOSUMDB='sum.golang.org' +2025-07-23T19:29:14.6225912Z GOTMPDIR='' +2025-07-23T19:29:14.6226205Z GOTOOLCHAIN='auto' +2025-07-23T19:29:14.6226906Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' +2025-07-23T19:29:14.6227445Z GOVCS='' +2025-07-23T19:29:14.6227733Z GOVERSION='go1.23.9' +2025-07-23T19:29:14.6228052Z GODEBUG='' +2025-07-23T19:29:14.6228345Z GOTELEMETRY='local' +2025-07-23T19:29:14.6228750Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' +2025-07-23T19:29:14.6229490Z GCCGO='gccgo' +2025-07-23T19:29:14.6229772Z GOAMD64='v1' +2025-07-23T19:29:14.6230051Z AR='ar' +2025-07-23T19:29:14.6230341Z CC='gcc' +2025-07-23T19:29:14.6230605Z CXX='g++' +2025-07-23T19:29:14.6230874Z CGO_ENABLED='1' +2025-07-23T19:29:14.6231255Z GOMOD='/home/runner/work/coreth/coreth/go.mod' +2025-07-23T19:29:14.6231685Z GOWORK='' +2025-07-23T19:29:14.6231968Z CGO_CFLAGS='-O2 -g' +2025-07-23T19:29:14.6232268Z CGO_CPPFLAGS='' +2025-07-23T19:29:14.6232588Z CGO_CXXFLAGS='-O2 -g' +2025-07-23T19:29:14.6232897Z CGO_FFLAGS='-O2 -g' +2025-07-23T19:29:14.6233207Z CGO_LDFLAGS='-O2 -g' +2025-07-23T19:29:14.6233547Z PKG_CONFIG='pkg-config' +2025-07-23T19:29:14.6234544Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build2870971817=/tmp/go-build -gno-record-gcc-switches' +2025-07-23T19:29:14.6235423Z +2025-07-23T19:29:14.6235852Z ##[endgroup] diff --git a/logs_42241282643/Lint/6_Run all lint checks.txt b/logs_42241282643/Lint/6_Run all lint checks.txt new file mode 100644 index 0000000000..a395ca1300 --- /dev/null +++ b/logs_42241282643/Lint/6_Run all lint checks.txt @@ -0,0 +1,51 @@ +2025-07-23T19:29:14.6408264Z ##[group]Run ./scripts/run_task.sh lint-all-ci +2025-07-23T19:29:14.6408675Z ./scripts/run_task.sh lint-all-ci +2025-07-23T19:29:14.6442885Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:14.6443211Z ##[endgroup] +2025-07-23T19:29:15.4094647Z task: [lint] ./scripts/lint.sh +2025-07-23T19:29:15.4166893Z Running 'golangci_lint license_header require_error_is_no_funcs_as_params single_import interface_compliance_nil require_no_error_inline_func import_testing_only_in_tests' at: Wed Jul 23 19:29:15 UTC 2025 +2025-07-23T19:29:15.4192512Z find: warning: -path ./ will not match anything because it ends with /. +2025-07-23T19:29:15.4494196Z START: 'golangci_lint' at Wed Jul 23 19:29:15 UTC 2025 +2025-07-23T19:30:03.0594111Z SUCCESS: 'golangci_lint' completed at Wed Jul 23 19:30:03 UTC 2025 +2025-07-23T19:30:03.0614513Z START: 'license_header' at Wed Jul 23 19:30:03 UTC 2025 +2025-07-23T19:30:03.0618951Z Running license tool on upstream files with header for upstream... +2025-07-23T19:30:03.6289756Z 1 file does not have the correct license header: +2025-07-23T19:30:03.6290273Z ./core/state/database_test.go +2025-07-23T19:30:03.6294300Z exit status 1 +2025-07-23T19:30:03.6316094Z Running license tool on remaining files with default header... +2025-07-23T19:30:04.0109864Z SUCCESS: 'license_header' completed at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0131126Z START: 'require_error_is_no_funcs_as_params' at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0237529Z SUCCESS: 'require_error_is_no_funcs_as_params' completed at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0259074Z START: 'single_import' at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0358249Z SUCCESS: 'single_import' completed at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0378159Z START: 'interface_compliance_nil' at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0514146Z SUCCESS: 'interface_compliance_nil' completed at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0533738Z START: 'require_no_error_inline_func' at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0651810Z SUCCESS: 'require_no_error_inline_func' completed at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.0671742Z START: 'import_testing_only_in_tests' at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.1045679Z SUCCESS: 'import_testing_only_in_tests' completed at Wed Jul 23 19:30:04 UTC 2025 +2025-07-23T19:30:04.1046562Z ALL SUCCESS! +2025-07-23T19:30:04.1091049Z task: [actionlint] ./scripts/actionlint.sh +2025-07-23T19:30:07.1235336Z Checking use of scripts/* in GitHub Actions workflows... +2025-07-23T19:30:07.1334227Z task: [shellcheck] ./scripts/shellcheck.sh +2025-07-23T19:30:07.4978675Z +2025-07-23T19:30:07.4979258Z In /home/runner/work/coreth/coreth/scripts/build_test.sh line 59: +2025-07-23T19:30:07.4980332Z test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" $PACKAGES 2>&1) || command_status=$? +2025-07-23T19:30:07.4985705Z ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting. +2025-07-23T19:30:07.4986094Z +2025-07-23T19:30:07.4986191Z Did you mean: +2025-07-23T19:30:07.4987315Z test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" "$PACKAGES" 2>&1) || command_status=$? +2025-07-23T19:30:07.4987916Z +2025-07-23T19:30:07.4987921Z +2025-07-23T19:30:07.4988135Z In /home/runner/work/coreth/coreth/scripts/build_test.sh line 112: +2025-07-23T19:30:07.4988885Z go test -run "^${test_name}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" $package +2025-07-23T19:30:07.4991775Z ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. +2025-07-23T19:30:07.4992092Z +2025-07-23T19:30:07.4992188Z Did you mean: +2025-07-23T19:30:07.4992770Z go test -run "^${test_name}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" "$package" +2025-07-23T19:30:07.4993448Z +2025-07-23T19:30:07.4993545Z For more information: +2025-07-23T19:30:07.4993974Z https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ... +2025-07-23T19:30:07.5008101Z task: Failed to run task "lint-all-ci": exit status 123 +2025-07-23T19:30:07.5017709Z exit status 201 +2025-07-23T19:30:07.5072538Z ##[error]Process completed with exit code 1. diff --git a/logs_42241282643/e2e warp tests/13_Post Set up Go.txt b/logs_42241282643/e2e warp tests/13_Post Set up Go.txt new file mode 100644 index 0000000000..94a89babf3 --- /dev/null +++ b/logs_42241282643/e2e warp tests/13_Post Set up Go.txt @@ -0,0 +1,6 @@ +2025-07-23T19:32:33.7147722Z Post job cleanup. +2025-07-23T19:32:33.8724120Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:32:33.8761822Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:32:33.8786505Z /home/runner/go/pkg/mod +2025-07-23T19:32:33.8814333Z /home/runner/.cache/go-build +2025-07-23T19:32:33.8819136Z Cache hit occurred on the primary key setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d, not saving cache. diff --git a/logs_42241282643/e2e warp tests/14_Post Git checkout.txt b/logs_42241282643/e2e warp tests/14_Post Git checkout.txt new file mode 100644 index 0000000000..d8b058c824 --- /dev/null +++ b/logs_42241282643/e2e warp tests/14_Post Git checkout.txt @@ -0,0 +1,12 @@ +2025-07-23T19:32:33.8917750Z Post job cleanup. +2025-07-23T19:32:33.9863783Z [command]/usr/bin/git version +2025-07-23T19:32:33.9904630Z git version 2.50.1 +2025-07-23T19:32:33.9956179Z Temporarily overriding HOME='/home/runner/work/_temp/9550696a-0377-4acd-a5e5-706ab8435ca6' before making global git config changes +2025-07-23T19:32:33.9957565Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:32:33.9961688Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:32:33.9997514Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:32:34.0030298Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:32:34.0251713Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:32:34.0272154Z http.https://github.com/.extraheader +2025-07-23T19:32:34.0285234Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +2025-07-23T19:32:34.0314555Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" diff --git a/logs_42241282643/e2e warp tests/15_Complete job.txt b/logs_42241282643/e2e warp tests/15_Complete job.txt new file mode 100644 index 0000000000..00fa9a4f5c --- /dev/null +++ b/logs_42241282643/e2e warp tests/15_Complete job.txt @@ -0,0 +1 @@ +2025-07-23T19:32:34.0637198Z Cleaning up orphan processes diff --git a/logs_42241282643/e2e warp tests/1_Set up job.txt b/logs_42241282643/e2e warp tests/1_Set up job.txt new file mode 100644 index 0000000000..85fc823e0c --- /dev/null +++ b/logs_42241282643/e2e warp tests/1_Set up job.txt @@ -0,0 +1,58 @@ +2025-07-23T19:28:54.2428861Z Current runner version: '2.326.0' +2025-07-23T19:28:54.2462549Z ##[group]Runner Image Provisioner +2025-07-23T19:28:54.2463842Z Hosted Compute Agent +2025-07-23T19:28:54.2464899Z Version: 20250711.363 +2025-07-23T19:28:54.2466036Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c +2025-07-23T19:28:54.2467194Z Build Date: 2025-07-11T20:04:25Z +2025-07-23T19:28:54.2468229Z ##[endgroup] +2025-07-23T19:28:54.2469248Z ##[group]Operating System +2025-07-23T19:28:54.2470188Z Ubuntu +2025-07-23T19:28:54.2470902Z 24.04.2 +2025-07-23T19:28:54.2471738Z LTS +2025-07-23T19:28:54.2472465Z ##[endgroup] +2025-07-23T19:28:54.2473218Z ##[group]Runner Image +2025-07-23T19:28:54.2474590Z Image: ubuntu-24.04 +2025-07-23T19:28:54.2475460Z Version: 20250720.1.0 +2025-07-23T19:28:54.2477273Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md +2025-07-23T19:28:54.2479934Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 +2025-07-23T19:28:54.2482088Z ##[endgroup] +2025-07-23T19:28:54.2486565Z ##[group]GITHUB_TOKEN Permissions +2025-07-23T19:28:54.2489418Z Actions: write +2025-07-23T19:28:54.2490295Z Attestations: write +2025-07-23T19:28:54.2491115Z Checks: write +2025-07-23T19:28:54.2491974Z Contents: write +2025-07-23T19:28:54.2492835Z Deployments: write +2025-07-23T19:28:54.2493608Z Discussions: write +2025-07-23T19:28:54.2494764Z Issues: write +2025-07-23T19:28:54.2495614Z Metadata: read +2025-07-23T19:28:54.2496468Z Models: read +2025-07-23T19:28:54.2497474Z Packages: write +2025-07-23T19:28:54.2498305Z Pages: write +2025-07-23T19:28:54.2499091Z PullRequests: write +2025-07-23T19:28:54.2500039Z RepositoryProjects: write +2025-07-23T19:28:54.2501047Z SecurityEvents: write +2025-07-23T19:28:54.2502250Z Statuses: write +2025-07-23T19:28:54.2503144Z ##[endgroup] +2025-07-23T19:28:54.2506224Z Secret source: Actions +2025-07-23T19:28:54.2507549Z Prepare workflow directory +2025-07-23T19:28:54.2978798Z Prepare all required actions +2025-07-23T19:28:54.3034751Z Getting action download info +2025-07-23T19:28:54.5607945Z ##[group]Download immutable action package 'actions/checkout@v4' +2025-07-23T19:28:54.5609498Z Version: 4.2.2 +2025-07-23T19:28:54.5611139Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 +2025-07-23T19:28:54.5612910Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 +2025-07-23T19:28:54.5614365Z ##[endgroup] +2025-07-23T19:28:54.6722201Z ##[group]Download immutable action package 'actions/setup-go@v5' +2025-07-23T19:28:54.6723476Z Version: 5.5.0 +2025-07-23T19:28:54.6725091Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb +2025-07-23T19:28:54.6726835Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 +2025-07-23T19:28:54.6728056Z ##[endgroup] +2025-07-23T19:28:54.8999162Z Download action repository 'ava-labs/avalanchego@66ce7a7701db0c4b370f97b339478d5b5ebe919a' (SHA:66ce7a7701db0c4b370f97b339478d5b5ebe919a) +2025-07-23T19:28:55.9950173Z Getting action download info +2025-07-23T19:28:56.1465866Z Download action repository 'cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f' (SHA:02a151ada4993995686f9ed4f1be7cfbb229e56f) +2025-07-23T19:28:56.3752828Z ##[group]Download immutable action package 'actions/upload-artifact@v4' +2025-07-23T19:28:56.3753296Z Version: 4.6.2 +2025-07-23T19:28:56.3753675Z Digest: sha256:290722aa3281d5caf23d0acdc3dbeb3424786a1a01a9cc97e72f147225e37c38 +2025-07-23T19:28:56.3754419Z Source commit SHA: ea165f8d65b6e75b540449e92b4886f43607fa02 +2025-07-23T19:28:56.3754774Z ##[endgroup] +2025-07-23T19:28:56.5236741Z Complete job name: e2e warp tests diff --git a/logs_42241282643/e2e warp tests/2_Git checkout.txt b/logs_42241282643/e2e warp tests/2_Git checkout.txt new file mode 100644 index 0000000000..fd7d2ea24a --- /dev/null +++ b/logs_42241282643/e2e warp tests/2_Git checkout.txt @@ -0,0 +1,789 @@ +2025-07-23T19:28:56.6013092Z ##[group]Run actions/checkout@v4 +2025-07-23T19:28:56.6014228Z with: +2025-07-23T19:28:56.6014635Z fetch-depth: 0 +2025-07-23T19:28:56.6015267Z repository: ava-labs/coreth +2025-07-23T19:28:56.6016087Z token: *** +2025-07-23T19:28:56.6016478Z ssh-strict: true +2025-07-23T19:28:56.6016889Z ssh-user: git +2025-07-23T19:28:56.6017299Z persist-credentials: true +2025-07-23T19:28:56.6017744Z clean: true +2025-07-23T19:28:56.6018705Z sparse-checkout-cone-mode: true +2025-07-23T19:28:56.6019341Z fetch-tags: false +2025-07-23T19:28:56.6019900Z show-progress: true +2025-07-23T19:28:56.6020308Z lfs: false +2025-07-23T19:28:56.6020679Z submodules: false +2025-07-23T19:28:56.6021082Z set-safe-directory: true +2025-07-23T19:28:56.6022081Z ##[endgroup] +2025-07-23T19:28:56.7186785Z Syncing repository: ava-labs/coreth +2025-07-23T19:28:56.7188126Z ##[group]Getting Git version info +2025-07-23T19:28:56.7188550Z Working directory is '/home/runner/work/coreth/coreth' +2025-07-23T19:28:56.7189105Z [command]/usr/bin/git version +2025-07-23T19:28:56.7905562Z git version 2.50.1 +2025-07-23T19:28:56.7930726Z ##[endgroup] +2025-07-23T19:28:56.7943770Z Temporarily overriding HOME='/home/runner/work/_temp/d15459b7-157c-4910-bfea-980f7312e17a' before making global git config changes +2025-07-23T19:28:56.7945031Z Adding repository directory to the temporary git global config as a safe directory +2025-07-23T19:28:56.7949021Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth +2025-07-23T19:28:56.7982279Z Deleting the contents of '/home/runner/work/coreth/coreth' +2025-07-23T19:28:56.7986125Z ##[group]Initializing the repository +2025-07-23T19:28:56.7990009Z [command]/usr/bin/git init /home/runner/work/coreth/coreth +2025-07-23T19:28:56.8052087Z hint: Using 'master' as the name for the initial branch. This default branch name +2025-07-23T19:28:56.8053137Z hint: is subject to change. To configure the initial branch name to use in all +2025-07-23T19:28:56.8054287Z hint: of your new repositories, which will suppress this warning, call: +2025-07-23T19:28:56.8055073Z hint: +2025-07-23T19:28:56.8055616Z hint: git config --global init.defaultBranch +2025-07-23T19:28:56.8056266Z hint: +2025-07-23T19:28:56.8056923Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2025-07-23T19:28:56.8057914Z hint: 'development'. The just-created branch can be renamed via this command: +2025-07-23T19:28:56.8058714Z hint: +2025-07-23T19:28:56.8059192Z hint: git branch -m +2025-07-23T19:28:56.8059687Z hint: +2025-07-23T19:28:56.8060359Z hint: Disable this message with "git config set advice.defaultBranchName false" +2025-07-23T19:28:56.8061347Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ +2025-07-23T19:28:56.8066319Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth +2025-07-23T19:28:56.8096692Z ##[endgroup] +2025-07-23T19:28:56.8097461Z ##[group]Disabling automatic garbage collection +2025-07-23T19:28:56.8101559Z [command]/usr/bin/git config --local gc.auto 0 +2025-07-23T19:28:56.8129610Z ##[endgroup] +2025-07-23T19:28:56.8130380Z ##[group]Setting up auth +2025-07-23T19:28:56.8137249Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2025-07-23T19:28:56.8166717Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2025-07-23T19:28:56.8473030Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2025-07-23T19:28:56.8502236Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2025-07-23T19:28:56.8718220Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2025-07-23T19:28:56.8759119Z ##[endgroup] +2025-07-23T19:28:56.8759843Z ##[group]Fetching the repository +2025-07-23T19:28:56.8768238Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge +2025-07-23T19:29:08.4723831Z From https://github.com/ava-labs/coreth +2025-07-23T19:29:08.4726670Z * [new branch] 001-align-trie -> origin/001-align-trie +2025-07-23T19:29:08.4730116Z * [new branch] AddContexts -> origin/AddContexts +2025-07-23T19:29:08.4731142Z * [new branch] RodrigoVillar/initial-gas-target -> origin/RodrigoVillar/initial-gas-target +2025-07-23T19:29:08.4732478Z * [new branch] aaronbuchwald/detailed-import-tx-chainid-errs -> origin/aaronbuchwald/detailed-import-tx-chainid-errs +2025-07-23T19:29:08.4733809Z * [new branch] aaronbuchwald/prefetch-state -> origin/aaronbuchwald/prefetch-state +2025-07-23T19:29:08.4736932Z * [new branch] aaronbuchwald/prefetch-state-single-step-build -> origin/aaronbuchwald/prefetch-state-single-step-build +2025-07-23T19:29:08.4738225Z * [new branch] add-chaindb -> origin/add-chaindb +2025-07-23T19:29:08.4744585Z * [new branch] add-contracts-gitignore -> origin/add-contracts-gitignore +2025-07-23T19:29:08.4745675Z * [new branch] add-sig-get-metrics -> origin/add-sig-get-metrics +2025-07-23T19:29:08.4746641Z * [new branch] alarso16/firewood-bootstrap -> origin/alarso16/firewood-bootstrap +2025-07-23T19:29:08.4747732Z * [new branch] alarso16/firewood-error-apis -> origin/alarso16/firewood-error-apis +2025-07-23T19:29:08.4748888Z * [new branch] alarso16/firewood-integration-rv -> origin/alarso16/firewood-integration-rv +2025-07-23T19:29:08.4750040Z * [new branch] alarso16/libevm-upstream-sync -> origin/alarso16/libevm-upstream-sync +2025-07-23T19:29:08.4751766Z * [new branch] alarso16/parallelize-syncers -> origin/alarso16/parallelize-syncers +2025-07-23T19:29:08.4754221Z * [new branch] alarso16/show-flake-lines -> origin/alarso16/show-flake-lines +2025-07-23T19:29:08.4756222Z * [new branch] alarso16/state-syncer-interface -> origin/alarso16/state-syncer-interface +2025-07-23T19:29:08.4758180Z * [new branch] alarso16/static-snapsync -> origin/alarso16/static-snapsync +2025-07-23T19:29:08.4760461Z * [new branch] alt-fix-snapshot -> origin/alt-fix-snapshot +2025-07-23T19:29:08.4762659Z * [new branch] ap1-committed-gas -> origin/ap1-committed-gas +2025-07-23T19:29:08.4766261Z * [new branch] arr4n/abstract-customtypes-def-vs-access -> origin/arr4n/abstract-customtypes-def-vs-access +2025-07-23T19:29:08.4767975Z * [new branch] arr4n/libevm-clean-history -> origin/arr4n/libevm-clean-history +2025-07-23T19:29:08.4770306Z * [new branch] arr4n/libevm-dirty-history -> origin/arr4n/libevm-dirty-history +2025-07-23T19:29:08.4772266Z * [new branch] arr4n/libevm-upstream-types -> origin/arr4n/libevm-upstream-types +2025-07-23T19:29:08.4774820Z * [new branch] arr4n/metric-registration-order -> origin/arr4n/metric-registration-order +2025-07-23T19:29:08.4776839Z * [new branch] arr4n/min-gas-cap-sketch -> origin/arr4n/min-gas-cap-sketch +2025-07-23T19:29:08.4779091Z * [new branch] arr4n/test-only-build-tags -> origin/arr4n/test-only-build-tags +2025-07-23T19:29:08.4781098Z * [new branch] ast-drawing -> origin/ast-drawing +2025-07-23T19:29:08.4783311Z * [new branch] atomic-000 -> origin/atomic-000 +2025-07-23T19:29:08.4785982Z * [new branch] atomic-mempool-refactor -> origin/atomic-mempool-refactor +2025-07-23T19:29:08.4787692Z * [new branch] atomic-refactor -> origin/atomic-refactor +2025-07-23T19:29:08.4790049Z * [new branch] atomic-refactor-ctd -> origin/atomic-refactor-ctd +2025-07-23T19:29:08.4792234Z * [new branch] atomic-tx-verifier -> origin/atomic-tx-verifier +2025-07-23T19:29:08.4794306Z * [new branch] atomic-vm-api -> origin/atomic-vm-api +2025-07-23T19:29:08.4796790Z * [new branch] atomic-vm-backend -> origin/atomic-vm-backend +2025-07-23T19:29:08.4798814Z * [new branch] atomic-vm-finalize -> origin/atomic-vm-finalize +2025-07-23T19:29:08.4800797Z * [new branch] atomic-vm-mempool-gossip -> origin/atomic-vm-mempool-gossip +2025-07-23T19:29:08.4803261Z * [new branch] atomic-vm-pkg -> origin/atomic-vm-pkg +2025-07-23T19:29:08.4805669Z * [new branch] atomic-vm-refactor -> origin/atomic-vm-refactor +2025-07-23T19:29:08.4807908Z * [new branch] atomic-vm-refactor-finalize -> origin/atomic-vm-refactor-finalize +2025-07-23T19:29:08.4810052Z * [new branch] atomic-vm-syncers -> origin/atomic-vm-syncers +2025-07-23T19:29:08.4812214Z * [new branch] atomic-vm-wrapper -> origin/atomic-vm-wrapper +2025-07-23T19:29:08.4814692Z * [new branch] auto-pr-subnet-evm -> origin/auto-pr-subnet-evm +2025-07-23T19:29:08.4817042Z * [new branch] auto-pr-subnet-evm-test -> origin/auto-pr-subnet-evm-test +2025-07-23T19:29:08.4819061Z * [new branch] auto-sync-subnet-evm -> origin/auto-sync-subnet-evm +2025-07-23T19:29:08.4821548Z * [new branch] avoid-modifying-global-var-tests -> origin/avoid-modifying-global-var-tests +2025-07-23T19:29:08.4823589Z * [new branch] avoid-overriding-commit-interval -> origin/avoid-overriding-commit-interval +2025-07-23T19:29:08.4826003Z * [new branch] backfill_blocks -> origin/backfill_blocks +2025-07-23T19:29:08.4828345Z * [new branch] backfill_blocks_0 -> origin/backfill_blocks_0 +2025-07-23T19:29:08.4830378Z * [new branch] bench-nft -> origin/bench-nft +2025-07-23T19:29:08.4832795Z * [new branch] better-copy -> origin/better-copy +2025-07-23T19:29:08.4835084Z * [new branch] block-builder -> origin/block-builder +2025-07-23T19:29:08.4837774Z * [new branch] bloom-filter-gossip -> origin/bloom-filter-gossip +2025-07-23T19:29:08.4839892Z * [new branch] buf-modules -> origin/buf-modules +2025-07-23T19:29:08.4842350Z * [new branch] bump-avalanchego-master -> origin/bump-avalanchego-master +2025-07-23T19:29:08.4844350Z * [new branch] bump-compat-avago -> origin/bump-compat-avago +2025-07-23T19:29:08.4846771Z * [new branch] bump-pebble -> origin/bump-pebble +2025-07-23T19:29:08.4848975Z * [new branch] cancun-genesis -> origin/cancun-genesis +2025-07-23T19:29:08.4852021Z * [new branch] ceyonur/move-config -> origin/ceyonur/move-config +2025-07-23T19:29:08.4854423Z * [new branch] check-processing-blocks-for-atomic-txs -> origin/check-processing-blocks-for-atomic-txs +2025-07-23T19:29:08.4856420Z * [new branch] cleanup-wip -> origin/cleanup-wip +2025-07-23T19:29:08.4858857Z * [new branch] concrete-vm -> origin/concrete-vm +2025-07-23T19:29:08.4861094Z * [new branch] config-cleanup -> origin/config-cleanup +2025-07-23T19:29:08.4863327Z * [new branch] coreth-000 -> origin/coreth-000 +2025-07-23T19:29:08.4865946Z * [new branch] coreth-001 -> origin/coreth-001 +2025-07-23T19:29:08.4868119Z * [new branch] coreth-001-minimal -> origin/coreth-001-minimal +2025-07-23T19:29:08.4870612Z * [new branch] coreth-001-minimal-triedb-refcount -> origin/coreth-001-minimal-triedb-refcount +2025-07-23T19:29:08.4872815Z * [new branch] coreth-001-minimal-triedb-refcount-statedb-mod -> origin/coreth-001-minimal-triedb-refcount-statedb-mod +2025-07-23T19:29:08.4875119Z * [new branch] coreth-001-shared-statedb-triedb-backends -> origin/coreth-001-shared-statedb-triedb-backends +2025-07-23T19:29:08.4877135Z * [new branch] coreth-002 -> origin/coreth-002 +2025-07-23T19:29:08.4879721Z * [new branch] coreth-002-pathdb-mem -> origin/coreth-002-pathdb-mem +2025-07-23T19:29:08.4881921Z * [new branch] coreth-002-pathdb-mem-atomic -> origin/coreth-002-pathdb-mem-atomic +2025-07-23T19:29:08.4884096Z * [new branch] coreth-block-flex -> origin/coreth-block-flex +2025-07-23T19:29:08.4886776Z * [new branch] db-stats -> origin/db-stats +2025-07-23T19:29:08.4889157Z * [new branch] deferred-verification -> origin/deferred-verification +2025-07-23T19:29:08.4893827Z * [new branch] dependabot/github_actions/github/codeql-action-3.29.2 -> origin/dependabot/github_actions/github/codeql-action-3.29.2 +2025-07-23T19:29:08.4898126Z * [new branch] dependabot/go_modules/github.com/cespare/cp-1.1.1 -> origin/dependabot/go_modules/github.com/cespare/cp-1.1.1 +2025-07-23T19:29:08.4901309Z * [new branch] dependabot/go_modules/github.com/hashicorp/golang-lru-1.0.2 -> origin/dependabot/go_modules/github.com/hashicorp/golang-lru-1.0.2 +2025-07-23T19:29:08.4904654Z * [new branch] dependabot/go_modules/github.com/spf13/cast-1.9.2 -> origin/dependabot/go_modules/github.com/spf13/cast-1.9.2 +2025-07-23T19:29:08.4908511Z * [new branch] dependabot/go_modules/golang.org/x/crypto-0.40.0 -> origin/dependabot/go_modules/golang.org/x/crypto-0.40.0 +2025-07-23T19:29:08.4910434Z * [new branch] dependabot/go_modules/golang.org/x/oauth2-0.27.0 -> origin/dependabot/go_modules/golang.org/x/oauth2-0.27.0 +2025-07-23T19:29:08.4912785Z * [new branch] dependabot/go_modules/golang.org/x/tools-0.35.0 -> origin/dependabot/go_modules/golang.org/x/tools-0.35.0 +2025-07-23T19:29:08.4915016Z * [new branch] disable-gossip -> origin/disable-gossip +2025-07-23T19:29:08.4917648Z * [new branch] disable-new-gossip -> origin/disable-new-gossip +2025-07-23T19:29:08.4919989Z * [new branch] downgrade-bad-block-logs -> origin/downgrade-bad-block-logs +2025-07-23T19:29:08.4922307Z * [new branch] downgrade-logs -> origin/downgrade-logs +2025-07-23T19:29:08.4924978Z * [new branch] dynamic_state_sync_readiness_fix -> origin/dynamic_state_sync_readiness_fix +2025-07-23T19:29:08.4927679Z * [new branch] eth-call-depth-metrics -> origin/eth-call-depth-metrics +2025-07-23T19:29:08.4929921Z * [new branch] fastsync-all -> origin/fastsync-all +2025-07-23T19:29:08.4932329Z * [new branch] find-flake-add-logs -> origin/find-flake-add-logs +2025-07-23T19:29:08.4934845Z * [new branch] fix-derive-logs -> origin/fix-derive-logs +2025-07-23T19:29:08.4937262Z * [new branch] fix-error -> origin/fix-error +2025-07-23T19:29:08.4939774Z * [new branch] fix-setting-eth-upgrades-trace -> origin/fix-setting-eth-upgrades-trace +2025-07-23T19:29:08.4942027Z * [new branch] fix-upstream-licenses -> origin/fix-upstream-licenses +2025-07-23T19:29:08.4944462Z * [new branch] fork-refactor -> origin/fork-refactor +2025-07-23T19:29:08.4947063Z * [new branch] fupgrade-libevm-sync-upstream -> origin/fupgrade-libevm-sync-upstream +2025-07-23T19:29:08.4949070Z * [new branch] generic-cache -> origin/generic-cache +2025-07-23T19:29:08.4951564Z * [new branch] generic-set -> origin/generic-set +2025-07-23T19:29:08.4953777Z * [new branch] generic-sort -> origin/generic-sort +2025-07-23T19:29:08.4956447Z * [new branch] genericNodeID -> origin/genericNodeID +2025-07-23T19:29:08.4959563Z * [new branch] get-preference -> origin/get-preference +2025-07-23T19:29:08.4961321Z * [new branch] geth-compile-v1.14.7 -> origin/geth-compile-v1.14.7 +2025-07-23T19:29:08.4964177Z * [new branch] geth-migration -> origin/geth-migration +2025-07-23T19:29:08.4966562Z * [new branch] geth-v1.12.2-compile -> origin/geth-v1.12.2-compile +2025-07-23T19:29:08.4971014Z * [new branch] gh-readonly-queue/master/pr-1064-8fa714aa59bcec3f418c1cc8312789585993b1b1 -> origin/gh-readonly-queue/master/pr-1064-8fa714aa59bcec3f418c1cc8312789585993b1b1 +2025-07-23T19:29:08.4972849Z * [new branch] hyper-dep-with-commit-to-db -> origin/hyper-dep-with-commit-to-db +2025-07-23T19:29:08.4975260Z * [new branch] inspector -> origin/inspector +2025-07-23T19:29:08.4977735Z * [new branch] integration-testing -> origin/integration-testing +2025-07-23T19:29:08.4980084Z * [new branch] legacy-sdk -> origin/legacy-sdk +2025-07-23T19:29:08.4982575Z * [new branch] libevm -> origin/libevm +2025-07-23T19:29:08.4985142Z * [new branch] libevm-atomic-refactor -> origin/libevm-atomic-refactor +2025-07-23T19:29:08.4987742Z * [new branch] libevm-atomic-refactor-2 -> origin/libevm-atomic-refactor-2 +2025-07-23T19:29:08.4990222Z * [new branch] libevm-avalanchegov.1.12 -> origin/libevm-avalanchegov.1.12 +2025-07-23T19:29:08.4992725Z * [new branch] libevm-move-atomic-txs -> origin/libevm-move-atomic-txs +2025-07-23T19:29:08.4995242Z * [new branch] libevm-upstream-sync -> origin/libevm-upstream-sync +2025-07-23T19:29:08.4997583Z * [new branch] linter -> origin/linter +2025-07-23T19:29:08.5000190Z * [new branch] maru-update-ci -> origin/maru-update-ci +2025-07-23T19:29:08.5002470Z * [new branch] marun-bump-avalanchego -> origin/marun-bump-avalanchego +2025-07-23T19:29:08.5005062Z * [new branch] master -> origin/master +2025-07-23T19:29:08.5008208Z * [new branch] migrate-geth-v1.10.23 -> origin/migrate-geth-v1.10.23 +2025-07-23T19:29:08.5010702Z * [new branch] migrate-warp-precompile-warp-api-enabled -> origin/migrate-warp-precompile-warp-api-enabled +2025-07-23T19:29:08.5012264Z * [new branch] miner-upstream -> origin/miner-upstream +2025-07-23T19:29:08.5014622Z * [new branch] minimize-gossip-delays -> origin/minimize-gossip-delays +2025-07-23T19:29:08.5016635Z * [new branch] move-atomic-txs-config -> origin/move-atomic-txs-config +2025-07-23T19:29:08.5018515Z * [new branch] nativeassetcall-ut -> origin/nativeassetcall-ut +2025-07-23T19:29:08.5020785Z * [new branch] newevmblockcontext-refactor -> origin/newevmblockcontext-refactor +2025-07-23T19:29:08.5022580Z * [new branch] nit-network-upgrades -> origin/nit-network-upgrades +2025-07-23T19:29:08.5024731Z * [new branch] opentelemetry -> origin/opentelemetry +2025-07-23T19:29:08.5026846Z * [new branch] p2p-error -> origin/p2p-error +2025-07-23T19:29:08.5029052Z * [new branch] p2p-sampling -> origin/p2p-sampling +2025-07-23T19:29:08.5031216Z * [new branch] p2p-sender-ref -> origin/p2p-sender-ref +2025-07-23T19:29:08.5033452Z * [new branch] parallel-copy-based-prefetcher -> origin/parallel-copy-based-prefetcher +2025-07-23T19:29:08.5035758Z * [new branch] parallel-copy-based-prefetcher-no-abort -> origin/parallel-copy-based-prefetcher-no-abort +2025-07-23T19:29:08.5037506Z * [new branch] params-extra-refactor-0 -> origin/params-extra-refactor-0 +2025-07-23T19:29:08.5039632Z * [new branch] params-separation-attempt -> origin/params-separation-attempt +2025-07-23T19:29:08.5041473Z * [new branch] prefetch-state -> origin/prefetch-state +2025-07-23T19:29:08.5043748Z * [new branch] prefetch-tries-conservative -> origin/prefetch-tries-conservative +2025-07-23T19:29:08.5046204Z * [new branch] prefetch-tries-more-aggr -> origin/prefetch-tries-more-aggr +2025-07-23T19:29:08.5048593Z * [new branch] prestate-lookup-account-storage-update -> origin/prestate-lookup-account-storage-update +2025-07-23T19:29:08.5050516Z * [new branch] push-gossip-feature-branch -> origin/push-gossip-feature-branch +2025-07-23T19:29:08.5052444Z * [new branch] push-gossip-feature-branch-foobar -> origin/push-gossip-feature-branch-foobar +2025-07-23T19:29:08.5055976Z * [new branch] qdm12/acp176/min-target-per-second-var -> origin/qdm12/acp176/min-target-per-second-var +2025-07-23T19:29:08.5057689Z * [new branch] qdm12/blockchain-upstream -> origin/qdm12/blockchain-upstream +2025-07-23T19:29:08.5059331Z * [new branch] qdm12/miner-upstream -> origin/qdm12/miner-upstream +2025-07-23T19:29:08.5062613Z * [new branch] qdm12/params/add-missing-checkprecompilescompatible -> origin/qdm12/params/add-missing-checkprecompilescompatible +2025-07-23T19:29:08.5064191Z * [new branch] qdm12/upstream-params -> origin/qdm12/upstream-params +2025-07-23T19:29:08.5066841Z * [new branch] race-tests-ci-master -> origin/race-tests-ci-master +2025-07-23T19:29:08.5069031Z * [new branch] rebase-v1.12.0 -> origin/rebase-v1.12.0 +2025-07-23T19:29:08.5071392Z * [new branch] reduce-coreth-state-usage -> origin/reduce-coreth-state-usage +2025-07-23T19:29:08.5073627Z * [new branch] refactor-ap1-checks -> origin/refactor-ap1-checks +2025-07-23T19:29:08.5076413Z * [new branch] refactor-block-verification -> origin/refactor-block-verification +2025-07-23T19:29:08.5078538Z * [new branch] refactor-gas -> origin/refactor-gas +2025-07-23T19:29:08.5080814Z * [new branch] refactor-proposer-vm -> origin/refactor-proposer-vm +2025-07-23T19:29:08.5083035Z * [new branch] refactor-statedb -> origin/refactor-statedb +2025-07-23T19:29:08.5085576Z * [new branch] refactor-vm-conflicts -> origin/refactor-vm-conflicts +2025-07-23T19:29:08.5087955Z * [new branch] register-p256v-precompile -> origin/register-p256v-precompile +2025-07-23T19:29:08.5090254Z * [new branch] remove-async-accept -> origin/remove-async-accept +2025-07-23T19:29:08.5092515Z * [new branch] remove-atomic -> origin/remove-atomic +2025-07-23T19:29:08.5095034Z * [new branch] remove-cb58 -> origin/remove-cb58 +2025-07-23T19:29:08.5097405Z * [new branch] remove-db-manager -> origin/remove-db-manager +2025-07-23T19:29:08.5099787Z * [new branch] remove-fork-compat-check -> origin/remove-fork-compat-check +2025-07-23T19:29:08.5102064Z * [new branch] remove-gasSelfdestructAP1 -> origin/remove-gasSelfdestructAP1 +2025-07-23T19:29:08.5104384Z * [new branch] remove-old-rules -> origin/remove-old-rules +2025-07-23T19:29:08.5107042Z * [new branch] remove-semaphore -> origin/remove-semaphore +2025-07-23T19:29:08.5109502Z * [new branch] remove-set-preference-warn-log -> origin/remove-set-preference-warn-log +2025-07-23T19:29:08.5112441Z * [new branch] remove-unused-interface-definition -> origin/remove-unused-interface-definition +2025-07-23T19:29:08.5114424Z * [new branch] rename-chains -> origin/rename-chains +2025-07-23T19:29:08.5116728Z * [new branch] rename-choices -> origin/rename-choices +2025-07-23T19:29:08.5118812Z * [new branch] rename-constants -> origin/rename-constants +2025-07-23T19:29:08.5122102Z * [new branch] repair-atomic-trie-root-height-map-measure-synchronous -> origin/repair-atomic-trie-root-height-map-measure-synchronous +2025-07-23T19:29:08.5123576Z * [new branch] repro-522 -> origin/repro-522 +2025-07-23T19:29:08.5126186Z * [new branch] repro-bloom -> origin/repro-bloom +2025-07-23T19:29:08.5128594Z * [new branch] reprocess-atomics -> origin/reprocess-atomics +2025-07-23T19:29:08.5130948Z * [new branch] reprocess-block-refactor-callexpert -> origin/reprocess-block-refactor-callexpert +2025-07-23T19:29:08.5132913Z * [new branch] reprocess-blocks -> origin/reprocess-blocks +2025-07-23T19:29:08.5135660Z * [new branch] reprocess-blocks-ap1-committed-gas -> origin/reprocess-blocks-ap1-committed-gas +2025-07-23T19:29:08.5137743Z * [new branch] reprocess-blocks-refactor-gas -> origin/reprocess-blocks-refactor-gas +2025-07-23T19:29:08.5139885Z * [new branch] reprocess-blocks-use-libevm -> origin/reprocess-blocks-use-libevm +2025-07-23T19:29:08.5142169Z * [new branch] reprocess-blocks-use-libevm-trace -> origin/reprocess-blocks-use-libevm-trace +2025-07-23T19:29:08.5144364Z * [new branch] reprocess-checkroots -> origin/reprocess-checkroots +2025-07-23T19:29:08.5146724Z * [new branch] return-vm-type -> origin/return-vm-type +2025-07-23T19:29:08.5149118Z * [new branch] rewrite-test-retry-logic -> origin/rewrite-test-retry-logic +2025-07-23T19:29:08.5152269Z * [new branch] rkuris/firewood-bootstrap-suggestions -> origin/rkuris/firewood-bootstrap-suggestions +2025-07-23T19:29:08.5154584Z * [new branch] sae-poc -> origin/sae-poc +2025-07-23T19:29:08.5157164Z * [new branch] script-reprocess -> origin/script-reprocess +2025-07-23T19:29:08.5159577Z * [new branch] script-reprocess-x -> origin/script-reprocess-x +2025-07-23T19:29:08.5161827Z * [new branch] script-reprocess-y -> origin/script-reprocess-y +2025-07-23T19:29:08.5164441Z * [new branch] sdk-push-gossip-interfaces -> origin/sdk-push-gossip-interfaces +2025-07-23T19:29:08.5166977Z * [new branch] seperate-atomic-pkg-base -> origin/seperate-atomic-pkg-base +2025-07-23T19:29:08.5169328Z * [new branch] simulations -> origin/simulations +2025-07-23T19:29:08.5171793Z * [new branch] snapserve-frequent-commits -> origin/snapserve-frequent-commits +2025-07-23T19:29:08.5174496Z * [new branch] snyk-fix-2b08d3d44bb91dc52bab15989aa0a542 -> origin/snyk-fix-2b08d3d44bb91dc52bab15989aa0a542 +2025-07-23T19:29:08.5176816Z * [new branch] subnet-evm-000 -> origin/subnet-evm-000 +2025-07-23T19:29:08.5179328Z * [new branch] subscribeToEvents -> origin/subscribeToEvents +2025-07-23T19:29:08.5181841Z * [new branch] support-multiple-code-hashes -> origin/support-multiple-code-hashes +2025-07-23T19:29:08.5184387Z * [new branch] sync-enabled-updateFrequency -> origin/sync-enabled-updateFrequency +2025-07-23T19:29:08.5186863Z * [new branch] sync-hacks -> origin/sync-hacks +2025-07-23T19:29:08.5189347Z * [new branch] sync-subnet-evm-branch -> origin/sync-subnet-evm-branch +2025-07-23T19:29:08.5191802Z * [new branch] sync-subnet-evm-ccff8037 -> origin/sync-subnet-evm-ccff8037 +2025-07-23T19:29:08.5194290Z * [new branch] test-atomic-syncer -> origin/test-atomic-syncer +2025-07-23T19:29:08.5196949Z * [new branch] test-atomic-syncer-with-cmd -> origin/test-atomic-syncer-with-cmd +2025-07-23T19:29:08.5199279Z * [new branch] test-avago -> origin/test-avago +2025-07-23T19:29:08.5201672Z * [new branch] test-cleanup -> origin/test-cleanup +2025-07-23T19:29:08.5204510Z * [new branch] toEngine -> origin/toEngine +2025-07-23T19:29:08.5207086Z * [new branch] trie-benchmarks -> origin/trie-benchmarks +2025-07-23T19:29:08.5209540Z * [new branch] trie-prefetcher-alt -> origin/trie-prefetcher-alt +2025-07-23T19:29:08.5212501Z * [new branch] tsachi/acp118-nodeid -> origin/tsachi/acp118-nodeid +2025-07-23T19:29:08.5214879Z * [new branch] tsachi/gossip-mempool -> origin/tsachi/gossip-mempool +2025-07-23T19:29:08.5217267Z * [new branch] tx-lookup-skip -> origin/tx-lookup-skip +2025-07-23T19:29:08.5219789Z * [new branch] unexport-visitor -> origin/unexport-visitor +2025-07-23T19:29:08.5222218Z * [new branch] update-avago -> origin/update-avago +2025-07-23T19:29:08.5224857Z * [new branch] update-avago-telepoter -> origin/update-avago-telepoter +2025-07-23T19:29:08.5227205Z * [new branch] update-comment -> origin/update-comment +2025-07-23T19:29:08.5229743Z * [new branch] updated-version -> origin/updated-version +2025-07-23T19:29:08.5232193Z * [new branch] upgrade2 -> origin/upgrade2 +2025-07-23T19:29:08.5234867Z * [new branch] use-libevm-extra -> origin/use-libevm-extra +2025-07-23T19:29:08.5237329Z * [new branch] use-libevm-snapshot-blockhashes -> origin/use-libevm-snapshot-blockhashes +2025-07-23T19:29:08.5239904Z * [new branch] use-libevm-statedb-backends-optional-params -> origin/use-libevm-statedb-backends-optional-params +2025-07-23T19:29:08.5242158Z * [new branch] use-libevm-statedb-statedb -> origin/use-libevm-statedb-statedb +2025-07-23T19:29:08.5244889Z * [new branch] use-libevm-statedb-statedb-blockchain -> origin/use-libevm-statedb-statedb-blockchain +2025-07-23T19:29:08.5247350Z * [new branch] use-upstream-log -> origin/use-upstream-log +2025-07-23T19:29:08.5249801Z * [new branch] v0.11.7-release-notes -> origin/v0.11.7-release-notes +2025-07-23T19:29:08.5252393Z * [new branch] validator-gossiper -> origin/validator-gossiper +2025-07-23T19:29:08.5255014Z * [new branch] vm-integration-fixture -> origin/vm-integration-fixture +2025-07-23T19:29:08.5257557Z * [new branch] warp-test-test -> origin/warp-test-test +2025-07-23T19:29:08.5259982Z * [new branch] wip-branch -> origin/wip-branch +2025-07-23T19:29:08.5262484Z * [new branch] xxx-bench-storagetrie -> origin/xxx-bench-storagetrie +2025-07-23T19:29:08.5265031Z * [new branch] xxx-bench-storagetrie-2 -> origin/xxx-bench-storagetrie-2 +2025-07-23T19:29:08.5267977Z * [new branch] yacovm/subscriptions -> origin/yacovm/subscriptions +2025-07-23T19:29:08.5269691Z * [new tag] app-error-0.12.9 -> app-error-0.12.9 +2025-07-23T19:29:08.5271475Z * [new tag] remove-crosschain-coreth -> remove-crosschain-coreth +2025-07-23T19:29:08.5272731Z * [new tag] update-id -> update-id +2025-07-23T19:29:08.5274222Z * [new tag] v0.1.0 -> v0.1.0 +2025-07-23T19:29:08.5275477Z * [new tag] v0.10.0 -> v0.10.0 +2025-07-23T19:29:08.5276821Z * [new tag] v0.10.0-rc.0 -> v0.10.0-rc.0 +2025-07-23T19:29:08.5278354Z * [new tag] v0.10.0-rc.1 -> v0.10.0-rc.1 +2025-07-23T19:29:08.5279632Z * [new tag] v0.10.0-rc.2 -> v0.10.0-rc.2 +2025-07-23T19:29:08.5280945Z * [new tag] v0.10.1 -> v0.10.1 +2025-07-23T19:29:08.5282305Z * [new tag] v0.10.1-patch -> v0.10.1-patch +2025-07-23T19:29:08.5283708Z * [new tag] v0.10.1-rc.0 -> v0.10.1-rc.0 +2025-07-23T19:29:08.5285326Z * [new tag] v0.10.1-rc.0-patch -> v0.10.1-rc.0-patch +2025-07-23T19:29:08.5287015Z * [new tag] v0.11.0 -> v0.11.0 +2025-07-23T19:29:08.5288220Z * [new tag] v0.11.0-rc.0 -> v0.11.0-rc.0 +2025-07-23T19:29:08.5289608Z * [new tag] v0.11.0-rc.0-patch -> v0.11.0-rc.0-patch +2025-07-23T19:29:08.5290968Z * [new tag] v0.11.0-rc.1 -> v0.11.0-rc.1 +2025-07-23T19:29:08.5292387Z * [new tag] v0.11.0-rc.2 -> v0.11.0-rc.2 +2025-07-23T19:29:08.5293727Z * [new tag] v0.11.0-rc.3 -> v0.11.0-rc.3 +2025-07-23T19:29:08.5295728Z * [new tag] v0.11.0-rc.4 -> v0.11.0-rc.4 +2025-07-23T19:29:08.5296967Z * [new tag] v0.11.0-rc.4-patch -> v0.11.0-rc.4-patch +2025-07-23T19:29:08.5298270Z * [new tag] v0.11.1 -> v0.11.1 +2025-07-23T19:29:08.5299636Z * [new tag] v0.11.1-rc.0 -> v0.11.1-rc.0 +2025-07-23T19:29:08.5301019Z * [new tag] v0.11.1-rc.1 -> v0.11.1-rc.1 +2025-07-23T19:29:08.5302406Z * [new tag] v0.11.1-rc.2 -> v0.11.1-rc.2 +2025-07-23T19:29:08.5304064Z * [new tag] v0.11.1-rc.3 -> v0.11.1-rc.3 +2025-07-23T19:29:08.5305482Z * [new tag] v0.11.1-rc.4 -> v0.11.1-rc.4 +2025-07-23T19:29:08.5306685Z * [new tag] v0.11.1-rc.5 -> v0.11.1-rc.5 +2025-07-23T19:29:08.5307939Z * [new tag] v0.11.1-rc.6 -> v0.11.1-rc.6 +2025-07-23T19:29:08.5309475Z * [new tag] v0.11.1-rc.7 -> v0.11.1-rc.7 +2025-07-23T19:29:08.5310774Z * [new tag] v0.11.2 -> v0.11.2 +2025-07-23T19:29:08.5312021Z * [new tag] v0.11.2-rc.0 -> v0.11.2-rc.0 +2025-07-23T19:29:08.5313795Z * [new tag] v0.11.3 -> v0.11.3 +2025-07-23T19:29:08.5315184Z * [new tag] v0.11.3-rc.0 -> v0.11.3-rc.0 +2025-07-23T19:29:08.5316395Z * [new tag] v0.11.3-rc.1 -> v0.11.3-rc.1 +2025-07-23T19:29:08.5318045Z * [new tag] v0.11.4 -> v0.11.4 +2025-07-23T19:29:08.5319300Z * [new tag] v0.11.4-rc.0 -> v0.11.4-rc.0 +2025-07-23T19:29:08.5320817Z * [new tag] v0.11.5 -> v0.11.5 +2025-07-23T19:29:08.5321930Z * [new tag] v0.11.5-rc.0 -> v0.11.5-rc.0 +2025-07-23T19:29:08.5323656Z * [new tag] v0.11.6 -> v0.11.6 +2025-07-23T19:29:08.5324889Z * [new tag] v0.11.6-rc.0 -> v0.11.6-rc.0 +2025-07-23T19:29:08.5326628Z * [new tag] v0.11.7 -> v0.11.7 +2025-07-23T19:29:08.5328045Z * [new tag] v0.11.7-rc.0 -> v0.11.7-rc.0 +2025-07-23T19:29:08.5329607Z * [new tag] v0.11.7-rc.1 -> v0.11.7-rc.1 +2025-07-23T19:29:08.5330943Z * [new tag] v0.11.7-rc.2 -> v0.11.7-rc.2 +2025-07-23T19:29:08.5332149Z * [new tag] v0.11.7-rc.3 -> v0.11.7-rc.3 +2025-07-23T19:29:08.5333749Z * [new tag] v0.11.8 -> v0.11.8 +2025-07-23T19:29:08.5335281Z * [new tag] v0.11.8-rc.0 -> v0.11.8-rc.0 +2025-07-23T19:29:08.5336934Z * [new tag] v0.11.8-rc.1 -> v0.11.8-rc.1 +2025-07-23T19:29:08.5338208Z * [new tag] v0.11.8-rc.2 -> v0.11.8-rc.2 +2025-07-23T19:29:08.5339818Z * [new tag] v0.11.8-rc.3 -> v0.11.8-rc.3 +2025-07-23T19:29:08.5341144Z * [new tag] v0.11.9 -> v0.11.9 +2025-07-23T19:29:08.5342350Z * [new tag] v0.11.9-rc.0 -> v0.11.9-rc.0 +2025-07-23T19:29:08.5344139Z * [new tag] v0.12.0 -> v0.12.0 +2025-07-23T19:29:08.5345505Z * [new tag] v0.12.0-rc.0 -> v0.12.0-rc.0 +2025-07-23T19:29:08.5346906Z * [new tag] v0.12.0-rc.1 -> v0.12.0-rc.1 +2025-07-23T19:29:08.5348552Z * [new tag] v0.12.0-rc.2 -> v0.12.0-rc.2 +2025-07-23T19:29:08.5349810Z * [new tag] v0.12.1 -> v0.12.1 +2025-07-23T19:29:08.5351120Z * [new tag] v0.12.1-rc.0 -> v0.12.1-rc.0 +2025-07-23T19:29:08.5352814Z * [new tag] v0.12.10 -> v0.12.10 +2025-07-23T19:29:08.5354257Z * [new tag] v0.12.10-rc.0 -> v0.12.10-rc.0 +2025-07-23T19:29:08.5355982Z * [new tag] v0.12.10-rc.1 -> v0.12.10-rc.1 +2025-07-23T19:29:08.5357176Z * [new tag] v0.12.10-rc.2 -> v0.12.10-rc.2 +2025-07-23T19:29:08.5358930Z * [new tag] v0.12.10-rc.3 -> v0.12.10-rc.3 +2025-07-23T19:29:08.5360235Z * [new tag] v0.12.10-rc.4 -> v0.12.10-rc.4 +2025-07-23T19:29:08.5361423Z * [new tag] v0.12.10-rc.5 -> v0.12.10-rc.5 +2025-07-23T19:29:08.5363466Z * [new tag] v0.12.10-wip-bloom-metrics -> v0.12.10-wip-bloom-metrics +2025-07-23T19:29:08.5364761Z * [new tag] v0.12.11-rc.0 -> v0.12.11-rc.0 +2025-07-23T19:29:08.5366534Z * [new tag] v0.12.11-rc.1 -> v0.12.11-rc.1 +2025-07-23T19:29:08.5367875Z * [new tag] v0.12.11-rc.2 -> v0.12.11-rc.2 +2025-07-23T19:29:08.5369543Z * [new tag] v0.12.11-rc.3 -> v0.12.11-rc.3 +2025-07-23T19:29:08.5370845Z * [new tag] v0.12.2 -> v0.12.2 +2025-07-23T19:29:08.5372513Z * [new tag] v0.12.2-rc.0 -> v0.12.2-rc.0 +2025-07-23T19:29:08.5373795Z * [new tag] v0.12.3 -> v0.12.3 +2025-07-23T19:29:08.5375809Z * [new tag] v0.12.3-rc.0 -> v0.12.3-rc.0 +2025-07-23T19:29:08.5376931Z * [new tag] v0.12.3-rc.1 -> v0.12.3-rc.1 +2025-07-23T19:29:08.5378456Z * [new tag] v0.12.4 -> v0.12.4 +2025-07-23T19:29:08.5380097Z * [new tag] v0.12.4-rc.0 -> v0.12.4-rc.0 +2025-07-23T19:29:08.5381452Z * [new tag] v0.12.4-rc.1 -> v0.12.4-rc.1 +2025-07-23T19:29:08.5383135Z * [new tag] v0.12.4-rc.2 -> v0.12.4-rc.2 +2025-07-23T19:29:08.5384635Z * [new tag] v0.12.4-rc.3 -> v0.12.4-rc.3 +2025-07-23T19:29:08.5385890Z * [new tag] v0.12.4-rc.4 -> v0.12.4-rc.4 +2025-07-23T19:29:08.5387573Z * [new tag] v0.12.5 -> v0.12.5 +2025-07-23T19:29:08.5388929Z * [new tag] v0.12.5-rc.0 -> v0.12.5-rc.0 +2025-07-23T19:29:08.5390482Z * [new tag] v0.12.5-rc.1 -> v0.12.5-rc.1 +2025-07-23T19:29:08.5392018Z * [new tag] v0.12.5-rc.2 -> v0.12.5-rc.2 +2025-07-23T19:29:08.5393378Z * [new tag] v0.12.5-rc.3 -> v0.12.5-rc.3 +2025-07-23T19:29:08.5395205Z * [new tag] v0.12.5-rc.4 -> v0.12.5-rc.4 +2025-07-23T19:29:08.5396507Z * [new tag] v0.12.5-rc.5 -> v0.12.5-rc.5 +2025-07-23T19:29:08.5398151Z * [new tag] v0.12.5-rc.6 -> v0.12.5-rc.6 +2025-07-23T19:29:08.5399504Z * [new tag] v0.12.6 -> v0.12.6 +2025-07-23T19:29:08.5401125Z * [new tag] v0.12.6-rc.0 -> v0.12.6-rc.0 +2025-07-23T19:29:08.5402279Z * [new tag] v0.12.6-rc.1 -> v0.12.6-rc.1 +2025-07-23T19:29:08.5404033Z * [new tag] v0.12.6-rc.2 -> v0.12.6-rc.2 +2025-07-23T19:29:08.5405733Z * [new tag] v0.12.7 -> v0.12.7 +2025-07-23T19:29:08.5407127Z * [new tag] v0.12.7-rc.0 -> v0.12.7-rc.0 +2025-07-23T19:29:08.5408725Z * [new tag] v0.12.7-rc.1 -> v0.12.7-rc.1 +2025-07-23T19:29:08.5410260Z * [new tag] v0.12.8-rc.0 -> v0.12.8-rc.0 +2025-07-23T19:29:08.5411679Z * [new tag] v0.12.8-rc.1 -> v0.12.8-rc.1 +2025-07-23T19:29:08.5413324Z * [new tag] v0.12.9-rc.0 -> v0.12.9-rc.0 +2025-07-23T19:29:08.5414611Z * [new tag] v0.12.9-rc.1 -> v0.12.9-rc.1 +2025-07-23T19:29:08.5416007Z * [new tag] v0.12.9-rc.2 -> v0.12.9-rc.2 +2025-07-23T19:29:08.5417878Z * [new tag] v0.12.9-rc.3 -> v0.12.9-rc.3 +2025-07-23T19:29:08.5419224Z * [new tag] v0.12.9-rc.4 -> v0.12.9-rc.4 +2025-07-23T19:29:08.5420875Z * [new tag] v0.12.9-rc.5 -> v0.12.9-rc.5 +2025-07-23T19:29:08.5422552Z * [new tag] v0.12.9-rc.6 -> v0.12.9-rc.6 +2025-07-23T19:29:08.5424082Z * [new tag] v0.12.9-rc.7 -> v0.12.9-rc.7 +2025-07-23T19:29:08.5425823Z * [new tag] v0.12.9-rc.8 -> v0.12.9-rc.8 +2025-07-23T19:29:08.5427121Z * [new tag] v0.12.9-rc.9 -> v0.12.9-rc.9 +2025-07-23T19:29:08.5428862Z * [new tag] v0.13.0-rc.0 -> v0.13.0-rc.0 +2025-07-23T19:29:08.5430270Z * [new tag] v0.13.1 -> v0.13.1 +2025-07-23T19:29:08.5431922Z * [new tag] v0.13.1-rc.0 -> v0.13.1-rc.0 +2025-07-23T19:29:08.5433339Z * [new tag] v0.13.1-rc.1 -> v0.13.1-rc.1 +2025-07-23T19:29:08.5434960Z * [new tag] v0.13.1-rc.2 -> v0.13.1-rc.2 +2025-07-23T19:29:08.5436591Z * [new tag] v0.13.1-rc.3 -> v0.13.1-rc.3 +2025-07-23T19:29:08.5437942Z * [new tag] v0.13.1-rc.4 -> v0.13.1-rc.4 +2025-07-23T19:29:08.5439700Z * [new tag] v0.13.1-rc.5 -> v0.13.1-rc.5 +2025-07-23T19:29:08.5441288Z * [new tag] v0.13.2 -> v0.13.2 +2025-07-23T19:29:08.5442653Z * [new tag] v0.13.2-rc.0 -> v0.13.2-rc.0 +2025-07-23T19:29:08.5444290Z * [new tag] v0.13.2-rc.1 -> v0.13.2-rc.1 +2025-07-23T19:29:08.5445835Z * [new tag] v0.13.2-rc.2 -> v0.13.2-rc.2 +2025-07-23T19:29:08.5447657Z * [new tag] v0.13.2-stake-sampling -> v0.13.2-stake-sampling +2025-07-23T19:29:08.5449356Z * [new tag] v0.13.2-stake-sampling.2 -> v0.13.2-stake-sampling.2 +2025-07-23T19:29:08.5450761Z * [new tag] v0.13.3 -> v0.13.3 +2025-07-23T19:29:08.5452560Z * [new tag] v0.13.3-rc.0 -> v0.13.3-rc.0 +2025-07-23T19:29:08.5454333Z * [new tag] v0.13.3-rc.1 -> v0.13.3-rc.1 +2025-07-23T19:29:08.5456216Z * [new tag] v0.13.3-rc.2 -> v0.13.3-rc.2 +2025-07-23T19:29:08.5457911Z * [new tag] v0.13.4 -> v0.13.4 +2025-07-23T19:29:08.5459542Z * [new tag] v0.13.4-connect-self -> v0.13.4-connect-self +2025-07-23T19:29:08.5461240Z * [new tag] v0.13.4-geth-1.13.8 -> v0.13.4-geth-1.13.8 +2025-07-23T19:29:08.5462925Z * [new tag] v0.13.4-rc.0 -> v0.13.4-rc.0 +2025-07-23T19:29:08.5464722Z * [new tag] v0.13.5 -> v0.13.5 +2025-07-23T19:29:08.5466420Z * [new tag] v0.13.5-rc.0 -> v0.13.5-rc.0 +2025-07-23T19:29:08.5468142Z * [new tag] v0.13.5-remove-optional-gatherer -> v0.13.5-remove-optional-gatherer +2025-07-23T19:29:08.5469650Z * [new tag] v0.13.5-remove-optional-gatherer.2 -> v0.13.5-remove-optional-gatherer.2 +2025-07-23T19:29:08.5471184Z * [new tag] v0.13.6-rc.0 -> v0.13.6-rc.0 +2025-07-23T19:29:08.5472969Z * [new tag] v0.13.6-rc.1 -> v0.13.6-rc.1 +2025-07-23T19:29:08.5474841Z * [new tag] v0.13.6-remove-status -> v0.13.6-remove-status +2025-07-23T19:29:08.5476490Z * [new tag] v0.13.7 -> v0.13.7 +2025-07-23T19:29:08.5478201Z * [new tag] v0.13.7-acp-118-handlers -> v0.13.7-acp-118-handlers +2025-07-23T19:29:08.5479550Z * [new tag] v0.13.7-fixed-genesis-upgrade -> v0.13.7-fixed-genesis-upgrade +2025-07-23T19:29:08.5481312Z * [new tag] v0.13.7-rc.0 -> v0.13.7-rc.0 +2025-07-23T19:29:08.5482870Z * [new tag] v0.13.7-remove-status -> v0.13.7-remove-status +2025-07-23T19:29:08.5484783Z * [new tag] v0.13.8 -> v0.13.8 +2025-07-23T19:29:08.5486559Z * [new tag] v0.13.8-fix-genesis-upgrade -> v0.13.8-fix-genesis-upgrade +2025-07-23T19:29:08.5487989Z * [new tag] v0.13.8-fixed-genesis-upgrade -> v0.13.8-fixed-genesis-upgrade +2025-07-23T19:29:08.5489725Z * [new tag] v0.13.9-rc.0 -> v0.13.9-rc.0 +2025-07-23T19:29:08.5491122Z * [new tag] v0.13.9-rc.1 -> v0.13.9-rc.1 +2025-07-23T19:29:08.5493107Z * [new tag] v0.13.9-rc.2-encapsulate-signer -> v0.13.9-rc.2-encapsulate-signer +2025-07-23T19:29:08.5494850Z * [new tag] v0.13.9-rc.3-acp118-nodeid -> v0.13.9-rc.3-acp118-nodeid +2025-07-23T19:29:08.5496610Z * [new tag] v0.13.9-rc.3-acp118-nodeid2 -> v0.13.9-rc.3-acp118-nodeid2 +2025-07-23T19:29:08.5497997Z * [new tag] v0.13.9-rc.3-acp118-nodeid3 -> v0.13.9-rc.3-acp118-nodeid3 +2025-07-23T19:29:08.5500061Z * [new tag] v0.14.0 -> v0.14.0 +2025-07-23T19:29:08.5501733Z * [new tag] v0.14.1-acp-176.0 -> v0.14.1-acp-176.0 +2025-07-23T19:29:08.5503399Z * [new tag] v0.14.1-acp-176.1 -> v0.14.1-acp-176.1 +2025-07-23T19:29:08.5505503Z * [new tag] v0.14.1-libevm.rc.1 -> v0.14.1-libevm.rc.1 +2025-07-23T19:29:08.5507238Z * [new tag] v0.14.1-libevm.rc.2 -> v0.14.1-libevm.rc.2 +2025-07-23T19:29:08.5508909Z * [new tag] v0.14.1-rc.0 -> v0.14.1-rc.0 +2025-07-23T19:29:08.5510581Z * [new tag] v0.14.1-rc.1 -> v0.14.1-rc.1 +2025-07-23T19:29:08.5512265Z * [new tag] v0.14.1-rc.2 -> v0.14.1-rc.2 +2025-07-23T19:29:08.5514112Z * [new tag] v0.14.1-rc.3 -> v0.14.1-rc.3 +2025-07-23T19:29:08.5516257Z * [new tag] v0.14.1-rename-fortuna.0 -> v0.14.1-rename-fortuna.0 +2025-07-23T19:29:08.5517717Z * [new tag] v0.14.1-update-fee-api.0 -> v0.14.1-update-fee-api.0 +2025-07-23T19:29:08.5519573Z * [new tag] v0.14.2-verify-interface -> v0.14.2-verify-interface +2025-07-23T19:29:08.5521355Z * [new tag] v0.14.2-verify-interface2 -> v0.14.2-verify-interface2 +2025-07-23T19:29:08.5523094Z * [new tag] v0.14.2-verify-interface3 -> v0.14.2-verify-interface3 +2025-07-23T19:29:08.5524981Z * [new tag] v0.14.2-verify-interface4 -> v0.14.2-verify-interface4 +2025-07-23T19:29:08.5526796Z * [new tag] v0.14.2-verify-interface5 -> v0.14.2-verify-interface5 +2025-07-23T19:29:08.5528258Z * [new tag] v0.14.2-verify-interface6 -> v0.14.2-verify-interface6 +2025-07-23T19:29:08.5530013Z * [new tag] v0.15.0 -> v0.15.0 +2025-07-23T19:29:08.5531758Z * [new tag] v0.15.0-rc.0 -> v0.15.0-rc.0 +2025-07-23T19:29:08.5533152Z * [new tag] v0.15.0-rc.1 -> v0.15.0-rc.1 +2025-07-23T19:29:08.5535199Z * [new tag] v0.15.1 -> v0.15.1 +2025-07-23T19:29:08.5537025Z * [new tag] v0.15.1-rc.0 -> v0.15.1-rc.0 +2025-07-23T19:29:08.5538591Z * [new tag] v0.15.1-rc.1 -> v0.15.1-rc.1 +2025-07-23T19:29:08.5540442Z * [new tag] v0.15.2 -> v0.15.2 +2025-07-23T19:29:08.5542218Z * [new tag] v0.15.2-rc.0 -> v0.15.2-rc.0 +2025-07-23T19:29:08.5544119Z * [new tag] v0.15.3-rc.0 -> v0.15.3-rc.0 +2025-07-23T19:29:08.5545920Z * [new tag] v0.15.3-rc.1 -> v0.15.3-rc.1 +2025-07-23T19:29:08.5547549Z * [new tag] v0.2.0 -> v0.2.0 +2025-07-23T19:29:08.5549206Z * [new tag] v0.2.1 -> v0.2.1 +2025-07-23T19:29:08.5550866Z * [new tag] v0.2.10 -> v0.2.10 +2025-07-23T19:29:08.5552424Z * [new tag] v0.2.11 -> v0.2.11 +2025-07-23T19:29:08.5554316Z * [new tag] v0.2.12 -> v0.2.12 +2025-07-23T19:29:08.5556771Z * [new tag] v0.2.12-rc.1 -> v0.2.12-rc.1 +2025-07-23T19:29:08.5558308Z * [new tag] v0.2.13 -> v0.2.13 +2025-07-23T19:29:08.5559807Z * [new tag] v0.2.14 -> v0.2.14 +2025-07-23T19:29:08.5561541Z * [new tag] v0.2.14-rc.1 -> v0.2.14-rc.1 +2025-07-23T19:29:08.5562907Z * [new tag] v0.2.15 -> v0.2.15 +2025-07-23T19:29:08.5564792Z * [new tag] v0.2.15-rc.1 -> v0.2.15-rc.1 +2025-07-23T19:29:08.5566138Z * [new tag] v0.2.15-rc.2 -> v0.2.15-rc.2 +2025-07-23T19:29:08.5568023Z * [new tag] v0.2.15-rc.3 -> v0.2.15-rc.3 +2025-07-23T19:29:08.5569307Z * [new tag] v0.2.15-rc.4 -> v0.2.15-rc.4 +2025-07-23T19:29:08.5570628Z * [new tag] v0.2.2 -> v0.2.2 +2025-07-23T19:29:08.5572334Z * [new tag] v0.2.3 -> v0.2.3 +2025-07-23T19:29:08.5573691Z * [new tag] v0.2.4 -> v0.2.4 +2025-07-23T19:29:08.5575734Z * [new tag] v0.2.5 -> v0.2.5 +2025-07-23T19:29:08.5577057Z * [new tag] v0.2.6 -> v0.2.6 +2025-07-23T19:29:08.5578589Z * [new tag] v0.2.7-rc.1 -> v0.2.7-rc.1 +2025-07-23T19:29:08.5580143Z * [new tag] v0.2.7-rc.2 -> v0.2.7-rc.2 +2025-07-23T19:29:08.5581611Z * [new tag] v0.2.7-rc.3 -> v0.2.7-rc.3 +2025-07-23T19:29:08.5583229Z * [new tag] v0.2.7-rc.4 -> v0.2.7-rc.4 +2025-07-23T19:29:08.5584808Z * [new tag] v0.2.8 -> v0.2.8 +2025-07-23T19:29:08.5586489Z * [new tag] v0.2.8-rc.1 -> v0.2.8-rc.1 +2025-07-23T19:29:08.5588054Z * [new tag] v0.2.8-rc.2 -> v0.2.8-rc.2 +2025-07-23T19:29:08.5589412Z * [new tag] v0.2.8-rc.3 -> v0.2.8-rc.3 +2025-07-23T19:29:08.5591139Z * [new tag] v0.2.8-rc.4 -> v0.2.8-rc.4 +2025-07-23T19:29:08.5592466Z * [new tag] v0.2.8-rc.5 -> v0.2.8-rc.5 +2025-07-23T19:29:08.5594286Z * [new tag] v0.2.8-rc.6 -> v0.2.8-rc.6 +2025-07-23T19:29:08.5596061Z * [new tag] v0.3.0-rc.1 -> v0.3.0-rc.1 +2025-07-23T19:29:08.5597592Z * [new tag] v0.3.0-rc.2 -> v0.3.0-rc.2 +2025-07-23T19:29:08.5599293Z * [new tag] v0.3.0-rc.3 -> v0.3.0-rc.3 +2025-07-23T19:29:08.5600492Z * [new tag] v0.3.0-rc.4 -> v0.3.0-rc.4 +2025-07-23T19:29:08.5602249Z * [new tag] v0.3.0-rc.5 -> v0.3.0-rc.5 +2025-07-23T19:29:08.5604028Z * [new tag] v0.3.0-rc.6 -> v0.3.0-rc.6 +2025-07-23T19:29:08.5605679Z * [new tag] v0.3.1 -> v0.3.1 +2025-07-23T19:29:08.5607300Z * [new tag] v0.3.1-rc.1 -> v0.3.1-rc.1 +2025-07-23T19:29:08.5608702Z * [new tag] v0.3.1-rc.2 -> v0.3.1-rc.2 +2025-07-23T19:29:08.5610442Z * [new tag] v0.3.10 -> v0.3.10 +2025-07-23T19:29:08.5611815Z * [new tag] v0.3.11 -> v0.3.11 +2025-07-23T19:29:08.5613375Z * [new tag] v0.3.11-update-id -> v0.3.11-update-id +2025-07-23T19:29:08.5614834Z * [new tag] v0.3.11-update-id-2 -> v0.3.11-update-id-2 +2025-07-23T19:29:08.5616714Z * [new tag] v0.3.11-update-id-3 -> v0.3.11-update-id-3 +2025-07-23T19:29:08.5618068Z * [new tag] v0.3.12 -> v0.3.12 +2025-07-23T19:29:08.5619888Z * [new tag] v0.3.12-id-update -> v0.3.12-id-update +2025-07-23T19:29:08.5621262Z * [new tag] v0.3.13 -> v0.3.13 +2025-07-23T19:29:08.5623048Z * [new tag] v0.3.14 -> v0.3.14 +2025-07-23T19:29:08.5624879Z * [new tag] v0.3.15 -> v0.3.15 +2025-07-23T19:29:08.5626566Z * [new tag] v0.3.15-rc.1 -> v0.3.15-rc.1 +2025-07-23T19:29:08.5628143Z * [new tag] v0.3.15-rc.2 -> v0.3.15-rc.2 +2025-07-23T19:29:08.5629924Z * [new tag] v0.3.16 -> v0.3.16 +2025-07-23T19:29:08.5631583Z * [new tag] v0.3.17 -> v0.3.17 +2025-07-23T19:29:08.5633217Z * [new tag] v0.3.17-rc.1 -> v0.3.17-rc.1 +2025-07-23T19:29:08.5634723Z * [new tag] v0.3.18 -> v0.3.18 +2025-07-23T19:29:08.5636628Z * [new tag] v0.3.18-rc.1 -> v0.3.18-rc.1 +2025-07-23T19:29:08.5638332Z * [new tag] v0.3.18-rc.2 -> v0.3.18-rc.2 +2025-07-23T19:29:08.5639950Z * [new tag] v0.3.19 -> v0.3.19 +2025-07-23T19:29:08.5641585Z * [new tag] v0.3.19-rc.1 -> v0.3.19-rc.1 +2025-07-23T19:29:08.5643348Z * [new tag] v0.3.2 -> v0.3.2 +2025-07-23T19:29:08.5645330Z * [new tag] v0.3.20 -> v0.3.20 +2025-07-23T19:29:08.5647193Z * [new tag] v0.3.20-rc.1 -> v0.3.20-rc.1 +2025-07-23T19:29:08.5669136Z * [new tag] v0.3.20-rc.2 -> v0.3.20-rc.2 +2025-07-23T19:29:08.5675167Z * [new tag] v0.3.20-rc.3 -> v0.3.20-rc.3 +2025-07-23T19:29:08.5675930Z * [new tag] v0.3.20-rc.4 -> v0.3.20-rc.4 +2025-07-23T19:29:08.5676591Z * [new tag] v0.3.21 -> v0.3.21 +2025-07-23T19:29:08.5677236Z * [new tag] v0.3.21-rc.1 -> v0.3.21-rc.1 +2025-07-23T19:29:08.5677911Z * [new tag] v0.3.22 -> v0.3.22 +2025-07-23T19:29:08.5678541Z * [new tag] v0.3.23 -> v0.3.23 +2025-07-23T19:29:08.5679162Z * [new tag] v0.3.24 -> v0.3.24 +2025-07-23T19:29:08.5679796Z * [new tag] v0.3.24-rc.1 -> v0.3.24-rc.1 +2025-07-23T19:29:08.5680454Z * [new tag] v0.3.25 -> v0.3.25 +2025-07-23T19:29:08.5681094Z * [new tag] v0.3.25-rc.1 -> v0.3.25-rc.1 +2025-07-23T19:29:08.5681767Z * [new tag] v0.3.26 -> v0.3.26 +2025-07-23T19:29:08.5682429Z * [new tag] v0.3.27 -> v0.3.27 +2025-07-23T19:29:08.5683090Z * [new tag] v0.3.27-rc.1 -> v0.3.27-rc.1 +2025-07-23T19:29:08.5683748Z * [new tag] v0.3.3-rc.1 -> v0.3.3-rc.1 +2025-07-23T19:29:08.5684587Z * [new tag] v0.3.3-rc.2 -> v0.3.3-rc.2 +2025-07-23T19:29:08.5685284Z * [new tag] v0.3.3-rc.3 -> v0.3.3-rc.3 +2025-07-23T19:29:08.5685980Z * [new tag] v0.3.3-rc.4 -> v0.3.3-rc.4 +2025-07-23T19:29:08.5686617Z * [new tag] v0.3.3-rc.5 -> v0.3.3-rc.5 +2025-07-23T19:29:08.5687249Z * [new tag] v0.3.3-rc.6 -> v0.3.3-rc.6 +2025-07-23T19:29:08.5687888Z * [new tag] v0.3.3-rc.7 -> v0.3.3-rc.7 +2025-07-23T19:29:08.5688513Z * [new tag] v0.3.4 -> v0.3.4 +2025-07-23T19:29:08.5689145Z * [new tag] v0.3.5 -> v0.3.5 +2025-07-23T19:29:08.5689774Z * [new tag] v0.3.5-rc.1 -> v0.3.5-rc.1 +2025-07-23T19:29:08.5690440Z * [new tag] v0.3.5-rc.2 -> v0.3.5-rc.2 +2025-07-23T19:29:08.5691733Z * [new tag] v0.3.5-rc.3 -> v0.3.5-rc.3 +2025-07-23T19:29:08.5693314Z * [new tag] v0.3.6 -> v0.3.6 +2025-07-23T19:29:08.5695711Z * [new tag] v0.3.7 -> v0.3.7 +2025-07-23T19:29:08.5697048Z * [new tag] v0.3.8 -> v0.3.8 +2025-07-23T19:29:08.5698610Z * [new tag] v0.3.9 -> v0.3.9 +2025-07-23T19:29:08.5700622Z * [new tag] v0.4.0 -> v0.4.0 +2025-07-23T19:29:08.5702220Z * [new tag] v0.4.0-rc.1 -> v0.4.0-rc.1 +2025-07-23T19:29:08.5704248Z * [new tag] v0.4.0-rc.2 -> v0.4.0-rc.2 +2025-07-23T19:29:08.5705959Z * [new tag] v0.4.0-rc.3 -> v0.4.0-rc.3 +2025-07-23T19:29:08.5707823Z * [new tag] v0.4.0-rc.4 -> v0.4.0-rc.4 +2025-07-23T19:29:08.5709350Z * [new tag] v0.4.0-rc.5 -> v0.4.0-rc.5 +2025-07-23T19:29:08.5711323Z * [new tag] v0.4.0-rc.6 -> v0.4.0-rc.6 +2025-07-23T19:29:08.5712915Z * [new tag] v0.4.0-rc.7 -> v0.4.0-rc.7 +2025-07-23T19:29:08.5715079Z * [new tag] v0.4.0-rc.8 -> v0.4.0-rc.8 +2025-07-23T19:29:08.5716580Z * [new tag] v0.4.1 -> v0.4.1 +2025-07-23T19:29:08.5718215Z * [new tag] v0.4.1-rc.1 -> v0.4.1-rc.1 +2025-07-23T19:29:08.5719976Z * [new tag] v0.4.2 -> v0.4.2 +2025-07-23T19:29:08.5722023Z * [new tag] v0.4.2-rc.1 -> v0.4.2-rc.1 +2025-07-23T19:29:08.5723573Z * [new tag] v0.4.2-rc.2 -> v0.4.2-rc.2 +2025-07-23T19:29:08.5725775Z * [new tag] v0.4.2-rc.3 -> v0.4.2-rc.3 +2025-07-23T19:29:08.5727241Z * [new tag] v0.4.2-rc.4 -> v0.4.2-rc.4 +2025-07-23T19:29:08.5729310Z * [new tag] v0.4.3-rc.1 -> v0.4.3-rc.1 +2025-07-23T19:29:08.5730825Z * [new tag] v0.4.3-rc.2 -> v0.4.3-rc.2 +2025-07-23T19:29:08.5732688Z * [new tag] v0.4.3-rc.3 -> v0.4.3-rc.3 +2025-07-23T19:29:08.5734445Z * [new tag] v0.4.3-rc.4 -> v0.4.3-rc.4 +2025-07-23T19:29:08.5736411Z * [new tag] v0.5.0 -> v0.5.0 +2025-07-23T19:29:08.5738338Z * [new tag] v0.5.0-rc.1 -> v0.5.0-rc.1 +2025-07-23T19:29:08.5739949Z * [new tag] v0.5.0-rc.2 -> v0.5.0-rc.2 +2025-07-23T19:29:08.5741838Z * [new tag] v0.5.1 -> v0.5.1 +2025-07-23T19:29:08.5743449Z * [new tag] v0.5.1-metervm -> v0.5.1-metervm +2025-07-23T19:29:08.5745255Z * [new tag] v0.5.1-metervm2 -> v0.5.1-metervm2 +2025-07-23T19:29:08.5747241Z * [new tag] v0.5.1-rc.1 -> v0.5.1-rc.1 +2025-07-23T19:29:08.5748519Z * [new tag] v0.5.1-rc.2 -> v0.5.1-rc.2 +2025-07-23T19:29:08.5750442Z * [new tag] v0.5.2 -> v0.5.2 +2025-07-23T19:29:08.5752065Z * [new tag] v0.5.2-pre-upgrade.1 -> v0.5.2-pre-upgrade.1 +2025-07-23T19:29:08.5753611Z * [new tag] v0.5.2-rc.1 -> v0.5.2-rc.1 +2025-07-23T19:29:08.5755898Z * [new tag] v0.5.2-rc.2 -> v0.5.2-rc.2 +2025-07-23T19:29:08.5757681Z * [new tag] v0.5.2-rc.3 -> v0.5.2-rc.3 +2025-07-23T19:29:08.5759230Z * [new tag] v0.5.2-rc.4 -> v0.5.2-rc.4 +2025-07-23T19:29:08.5761273Z * [new tag] v0.5.2-rc.5 -> v0.5.2-rc.5 +2025-07-23T19:29:08.5762795Z * [new tag] v0.5.3 -> v0.5.3 +2025-07-23T19:29:08.5764495Z * [new tag] v0.5.3-metervm3 -> v0.5.3-metervm3 +2025-07-23T19:29:08.5766377Z * [new tag] v0.5.3-metervm4 -> v0.5.3-metervm4 +2025-07-23T19:29:08.5768004Z * [new tag] v0.5.3-rc.1 -> v0.5.3-rc.1 +2025-07-23T19:29:08.5769671Z * [new tag] v0.5.3-rc.2 -> v0.5.3-rc.2 +2025-07-23T19:29:08.5771670Z * [new tag] v0.5.4 -> v0.5.4 +2025-07-23T19:29:08.5773500Z * [new tag] v0.5.4-rc.1 -> v0.5.4-rc.1 +2025-07-23T19:29:08.5775597Z * [new tag] v0.5.4-rc.10 -> v0.5.4-rc.10 +2025-07-23T19:29:08.5777384Z * [new tag] v0.5.4-rc.11 -> v0.5.4-rc.11 +2025-07-23T19:29:08.5779435Z * [new tag] v0.5.4-rc.12 -> v0.5.4-rc.12 +2025-07-23T19:29:08.5780786Z * [new tag] v0.5.4-rc.13 -> v0.5.4-rc.13 +2025-07-23T19:29:08.5782884Z * [new tag] v0.5.4-rc.2 -> v0.5.4-rc.2 +2025-07-23T19:29:08.5785009Z * [new tag] v0.5.4-rc.3 -> v0.5.4-rc.3 +2025-07-23T19:29:08.5786961Z * [new tag] v0.5.4-rc.4 -> v0.5.4-rc.4 +2025-07-23T19:29:08.5788860Z * [new tag] v0.5.4-rc.5 -> v0.5.4-rc.5 +2025-07-23T19:29:08.5790987Z * [new tag] v0.5.4-rc.6 -> v0.5.4-rc.6 +2025-07-23T19:29:08.5792795Z * [new tag] v0.5.4-rc.7 -> v0.5.4-rc.7 +2025-07-23T19:29:08.5794476Z * [new tag] v0.5.4-rc.8 -> v0.5.4-rc.8 +2025-07-23T19:29:08.5796815Z * [new tag] v0.5.4-rc.9 -> v0.5.4-rc.9 +2025-07-23T19:29:08.5798203Z * [new tag] v0.5.5 -> v0.5.5 +2025-07-23T19:29:08.5800137Z * [new tag] v0.5.5-rc.0 -> v0.5.5-rc.0 +2025-07-23T19:29:08.5801926Z * [new tag] v0.5.5-rc.1 -> v0.5.5-rc.1 +2025-07-23T19:29:08.5804076Z * [new tag] v0.5.6 -> v0.5.6 +2025-07-23T19:29:08.5805920Z * [new tag] v0.5.6-rc.0 -> v0.5.6-rc.0 +2025-07-23T19:29:08.5807715Z * [new tag] v0.5.6-rc.1 -> v0.5.6-rc.1 +2025-07-23T19:29:08.5809574Z * [new tag] v0.5.6-rc.2 -> v0.5.6-rc.2 +2025-07-23T19:29:08.5811553Z * [new tag] v0.5.6-rc.3 -> v0.5.6-rc.3 +2025-07-23T19:29:08.5813347Z * [new tag] v0.5.6-rc.4 -> v0.5.6-rc.4 +2025-07-23T19:29:08.5815162Z * [new tag] v0.5.6-rc.5 -> v0.5.6-rc.5 +2025-07-23T19:29:08.5816638Z * [new tag] v0.5.6-rc.6 -> v0.5.6-rc.6 +2025-07-23T19:29:08.5818744Z * [new tag] v0.5.7 -> v0.5.7 +2025-07-23T19:29:08.5820564Z * [new tag] v0.5.7-rc.0 -> v0.5.7-rc.0 +2025-07-23T19:29:08.5822483Z * [new tag] v0.5.7-rc.1 -> v0.5.7-rc.1 +2025-07-23T19:29:08.5824816Z * [new tag] v0.6.0 -> v0.6.0 +2025-07-23T19:29:08.5826916Z * [new tag] v0.6.0-rc.0 -> v0.6.0-rc.0 +2025-07-23T19:29:08.5828275Z * [new tag] v0.6.0-rc.1 -> v0.6.0-rc.1 +2025-07-23T19:29:08.5830321Z * [new tag] v0.6.1 -> v0.6.1 +2025-07-23T19:29:08.5832045Z * [new tag] v0.6.1-rc.0 -> v0.6.1-rc.0 +2025-07-23T19:29:08.5834176Z * [new tag] v0.6.1-rc.1 -> v0.6.1-rc.1 +2025-07-23T19:29:08.5836249Z * [new tag] v0.6.1-rc.2 -> v0.6.1-rc.2 +2025-07-23T19:29:08.5837623Z * [new tag] v0.6.1-rc.3 -> v0.6.1-rc.3 +2025-07-23T19:29:08.5839724Z * [new tag] v0.6.2 -> v0.6.2 +2025-07-23T19:29:08.5841034Z * [new tag] v0.6.2-rc.0 -> v0.6.2-rc.0 +2025-07-23T19:29:08.5843043Z * [new tag] v0.6.3 -> v0.6.3 +2025-07-23T19:29:08.5844758Z * [new tag] v0.6.3-rc.0 -> v0.6.3-rc.0 +2025-07-23T19:29:08.5846740Z * [new tag] v0.6.3-rc.1 -> v0.6.3-rc.1 +2025-07-23T19:29:08.5848560Z * [new tag] v0.6.4-rc.0 -> v0.6.4-rc.0 +2025-07-23T19:29:08.5850664Z * [new tag] v0.7.0 -> v0.7.0 +2025-07-23T19:29:08.5853063Z * [new tag] v0.7.0-rc.0 -> v0.7.0-rc.0 +2025-07-23T19:29:08.5854476Z * [new tag] v0.7.0-rc.1 -> v0.7.0-rc.1 +2025-07-23T19:29:08.5856644Z * [new tag] v0.7.0-rc.10 -> v0.7.0-rc.10 +2025-07-23T19:29:08.5858161Z * [new tag] v0.7.0-rc.11 -> v0.7.0-rc.11 +2025-07-23T19:29:08.5859949Z * [new tag] v0.7.0-rc.12 -> v0.7.0-rc.12 +2025-07-23T19:29:08.5861690Z * [new tag] v0.7.0-rc.13 -> v0.7.0-rc.13 +2025-07-23T19:29:08.5863215Z * [new tag] v0.7.0-rc.14 -> v0.7.0-rc.14 +2025-07-23T19:29:08.5864806Z * [new tag] v0.7.0-rc.2 -> v0.7.0-rc.2 +2025-07-23T19:29:08.5866606Z * [new tag] v0.7.0-rc.3 -> v0.7.0-rc.3 +2025-07-23T19:29:08.5868259Z * [new tag] v0.7.0-rc.4 -> v0.7.0-rc.4 +2025-07-23T19:29:08.5869907Z * [new tag] v0.7.0-rc.5 -> v0.7.0-rc.5 +2025-07-23T19:29:08.5871723Z * [new tag] v0.7.0-rc.6 -> v0.7.0-rc.6 +2025-07-23T19:29:08.5873153Z * [new tag] v0.7.0-rc.8 -> v0.7.0-rc.8 +2025-07-23T19:29:08.5875077Z * [new tag] v0.7.0-rc.9 -> v0.7.0-rc.9 +2025-07-23T19:29:08.5876698Z * [new tag] v0.7.1 -> v0.7.1 +2025-07-23T19:29:08.5878422Z * [new tag] v0.7.1-rc.0 -> v0.7.1-rc.0 +2025-07-23T19:29:08.5879877Z * [new tag] v0.7.1-rc.1 -> v0.7.1-rc.1 +2025-07-23T19:29:08.5881131Z * [new tag] v0.7.1-rc.2 -> v0.7.1-rc.2 +2025-07-23T19:29:08.5882950Z * [new tag] v0.7.2 -> v0.7.2 +2025-07-23T19:29:08.5884279Z * [new tag] v0.7.2-rc.0 -> v0.7.2-rc.0 +2025-07-23T19:29:08.5885717Z * [new tag] v0.7.2-rc.1 -> v0.7.2-rc.1 +2025-07-23T19:29:08.5887305Z * [new tag] v0.7.3-rc.0 -> v0.7.3-rc.0 +2025-07-23T19:29:08.5888672Z * [new tag] v0.7.3-rc.1 -> v0.7.3-rc.1 +2025-07-23T19:29:08.5890444Z * [new tag] v0.7.3-rc.2 -> v0.7.3-rc.2 +2025-07-23T19:29:08.5891727Z * [new tag] v0.7.3-rc.3 -> v0.7.3-rc.3 +2025-07-23T19:29:08.5893600Z * [new tag] v0.7.4 -> v0.7.4 +2025-07-23T19:29:08.5894865Z * [new tag] v0.7.4-rc.0 -> v0.7.4-rc.0 +2025-07-23T19:29:08.5896292Z * [new tag] v0.7.4-rc.1 -> v0.7.4-rc.1 +2025-07-23T19:29:08.5897966Z * [new tag] v0.7.5 -> v0.7.5 +2025-07-23T19:29:08.5899213Z * [new tag] v0.7.5-rc.0 -> v0.7.5-rc.0 +2025-07-23T19:29:08.5900942Z * [new tag] v0.7.5-rc.1 -> v0.7.5-rc.1 +2025-07-23T19:29:08.5902049Z * [new tag] v0.7.5-rc.2 -> v0.7.5-rc.2 +2025-07-23T19:29:08.5903732Z * [new tag] v0.8.0 -> v0.8.0 +2025-07-23T19:29:08.5905575Z * [new tag] v0.8.0-rc.0 -> v0.8.0-rc.0 +2025-07-23T19:29:08.5907313Z * [new tag] v0.8.0-rc.1 -> v0.8.0-rc.1 +2025-07-23T19:29:08.5908760Z * [new tag] v0.8.0-rc.2 -> v0.8.0-rc.2 +2025-07-23T19:29:08.5910178Z * [new tag] v0.8.0-rc.3 -> v0.8.0-rc.3 +2025-07-23T19:29:08.5911924Z * [new tag] v0.8.1-rc.0 -> v0.8.1-rc.0 +2025-07-23T19:29:08.5913543Z * [new tag] v0.8.1-rc.1 -> v0.8.1-rc.1 +2025-07-23T19:29:08.5915101Z * [new tag] v0.8.1-rc.2 -> v0.8.1-rc.2 +2025-07-23T19:29:08.5916856Z * [new tag] v0.8.10 -> v0.8.10 +2025-07-23T19:29:08.5918255Z * [new tag] v0.8.10-rc.0 -> v0.8.10-rc.0 +2025-07-23T19:29:08.5928228Z * [new tag] v0.8.10-rc.1 -> v0.8.10-rc.1 +2025-07-23T19:29:08.5929867Z * [new tag] v0.8.10-rc.2 -> v0.8.10-rc.2 +2025-07-23T19:29:08.5931376Z * [new tag] v0.8.10-rc.3 -> v0.8.10-rc.3 +2025-07-23T19:29:08.5932744Z * [new tag] v0.8.10-rc.4 -> v0.8.10-rc.4 +2025-07-23T19:29:08.5934404Z * [new tag] v0.8.10-rc.5 -> v0.8.10-rc.5 +2025-07-23T19:29:08.5936277Z * [new tag] v0.8.10-rc.6 -> v0.8.10-rc.6 +2025-07-23T19:29:08.5937395Z * [new tag] v0.8.10-rc.7 -> v0.8.10-rc.7 +2025-07-23T19:29:08.5939116Z * [new tag] v0.8.11 -> v0.8.11 +2025-07-23T19:29:08.5940960Z * [new tag] v0.8.11-rc.0 -> v0.8.11-rc.0 +2025-07-23T19:29:08.5941987Z * [new tag] v0.8.11-rc.1 -> v0.8.11-rc.1 +2025-07-23T19:29:08.5943624Z * [new tag] v0.8.11-rc.10 -> v0.8.11-rc.10 +2025-07-23T19:29:08.5945086Z * [new tag] v0.8.11-rc.11 -> v0.8.11-rc.11 +2025-07-23T19:29:08.5946896Z * [new tag] v0.8.11-rc.2 -> v0.8.11-rc.2 +2025-07-23T19:29:08.5948354Z * [new tag] v0.8.11-rc.4 -> v0.8.11-rc.4 +2025-07-23T19:29:08.5950072Z * [new tag] v0.8.11-rc.5 -> v0.8.11-rc.5 +2025-07-23T19:29:08.5951130Z * [new tag] v0.8.11-rc.6 -> v0.8.11-rc.6 +2025-07-23T19:29:08.5952653Z * [new tag] v0.8.11-rc.7 -> v0.8.11-rc.7 +2025-07-23T19:29:08.5954766Z * [new tag] v0.8.11-rc.8 -> v0.8.11-rc.8 +2025-07-23T19:29:08.5956984Z * [new tag] v0.8.11-rc.9 -> v0.8.11-rc.9 +2025-07-23T19:29:08.5958608Z * [new tag] v0.8.12 -> v0.8.12 +2025-07-23T19:29:08.5961045Z * [new tag] v0.8.12-rc.0 -> v0.8.12-rc.0 +2025-07-23T19:29:08.5962511Z * [new tag] v0.8.12-rc.1 -> v0.8.12-rc.1 +2025-07-23T19:29:08.5964630Z * [new tag] v0.8.13 -> v0.8.13 +2025-07-23T19:29:08.5966608Z * [new tag] v0.8.13-rc.0 -> v0.8.13-rc.0 +2025-07-23T19:29:08.5968565Z * [new tag] v0.8.13-rc.1 -> v0.8.13-rc.1 +2025-07-23T19:29:08.5970160Z * [new tag] v0.8.13-rc.2 -> v0.8.13-rc.2 +2025-07-23T19:29:08.5971934Z * [new tag] v0.8.13-rc.3 -> v0.8.13-rc.3 +2025-07-23T19:29:08.5973659Z * [new tag] v0.8.13-rc.4 -> v0.8.13-rc.4 +2025-07-23T19:29:08.5975134Z * [new tag] v0.8.13-rc.5 -> v0.8.13-rc.5 +2025-07-23T19:29:08.5976843Z * [new tag] v0.8.14 -> v0.8.14 +2025-07-23T19:29:08.5978205Z * [new tag] v0.8.14-rc.0 -> v0.8.14-rc.0 +2025-07-23T19:29:08.5979604Z * [new tag] v0.8.15 -> v0.8.15 +2025-07-23T19:29:08.5981252Z * [new tag] v0.8.15-rc.0 -> v0.8.15-rc.0 +2025-07-23T19:29:08.5982510Z * [new tag] v0.8.15-rc.1 -> v0.8.15-rc.1 +2025-07-23T19:29:08.5983838Z * [new tag] v0.8.15-rc.2 -> v0.8.15-rc.2 +2025-07-23T19:29:08.5985766Z * [new tag] v0.8.16 -> v0.8.16 +2025-07-23T19:29:08.5987393Z * [new tag] v0.8.16-rc.0 -> v0.8.16-rc.0 +2025-07-23T19:29:08.5989145Z * [new tag] v0.8.16-rc.1 -> v0.8.16-rc.1 +2025-07-23T19:29:08.5990250Z * [new tag] v0.8.16-rc.2 -> v0.8.16-rc.2 +2025-07-23T19:29:08.5991946Z * [new tag] v0.8.2 -> v0.8.2 +2025-07-23T19:29:08.5993271Z * [new tag] v0.8.2-rc.0 -> v0.8.2-rc.0 +2025-07-23T19:29:08.5995058Z * [new tag] v0.8.3 -> v0.8.3 +2025-07-23T19:29:08.5997394Z * [new tag] v0.8.3-rc.0 -> v0.8.3-rc.0 +2025-07-23T19:29:08.5998821Z * [new tag] v0.8.3-rc.1 -> v0.8.3-rc.1 +2025-07-23T19:29:08.6000135Z * [new tag] v0.8.3-rc.2 -> v0.8.3-rc.2 +2025-07-23T19:29:08.6001916Z * [new tag] v0.8.3-rc.3 -> v0.8.3-rc.3 +2025-07-23T19:29:08.6003141Z * [new tag] v0.8.4 -> v0.8.4 +2025-07-23T19:29:08.6004995Z * [new tag] v0.8.4-rc.1 -> v0.8.4-rc.1 +2025-07-23T19:29:08.6006854Z * [new tag] v0.8.4-rc.2 -> v0.8.4-rc.2 +2025-07-23T19:29:08.6008238Z * [new tag] v0.8.4-rc.3 -> v0.8.4-rc.3 +2025-07-23T19:29:08.6010050Z * [new tag] v0.8.4-rc0 -> v0.8.4-rc0 +2025-07-23T19:29:08.6011270Z * [new tag] v0.8.5 -> v0.8.5 +2025-07-23T19:29:08.6012938Z * [new tag] v0.8.5-rc.0 -> v0.8.5-rc.0 +2025-07-23T19:29:08.6014401Z * [new tag] v0.8.5-rc.1 -> v0.8.5-rc.1 +2025-07-23T19:29:08.6015724Z * [new tag] v0.8.5-rc.2 -> v0.8.5-rc.2 +2025-07-23T19:29:08.6017892Z * [new tag] v0.8.6 -> v0.8.6 +2025-07-23T19:29:08.6018958Z * [new tag] v0.8.6-rc.0 -> v0.8.6-rc.0 +2025-07-23T19:29:08.6020339Z * [new tag] v0.8.6-rc.1 -> v0.8.6-rc.1 +2025-07-23T19:29:08.6021972Z * [new tag] v0.8.7 -> v0.8.7 +2025-07-23T19:29:08.6023374Z * [new tag] v0.8.7-rc.0 -> v0.8.7-rc.0 +2025-07-23T19:29:08.6025148Z * [new tag] v0.8.7-rc.1 -> v0.8.7-rc.1 +2025-07-23T19:29:08.6026357Z * [new tag] v0.8.7-rc.2 -> v0.8.7-rc.2 +2025-07-23T19:29:08.6028100Z * [new tag] v0.8.8 -> v0.8.8 +2025-07-23T19:29:08.6029255Z * [new tag] v0.8.8-rc.0 -> v0.8.8-rc.0 +2025-07-23T19:29:08.6031023Z * [new tag] v0.8.9 -> v0.8.9 +2025-07-23T19:29:08.6033445Z * [new tag] v0.8.9-rc.0 -> v0.8.9-rc.0 +2025-07-23T19:29:08.6036680Z * [new tag] v0.8.9-rc.1 -> v0.8.9-rc.1 +2025-07-23T19:29:08.6037337Z * [new tag] v0.9.0 -> v0.9.0 +2025-07-23T19:29:08.6037951Z * [new tag] v0.9.0-rc.0 -> v0.9.0-rc.0 +2025-07-23T19:29:08.6038598Z * [new tag] v0.9.0-rc.1 -> v0.9.0-rc.1 +2025-07-23T19:29:08.6039282Z * [new tag] v0.9.0-rc.11 -> v0.9.0-rc.11 +2025-07-23T19:29:08.6041151Z * [new tag] v0.9.0-rc.12 -> v0.9.0-rc.12 +2025-07-23T19:29:08.6042336Z * [new tag] v0.9.0-rc.13 -> v0.9.0-rc.13 +2025-07-23T19:29:08.6044311Z * [new tag] v0.9.0-rc.14 -> v0.9.0-rc.14 +2025-07-23T19:29:08.6046020Z * [new tag] v0.9.0-rc.2 -> v0.9.0-rc.2 +2025-07-23T19:29:08.6047370Z * [new tag] v0.9.0-rc.3 -> v0.9.0-rc.3 +2025-07-23T19:29:08.6049165Z * [new tag] v0.9.0-rc.4 -> v0.9.0-rc.4 +2025-07-23T19:29:08.6050592Z * [new tag] v0.9.0-rc.5 -> v0.9.0-rc.5 +2025-07-23T19:29:08.6052354Z * [new tag] v0.9.0-rc.6 -> v0.9.0-rc.6 +2025-07-23T19:29:08.6053608Z * [new tag] v0.9.0-rc.9 -> v0.9.0-rc.9 +2025-07-23T19:29:08.6056032Z * [new tag] with-avalanchego-test-pkg -> with-avalanchego-test-pkg +2025-07-23T19:29:08.6059187Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge +2025-07-23T19:29:08.6161516Z ##[endgroup] +2025-07-23T19:29:08.6161998Z ##[group]Determining the checkout info +2025-07-23T19:29:08.6162862Z ##[endgroup] +2025-07-23T19:29:08.6168716Z [command]/usr/bin/git sparse-checkout disable +2025-07-23T19:29:08.6210104Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig +2025-07-23T19:29:08.6236282Z ##[group]Checking out the ref +2025-07-23T19:29:08.6240631Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge +2025-07-23T19:29:08.7375106Z Note: switching to 'refs/remotes/pull/1065/merge'. +2025-07-23T19:29:08.7375890Z +2025-07-23T19:29:08.7376153Z You are in 'detached HEAD' state. You can look around, make experimental +2025-07-23T19:29:08.7376755Z changes and commit them, and you can discard any commits you make in this +2025-07-23T19:29:08.7377277Z state without impacting any branches by switching back to a branch. +2025-07-23T19:29:08.7377596Z +2025-07-23T19:29:08.7377802Z If you want to create a new branch to retain commits you create, you may +2025-07-23T19:29:08.7378303Z do so (now or later) by using -c with the switch command. Example: +2025-07-23T19:29:08.7378623Z +2025-07-23T19:29:08.7378750Z git switch -c +2025-07-23T19:29:08.7378983Z +2025-07-23T19:29:08.7379099Z Or undo this operation with: +2025-07-23T19:29:08.7379283Z +2025-07-23T19:29:08.7379388Z git switch - +2025-07-23T19:29:08.7379540Z +2025-07-23T19:29:08.7379791Z Turn off this advice by setting config variable advice.detachedHead to false +2025-07-23T19:29:08.7380126Z +2025-07-23T19:29:08.7380475Z HEAD is now at d85ec0364 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 +2025-07-23T19:29:08.7391895Z ##[endgroup] +2025-07-23T19:29:08.7433421Z [command]/usr/bin/git log -1 --format=%H +2025-07-23T19:29:08.7455287Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 diff --git a/logs_42241282643/e2e warp tests/3_Set up Go.txt b/logs_42241282643/e2e warp tests/3_Set up Go.txt new file mode 100644 index 0000000000..3683cb78f5 --- /dev/null +++ b/logs_42241282643/e2e warp tests/3_Set up Go.txt @@ -0,0 +1,79 @@ +2025-07-23T19:29:08.7667409Z ##[group]Run actions/setup-go@v5 +2025-07-23T19:29:08.7667659Z with: +2025-07-23T19:29:08.7667838Z go-version-file: go.mod +2025-07-23T19:29:08.7668048Z check-latest: false +2025-07-23T19:29:08.7668362Z token: *** +2025-07-23T19:29:08.7668527Z cache: true +2025-07-23T19:29:08.7668695Z ##[endgroup] +2025-07-23T19:29:08.9269046Z Setup go version spec 1.23.9 +2025-07-23T19:29:08.9280250Z Attempting to download 1.23.9... +2025-07-23T19:29:09.2290844Z matching 1.23.9... +2025-07-23T19:29:09.2332563Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz +2025-07-23T19:29:09.7498132Z Extracting Go... +2025-07-23T19:29:09.7602002Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/37ec91b0-76a2-4903-b265-0c32d531296b -f /home/runner/work/_temp/76e90d44-c8d9-4477-a2a6-b1069342d5ff +2025-07-23T19:29:11.3968581Z Successfully extracted go to /home/runner/work/_temp/37ec91b0-76a2-4903-b265-0c32d531296b +2025-07-23T19:29:11.3969244Z Adding to the cache ... +2025-07-23T19:29:15.6448799Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 +2025-07-23T19:29:15.6449360Z Added go to the path +2025-07-23T19:29:15.6451812Z Successfully set up Go version 1.23.9 +2025-07-23T19:29:15.6642402Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE +2025-07-23T19:29:15.6670314Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE +2025-07-23T19:29:15.6701225Z /home/runner/go/pkg/mod +2025-07-23T19:29:15.6715930Z /home/runner/.cache/go-build +2025-07-23T19:29:15.7377750Z Cache hit for: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:16.7739769Z Received 226492416 of 743127682 (30.5%), 214.9 MBs/sec +2025-07-23T19:29:17.7730177Z Received 436207616 of 743127682 (58.7%), 207.5 MBs/sec +2025-07-23T19:29:18.7730374Z Received 671088640 of 743127682 (90.3%), 213.0 MBs/sec +2025-07-23T19:29:19.0758735Z Received 743127682 of 743127682 (100.0%), 214.2 MBs/sec +2025-07-23T19:29:19.0760018Z Cache Size: ~709 MB (743127682 B) +2025-07-23T19:29:19.0878207Z [command]/usr/bin/tar -xf /home/runner/work/_temp/d2a69ecc-e327-4505-a636-70e75d99984a/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd +2025-07-23T19:29:25.9750734Z Cache restored successfully +2025-07-23T19:29:26.1098517Z Cache restored from key: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d +2025-07-23T19:29:26.1119471Z go version go1.23.9 linux/amd64 +2025-07-23T19:29:26.1119669Z +2025-07-23T19:29:26.1119940Z ##[group]go env +2025-07-23T19:29:26.3282490Z GO111MODULE='' +2025-07-23T19:29:26.3283866Z GOARCH='amd64' +2025-07-23T19:29:26.3284689Z GOBIN='' +2025-07-23T19:29:26.3285075Z GOCACHE='/home/runner/.cache/go-build' +2025-07-23T19:29:26.3285553Z GOENV='/home/runner/.config/go/env' +2025-07-23T19:29:26.3285940Z GOEXE='' +2025-07-23T19:29:26.3286154Z GOEXPERIMENT='' +2025-07-23T19:29:26.3286419Z GOFLAGS='' +2025-07-23T19:29:26.3286703Z GOHOSTARCH='amd64' +2025-07-23T19:29:26.3287046Z GOHOSTOS='linux' +2025-07-23T19:29:26.3287617Z GOINSECURE='' +2025-07-23T19:29:26.3287975Z GOMODCACHE='/home/runner/go/pkg/mod' +2025-07-23T19:29:26.3288239Z GONOPROXY='' +2025-07-23T19:29:26.3288412Z GONOSUMDB='' +2025-07-23T19:29:26.3288571Z GOOS='linux' +2025-07-23T19:29:26.3288749Z GOPATH='/home/runner/go' +2025-07-23T19:29:26.3289243Z GOPRIVATE='' +2025-07-23T19:29:26.3289654Z GOPROXY='https://proxy.golang.org,direct' +2025-07-23T19:29:26.3290140Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' +2025-07-23T19:29:26.3290601Z GOSUMDB='sum.golang.org' +2025-07-23T19:29:26.3290971Z GOTMPDIR='' +2025-07-23T19:29:26.3291269Z GOTOOLCHAIN='auto' +2025-07-23T19:29:26.3291904Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' +2025-07-23T19:29:26.3292462Z GOVCS='' +2025-07-23T19:29:26.3292739Z GOVERSION='go1.23.9' +2025-07-23T19:29:26.3293053Z GODEBUG='' +2025-07-23T19:29:26.3293338Z GOTELEMETRY='local' +2025-07-23T19:29:26.3293748Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' +2025-07-23T19:29:26.3294746Z GCCGO='gccgo' +2025-07-23T19:29:26.3295041Z GOAMD64='v1' +2025-07-23T19:29:26.3295322Z AR='ar' +2025-07-23T19:29:26.3295576Z CC='gcc' +2025-07-23T19:29:26.3295838Z CXX='g++' +2025-07-23T19:29:26.3296108Z CGO_ENABLED='1' +2025-07-23T19:29:26.3296484Z GOMOD='/home/runner/work/coreth/coreth/go.mod' +2025-07-23T19:29:26.3296783Z GOWORK='' +2025-07-23T19:29:26.3296960Z CGO_CFLAGS='-O2 -g' +2025-07-23T19:29:26.3297152Z CGO_CPPFLAGS='' +2025-07-23T19:29:26.3297666Z CGO_CXXFLAGS='-O2 -g' +2025-07-23T19:29:26.3297956Z CGO_FFLAGS='-O2 -g' +2025-07-23T19:29:26.3298140Z CGO_LDFLAGS='-O2 -g' +2025-07-23T19:29:26.3298353Z PKG_CONFIG='pkg-config' +2025-07-23T19:29:26.3299569Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build906995900=/tmp/go-build -gno-record-gcc-switches' +2025-07-23T19:29:26.3300478Z +2025-07-23T19:29:26.3300945Z ##[endgroup] diff --git a/logs_42241282643/e2e warp tests/6_Build AvalancheGo and update Coreth dependency.txt b/logs_42241282643/e2e warp tests/6_Build AvalancheGo and update Coreth dependency.txt new file mode 100644 index 0000000000..80aec1b83b --- /dev/null +++ b/logs_42241282643/e2e warp tests/6_Build AvalancheGo and update Coreth dependency.txt @@ -0,0 +1,48 @@ +2025-07-23T19:29:26.3468484Z ##[group]Run ./scripts/run_task.sh build-avalanchego-with-coreth +2025-07-23T19:29:26.3468987Z ./scripts/run_task.sh build-avalanchego-with-coreth +2025-07-23T19:29:26.3502624Z shell: /usr/bin/bash -e {0} +2025-07-23T19:29:26.3502967Z env: +2025-07-23T19:29:26.3503275Z AVALANCHEGO_CLONE_PATH: /tmp/e2e/warp/avalanchego +2025-07-23T19:29:26.3503702Z ##[endgroup] +2025-07-23T19:29:27.4620185Z task: [build-avalanchego-with-coreth] ./scripts/build_avalanchego_with_coreth.sh +2025-07-23T19:29:27.4745320Z checking out target AvalancheGo version v1.13.3-rc.1 +2025-07-23T19:29:27.4745703Z creating new clone +2025-07-23T19:29:27.4758630Z Cloning into '/tmp/e2e/warp/avalanchego'... +2025-07-23T19:29:34.6710774Z Switched to a new branch 'test-v1.13.3-rc.1' +2025-07-23T19:29:34.6722802Z updating coreth dependency to point to /home/runner/work/coreth/coreth +2025-07-23T19:29:34.7223076Z go: downloading connectrpc.com/connect v1.18.1 +2025-07-23T19:29:34.7244097Z go: downloading github.com/prometheus/client_golang v1.16.0 +2025-07-23T19:29:34.7283843Z go: downloading github.com/prometheus/client_model v0.3.0 +2025-07-23T19:29:34.7285989Z go: downloading github.com/prometheus/common v0.42.0 +2025-07-23T19:29:34.7957690Z go: downloading google.golang.org/protobuf v1.35.2 +2025-07-23T19:29:34.9971339Z go: downloading github.com/jackpal/gateway v1.0.6 +2025-07-23T19:29:35.0009809Z go: downloading github.com/ava-labs/simplex v0.0.0-20250626192006-220e6aeacdc1 +2025-07-23T19:29:35.0157339Z go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.4 +2025-07-23T19:29:35.0400961Z go: downloading github.com/compose-spec/compose-go v1.20.2 +2025-07-23T19:29:35.1168246Z go: downloading github.com/antithesishq/antithesis-sdk-go v0.3.8 +2025-07-23T19:29:35.2134228Z go: downloading github.com/prometheus/procfs v0.10.1 +2025-07-23T19:29:35.2732155Z go: downloading github.com/ava-labs/ledger-avalanche/go v0.0.0-20241009183145-e6f90a8a1a60 +2025-07-23T19:29:35.3187692Z go: downloading github.com/tyler-smith/go-bip32 v1.0.0 +2025-07-23T19:29:35.3529802Z go: downloading github.com/nbutton23/zxcvbn-go v0.0.0-20180912185939-ae427f1e4c1d +2025-07-23T19:29:35.3566296Z go: downloading connectrpc.com/grpcreflect v1.3.0 +2025-07-23T19:29:35.3793520Z go: downloading github.com/inconshreveable/mousetrap v1.1.0 +2025-07-23T19:29:35.3871338Z go: downloading github.com/distribution/reference v0.5.0 +2025-07-23T19:29:35.3872462Z go: downloading github.com/docker/go-connections v0.4.0 +2025-07-23T19:29:35.3885609Z go: downloading github.com/docker/go-units v0.5.0 +2025-07-23T19:29:35.4010892Z go: downloading github.com/mattn/go-shellwords v1.0.12 +2025-07-23T19:29:35.4032509Z go: downloading github.com/opencontainers/go-digest v1.0.0 +2025-07-23T19:29:35.4047771Z go: downloading gotest.tools/v3 v3.4.0 +2025-07-23T19:29:35.4192007Z go: downloading github.com/klauspost/compress v1.15.15 +2025-07-23T19:29:35.4386239Z go: downloading github.com/zondax/ledger-go v1.0.0 +2025-07-23T19:29:35.4532111Z go: downloading github.com/ava-labs/firewood-go-ethhash/ffi v0.0.8 +2025-07-23T19:29:35.4587761Z go: downloading github.com/FactomProject/basen v0.0.0-20150613233007-fe3947df716e +2025-07-23T19:29:35.5324080Z go: downloading github.com/FactomProject/btcutilecc v0.0.0-20130527213604-d3a63a5752ec +2025-07-23T19:29:35.6012880Z go: downloading golang.org/x/oauth2 v0.21.0 +2025-07-23T19:29:35.6432200Z go: downloading github.com/golang-jwt/jwt/v4 v4.5.0 +2025-07-23T19:29:35.6688138Z go: downloading github.com/zondax/hid v0.9.2 +2025-07-23T19:29:35.6771022Z go: downloading github.com/golang-jwt/jwt v3.2.2+incompatible +2025-07-23T19:29:35.7067961Z go: downloading github.com/cmars/basen v0.0.0-20150613233007-fe3947df716e +2025-07-23T19:29:35.7163212Z go: downloading launchpad.net/gocheck v0.0.0-20140225173054-000000000087 +2025-07-23T19:29:35.7269370Z go: downloading github.com/sirupsen/logrus v1.9.0 +2025-07-23T19:29:37.5539311Z building avalanchego +2025-07-23T19:29:37.5659517Z Building AvalancheGo with [go version go1.23.9 linux/amd64]... diff --git a/logs_42241282643/e2e warp tests/7_Run Warp E2E Tests.txt b/logs_42241282643/e2e warp tests/7_Run Warp E2E Tests.txt new file mode 100644 index 0000000000..3b41daceef --- /dev/null +++ b/logs_42241282643/e2e warp tests/7_Run Warp E2E Tests.txt @@ -0,0 +1,826 @@ +2025-07-23T19:30:52.5253270Z ##[group]Run ava-labs/avalanchego/.github/actions/run-monitored-tmpnet-cmd@66ce7a7701db0c4b370f97b339478d5b5ebe919a +2025-07-23T19:30:52.5253805Z with: +2025-07-23T19:30:52.5254192Z run: ./scripts/run_task.sh test-e2e-warp-ci +2025-07-23T19:30:52.5254542Z run_env: AVALANCHEGO_BUILD_PATH=/tmp/e2e/warp/avalanchego/build +2025-07-23T19:30:52.5254854Z artifact_prefix: warp +2025-07-23T19:30:52.5255056Z runtime: process +2025-07-23T19:30:52.5255249Z repository_owner: ava-labs +2025-07-23T19:30:52.5255459Z repository_name: coreth +2025-07-23T19:30:52.5255656Z workflow: CI +2025-07-23T19:30:52.5255831Z run_id: 16480013789 +2025-07-23T19:30:52.5256005Z run_number: 5026 +2025-07-23T19:30:52.5256180Z run_attempt: 1 +2025-07-23T19:30:52.5256349Z job: e2e_warp +2025-07-23T19:30:52.5256535Z ##[endgroup] +2025-07-23T19:30:52.5351273Z ##[group]Run cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f +2025-07-23T19:30:52.5351649Z with: +2025-07-23T19:30:52.5351817Z enable_kvm: true +2025-07-23T19:30:52.5352026Z ##[endgroup] +2025-07-23T19:30:52.5367468Z ##[group]Run ${GITHUB_ACTION_PATH}/install-nix.sh +2025-07-23T19:30:52.5367826Z ${GITHUB_ACTION_PATH}/install-nix.sh +2025-07-23T19:30:52.5396773Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-07-23T19:30:52.5397086Z env: +2025-07-23T19:30:52.5397258Z INPUT_EXTRA_NIX_CONFIG: +2025-07-23T19:30:52.5397477Z INPUT_GITHUB_ACCESS_TOKEN: +2025-07-23T19:30:52.5397692Z INPUT_INSTALL_OPTIONS: +2025-07-23T19:30:52.5397886Z INPUT_INSTALL_URL: +2025-07-23T19:30:52.5398068Z INPUT_NIX_PATH: +2025-07-23T19:30:52.5398254Z INPUT_ENABLE_KVM: true +2025-07-23T19:30:52.5398662Z GITHUB_TOKEN: *** +2025-07-23T19:30:52.5398844Z ##[endgroup] +2025-07-23T19:30:52.5472677Z ##[group]Enabling KVM support +2025-07-23T19:30:52.5539648Z KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm" +2025-07-23T19:30:52.5842674Z Enabled KVM +2025-07-23T19:30:52.5843321Z ##[endgroup] +2025-07-23T19:30:52.5844261Z ##[group]Installing Nix +2025-07-23T19:30:52.6129670Z installer options: --no-channel-add --darwin-use-unencrypted-nix-store-volume --nix-extra-conf-file /tmp/tmp.W0ihg3Z3cO/nix.conf --daemon --daemon-user-count 8 +2025-07-23T19:30:52.9227119Z * Host releases.nixos.org:443 was resolved. +2025-07-23T19:30:52.9227698Z * IPv6: 2a04:4e42:77::729 +2025-07-23T19:30:52.9228048Z * IPv4: 146.75.30.217 +2025-07-23T19:30:52.9228378Z * Trying 146.75.30.217:443... +2025-07-23T19:30:52.9278018Z * Connected to releases.nixos.org (146.75.30.217) port 443 +2025-07-23T19:30:52.9292363Z * ALPN: curl offers h2,http/1.1 +2025-07-23T19:30:52.9294133Z } [5 bytes data] +2025-07-23T19:30:52.9294896Z * TLSv1.3 (OUT), TLS handshake, Client hello (1): +2025-07-23T19:30:52.9296388Z } [512 bytes data] +2025-07-23T19:30:52.9506175Z * CAfile: /etc/ssl/certs/ca-certificates.crt +2025-07-23T19:30:52.9506721Z * CApath: /etc/ssl/certs +2025-07-23T19:30:52.9510336Z { [5 bytes data] +2025-07-23T19:30:52.9511135Z * TLSv1.3 (IN), TLS handshake, Server hello (2): +2025-07-23T19:30:52.9511623Z { [104 bytes data] +2025-07-23T19:30:52.9512020Z * TLSv1.2 (IN), TLS handshake, Certificate (11): +2025-07-23T19:30:52.9512472Z { [2827 bytes data] +2025-07-23T19:30:52.9513034Z * TLSv1.2 (IN), TLS handshake, Server key exchange (12): +2025-07-23T19:30:52.9513511Z { [300 bytes data] +2025-07-23T19:30:52.9514275Z * TLSv1.2 (IN), TLS handshake, Server finished (14): +2025-07-23T19:30:52.9514739Z { [4 bytes data] +2025-07-23T19:30:52.9516391Z * TLSv1.2 (OUT), TLS handshake, Client key exchange (16): +2025-07-23T19:30:52.9516897Z } [37 bytes data] +2025-07-23T19:30:52.9517330Z * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1): +2025-07-23T19:30:52.9517835Z } [1 bytes data] +2025-07-23T19:30:52.9518140Z * TLSv1.2 (OUT), TLS handshake, Finished (20): +2025-07-23T19:30:52.9518406Z } [16 bytes data] +2025-07-23T19:30:52.9570150Z * TLSv1.2 (IN), TLS handshake, Finished (20): +2025-07-23T19:30:52.9570628Z { [16 bytes data] +2025-07-23T19:30:52.9571224Z * SSL connection using TLSv1.2 / ECDHE-RSA-CHACHA20-POLY1305 / X25519 / RSASSA-PSS +2025-07-23T19:30:52.9572183Z * ALPN: server accepted h2 +2025-07-23T19:30:52.9572410Z * Server certificate: +2025-07-23T19:30:52.9572629Z * subject: CN=releases.nixos.org +2025-07-23T19:30:52.9572876Z * start date: Oct 11 20:56:16 2024 GMT +2025-07-23T19:30:52.9573126Z * expire date: Nov 12 20:56:15 2025 GMT +2025-07-23T19:30:52.9573501Z * subjectAltName: host "releases.nixos.org" matched cert's "releases.nixos.org" +2025-07-23T19:30:52.9574214Z * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2024 Q4 +2025-07-23T19:30:52.9574579Z * SSL certificate verify ok. +2025-07-23T19:30:52.9575006Z * Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption +2025-07-23T19:30:52.9575621Z * Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption +2025-07-23T19:30:52.9576265Z * Certificate level 2: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption +2025-07-23T19:30:52.9576696Z } [5 bytes data] +2025-07-23T19:30:52.9576885Z * using HTTP/2 +2025-07-23T19:30:52.9577216Z * [HTTP/2] [1] OPENED stream for https://releases.nixos.org/nix/nix-2.26.3/install +2025-07-23T19:30:52.9577574Z * [HTTP/2] [1] [:method: GET] +2025-07-23T19:30:52.9577795Z * [HTTP/2] [1] [:scheme: https] +2025-07-23T19:30:52.9578053Z * [HTTP/2] [1] [:authority: releases.nixos.org] +2025-07-23T19:30:52.9578343Z * [HTTP/2] [1] [:path: /nix/nix-2.26.3/install] +2025-07-23T19:30:52.9578602Z * [HTTP/2] [1] [user-agent: curl/8.5.0] +2025-07-23T19:30:52.9578844Z * [HTTP/2] [1] [accept: */*] +2025-07-23T19:30:52.9579064Z } [5 bytes data] +2025-07-23T19:30:52.9579261Z > GET /nix/nix-2.26.3/install HTTP/2 +2025-07-23T19:30:52.9579502Z > Host: releases.nixos.org +2025-07-23T19:30:52.9579747Z > User-Agent: curl/8.5.0 +2025-07-23T19:30:52.9580128Z > Accept: */* +2025-07-23T19:30:52.9580289Z > +2025-07-23T19:30:52.9621308Z { [5 bytes data] +2025-07-23T19:30:52.9642724Z < HTTP/2 200 +2025-07-23T19:30:52.9643374Z < last-modified: Wed, 05 Mar 2025 18:21:15 GMT +2025-07-23T19:30:52.9644579Z < etag: "c6753896884bce9b95ec3ca7be157ef6" +2025-07-23T19:30:52.9645197Z < x-amz-server-side-encryption: AES256 +2025-07-23T19:30:52.9645739Z < content-type: text/plain +2025-07-23T19:30:52.9646190Z < server: AmazonS3 +2025-07-23T19:30:52.9646576Z < via: 1.1 varnish, 1.1 varnish +2025-07-23T19:30:52.9647054Z < access-control-allow-origin: * +2025-07-23T19:30:52.9647527Z < accept-ranges: bytes +2025-07-23T19:30:52.9647941Z < date: Wed, 23 Jul 2025 19:30:52 GMT +2025-07-23T19:30:52.9648401Z < age: 9629 +2025-07-23T19:30:52.9648903Z < x-served-by: cache-dub4357-DUB, cache-iad-kiad7000142-IAD +2025-07-23T19:30:52.9649472Z < x-cache: HIT, HIT +2025-07-23T19:30:52.9649773Z < x-cache-hits: 3, 1 +2025-07-23T19:30:52.9650093Z < content-length: 4267 +2025-07-23T19:30:52.9650397Z < +2025-07-23T19:30:52.9650652Z { [4267 bytes data] +2025-07-23T19:30:52.9651048Z * Connection #0 to host releases.nixos.org left intact +2025-07-23T19:30:52.9721178Z downloading Nix 2.26.3 binary tarball for x86_64-linux from 'https://releases.nixos.org/nix/nix-2.26.3/nix-2.26.3-x86_64-linux.tar.xz' to '/tmp/nix-binary-tarball-unpack.BFXbScEBNw'... +2025-07-23T19:30:52.9789513Z % Total % Received % Xferd Average Speed Time Time Time Current +2025-07-23T19:30:52.9791319Z Dload Upload Total Spent Left Speed +2025-07-23T19:30:52.9792603Z +2025-07-23T19:30:53.0430705Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 +2025-07-23T19:30:53.1646723Z 0 22.6M 0 143k 0 0 2232k 0 0:00:10 --:--:-- 0:00:10 2207k +2025-07-23T19:30:53.1647259Z 100 22.6M 100 22.6M 0 0 121M 0 --:--:-- --:--:-- --:--:-- 121M +2025-07-23T19:30:54.7498707Z Note: a multi-user installation is possible. See https://nixos.org/manual/nix/stable/installation/installing-binary.html#multi-user-installation +2025-07-23T19:30:54.7508664Z Warning: the flag --darwin-use-unencrypted-nix-store-volume +2025-07-23T19:30:54.7509517Z is no longer needed and will be removed in the future. +2025-07-23T19:30:54.7510212Z +2025-07-23T19:30:54.7520151Z Switching to the Multi-user Installer +2025-07-23T19:30:54.7620316Z Welcome to the Multi-User Nix Installation +2025-07-23T19:30:54.7629721Z  +2025-07-23T19:30:54.7630244Z This installation tool will set up your computer with the Nix package +2025-07-23T19:30:54.7630861Z manager. This will happen in a few stages: +2025-07-23T19:30:54.7631054Z +2025-07-23T19:30:54.7631243Z 1. Make sure your computer doesn't already have Nix. If it does, I +2025-07-23T19:30:54.7631733Z will show you instructions on how to clean up your old install. +2025-07-23T19:30:54.7632096Z +2025-07-23T19:30:54.7632378Z 2. Show you what I am going to install and where. Then I will ask +2025-07-23T19:30:54.7632972Z if you are ready to continue. +2025-07-23T19:30:54.7633207Z +2025-07-23T19:30:54.7633515Z 3. Create the system users (uids [30001..30008]) and groups (gid 30000) +2025-07-23T19:30:54.7634279Z that the Nix daemon uses to run builds. To create system users +2025-07-23T19:30:54.7634705Z in a different range, exit and run this tool again with +2025-07-23T19:30:54.7635021Z NIX_FIRST_BUILD_UID set. +2025-07-23T19:30:54.7635181Z +2025-07-23T19:30:54.7635331Z 4. Perform the basic installation of the Nix files daemon. +2025-07-23T19:30:54.7635544Z +2025-07-23T19:30:54.7635725Z 5. Configure your shell to import special Nix Profile files, so you +2025-07-23T19:30:54.7636045Z can use Nix. +2025-07-23T19:30:54.7636156Z +2025-07-23T19:30:54.7636238Z 6. Start the Nix daemon. +2025-07-23T19:30:54.7636366Z +2025-07-23T19:30:54.7636626Z Would you like to see a more detailed list of what I will do? +2025-07-23T19:30:54.7637019Z No TTY, assuming you would say yes :) +2025-07-23T19:30:54.7642145Z +2025-07-23T19:30:54.7642434Z I will: +2025-07-23T19:30:54.7642566Z +2025-07-23T19:30:54.7642741Z - make sure your computer doesn't already have Nix files +2025-07-23T19:30:54.7643157Z (if it does, I will tell you how to clean them up.) +2025-07-23T19:30:54.7643840Z - create local users (see the list above for the users I'll make) +2025-07-23T19:30:54.7644690Z - create a local group (nixbld) +2025-07-23T19:30:54.7645006Z - install Nix in /nix +2025-07-23T19:30:54.7645245Z - create a configuration file in /etc/nix +2025-07-23T19:30:54.7645605Z - set up the "default profile" by creating some Nix-related files in +2025-07-23T19:30:54.7645937Z /root +2025-07-23T19:30:54.7657327Z - back up /etc/bash.bashrc to /etc/bash.bashrc.backup-before-nix +2025-07-23T19:30:54.7657797Z - update /etc/bash.bashrc to include some Nix configuration +2025-07-23T19:30:54.7668871Z - load and start a service (at /etc/systemd/system/nix-daemon.service +2025-07-23T19:30:54.7669363Z and /etc/systemd/system/nix-daemon.socket) for nix-daemon +2025-07-23T19:30:54.7669621Z +2025-07-23T19:30:54.7671449Z Ready to continue? +2025-07-23T19:30:54.7671987Z No TTY, assuming you would say yes :) +2025-07-23T19:30:54.7692828Z +2025-07-23T19:30:54.7693410Z ---- let's talk about sudo ----------------------------------------------------- +2025-07-23T19:30:54.7704564Z This script is going to call sudo a lot. Normally, it would show you +2025-07-23T19:30:54.7705345Z exactly what commands it is running and why. However, the script is +2025-07-23T19:30:54.7705710Z run in a headless fashion, like this: +2025-07-23T19:30:54.7705879Z +2025-07-23T19:30:54.7706041Z $ curl -L https://nixos.org/nix/install | sh +2025-07-23T19:30:54.7706353Z +2025-07-23T19:30:54.7706629Z or maybe in a CI pipeline. Because of that, I'm going to skip the +2025-07-23T19:30:54.7707111Z verbose output in the interest of brevity. +2025-07-23T19:30:54.7707294Z +2025-07-23T19:30:54.7707375Z If you would like to +2025-07-23T19:30:54.7707609Z see the output, try like this: +2025-07-23T19:30:54.7707756Z +2025-07-23T19:30:54.7707934Z $ curl -L -o install-nix https://nixos.org/nix/install +2025-07-23T19:30:54.7708231Z $ sh ./install-nix +2025-07-23T19:30:54.7708347Z +2025-07-23T19:30:54.7708564Z +2025-07-23T19:30:54.7708769Z ~~> Checking for artifacts of previous installs +2025-07-23T19:30:54.7716877Z Before I try to install, I'll check for signs Nix already is or has +2025-07-23T19:30:54.7717479Z been installed on this system. +2025-07-23T19:30:54.7750345Z +2025-07-23T19:30:54.7751044Z ---- Nix config report --------------------------------------------------------- +2025-07-23T19:30:54.7751808Z  Temp Dir: /tmp/tmp.eIS0LfBP7g +2025-07-23T19:30:54.7752355Z  Nix Root: /nix +2025-07-23T19:30:54.7752728Z  Build Users: 8 +2025-07-23T19:30:54.7752995Z  Build Group ID: 30000 +2025-07-23T19:30:54.7753257Z Build Group Name: nixbld +2025-07-23T19:30:54.7753406Z +2025-07-23T19:30:54.7753516Z build users: +2025-07-23T19:30:54.7753741Z  Username: UID +2025-07-23T19:30:54.7780622Z  nixbld1: 30001 +2025-07-23T19:30:54.7790747Z  nixbld2: 30002 +2025-07-23T19:30:54.7800674Z  nixbld3: 30003 +2025-07-23T19:30:54.7810874Z  nixbld4: 30004 +2025-07-23T19:30:54.7820854Z  nixbld5: 30005 +2025-07-23T19:30:54.7830777Z  nixbld6: 30006 +2025-07-23T19:30:54.7840529Z  nixbld7: 30007 +2025-07-23T19:30:54.7850712Z  nixbld8: 30008 +2025-07-23T19:30:54.7850995Z +2025-07-23T19:30:54.7851233Z Ready to continue? +2025-07-23T19:30:54.7851827Z No TTY, assuming you would say yes :) +2025-07-23T19:30:54.7852308Z +2025-07-23T19:30:54.7852613Z ~~> Setting up the build group nixbld +2025-07-23T19:30:54.8255172Z  Created: Yes +2025-07-23T19:30:54.8277990Z +2025-07-23T19:30:54.8278405Z ~~> Setting up the build user nixbld1 +2025-07-23T19:30:54.8428488Z useradd warning: nixbld1's uid 30001 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:54.8513656Z  Created: Yes +2025-07-23T19:30:54.8519207Z  Hidden: Yes +2025-07-23T19:30:54.8537204Z  Home Directory: /var/empty +2025-07-23T19:30:54.8557215Z  Note: Nix build user 1 +2025-07-23T19:30:54.8574914Z  Logins Disabled: Yes +2025-07-23T19:30:54.8597494Z  Member of nixbld: Yes +2025-07-23T19:30:54.8615458Z  PrimaryGroupID: 30000 +2025-07-23T19:30:54.8626211Z +2025-07-23T19:30:54.8626542Z ~~> Setting up the build user nixbld2 +2025-07-23T19:30:54.8754868Z useradd warning: nixbld2's uid 30002 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:54.8834230Z  Created: Yes +2025-07-23T19:30:54.8839512Z  Hidden: Yes +2025-07-23T19:30:54.8857379Z  Home Directory: /var/empty +2025-07-23T19:30:54.8877598Z  Note: Nix build user 2 +2025-07-23T19:30:54.8895448Z  Logins Disabled: Yes +2025-07-23T19:30:54.8913569Z  Member of nixbld: Yes +2025-07-23T19:30:54.8931720Z  PrimaryGroupID: 30000 +2025-07-23T19:30:54.8942401Z +2025-07-23T19:30:54.8942711Z ~~> Setting up the build user nixbld3 +2025-07-23T19:30:54.9073029Z useradd warning: nixbld3's uid 30003 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:54.9156799Z  Created: Yes +2025-07-23T19:30:54.9162019Z  Hidden: Yes +2025-07-23T19:30:54.9180465Z  Home Directory: /var/empty +2025-07-23T19:30:54.9200289Z  Note: Nix build user 3 +2025-07-23T19:30:54.9217816Z  Logins Disabled: Yes +2025-07-23T19:30:54.9236131Z  Member of nixbld: Yes +2025-07-23T19:30:54.9259374Z  PrimaryGroupID: 30000 +2025-07-23T19:30:54.9271356Z +2025-07-23T19:30:54.9272804Z ~~> Setting up the build user nixbld4 +2025-07-23T19:30:54.9401877Z useradd warning: nixbld4's uid 30004 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:54.9483579Z  Created: Yes +2025-07-23T19:30:54.9489187Z  Hidden: Yes +2025-07-23T19:30:54.9507712Z  Home Directory: /var/empty +2025-07-23T19:30:54.9527561Z  Note: Nix build user 4 +2025-07-23T19:30:54.9545436Z  Logins Disabled: Yes +2025-07-23T19:30:54.9563805Z  Member of nixbld: Yes +2025-07-23T19:30:54.9582130Z  PrimaryGroupID: 30000 +2025-07-23T19:30:54.9592895Z +2025-07-23T19:30:54.9593502Z ~~> Setting up the build user nixbld5 +2025-07-23T19:30:54.9740599Z useradd warning: nixbld5's uid 30005 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:54.9826935Z  Created: Yes +2025-07-23T19:30:54.9832246Z  Hidden: Yes +2025-07-23T19:30:54.9850505Z  Home Directory: /var/empty +2025-07-23T19:30:54.9870493Z  Note: Nix build user 5 +2025-07-23T19:30:54.9888218Z  Logins Disabled: Yes +2025-07-23T19:30:54.9906368Z  Member of nixbld: Yes +2025-07-23T19:30:54.9924854Z  PrimaryGroupID: 30000 +2025-07-23T19:30:54.9935212Z +2025-07-23T19:30:54.9935591Z ~~> Setting up the build user nixbld6 +2025-07-23T19:30:55.0064873Z useradd warning: nixbld6's uid 30006 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:55.0148582Z  Created: Yes +2025-07-23T19:30:55.0153995Z  Hidden: Yes +2025-07-23T19:30:55.0171940Z  Home Directory: /var/empty +2025-07-23T19:30:55.0192119Z  Note: Nix build user 6 +2025-07-23T19:30:55.0210166Z  Logins Disabled: Yes +2025-07-23T19:30:55.0229029Z  Member of nixbld: Yes +2025-07-23T19:30:55.0246943Z  PrimaryGroupID: 30000 +2025-07-23T19:30:55.0257882Z +2025-07-23T19:30:55.0258304Z ~~> Setting up the build user nixbld7 +2025-07-23T19:30:55.0386690Z useradd warning: nixbld7's uid 30007 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:55.0482587Z  Created: Yes +2025-07-23T19:30:55.0488048Z  Hidden: Yes +2025-07-23T19:30:55.0507672Z  Home Directory: /var/empty +2025-07-23T19:30:55.0528260Z  Note: Nix build user 7 +2025-07-23T19:30:55.0546374Z  Logins Disabled: Yes +2025-07-23T19:30:55.0565137Z  Member of nixbld: Yes +2025-07-23T19:30:55.0582804Z  PrimaryGroupID: 30000 +2025-07-23T19:30:55.0593468Z +2025-07-23T19:30:55.0594077Z ~~> Setting up the build user nixbld8 +2025-07-23T19:30:55.0727619Z useradd warning: nixbld8's uid 30008 is greater than SYS_UID_MAX 999 +2025-07-23T19:30:55.0813597Z  Created: Yes +2025-07-23T19:30:55.0819175Z  Hidden: Yes +2025-07-23T19:30:55.0838051Z  Home Directory: /var/empty +2025-07-23T19:30:55.0858038Z  Note: Nix build user 8 +2025-07-23T19:30:55.0876432Z  Logins Disabled: Yes +2025-07-23T19:30:55.0895155Z  Member of nixbld: Yes +2025-07-23T19:30:55.0913171Z  PrimaryGroupID: 30000 +2025-07-23T19:30:55.0913507Z +2025-07-23T19:30:55.0914060Z ~~> Setting up the basic directory structure +2025-07-23T19:30:55.1046982Z install: creating directory '/nix' +2025-07-23T19:30:55.1047535Z install: creating directory '/nix/var' +2025-07-23T19:30:55.1047996Z install: creating directory '/nix/var/log' +2025-07-23T19:30:55.1048336Z install: creating directory '/nix/var/log/nix' +2025-07-23T19:30:55.1048642Z install: creating directory '/nix/var/log/nix/drvs' +2025-07-23T19:30:55.1048941Z install: creating directory '/nix/var/nix' +2025-07-23T19:30:55.1049253Z install: creating directory '/nix/var/nix/db' +2025-07-23T19:30:55.1049782Z install: creating directory '/nix/var/nix/gcroots' +2025-07-23T19:30:55.1050139Z install: creating directory '/nix/var/nix/profiles' +2025-07-23T19:30:55.1050474Z install: creating directory '/nix/var/nix/temproots' +2025-07-23T19:30:55.1050816Z install: creating directory '/nix/var/nix/userpool' +2025-07-23T19:30:55.1051154Z install: creating directory '/nix/var/nix/daemon-socket' +2025-07-23T19:30:55.1051523Z install: creating directory '/nix/var/nix/gcroots/per-user' +2025-07-23T19:30:55.1051914Z install: creating directory '/nix/var/nix/profiles/per-user' +2025-07-23T19:30:55.1129229Z install: creating directory '/nix/store' +2025-07-23T19:30:55.1213749Z install: creating directory '/etc/nix' +2025-07-23T19:30:55.1224142Z +2025-07-23T19:30:55.1224682Z ~~> Installing Nix +2025-07-23T19:30:55.3190219Z  Alright! We have our first nix at /nix/store/x3235311q3n51rppm2y2ycwd7nb3mgpn-nix-2.26.3 +2025-07-23T19:30:55.3906022Z Just finished getting the nix database ready. +2025-07-23T19:30:55.3908871Z +2025-07-23T19:30:55.3910092Z ~~> Setting up shell profiles: /etc/bashrc /etc/profile.d/nix.sh /etc/zshrc /etc/bash.bashrc /etc/zsh/zshrc +2025-07-23T19:30:55.4075762Z  +2025-07-23T19:30:55.4076049Z # Nix +2025-07-23T19:30:55.4076482Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-07-23T19:30:55.4077359Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-07-23T19:30:55.4077945Z fi +2025-07-23T19:30:55.4078226Z # End Nix +2025-07-23T19:30:55.4078391Z +2025-07-23T19:30:55.4246690Z +2025-07-23T19:30:55.4246861Z # Nix +2025-07-23T19:30:55.4247314Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-07-23T19:30:55.4247941Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-07-23T19:30:55.4248486Z fi +2025-07-23T19:30:55.4248766Z # End Nix +2025-07-23T19:30:55.4248940Z +2025-07-23T19:30:55.4418548Z +2025-07-23T19:30:55.4418936Z # Nix +2025-07-23T19:30:55.4419634Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-07-23T19:30:55.4420521Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-07-23T19:30:55.4421078Z fi +2025-07-23T19:30:55.4421356Z # End Nix +2025-07-23T19:30:55.4421514Z +2025-07-23T19:30:55.4591652Z +2025-07-23T19:30:55.4592074Z # Nix +2025-07-23T19:30:55.4592630Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then +2025-07-23T19:30:55.4593534Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' +2025-07-23T19:30:55.4594753Z fi +2025-07-23T19:30:55.4595037Z # End Nix +2025-07-23T19:30:55.4595205Z +2025-07-23T19:30:55.4617675Z +2025-07-23T19:30:55.4618771Z ~~> Setting up shell profiles for Fish with conf.d/nix.fish inside /etc/fish /usr/local/etc/fish /opt/homebrew/etc/fish /opt/local/etc/fish +2025-07-23T19:30:55.4679374Z  +2025-07-23T19:30:55.4679808Z ~~> Setting up the default profile +2025-07-23T19:30:55.4970734Z installing 'nix-2.26.3' +2025-07-23T19:30:55.5101105Z building '/nix/store/5afca9ydks0pp5szkwwhi7a6m2zmgk9g-user-environment.drv'... +2025-07-23T19:30:55.5496231Z installing 'nss-cacert-3.107' +2025-07-23T19:30:55.5622625Z building '/nix/store/ilxzpc39hcw5jr229rmajjkyz1a0fym1-user-environment.drv'... +2025-07-23T19:30:55.5831260Z  +2025-07-23T19:30:55.5831794Z ~~> Setting up the nix-daemon systemd service +2025-07-23T19:30:55.6195270Z Created symlink /etc/systemd/system/nix-daemon.service → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.service. +2025-07-23T19:30:55.8843291Z Created symlink /etc/systemd/system/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. +2025-07-23T19:30:55.8845504Z Created symlink /etc/systemd/system/sockets.target.wants/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. +2025-07-23T19:30:56.4371560Z Alright! We're done! +2025-07-23T19:30:56.4392429Z Try it! Open a new terminal, and type: +2025-07-23T19:30:56.4392967Z +2025-07-23T19:30:56.4393234Z $ nix-shell -p nix-info --run "nix-info -m" +2025-07-23T19:30:56.4393571Z +2025-07-23T19:30:56.4394102Z Thank you for using this installer. If you have any feedback or need +2025-07-23T19:30:56.4394692Z help, don't hesitate: +2025-07-23T19:30:56.4394909Z +2025-07-23T19:30:56.4395059Z You can open an issue at +2025-07-23T19:30:56.4395679Z https://github.com/NixOS/nix/issues/new?labels=installer&template=installer.md +2025-07-23T19:30:56.4396196Z +2025-07-23T19:30:56.4396480Z Or get in touch with the community: https://nixos.org/community +2025-07-23T19:30:56.4412575Z +2025-07-23T19:30:56.4413295Z ---- Reminders ----------------------------------------------------------------- +2025-07-23T19:30:56.4414224Z [ 1 ] +2025-07-23T19:30:56.4415014Z Nix won't work in active shell sessions until you restart them. +2025-07-23T19:30:56.4415430Z +2025-07-23T19:30:56.5111168Z ##[endgroup] +2025-07-23T19:30:56.5169226Z ##[group]Run /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --command echo "dependencies installed" +2025-07-23T19:30:56.5170603Z /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --command echo "dependencies installed" +2025-07-23T19:30:56.5200320Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-07-23T19:30:56.5200626Z env: +2025-07-23T19:30:56.5200805Z TMPDIR: /home/runner/work/_temp +2025-07-23T19:30:56.5201046Z ##[endgroup] +2025-07-23T19:30:56.5267910Z No local flake found, will attempt to use avalanchego flake +2025-07-23T19:30:56.5350591Z Starting nix shell for github:ava-labs/avalanchego?ref=v1.13.3-rc.1 +2025-07-23T19:30:56.7350350Z unpacking 'github:ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a' into the Git cache... +2025-07-23T19:30:58.3945635Z copying path '/nix/store/i99indk3y6pc3sm0k1xx3nakm193lqzb-source' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7445169Z copying path '/nix/store/899rx4l5zz1za8nx7ijp7swv5ibc8wx2-git-2.47.2-doc' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7450941Z copying path '/nix/store/zpab59ialz19x6f65jbjf5xb8waa54av-iana-etc-20240318' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7474131Z copying path '/nix/store/dgzz9k53hz1qgklnj9667xzliyidj9cs-mailcap-2.1.54' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7480499Z copying path '/nix/store/hnpph37w6p5jfspwf5pksljpf0wqwjg3-perl5.40.0-Digest-HMAC-1.04' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7484836Z copying path '/nix/store/cnb01qfmg8c3irp630nplhwa201d7xsr-perl5.40.0-FCGI-ProcManager-0.28' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7486236Z copying path '/nix/store/v657ak4hdkixvq99rk3qvyh28in945dv-perl5.40.0-HTML-TagCloud-0.38' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7502209Z copying path '/nix/store/9qrv0d0yd9wss610gjzv3507ry6v9mzw-perl5.40.0-URI-5.21' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7506758Z copying path '/nix/store/pz7y4qd8lyhg9y6wmb9hynivx36f53zp-perl5.40.0-libnet-3.15' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7510214Z copying path '/nix/store/l6mypzy4rvkxd5kwzs18d88syirislib-tzdata-2024b' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7526236Z copying path '/nix/store/czlhi3r9b6ip4xyynwibfhm458ljwsir-gcc-13.3.0-libgcc' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7534048Z copying path '/nix/store/d8qbcrirc6jidfacy0qa50zy07i15xcz-gnu-config-2024-01-01' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7586503Z copying path '/nix/store/rscnjwdmhya0wcdmbygr3jpz6p39kvhr-perl5.40.0-Encode-Locale-1.05' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7590915Z copying path '/nix/store/w9yrswzdifcjhg0righ76aqb6bpslhkb-perl5.40.0-Mozilla-CA-20230821' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7593116Z copying path '/nix/store/74bbxwiamv62d2l089f1r8apv295vsry-perl5.40.0-HTML-Tagset-3.20' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7594818Z copying path '/nix/store/krx6xw6wxakapdkviirq57yh3nl3227h-perl5.40.0-IO-HTML-1.004' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7598037Z copying path '/nix/store/3r0pprxsd9n52nb2yqq3idwb75d0spzd-perl5.40.0-LWP-MediaTypes-6.04' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7690269Z copying path '/nix/store/maxa3xhmxggrc5v2vc0c3pjb79hjlkp9-glibc-2.40-66' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7694241Z copying path '/nix/store/dvsai0ym9czjl5mcsarcdwccb70615n4-linux-headers-6.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7705389Z copying path '/nix/store/x6i8jiz3yv3h209xfbz9a3ch1sm16167-dns-root-data-2024-06-20' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7708037Z copying path '/nix/store/5ahjfkydg49xvbr3vghhv317prgspnf3-mirrors-list' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7709749Z copying path '/nix/store/swnhrfysvmwjvibcafm0im377pcfs80v-curl-8.12.1-man' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7715293Z copying path '/nix/store/970fk2m63qra4ybkpp99rw7mld9fphlv-nghttp2-1.64.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7836642Z copying path '/nix/store/frpqzb3223826xq72s0fcjmjmj50wpyn-perl5.40.0-Authen-SASL-2.1700' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7886692Z copying path '/nix/store/ldlsmrf2rrq28s08mzjk245vr26dwwhi-perl5.40.0-Test-RequiresInternet-0.05' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7888406Z copying path '/nix/store/hz5m52dx8x6vvi5pp0yikxb3b05bmi2j-perl5.40.0-Test-Needs-0.002010' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7889972Z copying path '/nix/store/vlfgix8rcbj3l9yk0rna1damxkafbq18-perl5.40.0-Net-HTTP-6.23' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7901072Z copying path '/nix/store/vvjpgyk6jgd6k74pgpjrln6m6aqyiaig-perl5.40.0-Try-Tiny-0.31' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7905595Z copying path '/nix/store/6aqxgf5ygcscqsh4p9krd0dz2hc1cn0w-perl5.40.0-WWW-RobotRules-6.02' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7907315Z copying path '/nix/store/lj7p9q5kgmdcq768rvsgvjndi42mjcn8-publicsuffix-list-0-unstable-2024-10-25' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7908946Z copying path '/nix/store/5xvxvpl9armf0p6y9m4g1zl1mypvr9m7-perl5.40.0-TimeDate-2.33' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.7925639Z copying path '/nix/store/i9ymkbklv1q9yzl7wwx7300wbkqdln0r-update-autotools-gnu-config-scripts-hook' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8170577Z copying path '/nix/store/2h648f4xlzszyc01yf67xd2rgira65js-perl5.40.0-Test-Fatal-0.017' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8283200Z copying path '/nix/store/shx8jax9b662cd9nlml731hh9wks24v1-perl5.40.0-HTTP-Date-6.06' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8484773Z copying path '/nix/store/0m34prvcx3d3vd9f4djbaqji7yb9swsh-perl5.40.0-HTTP-CookieJar-0.014' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8486456Z copying path '/nix/store/i9hiqc4dfksm9cpqvff39smfpn49zbj6-perl5.40.0-File-Listing-6.16' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8839035Z copying path '/nix/store/23cshhh8k7z46gadr86krv15xphggawm-kubectl-1.31.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8844910Z copying path '/nix/store/1fqgvq0i498w4ynywyj224i49izzzqrk-protoc-gen-go-grpc-1.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8846457Z copying path '/nix/store/as8g73awbgrhpf5p6qjnrd5v9anw74ix-go-task-3.39.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8847822Z copying path '/nix/store/19402vwa1rndilww6fpbviz0lza8846p-kind-0.24.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:13.8849352Z copying path '/nix/store/i7r45jjmvfxiw8j7ihjx51jachylq1si-protoc-gen-go-1.35.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3491968Z copying path '/nix/store/vlgwyb076hkz7yv96sjnj9msb1jn1ggz-attr-2.5.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3494360Z copying path '/nix/store/8vpg72ik2kgxfj05lc56hkqrdrfl8xi9-bash-5.2p37' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3497658Z copying path '/nix/store/wg9gg3zkwcqhyycj0vkfnhgk5a4z9faq-ed-1.20.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3505639Z copying path '/nix/store/83s1wqvrx7yvy3g6dmdr2icgg3qqbjcp-brotli-1.1.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3507050Z copying path '/nix/store/c9z2sp8dyx1k0zk374v1142hmphashd0-buf-1.47.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3508467Z copying path '/nix/store/fcqfyri9kljs5jd7h556f004qmci1qin-expand-response-params' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3509894Z copying path '/nix/store/0hv5ymwkczx3ak8h3yldfbwbab33jnrw-expat-2.6.4' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3511207Z copying path '/nix/store/mhd0rk497xm0xnip7262xdw9bylvzh99-gcc-13.3.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3515305Z copying path '/nix/store/qiisx6c7qpyzq522j3icsfhj8ayw6ah4-bzip2-1.0.8' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3519548Z copying path '/nix/store/cfb4pxnfh2sf4csk8xh7abfqv96k66nh-glibc-2.40-66-getent' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3521192Z copying path '/nix/store/8k19h07hh2g1w5kp5yglzddswnvdmxpy-gmp-6.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3522590Z copying path '/nix/store/7zv1sq1k25gk2rvgxnm262vp5hydkv1a-gdbm-1.24-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3524128Z copying path '/nix/store/m3da56j3r7h4hp0kr8v1xsnk16x900yf-gnumake-4.4.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3527821Z copying path '/nix/store/2kiskq24j06g4qw3xs8zsy2dkawh4gxk-glibc-2.40-66-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3529337Z copying path '/nix/store/3p3fwczck2yn1wwfjnymzkz8w11vbvg7-gawk-5.3.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3648832Z copying path '/nix/store/3ks7b6p43dpvnlnxgvlcy2jaf1np37p2-gnused-4.9' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3738585Z copying path '/nix/store/1fby1pxf0z16lgl728i2sqwqr2hrw2h8-json-c-0.17' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3761536Z copying path '/nix/store/mwwpv4k7skbx4vr2qjc89pvs7mhmgapb-k9s-0.32.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3839657Z copying path '/nix/store/dyizbk50iglbibrbwbgw2mhgskwb6ham-acl-2.3.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3841848Z copying path '/nix/store/79kh226vw8rrk62jbs27hdad1clwy447-keyutils-1.6.3-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3935707Z copying path '/nix/store/r4p475lxvaklr9rj8l2a4sahkx5c0209-getent-glibc-2.40-66' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.3998337Z copying path '/nix/store/yyfzan4mn874v885jy6fs598gjb31c4l-bzip2-1.0.8-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4000725Z copying path '/nix/store/wnsn67xb3i072b6i496y002byvc3ipa3-kubernetes-helm-3.16.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4282854Z copying path '/nix/store/q57zi48njdcgxy4n8d5lm5pf746drc8f-isl-0.20' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4285260Z copying path '/nix/store/bpzy7snv1xr7s1z2xi7bw0q5z9j6g1gg-libantlr3c-3.4' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4368963Z copying path '/nix/store/0iabf1jhsfrrxkdi599kb8m37p82yr1z-audit-4.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4611654Z copying path '/nix/store/nc394xps4al1r99ziabqvajbkrhxr5b7-gzip-1.13' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4646621Z copying path '/nix/store/ky06iawcwsvxmx8yw66y2a7iy7b14yii-libapparmor-4.0.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4652826Z copying path '/nix/store/pmg7hw4ar16dhx5hk6jswvxy349wzsm7-gnutar-1.35' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4743494Z copying path '/nix/store/fx6mfndjsbb0dqn9jzf1ksz9wf1dlrq7-libcap-2.70-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4794557Z copying path '/nix/store/81awch8mhqanda1vy0c09bflgra4cxh0-glibc-2.40-66-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4815731Z copying path '/nix/store/7yf5ijcl2lh90xs5nkrdpfdvcmc9fnc5-libcbor-0.11.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.4859961Z copying path '/nix/store/bldybfhh9v9dvpms8kh87v1a6jp6i28p-libevent-2.1.12' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.5129155Z copying path '/nix/store/wxgvd9mivxdbahxidq751gxyz7x7jb8n-libffi-3.4.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.5295535Z copying path '/nix/store/p0c3g3dxr818lggbk6ms3nhm97g0pir9-libgpg-error-1.50' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.5435761Z copying path '/nix/store/2w8a5z0rcs4fk3ds3fnd03x6syjjl1hb-libmnl-1.0.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.5546315Z copying path '/nix/store/ywvi2y4yv3qyh0phw9y2ji17smh8nawj-libnfnetlink-1.0.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.5828063Z copying path '/nix/store/dg6d7zs1bwnhwb3sd3xdbldvpa163a5z-libnl-3.10.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.5903809Z copying path '/nix/store/xxc6rkndd68cq1225asn380bbj0512dg-libpsl-0.21.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.5996388Z copying path '/nix/store/qhs6zflzhdr11j6byf1c1j52z39hnaaw-db-4.8.30' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.6109285Z copying path '/nix/store/8g8wdqid20924fbppbljsl6l7gr0p21j-gettext-0.21.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.6219261Z copying path '/nix/store/dsxb6qvi21bzy21c98kb71wfbdj4lmz7-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.6509333Z copying path '/nix/store/nn7nj7xq8gdfyxqhchphzia7i34rwb0v-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.6516147Z copying path '/nix/store/rq8lq7r8vjqrbn2bgfglm9dxfi83gdg9-icu4c-74.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.6643408Z copying path '/nix/store/96m2mjx55syyky6zymjnbl3pvgxlwchb-libnftnl-1.2.8' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.6830341Z copying path '/nix/store/17195j62sjxjn0xwnmj3icr01n3d678r-libnetfilter_conntrack-1.1.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.6876024Z copying path '/nix/store/68vmpyiabh89l7hbp9z2hmwci74vnfi4-libseccomp-2.5.5-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.6997611Z copying path '/nix/store/wr7w1x0x1j4qli60wm22q3bc02dga08c-libtasn1-4.20.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.7196806Z copying path '/nix/store/hnh6ivl105y4sw0ifv4kbihrvbddmlkm-libxcrypt-4.4.36' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.7381714Z copying path '/nix/store/9yh47sg27z9263ll65d414rgcyrclk57-libxml2-2.13.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.7585622Z copying path '/nix/store/99jfkvhck3c2675n2cy71g40km6m0pf9-libassuan-2.5.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.7686172Z copying path '/nix/store/h9c111ckc8wg3ksxb7kj8cwhgaj52118-libgcrypt-1.10.3-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.7688132Z copying path '/nix/store/p9k3wzaw6d3wjgcbrfv2g1chj0mj2inb-lz4-1.10.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.7806530Z copying path '/nix/store/yh2c9f04q1vcfhpkamidrg3sdnwk5bvy-mpdecimal-4.0.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.7869269Z copying path '/nix/store/1h2yigiwy6bgpyzlywj36s5nqkgca8bv-libpcap-1.10.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.7977992Z copying path '/nix/store/9m68vvhnsq5cpkskphgw84ikl9m6wjwp-coreutils-9.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.8053053Z copying path '/nix/store/b75dbfz0gria25kn2qlfpnmp39h31spw-mpfr-4.2.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.8176482Z copying path '/nix/store/mgpn83jmnf37ky77a8qy6m466qqmlyqk-cln-1.3.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.8602809Z copying path '/nix/store/qvrp85i3yc9vw5x1vyx714m03jsf60rc-cvc4-1.8' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.8625491Z copying path '/nix/store/z7ndn3k8zfjrf713gq443q7a2ixzaab5-ncurses-6.4.20221231' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.9438530Z copying path '/nix/store/6s0zzvp9in28jkmzwh5p69v1zwpi5mi4-linux-pam-1.6.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.9568682Z copying path '/nix/store/q95qgxy40rx1ifa13j8l38sx3myvkhb9-nettle-3.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.9786597Z copying path '/nix/store/1w5jm9zaxwr5b8nvh41c7iz236my185m-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:14.9929784Z copying path '/nix/store/j4377imdqpm27h5hspds1skgsazyj0d9-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.0129610Z copying path '/nix/store/n9ya3i584zvcw6696326sdlg61d6lamf-npth-1.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.0142593Z copying path '/nix/store/kavgc464axad77kj4x4bza7s345nrhin-iptables-1.8.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.0323084Z copying path '/nix/store/pbjp09wrnbklrfy7n2h5qix15fl5ylhj-libmpc-1.3.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.0759965Z copying path '/nix/store/lr3cvmq5ahqcj29p8c6m0fdl1y8krc86-diffutils-3.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.0788429Z copying path '/nix/store/vc2d1bfy1a5y1195nq7k6p0zcm6q89nx-findutils-4.10.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.0861307Z copying path '/nix/store/isk8l71r4d1nl39mpv92ank2rs4cx3w9-openssl-3.3.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.1367243Z copying path '/nix/store/mqvgaq2bnb1701l7zcn0d6vd7w8b0z7l-openssl-3.3.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.2117561Z copying path '/nix/store/w8xb93nwhnhlkqd9kwahkzqvbg98qs74-nghttp2-1.64.0-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.2124199Z copying path '/nix/store/cjg4jmnnf26367irpagiiffrni9bk7z0-gnupg-2.4.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.2201154Z copying path '/nix/store/smd33cbgm2pwwnwj9l4b4fk39bdxfsfv-p11-kit-0.25.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.2327608Z copying path '/nix/store/zfjv48ikkqn3yhi8zi7lvqvxyscbg87n-patch-2.7.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.2815311Z copying path '/nix/store/9wwkzvmrlv43y71rbw8sbh9bamc62a16-patchelf-0.15.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3129389Z copying path '/nix/store/5md7gyz45fm4bmkg2kb9a1hnmg8ryk9j-pcre2-10.44' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3249490Z copying path '/nix/store/pgq4agv5wpanzr9a8mqlkncdbick7mn2-pcsclite-2.3.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3426512Z copying path '/nix/store/9sqpmkq9fcycsrldbsdxw93hvspy8pr9-perl5.40.0-Clone-0.46' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3439359Z copying path '/nix/store/jpk7s673pli65raimpl43jbhbg6ja4kx-perl5.40.0-FCGI-0.82' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3627076Z copying path '/nix/store/x4kgvzlrndlsc9mn2gyrx9dla0a5y7y3-perl5.40.0-TermReadKey-2.38' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3629480Z copying path '/nix/store/gda0f0dw64h74i98vkk7b7jwzxbkigzs-prometheus-2.55.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3669453Z copying path '/nix/store/mfj2pd4n7vbczdx381margrm9b9jkbpq-protoc-gen-connect-go-1.17.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3791066Z copying path '/nix/store/6hrwqlqxzvn3lry7fjyz4i6dkdmg38m6-perl5.40.0-HTTP-Message-6.45' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.3806390Z copying path '/nix/store/zwh1q2r2a1prmw4xxfpqa06ic7dl31yd-qrencode-4.1.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.4059846Z copying path '/nix/store/flw2dwllbq50954bk1qm6xwdzp8ikacl-systemd-minimal-libs-256.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.4181344Z copying path '/nix/store/88x6dfa5gnls0pmbvp4b9ci3bqqfja0n-util-linux-minimal-2.39.4-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.4184679Z copying path '/nix/store/7f8vg8z0q721jyahy1vjbg2x3irbk5az-unbound-1.22.0-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.4262633Z copying path '/nix/store/53rkjnnkbgg8pfn6ffpcdx4xbrl98yh8-readline-8.2p13' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.4286477Z copying path '/nix/store/mcr5gqxgkknqxa2vhnhixzd97vdsnsxi-perl5.40.0-HTML-Parser-3.81' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.4509527Z copying path '/nix/store/q73n7qdcl9yvlwh6p4n414vkxgnjjryp-perl5.40.0-HTTP-Cookies-6.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.5235645Z copying path '/nix/store/qjsj5vnbfpbg6r7jhd7znfgmcy0arn8n-gnugrep-3.11' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.5814059Z copying path '/nix/store/0z09m6fwgmc2a0zazp6lhyadfig10fd6-perl5.40.0-CGI-4.59' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.5966103Z copying path '/nix/store/qxp4rv76dpjbvs37c3sfq33ial7mxgb0-perl5.40.0-HTTP-Daemon-6.16' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.6034193Z copying path '/nix/store/q0fgny8kpagi6blmzyw15n4cmfx647kn-perl5.40.0-HTTP-Negotiate-6.01' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.6528757Z copying path '/nix/store/bhvah40258cfi5sj1wiy2zmdn5xgj4m1-krb5-1.21.3-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.6636992Z copying path '/nix/store/fvm65iknlk5kx9938xsc5485s9wzz1ig-lvm2-2.03.27-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.6817189Z copying path '/nix/store/pa7plncc30fhm909bis9haakh7gi0qbl-bash-interactive-5.2p37' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.6942825Z copying path '/nix/store/09pyjyjdr5mwmki9gb0yf809l54xr8p2-openssl-3.3.3-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.6946818Z copying path '/nix/store/dwyr8xvjby2l1zz92a5pfl6bq27jhrm6-krb5-1.21.3-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7024833Z copying path '/nix/store/6k8v1ffagipraln3nn12h1n22d5l9dvr-perl5.40.0-Net-SSLeay-1.92' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7095021Z copying path '/nix/store/j7k6mzbdydimzw4mf23ahq6a7rz2f7w2-util-linux-minimal-2.39.4-login' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7244135Z copying path '/nix/store/a9vgxnafcgb1khpjgn87ixmyv4dsqlp0-util-linux-minimal-2.39.4-mount' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7286621Z copying path '/nix/store/blkjagm7k01k9sghpyckw4y6dd6z0knl-util-linux-minimal-2.39.4-swap' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7436693Z copying path '/nix/store/sf31nmjhlsdp2h26vbwbpa7gwfn4i4na-xz-5.6.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7456489Z copying path '/nix/store/xv2bvwf6zv1hhlm9w4x0f7n0idhbsjh7-perl5.40.0-CGI-Fast-2.16' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7717815Z copying path '/nix/store/lmfya9by589b0qgc2pqps1zy4jhldkvq-cryptsetup-2.7.5' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7856127Z copying path '/nix/store/hgq0ircylcm0mx6y7ml9chcbwgrz9xg7-openssl-3.3.3-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7858620Z copying path '/nix/store/xxssfwyz4l32wiadvsrcf259nkb91myn-z3-4.11.2-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7915912Z copying path '/nix/store/vpg96mfr1jw5arlqg831i69g29v0sdb3-zlib-1.3.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7922155Z copying path '/nix/store/73pq792gn6i9qfywsnd347vg0152w8rw-perl5.40.0-IO-Socket-SSL-2.083' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.7956268Z copying path '/nix/store/6cf2yj12gf51jn5vdbdw01gmgvyj431s-zstd-1.5.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.8127613Z copying path '/nix/store/23j515bg7lgis34f0jkm9j6g00dpp2sh-binutils-2.43.1-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.8491903Z copying path '/nix/store/yk246qv4bbmr0mmh9y3gnfdkra5nnjgi-cracklib-2.10.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.8643474Z copying path '/nix/store/p751fjd81h3926ivxsq0x20lz5j7yscc-file-5.45' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.9017203Z copying path '/nix/store/yg4ahy7gahx91nq80achmzilrjyv0scj-gcc-13.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.9211463Z copying path '/nix/store/1md58p5vm4dixcwwpwrs78a7kjf6nnqk-gnutls-3.8.6' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.9484781Z copying path '/nix/store/nfdnparxrnv6sy627lw1c27pdqzpbfs2-kexec-tools-2.0.29' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.9551384Z copying path '/nix/store/n6zw4496n0bd9r6gjwkjmf5ja6757q32-krb5-1.21.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:15.9659812Z copying path '/nix/store/kc1sdzqnymjwy74chlnkq2xlxnmrg30x-libfido2-1.15.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.0294040Z copying path '/nix/store/yr9xanc3bgp95fj9kvbrrq47zhzni2i6-kmod-31' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.0490524Z copying path '/nix/store/qdypipr8zp0nkyrwqnakn3q3xhpghsrb-kmod-31-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.0804684Z copying path '/nix/store/6m49g3aqk5d5vdxp7chpgim5l6cfm7d6-libarchive-3.7.7-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.1055304Z copying path '/nix/store/pvyhn761hgn17fpr6fy168vcv1ciwsgl-libssh2-1.11.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.1181340Z copying path '/nix/store/22qnvg3zddkf7rbpckv676qpsc2najv9-binutils-2.43.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.1693070Z copying path '/nix/store/zfk4v9lxal3ch98qnf7zlciwgmk4w1ij-krb5-1.21.3-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.1877241Z copying path '/nix/store/17rp2wzkp8xfhxcd5zihx6qmnbaadlhs-libmicrohttpd-1.0.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.2304395Z copying path '/nix/store/qmz79v7x18zmi6g2iagxwazqfwbxzhra-libssh2-1.11.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.2735225Z copying path '/nix/store/q4j9jj8jw74216cw4chsqlwdnglwly6p-perl-5.40.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.2858040Z copying path '/nix/store/f2sjbvr2gbp1dl1fwak6b77j18wv2rm8-perl5.40.0-Net-SMTP-SSL-1.04' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.3207426Z copying path '/nix/store/w2m5p0fb6pmqq6dz2jqlvnyw7n4vcbpx-curl-8.12.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.3219915Z copying path '/nix/store/sh26c2jcz7w2gii2px77bqy64fd026jd-boost-1.81.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.3837053Z copying path '/nix/store/i7gfv740vcygvl9pgqwq29nkzmsp09ww-sqlite-3.46.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.4015800Z copying path '/nix/store/rbns8mzghhqxih4hj2js4mb4s6ivy5d1-xz-5.6.3-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.4017247Z copying path '/nix/store/ccrjbcfl5zcdp0n5mh69f4airrb9g8m4-zlib-1.3.1-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.4283498Z copying path '/nix/store/xmmli2ijsz2br6573z3sqsgg0spnj7i9-zstd-1.5.6-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.4822868Z copying path '/nix/store/lgfp6sl5hpykmld29rqvi9pam8ji8k24-curl-8.12.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.5038356Z copying path '/nix/store/0rg4nqym82ngd29dy8qm1bggm94dkry3-libssh2-1.11.1-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.5290197Z copying path '/nix/store/hsxp8g7zdr6wxk1mp812g8nbzvajzn4w-stdenv-linux' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.5876627Z copying path '/nix/store/gnnac2vpa466p2lpzskmbj5vjr6ikzhg-libpwquality-1.4.5-lib' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.5976179Z copying path '/nix/store/awbfciyq3cjvw6x8wd8wdjy8z2qxm98n-elfutils-0.191' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.6227974Z copying path '/nix/store/3hgwjb5hp0jm8fyi4vx9s4f3hjvp0n1r-tpm2-tss-4.1.3' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.6366376Z copying path '/nix/store/lhpwdis5hkyljz1d200bj1s6g51ljq9k-python3-3.12.8' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.6701949Z copying path '/nix/store/z9lnvmqymg80hk671fm2533ncczkf7z2-kbd-2.6.4' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.7488183Z copying path '/nix/store/8qf68jid6rr2f4c8ppyp0ixdlv0axnpn-curl-8.12.1-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.9819123Z copying path '/nix/store/007wiy8x5irdxzsdx3bdqx0k0a8hp6ji-shellcheck-0.10.0-bin' from 'https://cache.nixos.org'... +2025-07-23T19:31:16.9820652Z copying path '/nix/store/f95nqmgp2vaz1h68n36k605ay1ixnj0a-libbpf-1.4.7' from 'https://cache.nixos.org'... +2025-07-23T19:31:17.0428014Z copying path '/nix/store/04shrm4bvxw1yam87da7y9k872kqn777-curl-8.12.1-dev' from 'https://cache.nixos.org'... +2025-07-23T19:31:17.1735276Z building '/nix/store/rkn5fk95kmnbxk65bxlyzqnmsmafh1f1-kind-with-registry.sh.drv'... +2025-07-23T19:31:17.2480208Z copying path '/nix/store/w9qcpyhjrxsqrps91wkz8r4mqvg9zrxc-systemd-256.10' from 'https://cache.nixos.org'... +2025-07-23T19:31:17.3457987Z copying path '/nix/store/00x4qvjp4kcm932rv281v8n9y4xk9dv1-solc-0.8.21' from 'https://cache.nixos.org'... +2025-07-23T19:31:17.3569607Z copying path '/nix/store/1mv8pj4nxwnd9bbxshljc9p4cnl3rakj-binutils-wrapper-2.43.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:17.3988099Z copying path '/nix/store/ch1brsi5xwxgyv23csmvw1am9l40rf1c-shellcheck-0.10.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:18.3928347Z copying path '/nix/store/99accs107rzm78z74cj1wns59d0m1nh8-perl5.40.0-libwww-perl-6.72' from 'https://cache.nixos.org'... +2025-07-23T19:31:18.4427014Z copying path '/nix/store/7s649psqfmp6bf2ij6kba3nbwjp50z0w-promtail-3.2.1' from 'https://cache.nixos.org'... +2025-07-23T19:31:19.3718145Z copying path '/nix/store/1fwh9nv8n93rjc7i7j9gcm3whdqpgy84-git-2.47.2' from 'https://cache.nixos.org'... +2025-07-23T19:31:20.3471146Z copying path '/nix/store/gnd8f9h2ycxrfrvrga508c4n9cxy6720-gcc-wrapper-13.3.0' from 'https://cache.nixos.org'... +2025-07-23T19:31:20.3559070Z copying path '/nix/store/szfi0xd0cwdaldhkp8vlgi7jfv662nmd-stdenv-linux' from 'https://cache.nixos.org'... +2025-07-23T19:31:20.4069895Z building '/nix/store/mbmxfdxryq3wr2wxm5brh42mcad1gvzy-kind-with-registry-1.0.0.drv'... +2025-07-23T19:31:20.4979476Z building '/nix/store/gvy0rwami6li8s64cb1q1hv75mnglnjn-nix-shell-env.drv'... +2025-07-23T19:31:20.9272594Z this path will be fetched (0.10 MiB download, 0.10 MiB unpacked): +2025-07-23T19:31:20.9273342Z /nix/store/hlv28jlwzk6kqj6vljm9cn8i7pw030nx-bash-interactive-5.2p37-man +2025-07-23T19:31:20.9282846Z copying path '/nix/store/hlv28jlwzk6kqj6vljm9cn8i7pw030nx-bash-interactive-5.2p37-man' from 'https://cache.nixos.org'... +2025-07-23T19:31:21.0821439Z dependencies installed +2025-07-23T19:31:21.0886821Z ##[group]Run echo "::warning::Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch?" +2025-07-23T19:31:21.0888089Z echo "::warning::Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch?" +2025-07-23T19:31:21.0927464Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-07-23T19:31:21.0927969Z env: +2025-07-23T19:31:21.0928266Z TMPDIR: /home/runner/work/_temp +2025-07-23T19:31:21.0928609Z ##[endgroup] +2025-07-23T19:31:21.1011948Z ##[warning]Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch? +2025-07-23T19:31:21.1043315Z ##[group]Run AVALANCHEGO_BUILD_PATH=/tmp/e2e/warp/avalanchego/build /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --impure --command bash -x ./scripts/run_task.sh test-e2e-warp-ci +2025-07-23T19:31:21.1046892Z AVALANCHEGO_BUILD_PATH=/tmp/e2e/warp/avalanchego/build /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --impure --command bash -x ./scripts/run_task.sh test-e2e-warp-ci +2025-07-23T19:31:21.1083798Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} +2025-07-23T19:31:21.1084319Z env: +2025-07-23T19:31:21.1084499Z TMPDIR: /home/runner/work/_temp +2025-07-23T19:31:21.1084742Z TMPNET_START_METRICS_COLLECTOR: false +2025-07-23T19:31:21.1084988Z TMPNET_START_LOGS_COLLECTOR: false +2025-07-23T19:31:21.1085227Z TMPNET_CHECK_METRICS_COLLECTED: false +2025-07-23T19:31:21.1085465Z TMPNET_CHECK_LOGS_COLLECTED: false +2025-07-23T19:31:21.1085674Z LOKI_USERNAME: +2025-07-23T19:31:21.1085852Z LOKI_PASSWORD: +2025-07-23T19:31:21.1086039Z PROMETHEUS_USERNAME: +2025-07-23T19:31:21.1086235Z PROMETHEUS_PASSWORD: +2025-07-23T19:31:21.1086422Z GH_REPO: ava-labs/coreth +2025-07-23T19:31:21.1086618Z GH_WORKFLOW: CI +2025-07-23T19:31:21.1086793Z GH_RUN_ID: 16480013789 +2025-07-23T19:31:21.1086982Z GH_RUN_NUMBER: 5026 +2025-07-23T19:31:21.1087162Z GH_RUN_ATTEMPT: 1 +2025-07-23T19:31:21.1087338Z GH_JOB_ID: e2e_warp +2025-07-23T19:31:21.1087512Z ##[endgroup] +2025-07-23T19:31:21.1311789Z No local flake found, will attempt to use avalanchego flake +2025-07-23T19:31:21.1398039Z Starting nix shell for github:ava-labs/avalanchego?ref=v1.13.3-rc.1 +2025-07-23T19:31:23.4703777Z + set -euo pipefail +2025-07-23T19:31:23.4704411Z + command -v task +2025-07-23T19:31:23.4704754Z + exec task test-e2e-warp-ci +2025-07-23T19:31:23.4930421Z task: [build] ./scripts/build.sh +2025-07-23T19:31:23.5222390Z Using branch: d85ec0364 +2025-07-23T19:31:23.5239388Z Building Coreth @ GitCommit: d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 at /home/runner/.avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy +2025-07-23T19:31:54.0361778Z task: [test-e2e-warp] ./scripts/run_ginkgo_warp.sh +2025-07-23T19:31:54.0569916Z Using branch: d85ec0364 +2025-07-23T19:31:54.0586743Z Running with extra args: --avalanchego-path=/tmp/e2e/warp/avalanchego/build/avalanchego +2025-07-23T19:32:11.2865231Z Running Suite: coreth warp e2e test - /home/runner/work/coreth/coreth/tests/warp +2025-07-23T19:32:11.2865942Z ================================================================================ +2025-07-23T19:32:11.2866544Z Random Seed: 1753299114 +2025-07-23T19:32:11.2866739Z +2025-07-23T19:32:11.2866907Z Will run 1 of 1 specs +2025-07-23T19:32:11.2867282Z ------------------------------ +2025-07-23T19:32:11.2867659Z [SynchronizedBeforeSuite]  +2025-07-23T19:32:11.2868238Z /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 +2025-07-23T19:32:11.2869371Z > Enter [SynchronizedBeforeSuite] TOP-LEVEL - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 @ 07/23/25 19:32:11.286 +2025-07-23T19:32:11.2875272Z INFO waiting for network to start {"timeoutSeconds": 120} +2025-07-23T19:32:11.2876704Z INFO preparing configuration for new network {"runtimeConfig": {"process":{"avalancheGoPath":"/tmp/e2e/warp/avalanchego/build/avalanchego","pluginDir":"/home/runner/.avalanchego/plugins"}}} +2025-07-23T19:32:11.2998438Z INFO starting network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e", "uuid": "831b7731-4dd7-401a-a2aa-7d4d54bfac1b"} +2025-07-23T19:32:11.9026676Z INFO started local node {"nodeID": "NodeID-3wsBNScnZA9m17LzxpzCGvmzcKf67tPHk", "dataDir": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e/NodeID-3wsBNScnZA9m17LzxpzCGvmzcKf67tPHk", "isEphemeral": false} +2025-07-23T19:32:12.4551147Z INFO started local node {"nodeID": "NodeID-AjFCBTWUwfRZHTnySyCjdknRp12LaqFon", "dataDir": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e/NodeID-AjFCBTWUwfRZHTnySyCjdknRp12LaqFon", "isEphemeral": false} +2025-07-23T19:32:12.4553333Z INFO waiting for nodes to report healthy +2025-07-23T19:32:14.4565017Z INFO node is healthy {"nodeID": "NodeID-AjFCBTWUwfRZHTnySyCjdknRp12LaqFon", "uri": "http://127.0.0.1:35575"} +2025-07-23T19:32:17.8564231Z INFO node is healthy {"nodeID": "NodeID-3wsBNScnZA9m17LzxpzCGvmzcKf67tPHk", "uri": "http://127.0.0.1:43963"} +2025-07-23T19:32:17.8566355Z INFO started network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e", "uuid": "831b7731-4dd7-401a-a2aa-7d4d54bfac1b"} +2025-07-23T19:32:17.8570530Z INFO metrics and logs available via grafana (collectors must be running) {"url": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C831b7731-4dd7-401a-a2aa-7d4d54bfac1b&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299131299&to=now", "linkPath": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e/metrics.txt"} +2025-07-23T19:32:17.8573190Z INFO network started successfully +2025-07-23T19:32:17.8581182Z INFO network nodes are available {"uris": [{"NodeID":"NodeID-3wsBNScnZA9m17LzxpzCGvmzcKf67tPHk","URI":"http://127.0.0.1:43963"},{"NodeID":"NodeID-AjFCBTWUwfRZHTnySyCjdknRp12LaqFon","URI":"http://127.0.0.1:35575"}]} +2025-07-23T19:32:17.8583746Z < Exit [SynchronizedBeforeSuite] TOP-LEVEL - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 @ 07/23/25 19:32:17.857 (6.571s) +2025-07-23T19:32:17.8587785Z > Enter [SynchronizedBeforeSuite] TOP-LEVEL - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 @ 07/23/25 19:32:17.857 +2025-07-23T19:32:17.8606402Z < Exit [SynchronizedBeforeSuite] TOP-LEVEL - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 @ 07/23/25 19:32:17.86 (2ms) +2025-07-23T19:32:17.8607797Z [SynchronizedBeforeSuite] PASSED [6.574 seconds] +2025-07-23T19:32:17.8608483Z ------------------------------ +2025-07-23T19:32:17.8608936Z [Warp] +2025-07-23T19:32:17.8609537Z /home/runner/work/coreth/coreth/tests/warp/warp_test.go:127 +2025-07-23T19:32:17.8610657Z C-Chain -> C-Chain +2025-07-23T19:32:17.8611495Z /home/runner/work/coreth/coreth/tests/warp/warp_test.go:156 +2025-07-23T19:32:17.8613307Z > Enter [BeforeEach] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/metrics_link.go:27 @ 07/23/25 19:32:17.86 +2025-07-23T19:32:17.8615605Z < Exit [BeforeEach] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/metrics_link.go:27 @ 07/23/25 19:32:17.86 (0s) +2025-07-23T19:32:17.8617342Z > Enter [It] C-Chain -> C-Chain - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:156 @ 07/23/25 19:32:17.86 +2025-07-23T19:32:17.8618792Z "level"=0 "msg"="Creating ethclient for blockchain A" "blockchainID"="2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo" +2025-07-23T19:32:17.8620197Z "level"=0 "msg"="Creating ethclient for blockchain A" "blockchainID"="2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo" +2025-07-23T19:32:17.8621590Z "level"=0 "msg"="Creating ethclient for blockchain B" "blockchainID"="2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo" +2025-07-23T19:32:17.8625694Z "level"=0 "msg"="Creating ethclient for blockchain B" "blockchainID"="2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo" +2025-07-23T19:32:19.8672933Z "level"=0 "msg"="Sending message from A to B" +2025-07-23T19:32:19.8679833Z "level"=0 "msg"="Sending sendWarpMessage transaction" "txHash"="0xcdd2c3e614865c0a389544350f188695a106bdab5883f66ee56725b3528fc8df" +2025-07-23T19:32:19.8686332Z "level"=0 "msg"="Waiting for transaction to be accepted" +2025-07-23T19:32:20.8697313Z "level"=0 "msg"="Constructing warp block hash unsigned message" "blockHash"="0x5c7afdebbd10e93279441062b28e528c80b6853d395915f4f5fbdd6730c0a77d" +2025-07-23T19:32:20.8698273Z "level"=0 "msg"="Fetching relevant warp logs from the newly produced block" +2025-07-23T19:32:20.8701442Z "level"=0 "msg"="Parsing logData as unsigned warp message" +2025-07-23T19:32:20.8704174Z "level"=0 "msg"="Parsed unsignedWarpMsg" "unsignedWarpMessageID"="2dJXPKGac79ZmsoVeyTQ2v4ZVMTDedMyvvqKY3Jfgvk65i8kKG" "unsignedWarpMessage"="UnsignedMessage(NetworkID = 88888, SourceChainID = 2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo, Payload = 000000000001000000148db97c7cece249c2b98bdc0226cc4c2a57bf52fc00000003010203)" +2025-07-23T19:32:20.8706441Z "level"=0 "msg"="client accepted the block containing SendWarpMessage" "client"=0 "height"=3 +2025-07-23T19:32:20.8709005Z "level"=0 "msg"="client accepted the block containing SendWarpMessage" "client"=1 "height"=3 +2025-07-23T19:32:20.8709808Z "level"=0 "msg"="Aggregating signatures via API" +2025-07-23T19:32:20.8725761Z "level"=0 "msg"="Aggregating signatures from validator set" "numValidators"=2 "totalWeight"=2000000000000000 +2025-07-23T19:32:20.8775430Z "level"=0 "msg"="Aggregated signatures for warp messages" "addressedCallMessage"="000000015b38b5a4cf0874043005ee5ab1209c8edefd431257b7e6764199106d78747918698d00000025000000000001000000148db97c7cece249c2b98bdc0226cc4c2a57bf52fc00000003010203000000000000000103b28a349108202d40221da58363b9a8755547558dd59fb77399eb02252498c183cc8177ecaeec86374c981087acb3263e0aed71170f7493c1ad984c130d900eb157ec34e968ac4ef5ce4e9ab2e40983dfdff9032992815b5925648feb51540098" "blockPayloadMessage"="000000015b38b5a4cf0874043005ee5ab1209c8edefd431257b7e6764199106d78747918698d000000260000000000005c7afdebbd10e93279441062b28e528c80b6853d395915f4f5fbdd6730c0a77d000000000000000103b6de3a05d724fe7067ff3bd8d610c2417ac356327cce728126648600c597dc32e5f7c78fc326f914aeacae4840616f07139c390ee35c1aa059071140b39740dc2a94f71d5c161a91a13d9b1e8f4a647265d7410fafc4ca3cd808a8a9f84b1619" +2025-07-23T19:32:20.8782372Z "level"=0 "msg"="Aggregating signatures via p2p aggregator" +2025-07-23T19:32:20.8783125Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:20.8794801Z "level"=0 "msg"="Fetching block payload aggregate signature via p2p API" +2025-07-23T19:32:20.8818010Z "level"=0 "msg"="Delivering addressed call payload to receiving subnet" +2025-07-23T19:32:20.8827960Z "level"=0 "msg"="Sending getVerifiedWarpMessage transaction" "txHash"="0x2c84ac1a0bb1cb97d7c051142046368d4f828b9453583d497eb46195dfbc114c" "txBytes"="02f9017383015b3803843b9aca008534630b8a00834c4b4094020000000000000000000000000000000000000580a46f8253500000000000000000000000000000000000000000000000000000000000000000f8dff8dd940200000000000000000000000000000000000005f8c6a0000000015b38b5a4cf0874043005ee5ab1209c8edefd431257b7e6764199106da078747918698d00000025000000000001000000148db97c7cece249c2b98bdc02a026cc4c2a57bf52fc00000003010203000000000000000103b28a349108202d40a0221da58363b9a8755547558dd59fb77399eb02252498c183cc8177ecaeec8637a04c981087acb3263e0aed71170f7493c1ad984c130d900eb157ec34e968ac4ef5a0ce4e9ab2e40983dfdff9032992815b5925648feb51540098ff0000000000000001a0389ea93aa7de9afca4268aff0963288bc18581b29eb3b0163d441cea1520172ea0569686ef255a3df87c0edea9d8129a5e39c42e282b3e1ae62ddfde1822bfc099" +2025-07-23T19:32:20.8833762Z "level"=0 "msg"="Waiting for transaction to be accepted" +2025-07-23T19:32:21.8842323Z "level"=0 "msg"="Fetching relevant warp logs and receipts from new block" +2025-07-23T19:32:21.8845195Z "level"=0 "msg"="Delivering block hash payload to receiving subnet" +2025-07-23T19:32:21.8856674Z "level"=0 "msg"="Sending getVerifiedWarpBlockHash transaction" "txHash"="0x7232381eb0a29380f4cbc22793f6b6621bada7742612c6af889f805f22d74b06" "txBytes"="02f9017383015b3804843b9aca008534630b8a00834c4b4094020000000000000000000000000000000000000580a4ce7f59290000000000000000000000000000000000000000000000000000000000000000f8dff8dd940200000000000000000000000000000000000005f8c6a0000000015b38b5a4cf0874043005ee5ab1209c8edefd431257b7e6764199106da078747918698d000000260000000000005c7afdebbd10e93279441062b28e528ca080b6853d395915f4f5fbdd6730c0a77d000000000000000103b6de3a05d724fea07067ff3bd8d610c2417ac356327cce728126648600c597dc32e5f7c78fc326f9a014aeacae4840616f07139c390ee35c1aa059071140b39740dc2a94f71d5c161aa091a13d9b1e8f4a647265d7410fafc4ca3cd808a8a9f84b1619ff00000000000001a06b09e4593d91fbf3bdf3e6d2a3f91cf48322ecd89740f036eec6c8b269861b82a005128aeaf8540fe0ff729a244d8cd48aadfd9dd91b02d05815d9703c1c0e69d7" +2025-07-23T19:32:21.8862841Z "level"=0 "msg"="Waiting for transaction to be accepted" +2025-07-23T19:32:22.8867952Z "level"=0 "msg"="Fetching relevant warp logs and receipts from new block" +2025-07-23T19:32:22.8870534Z "level"=0 "msg"="Executing warp load test" +2025-07-23T19:32:22.8875439Z "level"=0 "msg"="Distributing funds on sending subnet" "numKeys"=2 +2025-07-23T19:32:27.4089287Z "level"=0 "msg"="Distributing funds on receiving subnet" "numKeys"=2 +2025-07-23T19:32:29.0096990Z "level"=0 "msg"="Creating workers for each subnet..." +2025-07-23T19:32:29.0105130Z "level"=0 "msg"="Subscribing to warp send events on sending subnet" +2025-07-23T19:32:29.0108105Z "level"=0 "msg"="Generating tx sequence to send warp messages..." +2025-07-23T19:32:29.0127167Z "level"=0 "msg"="Executing warp send loader..." +2025-07-23T19:32:30.0353730Z "level"=0 "msg"="Executing warp delivery sequences..." +2025-07-23T19:32:30.0354585Z "level"=0 "msg"="Executing warp delivery..." +2025-07-23T19:32:30.0357086Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0358884Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0381993Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0403657Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0427877Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0441397Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0460714Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0471012Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0495871Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0510439Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0529751Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0549373Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0570581Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0587857Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0602726Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0618737Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0636601Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0653117Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0671616Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:30.0690977Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" +2025-07-23T19:32:33.0152384Z "level"=0 "msg"="Completed warp delivery successfully." +2025-07-23T19:32:33.0154990Z < Exit [It] C-Chain -> C-Chain - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:156 @ 07/23/25 19:32:33.015 (15.155s) +2025-07-23T19:32:33.0157347Z > Enter [AfterEach] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/metrics_link.go:33 @ 07/23/25 19:32:33.015 +2025-07-23T19:32:33.0168779Z INFO metrics and logs available via grafana (collectors must be running) {"uri": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C831b7731-4dd7-401a-a2aa-7d4d54bfac1b&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299137860&to=1753299165015"} +2025-07-23T19:32:33.0172225Z < Exit [AfterEach] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/metrics_link.go:33 @ 07/23/25 19:32:33.016 (1ms) +2025-07-23T19:32:33.0174994Z > Enter [DeferCleanup (Each)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0177589Z < Exit [DeferCleanup (Each)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0179637Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0181315Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0183239Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0185212Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0186780Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0188380Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0190435Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0192066Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0194370Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0196522Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0198200Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0200654Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0202309Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0204450Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0205841Z • [15.156 seconds] +2025-07-23T19:32:33.0206353Z ------------------------------ +2025-07-23T19:32:33.0206833Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0207832Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0209863Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0212309Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) +2025-07-23T19:32:33.0213698Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:32:33.0214441Z ------------------------------ +2025-07-23T19:32:33.0214914Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0216027Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0218134Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 +2025-07-23T19:32:33.0220601Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) +2025-07-23T19:32:33.0221966Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:32:33.0222530Z ------------------------------ +2025-07-23T19:32:33.0223011Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0224299Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0226648Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 +2025-07-23T19:32:33.0229138Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) +2025-07-23T19:32:33.0230521Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:32:33.0231070Z ------------------------------ +2025-07-23T19:32:33.0231556Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0232603Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0234906Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 +2025-07-23T19:32:33.0237460Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) +2025-07-23T19:32:33.0238884Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:32:33.0239477Z ------------------------------ +2025-07-23T19:32:33.0239985Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0241054Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0243300Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 +2025-07-23T19:32:33.0246304Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) +2025-07-23T19:32:33.0247555Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:32:33.0248160Z ------------------------------ +2025-07-23T19:32:33.0248662Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0249760Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0252013Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 +2025-07-23T19:32:33.0254817Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) +2025-07-23T19:32:33.0256263Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:32:33.0256871Z ------------------------------ +2025-07-23T19:32:33.0257378Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0258500Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0260751Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 +2025-07-23T19:32:33.0263270Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) +2025-07-23T19:32:33.0264314Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:32:33.0264667Z ------------------------------ +2025-07-23T19:32:33.0264971Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0265792Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0267027Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 +2025-07-23T19:32:33.0267797Z INFO shutting down network +2025-07-23T19:32:33.0971487Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.096 (80ms) +2025-07-23T19:32:33.0973091Z [DeferCleanup (Suite)] PASSED [0.080 seconds] +2025-07-23T19:32:33.0973732Z ------------------------------ +2025-07-23T19:32:33.0974442Z [DeferCleanup (Suite)]  +2025-07-23T19:32:33.0975571Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 +2025-07-23T19:32:33.0977880Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.096 +2025-07-23T19:32:33.0980266Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.096 (0s) +2025-07-23T19:32:33.0981703Z [DeferCleanup (Suite)] PASSED [0.000 seconds] +2025-07-23T19:32:33.0982293Z ------------------------------ +2025-07-23T19:32:33.0982590Z +2025-07-23T19:32:33.0983110Z Ran 1 of 1 Specs in 21.811 seconds +2025-07-23T19:32:33.0984259Z SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped +2025-07-23T19:32:33.0984973Z PASS +2025-07-23T19:32:33.1151644Z +2025-07-23T19:32:33.1152113Z Ginkgo ran 1 suite in 38.306979704s +2025-07-23T19:32:33.1152524Z Test Suite Passed +2025-07-23T19:32:33.1268502Z ##[group]Run actions/upload-artifact@v4 +2025-07-23T19:32:33.1268743Z with: +2025-07-23T19:32:33.1268915Z name: warp-tmpnet-data +2025-07-23T19:32:33.1269311Z path: ~/.tmpnet/networks +~/.tmpnet/prometheus/prometheus.log +~/.tmpnet/promtail/promtail.log + +2025-07-23T19:32:33.1269741Z if-no-files-found: error +2025-07-23T19:32:33.1269947Z compression-level: 6 +2025-07-23T19:32:33.1270135Z overwrite: false +2025-07-23T19:32:33.1270326Z include-hidden-files: false +2025-07-23T19:32:33.1270525Z env: +2025-07-23T19:32:33.1270696Z TMPDIR: /home/runner/work/_temp +2025-07-23T19:32:33.1270922Z ##[endgroup] +2025-07-23T19:32:33.3555535Z Multiple search paths detected. Calculating the least common ancestor of all paths +2025-07-23T19:32:33.3557757Z The least common ancestor is /home/runner/.tmpnet. This will be the root directory of the artifact +2025-07-23T19:32:33.3558415Z With the provided path, there will be 30 files uploaded +2025-07-23T19:32:33.3562845Z Artifact name is valid! +2025-07-23T19:32:33.3564382Z Root directory input is valid! +2025-07-23T19:32:33.4713329Z Beginning upload of artifact content to blob storage +2025-07-23T19:32:33.5880241Z Uploaded bytes 254232 +2025-07-23T19:32:33.6015135Z Finished uploading artifact content to blob storage! +2025-07-23T19:32:33.6018287Z SHA256 digest of uploaded artifact zip is 97986e70a9422e37f591caac4d5b55a84772901452c11682c77e38ac53246095 +2025-07-23T19:32:33.6020358Z Finalizing artifact upload +2025-07-23T19:32:33.6986944Z Artifact warp-tmpnet-data.zip successfully finalized. Artifact ID 3600323265 +2025-07-23T19:32:33.6988207Z Artifact warp-tmpnet-data has been successfully uploaded! Final size is 254232 bytes. Artifact ID is 3600323265 +2025-07-23T19:32:33.6994618Z Artifact download URL: https://github.com/ava-labs/coreth/actions/runs/16480013789/artifacts/3600323265 diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 768c4771a0..0d8518e0b5 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -25,20 +25,7 @@ fi # This is useful for flaky tests MAX_RUNS=4 -# Function to get all test names from packages -get_all_tests() { - local packages="$1" - # Process packages individually since go test -list only works with single packages, not ./... patterns - local all_tests="" - while IFS= read -r package; do - [[ -z "$package" ]] && continue - package_tests=$(go test -list=".*" ${race:-} "$@" "$package" 2>/dev/null | grep "^Test" || true) - if [[ -n "$package_tests" ]]; then - all_tests="${all_tests}${all_tests:+$'\n'}${package_tests}" - fi - done <<< "$(echo "$packages" | tr ' ' '\n')" - echo "$all_tests" | sort -u -} + # Get all packages to test PACKAGES=$(go list ./... | grep -v github.com/ava-labs/coreth/tests) @@ -47,31 +34,44 @@ for ((i = 1; i <= MAX_RUNS; i++)); do echo "Test run $i of $MAX_RUNS" - # Get expected tests (for comparison) on first run - if [[ $i -eq 1 ]]; then - echo "Getting expected test list..." - EXPECTED_TESTS=$(get_all_tests "$PACKAGES") - echo "Expected tests: $(echo "$EXPECTED_TESTS" | wc -l | tr -d ' ') tests" - fi - # Run tests with JSON output for better tracking echo "Running tests..." - test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" $PACKAGES 2>&1) || command_status=$? + test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" "$PACKAGES" 2>&1) || command_status=$? # Extract test results for analysis echo "$test_output" > test.json # Get tests that actually ran and failed - RAN_TESTS=$(echo "$test_output" | jq -r 'select(.Action == "pass" or .Action == "fail") | .Test' | sort) - FAILED_TESTS=$(echo "$test_output" | jq -r 'select(.Action == "fail") | .Test' | sort) + RAN_TESTS=$(echo "$test_output" | jq -r 'select(.Action == "pass" or .Action == "fail") | .Test' 2>/dev/null | sort || echo "") + FAILED_TESTS=$(echo "$test_output" | jq -r 'select(.Action == "fail") | .Test' 2>/dev/null | sort || echo "") - # Check if all expected tests ran - MISSING_TESTS=$(comm -23 <(echo "$EXPECTED_TESTS") <(echo "$RAN_TESTS")) - - if [[ -n "$MISSING_TESTS" ]]; then - echo "WARNING: Some tests did not run due to panics or other issues:" - echo "$MISSING_TESTS" - fi + # Detect missing tests by analyzing package-level results + # Check for both complete package failures and partial test failures + MISSING_TESTS="" + while IFS= read -r package; do + [[ -z "$package" ]] && continue + + # Check if this package has any tests + package_has_tests=$(go test -list=".*" "$package" 2>/dev/null | grep -c "^Test" || echo "0") + + if [[ "$package_has_tests" -gt 0 ]]; then + # Get all expected tests for this package + expected_package_tests=$(go test -list=".*" "$package" 2>/dev/null | grep "^Test" | sed "s|^|$package/|" || true) + + # Get tests that actually ran from this package + ran_package_tests=$(echo "$RAN_TESTS" | grep "^$package/" || true) + + # Find missing tests by comparing expected vs ran + missing_package_tests=$(comm -23 <(echo "$expected_package_tests") <(echo "$ran_package_tests") 2>/dev/null || echo "") + + if [[ -n "$missing_package_tests" ]]; then + missing_count=$(echo "$missing_package_tests" | wc -l) + ran_count=$(echo "$ran_package_tests" | wc -l) + echo "WARNING: Package $package has $package_has_tests tests, $ran_count ran, $missing_count missing - likely due to panic" + MISSING_TESTS="${MISSING_TESTS}${MISSING_TESTS:+$'\n'}${missing_package_tests}" + fi + fi + done <<< "$PACKAGES" # If the test passed, exit if [[ ${command_status:-0} == 0 ]]; then @@ -83,7 +83,7 @@ do fi # Check for unexpected failures - unexpected_failures=$(comm -23 <(echo "$FAILED_TESTS") <(sed 's/\r$//' ./scripts/known_flakes.txt)) + unexpected_failures=$(comm -23 <(echo "$FAILED_TESTS") <(sed 's/\r$//' ./scripts/known_flakes.txt) 2>/dev/null || echo "") if [ -n "${unexpected_failures}" ]; then echo "Unexpected test failures: ${unexpected_failures}" exit 1 @@ -104,12 +104,12 @@ do # Retry the specific tests that need it if [[ -n "$TESTS_TO_RETRY" ]]; then - echo "Retrying tests: $TESTS_TO_RETRY" + echo "Retrying $(echo "$TESTS_TO_RETRY" | wc -l) tests..." for test in $TESTS_TO_RETRY; do package=$(echo "$test" | cut -d'/' -f1) test_name=$(echo "$test" | cut -d'/' -f2) echo "Retrying $test_name in $package" - go test -run "^${test_name}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" $package + go test -run "^${test_name}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" "$package" done fi From 4ec0caf71611ff42be1780307e72af7e98e42e53 Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Wed, 23 Jul 2025 16:12:52 -0400 Subject: [PATCH 05/32] add debug --- logs_42241282643/0_Lint.txt | 278 -- logs_42241282643/1_AvalancheGo E2E Tests.txt | 1250 ------- logs_42241282643/2_e2e warp tests.txt | 1819 ---------- .../3_Golang Unit Tests (ubuntu-22.04).txt | 3210 ----------------- .../4_Golang Unit Tests (macos-latest).txt | 258 -- .../5_Golang Unit Tests (ubuntu-latest).txt | 3206 ---------------- .../11_Post Run actions_setup-go@v5.txt | 6 - .../12_Post Run actions_checkout@v4.txt | 12 - .../AvalancheGo E2E Tests/13_Complete job.txt | 1 - .../AvalancheGo E2E Tests/1_Set up job.txt | 58 - .../2_Run actions_checkout@v4.txt | 85 - .../4_Run actions_setup-go@v5.txt | 79 - ...alancheGo and update Coreth dependency.txt | 46 - .../AvalancheGo E2E Tests/6_Run e2e tests.txt | 963 ----- ...0_Run ._scripts_run_task.sh build-test.txt | 16 - .../1_Set up job.txt | 47 - .../22_Post Run actions_checkout@v4.txt | 13 - .../23_Complete job.txt | 1 - .../2_Run actions_checkout@v4.txt | 69 - .../4_Run actions_setup-go@v5.txt | 81 - .../6_Run go mod download.txt | 4 - ...k generated codec files are up to date.txt | 10 - ...8_Check generated mocks are up to date.txt | 10 - .../9_Run ._scripts_run_task.sh build.txt | 7 - ...0_Run ._scripts_run_task.sh build-test.txt | 13 - .../11_Run ._scripts_run_task.sh coverage.txt | 2929 --------------- .../1_Set up job.txt | 50 - .../21_Post Run actions_setup-go@v5.txt | 6 - .../22_Post Run actions_checkout@v4.txt | 12 - .../23_Complete job.txt | 1 - .../2_Run actions_checkout@v4.txt | 85 - .../4_Run actions_setup-go@v5.txt | 83 - .../6_Run go mod download.txt | 4 - ...k generated codec files are up to date.txt | 10 - ...8_Check generated mocks are up to date.txt | 10 - .../9_Run ._scripts_run_task.sh build.txt | 7 - ...0_Run ._scripts_run_task.sh build-test.txt | 13 - .../11_Run ._scripts_run_task.sh coverage.txt | 2929 --------------- .../1_Set up job.txt | 50 - .../21_Post Run actions_setup-go@v5.txt | 6 - .../22_Post Run actions_checkout@v4.txt | 12 - .../23_Complete job.txt | 1 - .../2_Run actions_checkout@v4.txt | 85 - .../4_Run actions_setup-go@v5.txt | 79 - .../6_Run go mod download.txt | 4 - ...k generated codec files are up to date.txt | 10 - ...8_Check generated mocks are up to date.txt | 10 - .../9_Run ._scripts_run_task.sh build.txt | 7 - .../Lint/16_Post Run actions_checkout@v4.txt | 12 - logs_42241282643/Lint/17_Complete job.txt | 1 - logs_42241282643/Lint/1_Set up job.txt | 50 - .../Lint/2_Run actions_checkout@v4.txt | 85 - .../Lint/4_Run actions_setup-go@v5.txt | 79 - .../Lint/6_Run all lint checks.txt | 51 - .../e2e warp tests/13_Post Set up Go.txt | 6 - .../e2e warp tests/14_Post Git checkout.txt | 12 - .../e2e warp tests/15_Complete job.txt | 1 - .../e2e warp tests/1_Set up job.txt | 58 - .../e2e warp tests/2_Git checkout.txt | 789 ---- .../e2e warp tests/3_Set up Go.txt | 79 - ...alancheGo and update Coreth dependency.txt | 48 - .../e2e warp tests/7_Run Warp E2E Tests.txt | 826 ----- scripts/build_test.sh | 17 +- 63 files changed, 15 insertions(+), 20044 deletions(-) delete mode 100644 logs_42241282643/0_Lint.txt delete mode 100644 logs_42241282643/1_AvalancheGo E2E Tests.txt delete mode 100644 logs_42241282643/2_e2e warp tests.txt delete mode 100644 logs_42241282643/3_Golang Unit Tests (ubuntu-22.04).txt delete mode 100644 logs_42241282643/4_Golang Unit Tests (macos-latest).txt delete mode 100644 logs_42241282643/5_Golang Unit Tests (ubuntu-latest).txt delete mode 100644 logs_42241282643/AvalancheGo E2E Tests/11_Post Run actions_setup-go@v5.txt delete mode 100644 logs_42241282643/AvalancheGo E2E Tests/12_Post Run actions_checkout@v4.txt delete mode 100644 logs_42241282643/AvalancheGo E2E Tests/13_Complete job.txt delete mode 100644 logs_42241282643/AvalancheGo E2E Tests/1_Set up job.txt delete mode 100644 logs_42241282643/AvalancheGo E2E Tests/2_Run actions_checkout@v4.txt delete mode 100644 logs_42241282643/AvalancheGo E2E Tests/4_Run actions_setup-go@v5.txt delete mode 100644 logs_42241282643/AvalancheGo E2E Tests/5_Build AvalancheGo and update Coreth dependency.txt delete mode 100644 logs_42241282643/AvalancheGo E2E Tests/6_Run e2e tests.txt delete mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/10_Run ._scripts_run_task.sh build-test.txt delete mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/1_Set up job.txt delete mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/22_Post Run actions_checkout@v4.txt delete mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/23_Complete job.txt delete mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/2_Run actions_checkout@v4.txt delete mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/4_Run actions_setup-go@v5.txt delete mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/6_Run go mod download.txt delete mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/7_Check generated codec files are up to date.txt delete mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/8_Check generated mocks are up to date.txt delete mode 100644 logs_42241282643/Golang Unit Tests (macos-latest)/9_Run ._scripts_run_task.sh build.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/10_Run ._scripts_run_task.sh build-test.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/11_Run ._scripts_run_task.sh coverage.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/1_Set up job.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/21_Post Run actions_setup-go@v5.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/22_Post Run actions_checkout@v4.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/23_Complete job.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/2_Run actions_checkout@v4.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/4_Run actions_setup-go@v5.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/6_Run go mod download.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/7_Check generated codec files are up to date.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/8_Check generated mocks are up to date.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-22.04)/9_Run ._scripts_run_task.sh build.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/10_Run ._scripts_run_task.sh build-test.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/11_Run ._scripts_run_task.sh coverage.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/1_Set up job.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/21_Post Run actions_setup-go@v5.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/22_Post Run actions_checkout@v4.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/23_Complete job.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/2_Run actions_checkout@v4.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/4_Run actions_setup-go@v5.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/6_Run go mod download.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/7_Check generated codec files are up to date.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/8_Check generated mocks are up to date.txt delete mode 100644 logs_42241282643/Golang Unit Tests (ubuntu-latest)/9_Run ._scripts_run_task.sh build.txt delete mode 100644 logs_42241282643/Lint/16_Post Run actions_checkout@v4.txt delete mode 100644 logs_42241282643/Lint/17_Complete job.txt delete mode 100644 logs_42241282643/Lint/1_Set up job.txt delete mode 100644 logs_42241282643/Lint/2_Run actions_checkout@v4.txt delete mode 100644 logs_42241282643/Lint/4_Run actions_setup-go@v5.txt delete mode 100644 logs_42241282643/Lint/6_Run all lint checks.txt delete mode 100644 logs_42241282643/e2e warp tests/13_Post Set up Go.txt delete mode 100644 logs_42241282643/e2e warp tests/14_Post Git checkout.txt delete mode 100644 logs_42241282643/e2e warp tests/15_Complete job.txt delete mode 100644 logs_42241282643/e2e warp tests/1_Set up job.txt delete mode 100644 logs_42241282643/e2e warp tests/2_Git checkout.txt delete mode 100644 logs_42241282643/e2e warp tests/3_Set up Go.txt delete mode 100644 logs_42241282643/e2e warp tests/6_Build AvalancheGo and update Coreth dependency.txt delete mode 100644 logs_42241282643/e2e warp tests/7_Run Warp E2E Tests.txt diff --git a/logs_42241282643/0_Lint.txt b/logs_42241282643/0_Lint.txt deleted file mode 100644 index e734e7b149..0000000000 --- a/logs_42241282643/0_Lint.txt +++ /dev/null @@ -1,278 +0,0 @@ -2025-07-23T19:28:54.7286861Z Current runner version: '2.326.0' -2025-07-23T19:28:54.7311385Z ##[group]Runner Image Provisioner -2025-07-23T19:28:54.7312156Z Hosted Compute Agent -2025-07-23T19:28:54.7312775Z Version: 20250711.363 -2025-07-23T19:28:54.7313350Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c -2025-07-23T19:28:54.7314021Z Build Date: 2025-07-11T20:04:25Z -2025-07-23T19:28:54.7314647Z ##[endgroup] -2025-07-23T19:28:54.7315184Z ##[group]Operating System -2025-07-23T19:28:54.7315748Z Ubuntu -2025-07-23T19:28:54.7316175Z 24.04.2 -2025-07-23T19:28:54.7317080Z LTS -2025-07-23T19:28:54.7317527Z ##[endgroup] -2025-07-23T19:28:54.7318003Z ##[group]Runner Image -2025-07-23T19:28:54.7318636Z Image: ubuntu-24.04 -2025-07-23T19:28:54.7319143Z Version: 20250720.1.0 -2025-07-23T19:28:54.7320115Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md -2025-07-23T19:28:54.7321576Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 -2025-07-23T19:28:54.7322549Z ##[endgroup] -2025-07-23T19:28:54.7324925Z ##[group]GITHUB_TOKEN Permissions -2025-07-23T19:28:54.7327018Z Actions: write -2025-07-23T19:28:54.7327694Z Attestations: write -2025-07-23T19:28:54.7328188Z Checks: write -2025-07-23T19:28:54.7328657Z Contents: write -2025-07-23T19:28:54.7329261Z Deployments: write -2025-07-23T19:28:54.7329736Z Discussions: write -2025-07-23T19:28:54.7330212Z Issues: write -2025-07-23T19:28:54.7330724Z Metadata: read -2025-07-23T19:28:54.7331211Z Models: read -2025-07-23T19:28:54.7331689Z Packages: write -2025-07-23T19:28:54.7332302Z Pages: write -2025-07-23T19:28:54.7332760Z PullRequests: write -2025-07-23T19:28:54.7333276Z RepositoryProjects: write -2025-07-23T19:28:54.7333898Z SecurityEvents: write -2025-07-23T19:28:54.7334465Z Statuses: write -2025-07-23T19:28:54.7334949Z ##[endgroup] -2025-07-23T19:28:54.7337353Z Secret source: Actions -2025-07-23T19:28:54.7338106Z Prepare workflow directory -2025-07-23T19:28:54.7662675Z Prepare all required actions -2025-07-23T19:28:54.7701053Z Getting action download info -2025-07-23T19:28:55.1589668Z ##[group]Download immutable action package 'actions/checkout@v4' -2025-07-23T19:28:55.1590793Z Version: 4.2.2 -2025-07-23T19:28:55.1591890Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 -2025-07-23T19:28:55.1593206Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 -2025-07-23T19:28:55.1594013Z ##[endgroup] -2025-07-23T19:28:55.2611703Z ##[group]Download immutable action package 'actions/setup-go@v5' -2025-07-23T19:28:55.2612653Z Version: 5.5.0 -2025-07-23T19:28:55.2613456Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb -2025-07-23T19:28:55.2614418Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 -2025-07-23T19:28:55.2615244Z ##[endgroup] -2025-07-23T19:28:55.5639398Z Complete job name: Lint -2025-07-23T19:28:55.6281617Z ##[group]Run actions/checkout@v4 -2025-07-23T19:28:55.6282508Z with: -2025-07-23T19:28:55.6282964Z repository: ava-labs/coreth -2025-07-23T19:28:55.6283658Z token: *** -2025-07-23T19:28:55.6284114Z ssh-strict: true -2025-07-23T19:28:55.6284545Z ssh-user: git -2025-07-23T19:28:55.6284982Z persist-credentials: true -2025-07-23T19:28:55.6285492Z clean: true -2025-07-23T19:28:55.6285938Z sparse-checkout-cone-mode: true -2025-07-23T19:28:55.6286685Z fetch-depth: 1 -2025-07-23T19:28:55.6287136Z fetch-tags: false -2025-07-23T19:28:55.6287578Z show-progress: true -2025-07-23T19:28:55.6288017Z lfs: false -2025-07-23T19:28:55.6288425Z submodules: false -2025-07-23T19:28:55.6288865Z set-safe-directory: true -2025-07-23T19:28:55.6289672Z ##[endgroup] -2025-07-23T19:28:55.7412180Z Syncing repository: ava-labs/coreth -2025-07-23T19:28:55.7415350Z ##[group]Getting Git version info -2025-07-23T19:28:55.7416891Z Working directory is '/home/runner/work/coreth/coreth' -2025-07-23T19:28:55.7418874Z [command]/usr/bin/git version -2025-07-23T19:28:55.7454473Z git version 2.50.1 -2025-07-23T19:28:55.7481481Z ##[endgroup] -2025-07-23T19:28:55.7498743Z Temporarily overriding HOME='/home/runner/work/_temp/7f4d34e6-b629-46b0-b54a-489047ff8aac' before making global git config changes -2025-07-23T19:28:55.7501901Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:28:55.7504329Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:28:55.7542638Z Deleting the contents of '/home/runner/work/coreth/coreth' -2025-07-23T19:28:55.7546576Z ##[group]Initializing the repository -2025-07-23T19:28:55.7550423Z [command]/usr/bin/git init /home/runner/work/coreth/coreth -2025-07-23T19:28:55.7669044Z hint: Using 'master' as the name for the initial branch. This default branch name -2025-07-23T19:28:55.7671043Z hint: is subject to change. To configure the initial branch name to use in all -2025-07-23T19:28:55.7672872Z hint: of your new repositories, which will suppress this warning, call: -2025-07-23T19:28:55.7674232Z hint: -2025-07-23T19:28:55.7675066Z hint: git config --global init.defaultBranch -2025-07-23T19:28:55.7675837Z hint: -2025-07-23T19:28:55.7676712Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and -2025-07-23T19:28:55.7677800Z hint: 'development'. The just-created branch can be renamed via this command: -2025-07-23T19:28:55.7678627Z hint: -2025-07-23T19:28:55.7679044Z hint: git branch -m -2025-07-23T19:28:55.7679526Z hint: -2025-07-23T19:28:55.7680138Z hint: Disable this message with "git config set advice.defaultBranchName false" -2025-07-23T19:28:55.7681207Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ -2025-07-23T19:28:55.7690593Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth -2025-07-23T19:28:55.7734097Z ##[endgroup] -2025-07-23T19:28:55.7735365Z ##[group]Disabling automatic garbage collection -2025-07-23T19:28:55.7738443Z [command]/usr/bin/git config --local gc.auto 0 -2025-07-23T19:28:55.7772653Z ##[endgroup] -2025-07-23T19:28:55.7773406Z ##[group]Setting up auth -2025-07-23T19:28:55.7784127Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:28:55.7824444Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:28:55.8134259Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:28:55.8164028Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:28:55.8401672Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** -2025-07-23T19:28:55.8442982Z ##[endgroup] -2025-07-23T19:28:55.8444102Z ##[group]Fetching the repository -2025-07-23T19:28:55.8451678Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge -2025-07-23T19:28:56.3796810Z From https://github.com/ava-labs/coreth -2025-07-23T19:28:56.3798619Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge -2025-07-23T19:28:56.3822566Z ##[endgroup] -2025-07-23T19:28:56.3824104Z ##[group]Determining the checkout info -2025-07-23T19:28:56.3825301Z ##[endgroup] -2025-07-23T19:28:56.3828928Z [command]/usr/bin/git sparse-checkout disable -2025-07-23T19:28:56.3866096Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig -2025-07-23T19:28:56.3893820Z ##[group]Checking out the ref -2025-07-23T19:28:56.3897127Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge -2025-07-23T19:28:56.5008734Z Note: switching to 'refs/remotes/pull/1065/merge'. -2025-07-23T19:28:56.5009663Z -2025-07-23T19:28:56.5010325Z You are in 'detached HEAD' state. You can look around, make experimental -2025-07-23T19:28:56.5011933Z changes and commit them, and you can discard any commits you make in this -2025-07-23T19:28:56.5014132Z state without impacting any branches by switching back to a branch. -2025-07-23T19:28:56.5015684Z -2025-07-23T19:28:56.5016948Z If you want to create a new branch to retain commits you create, you may -2025-07-23T19:28:56.5019232Z do so (now or later) by using -c with the switch command. Example: -2025-07-23T19:28:56.5020556Z -2025-07-23T19:28:56.5021226Z git switch -c -2025-07-23T19:28:56.5022295Z -2025-07-23T19:28:56.5022895Z Or undo this operation with: -2025-07-23T19:28:56.5023768Z -2025-07-23T19:28:56.5024221Z git switch - -2025-07-23T19:28:56.5024905Z -2025-07-23T19:28:56.5026038Z Turn off this advice by setting config variable advice.detachedHead to false -2025-07-23T19:28:56.5028050Z -2025-07-23T19:28:56.5029902Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 -2025-07-23T19:28:56.5035358Z ##[endgroup] -2025-07-23T19:28:56.5062860Z [command]/usr/bin/git log -1 --format=%H -2025-07-23T19:28:56.5085739Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -2025-07-23T19:28:56.5403362Z ##[group]Run actions/setup-go@v5 -2025-07-23T19:28:56.5404508Z with: -2025-07-23T19:28:56.5405353Z go-version-file: go.mod -2025-07-23T19:28:56.5406532Z check-latest: false -2025-07-23T19:28:56.5407779Z token: *** -2025-07-23T19:28:56.5408621Z cache: true -2025-07-23T19:28:56.5409495Z ##[endgroup] -2025-07-23T19:28:56.7220131Z Setup go version spec 1.23.9 -2025-07-23T19:28:56.7236206Z Attempting to download 1.23.9... -2025-07-23T19:28:57.0090265Z matching 1.23.9... -2025-07-23T19:28:57.0130560Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz -2025-07-23T19:28:57.5881206Z Extracting Go... -2025-07-23T19:28:57.5979283Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/6a2ca727-1390-4aa5-890a-80b94a46f362 -f /home/runner/work/_temp/a8b54835-6227-4553-a3c0-533eed767c9f -2025-07-23T19:28:59.2811390Z Successfully extracted go to /home/runner/work/_temp/6a2ca727-1390-4aa5-890a-80b94a46f362 -2025-07-23T19:28:59.2812090Z Adding to the cache ... -2025-07-23T19:29:03.6671541Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 -2025-07-23T19:29:03.6675331Z Added go to the path -2025-07-23T19:29:03.6676197Z Successfully set up Go version 1.23.9 -2025-07-23T19:29:03.6869934Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:29:03.6900820Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:29:03.6937197Z /home/runner/go/pkg/mod -2025-07-23T19:29:03.6957934Z /home/runner/.cache/go-build -2025-07-23T19:29:03.7653140Z Cache hit for: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:04.8324815Z Received 176160768 of 743127682 (23.7%), 166.5 MBs/sec -2025-07-23T19:29:05.8404647Z Received 402653184 of 743127682 (54.2%), 190.4 MBs/sec -2025-07-23T19:29:06.8401734Z Received 641728512 of 743127682 (86.4%), 202.9 MBs/sec -2025-07-23T19:29:07.4514619Z Received 743127682 of 743127682 (100.0%), 195.3 MBs/sec -2025-07-23T19:29:07.4515470Z Cache Size: ~709 MB (743127682 B) -2025-07-23T19:29:07.4627060Z [command]/usr/bin/tar -xf /home/runner/work/_temp/d536043f-5a09-4e50-8110-ac5952001aec/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd -2025-07-23T19:29:14.3057547Z Cache restored successfully -2025-07-23T19:29:14.4415827Z Cache restored from key: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:14.4443240Z go version go1.23.9 linux/amd64 -2025-07-23T19:29:14.4443446Z -2025-07-23T19:29:14.4443716Z ##[group]go env -2025-07-23T19:29:14.6216572Z GO111MODULE='' -2025-07-23T19:29:14.6217295Z GOARCH='amd64' -2025-07-23T19:29:14.6218802Z GOBIN='' -2025-07-23T19:29:14.6219203Z GOCACHE='/home/runner/.cache/go-build' -2025-07-23T19:29:14.6219711Z GOENV='/home/runner/.config/go/env' -2025-07-23T19:29:14.6220131Z GOEXE='' -2025-07-23T19:29:14.6220806Z GOEXPERIMENT='' -2025-07-23T19:29:14.6221138Z GOFLAGS='' -2025-07-23T19:29:14.6221494Z GOHOSTARCH='amd64' -2025-07-23T19:29:14.6221823Z GOHOSTOS='linux' -2025-07-23T19:29:14.6222127Z GOINSECURE='' -2025-07-23T19:29:14.6222460Z GOMODCACHE='/home/runner/go/pkg/mod' -2025-07-23T19:29:14.6222856Z GONOPROXY='' -2025-07-23T19:29:14.6223140Z GONOSUMDB='' -2025-07-23T19:29:14.6223417Z GOOS='linux' -2025-07-23T19:29:14.6223717Z GOPATH='/home/runner/go' -2025-07-23T19:29:14.6224062Z GOPRIVATE='' -2025-07-23T19:29:14.6224639Z GOPROXY='https://proxy.golang.org,direct' -2025-07-23T19:29:14.6225142Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' -2025-07-23T19:29:14.6225582Z GOSUMDB='sum.golang.org' -2025-07-23T19:29:14.6225916Z GOTMPDIR='' -2025-07-23T19:29:14.6226208Z GOTOOLCHAIN='auto' -2025-07-23T19:29:14.6226912Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' -2025-07-23T19:29:14.6227449Z GOVCS='' -2025-07-23T19:29:14.6227737Z GOVERSION='go1.23.9' -2025-07-23T19:29:14.6228056Z GODEBUG='' -2025-07-23T19:29:14.6228349Z GOTELEMETRY='local' -2025-07-23T19:29:14.6229015Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' -2025-07-23T19:29:14.6229495Z GCCGO='gccgo' -2025-07-23T19:29:14.6229782Z GOAMD64='v1' -2025-07-23T19:29:14.6230055Z AR='ar' -2025-07-23T19:29:14.6230345Z CC='gcc' -2025-07-23T19:29:14.6230609Z CXX='g++' -2025-07-23T19:29:14.6230878Z CGO_ENABLED='1' -2025-07-23T19:29:14.6231260Z GOMOD='/home/runner/work/coreth/coreth/go.mod' -2025-07-23T19:29:14.6231689Z GOWORK='' -2025-07-23T19:29:14.6231971Z CGO_CFLAGS='-O2 -g' -2025-07-23T19:29:14.6232271Z CGO_CPPFLAGS='' -2025-07-23T19:29:14.6232591Z CGO_CXXFLAGS='-O2 -g' -2025-07-23T19:29:14.6232901Z CGO_FFLAGS='-O2 -g' -2025-07-23T19:29:14.6233211Z CGO_LDFLAGS='-O2 -g' -2025-07-23T19:29:14.6233551Z PKG_CONFIG='pkg-config' -2025-07-23T19:29:14.6234551Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build2870971817=/tmp/go-build -gno-record-gcc-switches' -2025-07-23T19:29:14.6235428Z -2025-07-23T19:29:14.6235856Z ##[endgroup] -2025-07-23T19:29:14.6408275Z ##[group]Run ./scripts/run_task.sh lint-all-ci -2025-07-23T19:29:14.6408678Z ./scripts/run_task.sh lint-all-ci -2025-07-23T19:29:14.6442895Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:14.6443214Z ##[endgroup] -2025-07-23T19:29:15.4094688Z task: [lint] ./scripts/lint.sh -2025-07-23T19:29:15.4166912Z Running 'golangci_lint license_header require_error_is_no_funcs_as_params single_import interface_compliance_nil require_no_error_inline_func import_testing_only_in_tests' at: Wed Jul 23 19:29:15 UTC 2025 -2025-07-23T19:29:15.4192530Z find: warning: -path ./ will not match anything because it ends with /. -2025-07-23T19:29:15.4494210Z START: 'golangci_lint' at Wed Jul 23 19:29:15 UTC 2025 -2025-07-23T19:30:03.0594151Z SUCCESS: 'golangci_lint' completed at Wed Jul 23 19:30:03 UTC 2025 -2025-07-23T19:30:03.0614525Z START: 'license_header' at Wed Jul 23 19:30:03 UTC 2025 -2025-07-23T19:30:03.0618959Z Running license tool on upstream files with header for upstream... -2025-07-23T19:30:03.6289884Z 1 file does not have the correct license header: -2025-07-23T19:30:03.6290276Z ./core/state/database_test.go -2025-07-23T19:30:03.6294308Z exit status 1 -2025-07-23T19:30:03.6316106Z Running license tool on remaining files with default header... -2025-07-23T19:30:04.0109911Z SUCCESS: 'license_header' completed at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0131148Z START: 'require_error_is_no_funcs_as_params' at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0237548Z SUCCESS: 'require_error_is_no_funcs_as_params' completed at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0259089Z START: 'single_import' at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0358266Z SUCCESS: 'single_import' completed at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0378173Z START: 'interface_compliance_nil' at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0514162Z SUCCESS: 'interface_compliance_nil' completed at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0533914Z START: 'require_no_error_inline_func' at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0651827Z SUCCESS: 'require_no_error_inline_func' completed at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0671756Z START: 'import_testing_only_in_tests' at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.1045718Z SUCCESS: 'import_testing_only_in_tests' completed at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.1046567Z ALL SUCCESS! -2025-07-23T19:30:04.1091065Z task: [actionlint] ./scripts/actionlint.sh -2025-07-23T19:30:07.1235382Z Checking use of scripts/* in GitHub Actions workflows... -2025-07-23T19:30:07.1334252Z task: [shellcheck] ./scripts/shellcheck.sh -2025-07-23T19:30:07.4978715Z -2025-07-23T19:30:07.4979263Z In /home/runner/work/coreth/coreth/scripts/build_test.sh line 59: -2025-07-23T19:30:07.4980336Z test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" $PACKAGES 2>&1) || command_status=$? -2025-07-23T19:30:07.4985740Z ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting. -2025-07-23T19:30:07.4986096Z -2025-07-23T19:30:07.4986194Z Did you mean: -2025-07-23T19:30:07.4987320Z test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" "$PACKAGES" 2>&1) || command_status=$? -2025-07-23T19:30:07.4987918Z -2025-07-23T19:30:07.4987923Z -2025-07-23T19:30:07.4988138Z In /home/runner/work/coreth/coreth/scripts/build_test.sh line 112: -2025-07-23T19:30:07.4988888Z go test -run "^${test_name}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" $package -2025-07-23T19:30:07.4991777Z ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. -2025-07-23T19:30:07.4992094Z -2025-07-23T19:30:07.4992190Z Did you mean: -2025-07-23T19:30:07.4993137Z go test -run "^${test_name}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" "$package" -2025-07-23T19:30:07.4993451Z -2025-07-23T19:30:07.4993548Z For more information: -2025-07-23T19:30:07.4993977Z https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ... -2025-07-23T19:30:07.5008113Z task: Failed to run task "lint-all-ci": exit status 123 -2025-07-23T19:30:07.5017725Z exit status 201 -2025-07-23T19:30:07.5072550Z ##[error]Process completed with exit code 1. -2025-07-23T19:30:07.5175437Z Post job cleanup. -2025-07-23T19:30:07.6108879Z [command]/usr/bin/git version -2025-07-23T19:30:07.6143838Z git version 2.50.1 -2025-07-23T19:30:07.6190929Z Temporarily overriding HOME='/home/runner/work/_temp/9677b321-d7be-49b4-8b47-75fbc3723d01' before making global git config changes -2025-07-23T19:30:07.6192031Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:30:07.6195778Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:30:07.6228602Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:30:07.6259168Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:30:07.6478699Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:30:07.6497829Z http.https://github.com/.extraheader -2025-07-23T19:30:07.6509598Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader -2025-07-23T19:30:07.6538391Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:30:07.6858656Z Cleaning up orphan processes diff --git a/logs_42241282643/1_AvalancheGo E2E Tests.txt b/logs_42241282643/1_AvalancheGo E2E Tests.txt deleted file mode 100644 index 66e1740812..0000000000 --- a/logs_42241282643/1_AvalancheGo E2E Tests.txt +++ /dev/null @@ -1,1250 +0,0 @@ -2025-07-23T19:28:54.4431617Z Current runner version: '2.326.0' -2025-07-23T19:28:54.4462814Z ##[group]Runner Image Provisioner -2025-07-23T19:28:54.4464409Z Hosted Compute Agent -2025-07-23T19:28:54.4465210Z Version: 20250711.363 -2025-07-23T19:28:54.4466172Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c -2025-07-23T19:28:54.4467454Z Build Date: 2025-07-11T20:04:25Z -2025-07-23T19:28:54.4468323Z ##[endgroup] -2025-07-23T19:28:54.4469152Z ##[group]Operating System -2025-07-23T19:28:54.4470063Z Ubuntu -2025-07-23T19:28:54.4470817Z 24.04.2 -2025-07-23T19:28:54.4471453Z LTS -2025-07-23T19:28:54.4472337Z ##[endgroup] -2025-07-23T19:28:54.4473129Z ##[group]Runner Image -2025-07-23T19:28:54.4474202Z Image: ubuntu-24.04 -2025-07-23T19:28:54.4475134Z Version: 20250720.1.0 -2025-07-23T19:28:54.4476800Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md -2025-07-23T19:28:54.4479492Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 -2025-07-23T19:28:54.4481089Z ##[endgroup] -2025-07-23T19:28:54.4485470Z ##[group]GITHUB_TOKEN Permissions -2025-07-23T19:28:54.4488115Z Actions: write -2025-07-23T19:28:54.4489063Z Attestations: write -2025-07-23T19:28:54.4490008Z Checks: write -2025-07-23T19:28:54.4490735Z Contents: write -2025-07-23T19:28:54.4491566Z Deployments: write -2025-07-23T19:28:54.4492451Z Discussions: write -2025-07-23T19:28:54.4493231Z Issues: write -2025-07-23T19:28:54.4494326Z Metadata: read -2025-07-23T19:28:54.4495156Z Models: read -2025-07-23T19:28:54.4496010Z Packages: write -2025-07-23T19:28:54.4496850Z Pages: write -2025-07-23T19:28:54.4497643Z PullRequests: write -2025-07-23T19:28:54.4498449Z RepositoryProjects: write -2025-07-23T19:28:54.4499465Z SecurityEvents: write -2025-07-23T19:28:54.4500515Z Statuses: write -2025-07-23T19:28:54.4501254Z ##[endgroup] -2025-07-23T19:28:54.4504794Z Secret source: Actions -2025-07-23T19:28:54.4505850Z Prepare workflow directory -2025-07-23T19:28:54.4966817Z Prepare all required actions -2025-07-23T19:28:54.5021058Z Getting action download info -2025-07-23T19:28:54.8461177Z ##[group]Download immutable action package 'actions/checkout@v4' -2025-07-23T19:28:54.8462345Z Version: 4.2.2 -2025-07-23T19:28:54.8463436Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 -2025-07-23T19:28:54.8464916Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 -2025-07-23T19:28:54.8465675Z ##[endgroup] -2025-07-23T19:28:54.9311925Z ##[group]Download immutable action package 'actions/setup-go@v5' -2025-07-23T19:28:54.9312826Z Version: 5.5.0 -2025-07-23T19:28:54.9313666Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb -2025-07-23T19:28:54.9314934Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 -2025-07-23T19:28:54.9315691Z ##[endgroup] -2025-07-23T19:28:55.2881118Z Download action repository 'ava-labs/avalanchego@66ce7a7701db0c4b370f97b339478d5b5ebe919a' (SHA:66ce7a7701db0c4b370f97b339478d5b5ebe919a) -2025-07-23T19:28:56.0641084Z Getting action download info -2025-07-23T19:28:56.2208655Z Download action repository 'cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f' (SHA:02a151ada4993995686f9ed4f1be7cfbb229e56f) -2025-07-23T19:28:56.4586025Z ##[group]Download immutable action package 'actions/upload-artifact@v4' -2025-07-23T19:28:56.4587607Z Version: 4.6.2 -2025-07-23T19:28:56.4588986Z Digest: sha256:290722aa3281d5caf23d0acdc3dbeb3424786a1a01a9cc97e72f147225e37c38 -2025-07-23T19:28:56.4590837Z Source commit SHA: ea165f8d65b6e75b540449e92b4886f43607fa02 -2025-07-23T19:28:56.4592117Z ##[endgroup] -2025-07-23T19:28:56.6324582Z Complete job name: AvalancheGo E2E Tests -2025-07-23T19:28:56.7103821Z ##[group]Run actions/checkout@v4 -2025-07-23T19:28:56.7105269Z with: -2025-07-23T19:28:56.7106010Z repository: ava-labs/coreth -2025-07-23T19:28:56.7107143Z token: *** -2025-07-23T19:28:56.7107863Z ssh-strict: true -2025-07-23T19:28:56.7108591Z ssh-user: git -2025-07-23T19:28:56.7109353Z persist-credentials: true -2025-07-23T19:28:56.7110197Z clean: true -2025-07-23T19:28:56.7110964Z sparse-checkout-cone-mode: true -2025-07-23T19:28:56.7112136Z fetch-depth: 1 -2025-07-23T19:28:56.7112885Z fetch-tags: false -2025-07-23T19:28:56.7113679Z show-progress: true -2025-07-23T19:28:56.7114597Z lfs: false -2025-07-23T19:28:56.7115309Z submodules: false -2025-07-23T19:28:56.7116081Z set-safe-directory: true -2025-07-23T19:28:56.7117191Z ##[endgroup] -2025-07-23T19:28:56.8200551Z Syncing repository: ava-labs/coreth -2025-07-23T19:28:56.8204364Z ##[group]Getting Git version info -2025-07-23T19:28:56.8206045Z Working directory is '/home/runner/work/coreth/coreth' -2025-07-23T19:28:56.8207880Z [command]/usr/bin/git version -2025-07-23T19:28:56.8228739Z git version 2.50.1 -2025-07-23T19:28:56.8255230Z ##[endgroup] -2025-07-23T19:28:56.8270106Z Temporarily overriding HOME='/home/runner/work/_temp/e6e1d5ba-725b-4693-bf98-a6df7228bb99' before making global git config changes -2025-07-23T19:28:56.8272700Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:28:56.8276040Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:28:56.8311986Z Deleting the contents of '/home/runner/work/coreth/coreth' -2025-07-23T19:28:56.8315860Z ##[group]Initializing the repository -2025-07-23T19:28:56.8320682Z [command]/usr/bin/git init /home/runner/work/coreth/coreth -2025-07-23T19:28:56.8379520Z hint: Using 'master' as the name for the initial branch. This default branch name -2025-07-23T19:28:56.8382136Z hint: is subject to change. To configure the initial branch name to use in all -2025-07-23T19:28:56.8384498Z hint: of your new repositories, which will suppress this warning, call: -2025-07-23T19:28:56.8386062Z hint: -2025-07-23T19:28:56.8387254Z hint: git config --global init.defaultBranch -2025-07-23T19:28:56.8388620Z hint: -2025-07-23T19:28:56.8389874Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and -2025-07-23T19:28:56.8392172Z hint: 'development'. The just-created branch can be renamed via this command: -2025-07-23T19:28:56.8393607Z hint: -2025-07-23T19:28:56.8394605Z hint: git branch -m -2025-07-23T19:28:56.8395451Z hint: -2025-07-23T19:28:56.8396555Z hint: Disable this message with "git config set advice.defaultBranchName false" -2025-07-23T19:28:56.8398339Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ -2025-07-23T19:28:56.8401065Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth -2025-07-23T19:28:56.8426242Z ##[endgroup] -2025-07-23T19:28:56.8427563Z ##[group]Disabling automatic garbage collection -2025-07-23T19:28:56.8429653Z [command]/usr/bin/git config --local gc.auto 0 -2025-07-23T19:28:56.8457953Z ##[endgroup] -2025-07-23T19:28:56.8459198Z ##[group]Setting up auth -2025-07-23T19:28:56.8464325Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:28:56.8494014Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:28:56.8746133Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:28:56.8778627Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:28:56.8995454Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** -2025-07-23T19:28:56.9030207Z ##[endgroup] -2025-07-23T19:28:56.9031776Z ##[group]Fetching the repository -2025-07-23T19:28:56.9039783Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge -2025-07-23T19:28:57.4567125Z From https://github.com/ava-labs/coreth -2025-07-23T19:28:57.4570772Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge -2025-07-23T19:28:57.4597198Z ##[endgroup] -2025-07-23T19:28:57.4599328Z ##[group]Determining the checkout info -2025-07-23T19:28:57.4601670Z ##[endgroup] -2025-07-23T19:28:57.4603112Z [command]/usr/bin/git sparse-checkout disable -2025-07-23T19:28:57.4641103Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig -2025-07-23T19:28:57.4670669Z ##[group]Checking out the ref -2025-07-23T19:28:57.4673140Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge -2025-07-23T19:28:57.5786245Z Note: switching to 'refs/remotes/pull/1065/merge'. -2025-07-23T19:28:57.5787985Z -2025-07-23T19:28:57.5789044Z You are in 'detached HEAD' state. You can look around, make experimental -2025-07-23T19:28:57.5791564Z changes and commit them, and you can discard any commits you make in this -2025-07-23T19:28:57.5795037Z state without impacting any branches by switching back to a branch. -2025-07-23T19:28:57.5796380Z -2025-07-23T19:28:57.5797277Z If you want to create a new branch to retain commits you create, you may -2025-07-23T19:28:57.5799837Z do so (now or later) by using -c with the switch command. Example: -2025-07-23T19:28:57.5801124Z -2025-07-23T19:28:57.5801715Z git switch -c -2025-07-23T19:28:57.5802702Z -2025-07-23T19:28:57.5803382Z Or undo this operation with: -2025-07-23T19:28:57.5804513Z -2025-07-23T19:28:57.5805067Z git switch - -2025-07-23T19:28:57.5805739Z -2025-07-23T19:28:57.5806722Z Turn off this advice by setting config variable advice.detachedHead to false -2025-07-23T19:28:57.5808150Z -2025-07-23T19:28:57.5809711Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 -2025-07-23T19:28:57.5813342Z ##[endgroup] -2025-07-23T19:28:57.5838918Z [command]/usr/bin/git log -1 --format=%H -2025-07-23T19:28:57.5860779Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -2025-07-23T19:28:57.6130293Z ##[group]Run actions/setup-go@v5 -2025-07-23T19:28:57.6131150Z with: -2025-07-23T19:28:57.6131830Z go-version-file: go.mod -2025-07-23T19:28:57.6132627Z check-latest: false -2025-07-23T19:28:57.6133585Z token: *** -2025-07-23T19:28:57.6134596Z cache: true -2025-07-23T19:28:57.6135299Z ##[endgroup] -2025-07-23T19:28:57.7711747Z Setup go version spec 1.23.9 -2025-07-23T19:28:57.7723803Z Attempting to download 1.23.9... -2025-07-23T19:28:58.0689978Z matching 1.23.9... -2025-07-23T19:28:58.0730175Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz -2025-07-23T19:28:58.6556548Z Extracting Go... -2025-07-23T19:28:58.6663483Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/e1b386e0-cf78-4423-a894-16dd3b169dd8 -f /home/runner/work/_temp/e9bce400-3df8-4e37-853e-84874916e6d1 -2025-07-23T19:29:00.3591529Z Successfully extracted go to /home/runner/work/_temp/e1b386e0-cf78-4423-a894-16dd3b169dd8 -2025-07-23T19:29:00.3592293Z Adding to the cache ... -2025-07-23T19:29:04.5969390Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 -2025-07-23T19:29:04.5970263Z Added go to the path -2025-07-23T19:29:04.5971383Z Successfully set up Go version 1.23.9 -2025-07-23T19:29:04.6158282Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:29:04.6188103Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:29:04.6219834Z /home/runner/go/pkg/mod -2025-07-23T19:29:04.6235379Z /home/runner/.cache/go-build -2025-07-23T19:29:04.6856393Z Cache hit for: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:05.7180271Z Received 209715200 of 743127682 (28.2%), 199.8 MBs/sec -2025-07-23T19:29:06.7285615Z Received 415236096 of 743127682 (55.9%), 197.0 MBs/sec -2025-07-23T19:29:07.7904532Z Received 671088640 of 743127682 (90.3%), 208.2 MBs/sec -2025-07-23T19:29:08.1520136Z Received 743127682 of 743127682 (100.0%), 206.3 MBs/sec -2025-07-23T19:29:08.1521203Z Cache Size: ~709 MB (743127682 B) -2025-07-23T19:29:08.1557834Z [command]/usr/bin/tar -xf /home/runner/work/_temp/33e68bb1-dff2-424c-a5b6-4cbc0ab6eb76/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd -2025-07-23T19:29:16.0199246Z Cache restored successfully -2025-07-23T19:29:16.1618795Z Cache restored from key: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:16.1642154Z go version go1.23.9 linux/amd64 -2025-07-23T19:29:16.1642392Z -2025-07-23T19:29:16.1642728Z ##[group]go env -2025-07-23T19:29:16.3334712Z GO111MODULE='' -2025-07-23T19:29:16.3335263Z GOARCH='amd64' -2025-07-23T19:29:16.3335695Z GOBIN='' -2025-07-23T19:29:16.3336132Z GOCACHE='/home/runner/.cache/go-build' -2025-07-23T19:29:16.3336613Z GOENV='/home/runner/.config/go/env' -2025-07-23T19:29:16.3336988Z GOEXE='' -2025-07-23T19:29:16.3337287Z GOEXPERIMENT='' -2025-07-23T19:29:16.3337588Z GOFLAGS='' -2025-07-23T19:29:16.3338037Z GOHOSTARCH='amd64' -2025-07-23T19:29:16.3338478Z GOHOSTOS='linux' -2025-07-23T19:29:16.3338861Z GOINSECURE='' -2025-07-23T19:29:16.3339277Z GOMODCACHE='/home/runner/go/pkg/mod' -2025-07-23T19:29:16.3339968Z GONOPROXY='' -2025-07-23T19:29:16.3340305Z GONOSUMDB='' -2025-07-23T19:29:16.3340577Z GOOS='linux' -2025-07-23T19:29:16.3340868Z GOPATH='/home/runner/go' -2025-07-23T19:29:16.3341194Z GOPRIVATE='' -2025-07-23T19:29:16.3341589Z GOPROXY='https://proxy.golang.org,direct' -2025-07-23T19:29:16.3342125Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' -2025-07-23T19:29:16.3342560Z GOSUMDB='sum.golang.org' -2025-07-23T19:29:16.3342892Z GOTMPDIR='' -2025-07-23T19:29:16.3343180Z GOTOOLCHAIN='auto' -2025-07-23T19:29:16.3343665Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' -2025-07-23T19:29:16.3344396Z GOVCS='' -2025-07-23T19:29:16.3344678Z GOVERSION='go1.23.9' -2025-07-23T19:29:16.3344980Z GODEBUG='' -2025-07-23T19:29:16.3345250Z GOTELEMETRY='local' -2025-07-23T19:29:16.3345946Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' -2025-07-23T19:29:16.3346402Z GCCGO='gccgo' -2025-07-23T19:29:16.3346673Z GOAMD64='v1' -2025-07-23T19:29:16.3346946Z AR='ar' -2025-07-23T19:29:16.3347196Z CC='gcc' -2025-07-23T19:29:16.3347455Z CXX='g++' -2025-07-23T19:29:16.3347719Z CGO_ENABLED='1' -2025-07-23T19:29:16.3348075Z GOMOD='/home/runner/work/coreth/coreth/go.mod' -2025-07-23T19:29:16.3348480Z GOWORK='' -2025-07-23T19:29:16.3348756Z CGO_CFLAGS='-O2 -g' -2025-07-23T19:29:16.3349059Z CGO_CPPFLAGS='' -2025-07-23T19:29:16.3349351Z CGO_CXXFLAGS='-O2 -g' -2025-07-23T19:29:16.3349672Z CGO_FFLAGS='-O2 -g' -2025-07-23T19:29:16.3349990Z CGO_LDFLAGS='-O2 -g' -2025-07-23T19:29:16.3350322Z PKG_CONFIG='pkg-config' -2025-07-23T19:29:16.3351259Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build3893342323=/tmp/go-build -gno-record-gcc-switches' -2025-07-23T19:29:16.3351909Z -2025-07-23T19:29:16.3352274Z ##[endgroup] -2025-07-23T19:29:16.3514523Z ##[group]Run ./scripts/run_task.sh build-avalanchego-with-coreth -2025-07-23T19:29:16.3515069Z ./scripts/run_task.sh build-avalanchego-with-coreth -2025-07-23T19:29:16.3548475Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:16.3548762Z ##[endgroup] -2025-07-23T19:29:17.2237094Z task: [build-avalanchego-with-coreth] ./scripts/build_avalanchego_with_coreth.sh -2025-07-23T19:29:17.2365773Z checking out target AvalancheGo version v1.13.3-rc.1 -2025-07-23T19:29:17.2366353Z creating new clone -2025-07-23T19:29:17.2378435Z Cloning into 'avalanchego'... -2025-07-23T19:29:24.4778748Z Switched to a new branch 'test-v1.13.3-rc.1' -2025-07-23T19:29:24.4793318Z updating coreth dependency to point to /home/runner/work/coreth/coreth -2025-07-23T19:29:24.5306708Z go: downloading connectrpc.com/connect v1.18.1 -2025-07-23T19:29:24.5409425Z go: downloading github.com/prometheus/client_golang v1.16.0 -2025-07-23T19:29:24.5414577Z go: downloading github.com/prometheus/client_model v0.3.0 -2025-07-23T19:29:24.5415645Z go: downloading github.com/prometheus/common v0.42.0 -2025-07-23T19:29:24.6036919Z go: downloading google.golang.org/protobuf v1.35.2 -2025-07-23T19:29:24.7943132Z go: downloading github.com/jackpal/gateway v1.0.6 -2025-07-23T19:29:24.7989056Z go: downloading github.com/ava-labs/simplex v0.0.0-20250626192006-220e6aeacdc1 -2025-07-23T19:29:24.8131442Z go: downloading github.com/antithesishq/antithesis-sdk-go v0.3.8 -2025-07-23T19:29:24.8247875Z go: downloading github.com/compose-spec/compose-go v1.20.2 -2025-07-23T19:29:24.8338462Z go: downloading github.com/ava-labs/ledger-avalanche/go v0.0.0-20241009183145-e6f90a8a1a60 -2025-07-23T19:29:24.8349479Z go: downloading github.com/tyler-smith/go-bip32 v1.0.0 -2025-07-23T19:29:24.8491149Z go: downloading github.com/nbutton23/zxcvbn-go v0.0.0-20180912185939-ae427f1e4c1d -2025-07-23T19:29:24.8588193Z go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.4 -2025-07-23T19:29:24.8670663Z go: downloading connectrpc.com/grpcreflect v1.3.0 -2025-07-23T19:29:24.8758244Z go: downloading github.com/prometheus/procfs v0.10.1 -2025-07-23T19:29:24.9214133Z go: downloading github.com/inconshreveable/mousetrap v1.1.0 -2025-07-23T19:29:24.9311067Z go: downloading github.com/zondax/ledger-go v1.0.0 -2025-07-23T19:29:24.9321254Z go: downloading github.com/FactomProject/basen v0.0.0-20150613233007-fe3947df716e -2025-07-23T19:29:24.9359224Z go: downloading github.com/FactomProject/btcutilecc v0.0.0-20130527213604-d3a63a5752ec -2025-07-23T19:29:24.9439257Z go: downloading github.com/distribution/reference v0.5.0 -2025-07-23T19:29:24.9442940Z go: downloading github.com/docker/go-connections v0.4.0 -2025-07-23T19:29:24.9462421Z go: downloading github.com/docker/go-units v0.5.0 -2025-07-23T19:29:24.9469911Z go: downloading github.com/mattn/go-shellwords v1.0.12 -2025-07-23T19:29:24.9653294Z go: downloading github.com/opencontainers/go-digest v1.0.0 -2025-07-23T19:29:24.9663153Z go: downloading gotest.tools/v3 v3.4.0 -2025-07-23T19:29:24.9753336Z go: downloading github.com/klauspost/compress v1.15.15 -2025-07-23T19:29:25.0043290Z go: downloading github.com/ava-labs/firewood-go-ethhash/ffi v0.0.8 -2025-07-23T19:29:25.0078278Z go: downloading golang.org/x/oauth2 v0.21.0 -2025-07-23T19:29:25.0106262Z go: downloading github.com/golang-jwt/jwt/v4 v4.5.0 -2025-07-23T19:29:25.0297367Z go: downloading github.com/golang-jwt/jwt v3.2.2+incompatible -2025-07-23T19:29:25.0444226Z go: downloading github.com/cmars/basen v0.0.0-20150613233007-fe3947df716e -2025-07-23T19:29:25.0530063Z go: downloading launchpad.net/gocheck v0.0.0-20140225173054-000000000087 -2025-07-23T19:29:25.0538638Z go: downloading github.com/zondax/hid v0.9.2 -2025-07-23T19:29:25.0886237Z go: downloading github.com/sirupsen/logrus v1.9.0 -2025-07-23T19:29:27.1622857Z building avalanchego -2025-07-23T19:29:27.1741538Z Building AvalancheGo with [go version go1.23.9 linux/amd64]... -2025-07-23T19:30:43.7222446Z ##[group]Run ava-labs/avalanchego/.github/actions/run-monitored-tmpnet-cmd@66ce7a7701db0c4b370f97b339478d5b5ebe919a -2025-07-23T19:30:43.7222951Z with: -2025-07-23T19:30:43.7223137Z run: ./scripts/run_task.sh test-e2e -2025-07-23T19:30:43.7223397Z run_env: AVALANCHEGO_CLONE_PATH=avalanchego -2025-07-23T19:30:43.7223638Z runtime: process -2025-07-23T19:30:43.7223850Z repository_owner: ava-labs -2025-07-23T19:30:43.7224310Z repository_name: coreth -2025-07-23T19:30:43.7224501Z workflow: CI -2025-07-23T19:30:43.7224677Z run_id: 16480013789 -2025-07-23T19:30:43.7224854Z run_number: 5026 -2025-07-23T19:30:43.7225019Z run_attempt: 1 -2025-07-23T19:30:43.7225190Z job: avalanchego_e2e -2025-07-23T19:30:43.7225386Z ##[endgroup] -2025-07-23T19:30:43.7329529Z ##[group]Run cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f -2025-07-23T19:30:43.7329902Z with: -2025-07-23T19:30:43.7330071Z enable_kvm: true -2025-07-23T19:30:43.7330253Z ##[endgroup] -2025-07-23T19:30:43.7351905Z ##[group]Run ${GITHUB_ACTION_PATH}/install-nix.sh -2025-07-23T19:30:43.7352250Z ${GITHUB_ACTION_PATH}/install-nix.sh -2025-07-23T19:30:43.7381171Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-07-23T19:30:43.7381479Z env: -2025-07-23T19:30:43.7381662Z INPUT_EXTRA_NIX_CONFIG: -2025-07-23T19:30:43.7381878Z INPUT_GITHUB_ACCESS_TOKEN: -2025-07-23T19:30:43.7382281Z INPUT_INSTALL_OPTIONS: -2025-07-23T19:30:43.7382486Z INPUT_INSTALL_URL: -2025-07-23T19:30:43.7382672Z INPUT_NIX_PATH: -2025-07-23T19:30:43.7382856Z INPUT_ENABLE_KVM: true -2025-07-23T19:30:43.7383449Z GITHUB_TOKEN: *** -2025-07-23T19:30:43.7383644Z ##[endgroup] -2025-07-23T19:30:43.7459306Z ##[group]Enabling KVM support -2025-07-23T19:30:43.7528616Z KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm" -2025-07-23T19:30:43.7825726Z Enabled KVM -2025-07-23T19:30:43.7826308Z ##[endgroup] -2025-07-23T19:30:43.7828413Z ##[group]Installing Nix -2025-07-23T19:30:43.8115756Z installer options: --no-channel-add --darwin-use-unencrypted-nix-store-volume --nix-extra-conf-file /tmp/tmp.ms8QZXhwC8/nix.conf --daemon --daemon-user-count 8 -2025-07-23T19:30:44.0860346Z * Host releases.nixos.org:443 was resolved. -2025-07-23T19:30:44.0860965Z * IPv6: 2a04:4e42:77::729 -2025-07-23T19:30:44.0861369Z * IPv4: 146.75.30.217 -2025-07-23T19:30:44.0861748Z * Trying 146.75.30.217:443... -2025-07-23T19:30:44.0911809Z * Connected to releases.nixos.org (146.75.30.217) port 443 -2025-07-23T19:30:44.0930246Z * ALPN: curl offers h2,http/1.1 -2025-07-23T19:30:44.0932437Z } [5 bytes data] -2025-07-23T19:30:44.0932907Z * TLSv1.3 (OUT), TLS handshake, Client hello (1): -2025-07-23T19:30:44.0933429Z } [512 bytes data] -2025-07-23T19:30:44.1142945Z * CAfile: /etc/ssl/certs/ca-certificates.crt -2025-07-23T19:30:44.1143504Z * CApath: /etc/ssl/certs -2025-07-23T19:30:44.1144216Z { [5 bytes data] -2025-07-23T19:30:44.1144676Z * TLSv1.3 (IN), TLS handshake, Server hello (2): -2025-07-23T19:30:44.1145198Z { [104 bytes data] -2025-07-23T19:30:44.1145645Z * TLSv1.2 (IN), TLS handshake, Certificate (11): -2025-07-23T19:30:44.1146152Z { [2827 bytes data] -2025-07-23T19:30:44.1150453Z * TLSv1.2 (IN), TLS handshake, Server key exchange (12): -2025-07-23T19:30:44.1151031Z { [300 bytes data] -2025-07-23T19:30:44.1154428Z * TLSv1.2 (IN), TLS handshake, Server finished (14): -2025-07-23T19:30:44.1154973Z { [4 bytes data] -2025-07-23T19:30:44.1155433Z * TLSv1.2 (OUT), TLS handshake, Client key exchange (16): -2025-07-23T19:30:44.1155988Z } [37 bytes data] -2025-07-23T19:30:44.1156455Z * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1): -2025-07-23T19:30:44.1157042Z } [1 bytes data] -2025-07-23T19:30:44.1157467Z * TLSv1.2 (OUT), TLS handshake, Finished (20): -2025-07-23T19:30:44.1157947Z } [16 bytes data] -2025-07-23T19:30:44.1205647Z * TLSv1.2 (IN), TLS handshake, Finished (20): -2025-07-23T19:30:44.1206119Z { [16 bytes data] -2025-07-23T19:30:44.1206739Z * SSL connection using TLSv1.2 / ECDHE-RSA-CHACHA20-POLY1305 / X25519 / RSASSA-PSS -2025-07-23T19:30:44.1208085Z * ALPN: server accepted h2 -2025-07-23T19:30:44.1208669Z * Server certificate: -2025-07-23T19:30:44.1209100Z * subject: CN=releases.nixos.org -2025-07-23T19:30:44.1209527Z * start date: Oct 11 20:56:16 2024 GMT -2025-07-23T19:30:44.1209953Z * expire date: Nov 12 20:56:15 2025 GMT -2025-07-23T19:30:44.1210641Z * subjectAltName: host "releases.nixos.org" matched cert's "releases.nixos.org" -2025-07-23T19:30:44.1211561Z * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2024 Q4 -2025-07-23T19:30:44.1212183Z * SSL certificate verify ok. -2025-07-23T19:30:44.1212926Z * Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption -2025-07-23T19:30:44.1214208Z * Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption -2025-07-23T19:30:44.1214855Z * Certificate level 2: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption -2025-07-23T19:30:44.1215295Z } [5 bytes data] -2025-07-23T19:30:44.1215486Z * using HTTP/2 -2025-07-23T19:30:44.1215813Z * [HTTP/2] [1] OPENED stream for https://releases.nixos.org/nix/nix-2.26.3/install -2025-07-23T19:30:44.1216183Z * [HTTP/2] [1] [:method: GET] -2025-07-23T19:30:44.1216409Z * [HTTP/2] [1] [:scheme: https] -2025-07-23T19:30:44.1216679Z * [HTTP/2] [1] [:authority: releases.nixos.org] -2025-07-23T19:30:44.1216975Z * [HTTP/2] [1] [:path: /nix/nix-2.26.3/install] -2025-07-23T19:30:44.1217463Z * [HTTP/2] [1] [user-agent: curl/8.5.0] -2025-07-23T19:30:44.1217714Z * [HTTP/2] [1] [accept: */*] -2025-07-23T19:30:44.1217927Z } [5 bytes data] -2025-07-23T19:30:44.1218129Z > GET /nix/nix-2.26.3/install HTTP/2 -2025-07-23T19:30:44.1218378Z > Host: releases.nixos.org -2025-07-23T19:30:44.1218599Z > User-Agent: curl/8.5.0 -2025-07-23T19:30:44.1218801Z > Accept: */* -2025-07-23T19:30:44.1218967Z > -2025-07-23T19:30:44.1255801Z { [5 bytes data] -2025-07-23T19:30:44.1273038Z < HTTP/2 200 -2025-07-23T19:30:44.1273498Z < last-modified: Wed, 05 Mar 2025 18:21:15 GMT -2025-07-23T19:30:44.1274235Z < etag: "c6753896884bce9b95ec3ca7be157ef6" -2025-07-23T19:30:44.1274715Z < x-amz-server-side-encryption: AES256 -2025-07-23T19:30:44.1275160Z < content-type: text/plain -2025-07-23T19:30:44.1275428Z < server: AmazonS3 -2025-07-23T19:30:44.1275643Z < via: 1.1 varnish, 1.1 varnish -2025-07-23T19:30:44.1275895Z < access-control-allow-origin: * -2025-07-23T19:30:44.1276143Z < accept-ranges: bytes -2025-07-23T19:30:44.1276362Z < date: Wed, 23 Jul 2025 19:30:44 GMT -2025-07-23T19:30:44.1276591Z < age: 9620 -2025-07-23T19:30:44.1276849Z < x-served-by: cache-dub4357-DUB, cache-iad-kiad7000128-IAD -2025-07-23T19:30:44.1277152Z < x-cache: HIT, HIT -2025-07-23T19:30:44.1277342Z < x-cache-hits: 3, 1 -2025-07-23T19:30:44.1277542Z < content-length: 4267 -2025-07-23T19:30:44.1277725Z < -2025-07-23T19:30:44.1277882Z { [4267 bytes data] -2025-07-23T19:30:44.1278127Z * Connection #0 to host releases.nixos.org left intact -2025-07-23T19:30:44.1353075Z downloading Nix 2.26.3 binary tarball for x86_64-linux from 'https://releases.nixos.org/nix/nix-2.26.3/nix-2.26.3-x86_64-linux.tar.xz' to '/tmp/nix-binary-tarball-unpack.APbj8s7Zdj'... -2025-07-23T19:30:44.1402887Z % Total % Received % Xferd Average Speed Time Time Time Current -2025-07-23T19:30:44.1404412Z Dload Upload Total Spent Left Speed -2025-07-23T19:30:44.1404787Z -2025-07-23T19:30:44.3121397Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 -2025-07-23T19:30:44.3122100Z 100 22.6M 100 22.6M 0 0 131M 0 --:--:-- --:--:-- --:--:-- 132M -2025-07-23T19:30:45.8649099Z Note: a multi-user installation is possible. See https://nixos.org/manual/nix/stable/installation/installing-binary.html#multi-user-installation -2025-07-23T19:30:45.8658618Z Warning: the flag --darwin-use-unencrypted-nix-store-volume -2025-07-23T19:30:45.8659513Z is no longer needed and will be removed in the future. -2025-07-23T19:30:45.8659793Z -2025-07-23T19:30:45.8669608Z Switching to the Multi-user Installer -2025-07-23T19:30:45.8770473Z Welcome to the Multi-User Nix Installation -2025-07-23T19:30:45.8780338Z  -2025-07-23T19:30:45.8780949Z This installation tool will set up your computer with the Nix package -2025-07-23T19:30:45.8781547Z manager. This will happen in a few stages: -2025-07-23T19:30:45.8781803Z -2025-07-23T19:30:45.8782029Z 1. Make sure your computer doesn't already have Nix. If it does, I -2025-07-23T19:30:45.8782791Z will show you instructions on how to clean up your old install. -2025-07-23T19:30:45.8783288Z -2025-07-23T19:30:45.8783618Z 2. Show you what I am going to install and where. Then I will ask -2025-07-23T19:30:45.8784297Z if you are ready to continue. -2025-07-23T19:30:45.8784503Z -2025-07-23T19:30:45.8784896Z 3. Create the system users (uids [30001..30008]) and groups (gid 30000) -2025-07-23T19:30:45.8785540Z that the Nix daemon uses to run builds. To create system users -2025-07-23T19:30:45.8786068Z in a different range, exit and run this tool again with -2025-07-23T19:30:45.8786481Z NIX_FIRST_BUILD_UID set. -2025-07-23T19:30:45.8786662Z -2025-07-23T19:30:45.8786854Z 4. Perform the basic installation of the Nix files daemon. -2025-07-23T19:30:45.8787147Z -2025-07-23T19:30:45.8787386Z 5. Configure your shell to import special Nix Profile files, so you -2025-07-23T19:30:45.8787815Z can use Nix. -2025-07-23T19:30:45.8787958Z -2025-07-23T19:30:45.8788267Z 6. Start the Nix daemon. -2025-07-23T19:30:45.8788443Z -2025-07-23T19:30:45.8788760Z Would you like to see a more detailed list of what I will do? -2025-07-23T19:30:45.8789276Z No TTY, assuming you would say yes :) -2025-07-23T19:30:45.8792599Z -2025-07-23T19:30:45.8792755Z I will: -2025-07-23T19:30:45.8792948Z -2025-07-23T19:30:45.8793273Z - make sure your computer doesn't already have Nix files -2025-07-23T19:30:45.8794074Z (if it does, I will tell you how to clean them up.) -2025-07-23T19:30:45.8794611Z - create local users (see the list above for the users I'll make) -2025-07-23T19:30:45.8795064Z - create a local group (nixbld) -2025-07-23T19:30:45.8795375Z - install Nix in /nix -2025-07-23T19:30:45.8795679Z - create a configuration file in /etc/nix -2025-07-23T19:30:45.8796085Z - set up the "default profile" by creating some Nix-related files in -2025-07-23T19:30:45.8796446Z /root -2025-07-23T19:30:45.8807888Z - back up /etc/bash.bashrc to /etc/bash.bashrc.backup-before-nix -2025-07-23T19:30:45.8808744Z - update /etc/bash.bashrc to include some Nix configuration -2025-07-23T19:30:45.8819559Z - load and start a service (at /etc/systemd/system/nix-daemon.service -2025-07-23T19:30:45.8820429Z and /etc/systemd/system/nix-daemon.socket) for nix-daemon -2025-07-23T19:30:45.8820710Z -2025-07-23T19:30:45.8821573Z Ready to continue? -2025-07-23T19:30:45.8822098Z No TTY, assuming you would say yes :) -2025-07-23T19:30:45.8844858Z -2025-07-23T19:30:45.8845471Z ---- let's talk about sudo ----------------------------------------------------- -2025-07-23T19:30:45.8855868Z This script is going to call sudo a lot. Normally, it would show you -2025-07-23T19:30:45.8856631Z exactly what commands it is running and why. However, the script is -2025-07-23T19:30:45.8857099Z run in a headless fashion, like this: -2025-07-23T19:30:45.8857316Z -2025-07-23T19:30:45.8857536Z $ curl -L https://nixos.org/nix/install | sh -2025-07-23T19:30:45.8857937Z -2025-07-23T19:30:45.8858276Z or maybe in a CI pipeline. Because of that, I'm going to skip the -2025-07-23T19:30:45.8858945Z verbose output in the interest of brevity. -2025-07-23T19:30:45.8859178Z -2025-07-23T19:30:45.8859284Z If you would like to -2025-07-23T19:30:45.8859554Z see the output, try like this: -2025-07-23T19:30:45.8859745Z -2025-07-23T19:30:45.8859973Z $ curl -L -o install-nix https://nixos.org/nix/install -2025-07-23T19:30:45.8860381Z $ sh ./install-nix -2025-07-23T19:30:45.8860532Z -2025-07-23T19:30:45.8860537Z -2025-07-23T19:30:45.8860759Z ~~> Checking for artifacts of previous installs -2025-07-23T19:30:45.8868250Z Before I try to install, I'll check for signs Nix already is or has -2025-07-23T19:30:45.8868845Z been installed on this system. -2025-07-23T19:30:45.8900884Z -2025-07-23T19:30:45.8901989Z ---- Nix config report --------------------------------------------------------- -2025-07-23T19:30:45.8902871Z  Temp Dir: /tmp/tmp.CUrud6LmxM -2025-07-23T19:30:45.8903478Z  Nix Root: /nix -2025-07-23T19:30:45.8904163Z  Build Users: 8 -2025-07-23T19:30:45.8904638Z  Build Group ID: 30000 -2025-07-23T19:30:45.8904980Z Build Group Name: nixbld -2025-07-23T19:30:45.8905180Z -2025-07-23T19:30:45.8905305Z build users: -2025-07-23T19:30:45.8905591Z  Username: UID -2025-07-23T19:30:45.8931947Z  nixbld1: 30001 -2025-07-23T19:30:45.8942337Z  nixbld2: 30002 -2025-07-23T19:30:45.8952660Z  nixbld3: 30003 -2025-07-23T19:30:45.8963238Z  nixbld4: 30004 -2025-07-23T19:30:45.8973719Z  nixbld5: 30005 -2025-07-23T19:30:45.8984446Z  nixbld6: 30006 -2025-07-23T19:30:45.8994856Z  nixbld7: 30007 -2025-07-23T19:30:45.9005457Z  nixbld8: 30008 -2025-07-23T19:30:45.9005822Z -2025-07-23T19:30:45.9006133Z Ready to continue? -2025-07-23T19:30:45.9006872Z No TTY, assuming you would say yes :) -2025-07-23T19:30:45.9007337Z -2025-07-23T19:30:45.9007712Z ~~> Setting up the build group nixbld -2025-07-23T19:30:45.9627490Z  Created: Yes -2025-07-23T19:30:45.9661227Z -2025-07-23T19:30:45.9661882Z ~~> Setting up the build user nixbld1 -2025-07-23T19:30:45.9839504Z useradd warning: nixbld1's uid 30001 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:45.9937939Z  Created: Yes -2025-07-23T19:30:45.9945823Z  Hidden: Yes -2025-07-23T19:30:45.9967831Z  Home Directory: /var/empty -2025-07-23T19:30:45.9990208Z  Note: Nix build user 1 -2025-07-23T19:30:46.0010633Z  Logins Disabled: Yes -2025-07-23T19:30:46.0038305Z  Member of nixbld: Yes -2025-07-23T19:30:46.0063136Z  PrimaryGroupID: 30000 -2025-07-23T19:30:46.0076031Z -2025-07-23T19:30:46.0077421Z ~~> Setting up the build user nixbld2 -2025-07-23T19:30:46.0214624Z useradd warning: nixbld2's uid 30002 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:46.0312894Z  Created: Yes -2025-07-23T19:30:46.0320440Z  Hidden: Yes -2025-07-23T19:30:46.0347799Z  Home Directory: /var/empty -2025-07-23T19:30:46.0373239Z  Note: Nix build user 2 -2025-07-23T19:30:46.0394667Z  Logins Disabled: Yes -2025-07-23T19:30:46.0417378Z  Member of nixbld: Yes -2025-07-23T19:30:46.0435729Z  PrimaryGroupID: 30000 -2025-07-23T19:30:46.0446936Z -2025-07-23T19:30:46.0447286Z ~~> Setting up the build user nixbld3 -2025-07-23T19:30:46.0580737Z useradd warning: nixbld3's uid 30003 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:46.0679681Z  Created: Yes -2025-07-23T19:30:46.0685507Z  Hidden: Yes -2025-07-23T19:30:46.0704076Z  Home Directory: /var/empty -2025-07-23T19:30:46.0724930Z  Note: Nix build user 3 -2025-07-23T19:30:46.0742820Z  Logins Disabled: Yes -2025-07-23T19:30:46.0761923Z  Member of nixbld: Yes -2025-07-23T19:30:46.0780081Z  PrimaryGroupID: 30000 -2025-07-23T19:30:46.0791246Z -2025-07-23T19:30:46.0791692Z ~~> Setting up the build user nixbld4 -2025-07-23T19:30:46.0924331Z useradd warning: nixbld4's uid 30004 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:46.1013393Z  Created: Yes -2025-07-23T19:30:46.1019271Z  Hidden: Yes -2025-07-23T19:30:46.1037807Z  Home Directory: /var/empty -2025-07-23T19:30:46.1058465Z  Note: Nix build user 4 -2025-07-23T19:30:46.1076815Z  Logins Disabled: Yes -2025-07-23T19:30:46.1095677Z  Member of nixbld: Yes -2025-07-23T19:30:46.1114554Z  PrimaryGroupID: 30000 -2025-07-23T19:30:46.1125626Z -2025-07-23T19:30:46.1126046Z ~~> Setting up the build user nixbld5 -2025-07-23T19:30:46.1259143Z useradd warning: nixbld5's uid 30005 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:46.1351126Z  Created: Yes -2025-07-23T19:30:46.1357197Z  Hidden: Yes -2025-07-23T19:30:46.1377377Z  Home Directory: /var/empty -2025-07-23T19:30:46.1398635Z  Note: Nix build user 5 -2025-07-23T19:30:46.1416582Z  Logins Disabled: Yes -2025-07-23T19:30:46.1435747Z  Member of nixbld: Yes -2025-07-23T19:30:46.1454102Z  PrimaryGroupID: 30000 -2025-07-23T19:30:46.1464994Z -2025-07-23T19:30:46.1465422Z ~~> Setting up the build user nixbld6 -2025-07-23T19:30:46.1597862Z useradd warning: nixbld6's uid 30006 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:46.1681543Z  Created: Yes -2025-07-23T19:30:46.1687429Z  Hidden: Yes -2025-07-23T19:30:46.1705796Z  Home Directory: /var/empty -2025-07-23T19:30:46.1726451Z  Note: Nix build user 6 -2025-07-23T19:30:46.1745322Z  Logins Disabled: Yes -2025-07-23T19:30:46.1763229Z  Member of nixbld: Yes -2025-07-23T19:30:46.1781353Z  PrimaryGroupID: 30000 -2025-07-23T19:30:46.1791895Z -2025-07-23T19:30:46.1792333Z ~~> Setting up the build user nixbld7 -2025-07-23T19:30:46.1923173Z useradd warning: nixbld7's uid 30007 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:46.2013685Z  Created: Yes -2025-07-23T19:30:46.2019928Z  Hidden: Yes -2025-07-23T19:30:46.2038375Z  Home Directory: /var/empty -2025-07-23T19:30:46.2059091Z  Note: Nix build user 7 -2025-07-23T19:30:46.2077054Z  Logins Disabled: Yes -2025-07-23T19:30:46.2095652Z  Member of nixbld: Yes -2025-07-23T19:30:46.2113399Z  PrimaryGroupID: 30000 -2025-07-23T19:30:46.2124186Z -2025-07-23T19:30:46.2124735Z ~~> Setting up the build user nixbld8 -2025-07-23T19:30:46.2258195Z useradd warning: nixbld8's uid 30008 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:46.2347351Z  Created: Yes -2025-07-23T19:30:46.2353464Z  Hidden: Yes -2025-07-23T19:30:46.2374264Z  Home Directory: /var/empty -2025-07-23T19:30:46.2394862Z  Note: Nix build user 8 -2025-07-23T19:30:46.2412459Z  Logins Disabled: Yes -2025-07-23T19:30:46.2431782Z  Member of nixbld: Yes -2025-07-23T19:30:46.2450222Z  PrimaryGroupID: 30000 -2025-07-23T19:30:46.2450583Z -2025-07-23T19:30:46.2451179Z ~~> Setting up the basic directory structure -2025-07-23T19:30:46.2587155Z install: creating directory '/nix' -2025-07-23T19:30:46.2587816Z install: creating directory '/nix/var' -2025-07-23T19:30:46.2588426Z install: creating directory '/nix/var/log' -2025-07-23T19:30:46.2589121Z install: creating directory '/nix/var/log/nix' -2025-07-23T19:30:46.2589859Z install: creating directory '/nix/var/log/nix/drvs' -2025-07-23T19:30:46.2590611Z install: creating directory '/nix/var/nix' -2025-07-23T19:30:46.2591316Z install: creating directory '/nix/var/nix/db' -2025-07-23T19:30:46.2592076Z install: creating directory '/nix/var/nix/gcroots' -2025-07-23T19:30:46.2593005Z install: creating directory '/nix/var/nix/profiles' -2025-07-23T19:30:46.2594096Z install: creating directory '/nix/var/nix/temproots' -2025-07-23T19:30:46.2595117Z install: creating directory '/nix/var/nix/userpool' -2025-07-23T19:30:46.2596177Z install: creating directory '/nix/var/nix/daemon-socket' -2025-07-23T19:30:46.2597322Z install: creating directory '/nix/var/nix/gcroots/per-user' -2025-07-23T19:30:46.2598511Z install: creating directory '/nix/var/nix/profiles/per-user' -2025-07-23T19:30:46.2671544Z install: creating directory '/nix/store' -2025-07-23T19:30:46.2750149Z install: creating directory '/etc/nix' -2025-07-23T19:30:46.2760013Z -2025-07-23T19:30:46.2760317Z ~~> Installing Nix -2025-07-23T19:30:46.4754991Z  Alright! We have our first nix at /nix/store/x3235311q3n51rppm2y2ycwd7nb3mgpn-nix-2.26.3 -2025-07-23T19:30:46.5189019Z Just finished getting the nix database ready. -2025-07-23T19:30:46.5191782Z -2025-07-23T19:30:46.5193006Z ~~> Setting up shell profiles: /etc/bashrc /etc/profile.d/nix.sh /etc/zshrc /etc/bash.bashrc /etc/zsh/zshrc -2025-07-23T19:30:46.5367157Z  -2025-07-23T19:30:46.5367519Z # Nix -2025-07-23T19:30:46.5368121Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-07-23T19:30:46.5369110Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-07-23T19:30:46.5369719Z fi -2025-07-23T19:30:46.5370010Z # End Nix -2025-07-23T19:30:46.5370192Z -2025-07-23T19:30:46.5543116Z -2025-07-23T19:30:46.5543380Z # Nix -2025-07-23T19:30:46.5544198Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-07-23T19:30:46.5545087Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-07-23T19:30:46.5545469Z fi -2025-07-23T19:30:46.5545672Z # End Nix -2025-07-23T19:30:46.5545791Z -2025-07-23T19:30:46.5715280Z -2025-07-23T19:30:46.5715451Z # Nix -2025-07-23T19:30:46.5716079Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-07-23T19:30:46.5716818Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-07-23T19:30:46.5717189Z fi -2025-07-23T19:30:46.5717395Z # End Nix -2025-07-23T19:30:46.5717850Z -2025-07-23T19:30:46.5876946Z -2025-07-23T19:30:46.5877113Z # Nix -2025-07-23T19:30:46.5877710Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-07-23T19:30:46.5878623Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-07-23T19:30:46.5879248Z fi -2025-07-23T19:30:46.5879533Z # End Nix -2025-07-23T19:30:46.5879741Z -2025-07-23T19:30:46.5902088Z -2025-07-23T19:30:46.5903109Z ~~> Setting up shell profiles for Fish with conf.d/nix.fish inside /etc/fish /usr/local/etc/fish /opt/homebrew/etc/fish /opt/local/etc/fish -2025-07-23T19:30:46.5970381Z  -2025-07-23T19:30:46.5971999Z ~~> Setting up the default profile -2025-07-23T19:30:46.6275394Z installing 'nix-2.26.3' -2025-07-23T19:30:46.6410110Z building '/nix/store/5afca9ydks0pp5szkwwhi7a6m2zmgk9g-user-environment.drv'... -2025-07-23T19:30:46.6820334Z installing 'nss-cacert-3.107' -2025-07-23T19:30:46.6953218Z building '/nix/store/ilxzpc39hcw5jr229rmajjkyz1a0fym1-user-environment.drv'... -2025-07-23T19:30:46.7165995Z  -2025-07-23T19:30:46.7166536Z ~~> Setting up the nix-daemon systemd service -2025-07-23T19:30:46.7549899Z Created symlink /etc/systemd/system/nix-daemon.service → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.service. -2025-07-23T19:30:47.0366350Z Created symlink /etc/systemd/system/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. -2025-07-23T19:30:47.0368210Z Created symlink /etc/systemd/system/sockets.target.wants/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. -2025-07-23T19:30:47.6339508Z Alright! We're done! -2025-07-23T19:30:47.6363458Z Try it! Open a new terminal, and type: -2025-07-23T19:30:47.6364138Z -2025-07-23T19:30:47.6365005Z $ nix-shell -p nix-info --run "nix-info -m" -2025-07-23T19:30:47.6365487Z -2025-07-23T19:30:47.6366026Z Thank you for using this installer. If you have any feedback or need -2025-07-23T19:30:47.6366654Z help, don't hesitate: -2025-07-23T19:30:47.6366906Z -2025-07-23T19:30:47.6367073Z You can open an issue at -2025-07-23T19:30:47.6367733Z https://github.com/NixOS/nix/issues/new?labels=installer&template=installer.md -2025-07-23T19:30:47.6368213Z -2025-07-23T19:30:47.6368487Z Or get in touch with the community: https://nixos.org/community -2025-07-23T19:30:47.6386426Z -2025-07-23T19:30:47.6387366Z ---- Reminders ----------------------------------------------------------------- -2025-07-23T19:30:47.6388109Z [ 1 ] -2025-07-23T19:30:47.6388671Z Nix won't work in active shell sessions until you restart them. -2025-07-23T19:30:47.6389146Z -2025-07-23T19:30:47.7091094Z ##[endgroup] -2025-07-23T19:30:47.7168811Z ##[group]Run /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --command echo "dependencies installed" -2025-07-23T19:30:47.7170406Z /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --command echo "dependencies installed" -2025-07-23T19:30:47.7204371Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-07-23T19:30:47.7204746Z env: -2025-07-23T19:30:47.7204959Z TMPDIR: /home/runner/work/_temp -2025-07-23T19:30:47.7205230Z ##[endgroup] -2025-07-23T19:30:47.7276828Z No local flake found, will attempt to use avalanchego flake -2025-07-23T19:30:47.7364495Z Starting nix shell for github:ava-labs/avalanchego?ref=v1.13.3-rc.1 -2025-07-23T19:30:47.9648420Z unpacking 'github:ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a' into the Git cache... -2025-07-23T19:30:49.6609417Z copying path '/nix/store/i99indk3y6pc3sm0k1xx3nakm193lqzb-source' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4888780Z copying path '/nix/store/899rx4l5zz1za8nx7ijp7swv5ibc8wx2-git-2.47.2-doc' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4894828Z copying path '/nix/store/zpab59ialz19x6f65jbjf5xb8waa54av-iana-etc-20240318' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4920231Z copying path '/nix/store/dgzz9k53hz1qgklnj9667xzliyidj9cs-mailcap-2.1.54' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4926699Z copying path '/nix/store/hnpph37w6p5jfspwf5pksljpf0wqwjg3-perl5.40.0-Digest-HMAC-1.04' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4929956Z copying path '/nix/store/cnb01qfmg8c3irp630nplhwa201d7xsr-perl5.40.0-FCGI-ProcManager-0.28' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4933224Z copying path '/nix/store/v657ak4hdkixvq99rk3qvyh28in945dv-perl5.40.0-HTML-TagCloud-0.38' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4947855Z copying path '/nix/store/9qrv0d0yd9wss610gjzv3507ry6v9mzw-perl5.40.0-URI-5.21' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4951277Z copying path '/nix/store/pz7y4qd8lyhg9y6wmb9hynivx36f53zp-perl5.40.0-libnet-3.15' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4956797Z copying path '/nix/store/l6mypzy4rvkxd5kwzs18d88syirislib-tzdata-2024b' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4969891Z copying path '/nix/store/czlhi3r9b6ip4xyynwibfhm458ljwsir-gcc-13.3.0-libgcc' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4974521Z copying path '/nix/store/d8qbcrirc6jidfacy0qa50zy07i15xcz-gnu-config-2024-01-01' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4997659Z copying path '/nix/store/rscnjwdmhya0wcdmbygr3jpz6p39kvhr-perl5.40.0-Encode-Locale-1.05' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4999893Z copying path '/nix/store/74bbxwiamv62d2l089f1r8apv295vsry-perl5.40.0-HTML-Tagset-3.20' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5003837Z copying path '/nix/store/krx6xw6wxakapdkviirq57yh3nl3227h-perl5.40.0-IO-HTML-1.004' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5008470Z copying path '/nix/store/w9yrswzdifcjhg0righ76aqb6bpslhkb-perl5.40.0-Mozilla-CA-20230821' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5010635Z copying path '/nix/store/3r0pprxsd9n52nb2yqq3idwb75d0spzd-perl5.40.0-LWP-MediaTypes-6.04' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5216423Z copying path '/nix/store/swnhrfysvmwjvibcafm0im377pcfs80v-curl-8.12.1-man' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5279906Z copying path '/nix/store/x6i8jiz3yv3h209xfbz9a3ch1sm16167-dns-root-data-2024-06-20' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5286597Z copying path '/nix/store/maxa3xhmxggrc5v2vc0c3pjb79hjlkp9-glibc-2.40-66' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5306811Z copying path '/nix/store/dvsai0ym9czjl5mcsarcdwccb70615n4-linux-headers-6.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5318298Z copying path '/nix/store/vlfgix8rcbj3l9yk0rna1damxkafbq18-perl5.40.0-Net-HTTP-6.23' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5321827Z copying path '/nix/store/5ahjfkydg49xvbr3vghhv317prgspnf3-mirrors-list' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5325303Z copying path '/nix/store/970fk2m63qra4ybkpp99rw7mld9fphlv-nghttp2-1.64.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5338895Z copying path '/nix/store/frpqzb3223826xq72s0fcjmjmj50wpyn-perl5.40.0-Authen-SASL-2.1700' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5341838Z copying path '/nix/store/ldlsmrf2rrq28s08mzjk245vr26dwwhi-perl5.40.0-Test-RequiresInternet-0.05' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5343534Z copying path '/nix/store/5xvxvpl9armf0p6y9m4g1zl1mypvr9m7-perl5.40.0-TimeDate-2.33' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5348183Z copying path '/nix/store/hz5m52dx8x6vvi5pp0yikxb3b05bmi2j-perl5.40.0-Test-Needs-0.002010' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5386080Z copying path '/nix/store/6aqxgf5ygcscqsh4p9krd0dz2hc1cn0w-perl5.40.0-WWW-RobotRules-6.02' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5388398Z copying path '/nix/store/vvjpgyk6jgd6k74pgpjrln6m6aqyiaig-perl5.40.0-Try-Tiny-0.31' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5410512Z copying path '/nix/store/lj7p9q5kgmdcq768rvsgvjndi42mjcn8-publicsuffix-list-0-unstable-2024-10-25' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5492083Z copying path '/nix/store/i9ymkbklv1q9yzl7wwx7300wbkqdln0r-update-autotools-gnu-config-scripts-hook' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5614625Z copying path '/nix/store/2h648f4xlzszyc01yf67xd2rgira65js-perl5.40.0-Test-Fatal-0.017' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5675747Z copying path '/nix/store/shx8jax9b662cd9nlml731hh9wks24v1-perl5.40.0-HTTP-Date-6.06' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.6090400Z copying path '/nix/store/0m34prvcx3d3vd9f4djbaqji7yb9swsh-perl5.40.0-HTTP-CookieJar-0.014' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.6098485Z copying path '/nix/store/i9hiqc4dfksm9cpqvff39smfpn49zbj6-perl5.40.0-File-Listing-6.16' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.6241395Z copying path '/nix/store/19402vwa1rndilww6fpbviz0lza8846p-kind-0.24.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.6248065Z copying path '/nix/store/i7r45jjmvfxiw8j7ihjx51jachylq1si-protoc-gen-go-1.35.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.6251351Z copying path '/nix/store/1fqgvq0i498w4ynywyj224i49izzzqrk-protoc-gen-go-grpc-1.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.6255178Z copying path '/nix/store/as8g73awbgrhpf5p6qjnrd5v9anw74ix-go-task-3.39.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.6261757Z copying path '/nix/store/23cshhh8k7z46gadr86krv15xphggawm-kubectl-1.31.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1072245Z copying path '/nix/store/vlgwyb076hkz7yv96sjnj9msb1jn1ggz-attr-2.5.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1078632Z copying path '/nix/store/c9z2sp8dyx1k0zk374v1142hmphashd0-buf-1.47.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1080239Z copying path '/nix/store/wg9gg3zkwcqhyycj0vkfnhgk5a4z9faq-ed-1.20.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1081809Z copying path '/nix/store/qiisx6c7qpyzq522j3icsfhj8ayw6ah4-bzip2-1.0.8' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1084419Z copying path '/nix/store/83s1wqvrx7yvy3g6dmdr2icgg3qqbjcp-brotli-1.1.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1086275Z copying path '/nix/store/3p3fwczck2yn1wwfjnymzkz8w11vbvg7-gawk-5.3.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1092231Z copying path '/nix/store/mhd0rk497xm0xnip7262xdw9bylvzh99-gcc-13.3.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1094227Z copying path '/nix/store/7zv1sq1k25gk2rvgxnm262vp5hydkv1a-gdbm-1.24-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1099031Z copying path '/nix/store/fcqfyri9kljs5jd7h556f004qmci1qin-expand-response-params' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1100612Z copying path '/nix/store/2kiskq24j06g4qw3xs8zsy2dkawh4gxk-glibc-2.40-66-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1102000Z copying path '/nix/store/8vpg72ik2kgxfj05lc56hkqrdrfl8xi9-bash-5.2p37' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1103355Z copying path '/nix/store/8k19h07hh2g1w5kp5yglzddswnvdmxpy-gmp-6.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1104940Z copying path '/nix/store/m3da56j3r7h4hp0kr8v1xsnk16x900yf-gnumake-4.4.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1106360Z copying path '/nix/store/0hv5ymwkczx3ak8h3yldfbwbab33jnrw-expat-2.6.4' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1107608Z copying path '/nix/store/cfb4pxnfh2sf4csk8xh7abfqv96k66nh-glibc-2.40-66-getent' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1319355Z copying path '/nix/store/3ks7b6p43dpvnlnxgvlcy2jaf1np37p2-gnused-4.9' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1323319Z copying path '/nix/store/yyfzan4mn874v885jy6fs598gjb31c4l-bzip2-1.0.8-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1357919Z copying path '/nix/store/dyizbk50iglbibrbwbgw2mhgskwb6ham-acl-2.3.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1402412Z copying path '/nix/store/1fby1pxf0z16lgl728i2sqwqr2hrw2h8-json-c-0.17' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1405912Z copying path '/nix/store/r4p475lxvaklr9rj8l2a4sahkx5c0209-getent-glibc-2.40-66' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1471066Z copying path '/nix/store/mwwpv4k7skbx4vr2qjc89pvs7mhmgapb-k9s-0.32.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1516104Z copying path '/nix/store/79kh226vw8rrk62jbs27hdad1clwy447-keyutils-1.6.3-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1851207Z copying path '/nix/store/wnsn67xb3i072b6i496y002byvc3ipa3-kubernetes-helm-3.16.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1937221Z copying path '/nix/store/q57zi48njdcgxy4n8d5lm5pf746drc8f-isl-0.20' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2027280Z copying path '/nix/store/bpzy7snv1xr7s1z2xi7bw0q5z9j6g1gg-libantlr3c-3.4' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2073601Z copying path '/nix/store/ky06iawcwsvxmx8yw66y2a7iy7b14yii-libapparmor-4.0.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2241389Z copying path '/nix/store/0iabf1jhsfrrxkdi599kb8m37p82yr1z-audit-4.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2246256Z copying path '/nix/store/nc394xps4al1r99ziabqvajbkrhxr5b7-gzip-1.13' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2363857Z copying path '/nix/store/81awch8mhqanda1vy0c09bflgra4cxh0-glibc-2.40-66-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2370027Z copying path '/nix/store/fx6mfndjsbb0dqn9jzf1ksz9wf1dlrq7-libcap-2.70-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2409299Z copying path '/nix/store/pmg7hw4ar16dhx5hk6jswvxy349wzsm7-gnutar-1.35' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2473121Z copying path '/nix/store/7yf5ijcl2lh90xs5nkrdpfdvcmc9fnc5-libcbor-0.11.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2597934Z copying path '/nix/store/bldybfhh9v9dvpms8kh87v1a6jp6i28p-libevent-2.1.12' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2721633Z copying path '/nix/store/wxgvd9mivxdbahxidq751gxyz7x7jb8n-libffi-3.4.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2859166Z copying path '/nix/store/p0c3g3dxr818lggbk6ms3nhm97g0pir9-libgpg-error-1.50' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2893370Z copying path '/nix/store/2w8a5z0rcs4fk3ds3fnd03x6syjjl1hb-libmnl-1.0.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.3141691Z copying path '/nix/store/ywvi2y4yv3qyh0phw9y2ji17smh8nawj-libnfnetlink-1.0.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.3270686Z copying path '/nix/store/dg6d7zs1bwnhwb3sd3xdbldvpa163a5z-libnl-3.10.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.3355167Z copying path '/nix/store/xxc6rkndd68cq1225asn380bbj0512dg-libpsl-0.21.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.3441726Z copying path '/nix/store/qhs6zflzhdr11j6byf1c1j52z39hnaaw-db-4.8.30' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.3618313Z copying path '/nix/store/8g8wdqid20924fbppbljsl6l7gr0p21j-gettext-0.21.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.3688931Z copying path '/nix/store/dsxb6qvi21bzy21c98kb71wfbdj4lmz7-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.3948911Z copying path '/nix/store/nn7nj7xq8gdfyxqhchphzia7i34rwb0v-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.4119714Z copying path '/nix/store/96m2mjx55syyky6zymjnbl3pvgxlwchb-libnftnl-1.2.8' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.4124953Z copying path '/nix/store/rq8lq7r8vjqrbn2bgfglm9dxfi83gdg9-icu4c-74.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.4458695Z copying path '/nix/store/17195j62sjxjn0xwnmj3icr01n3d678r-libnetfilter_conntrack-1.1.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.4501101Z copying path '/nix/store/68vmpyiabh89l7hbp9z2hmwci74vnfi4-libseccomp-2.5.5-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.4723291Z copying path '/nix/store/wr7w1x0x1j4qli60wm22q3bc02dga08c-libtasn1-4.20.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.4886405Z copying path '/nix/store/hnh6ivl105y4sw0ifv4kbihrvbddmlkm-libxcrypt-4.4.36' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.5065339Z copying path '/nix/store/9yh47sg27z9263ll65d414rgcyrclk57-libxml2-2.13.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.5555193Z copying path '/nix/store/99jfkvhck3c2675n2cy71g40km6m0pf9-libassuan-2.5.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.5616530Z copying path '/nix/store/h9c111ckc8wg3ksxb7kj8cwhgaj52118-libgcrypt-1.10.3-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.5646816Z copying path '/nix/store/p9k3wzaw6d3wjgcbrfv2g1chj0mj2inb-lz4-1.10.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.5907632Z copying path '/nix/store/yh2c9f04q1vcfhpkamidrg3sdnwk5bvy-mpdecimal-4.0.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.5909220Z copying path '/nix/store/1h2yigiwy6bgpyzlywj36s5nqkgca8bv-libpcap-1.10.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.6077491Z copying path '/nix/store/9m68vvhnsq5cpkskphgw84ikl9m6wjwp-coreutils-9.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.6080505Z copying path '/nix/store/b75dbfz0gria25kn2qlfpnmp39h31spw-mpfr-4.2.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.6357259Z copying path '/nix/store/qvrp85i3yc9vw5x1vyx714m03jsf60rc-cvc4-1.8' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.6365675Z copying path '/nix/store/mgpn83jmnf37ky77a8qy6m466qqmlyqk-cln-1.3.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.7113441Z copying path '/nix/store/6s0zzvp9in28jkmzwh5p69v1zwpi5mi4-linux-pam-1.6.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.7438798Z copying path '/nix/store/z7ndn3k8zfjrf713gq443q7a2ixzaab5-ncurses-6.4.20221231' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.7917213Z copying path '/nix/store/q95qgxy40rx1ifa13j8l38sx3myvkhb9-nettle-3.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.7963189Z copying path '/nix/store/1w5jm9zaxwr5b8nvh41c7iz236my185m-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.8275063Z copying path '/nix/store/j4377imdqpm27h5hspds1skgsazyj0d9-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.8427330Z copying path '/nix/store/n9ya3i584zvcw6696326sdlg61d6lamf-npth-1.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.8541896Z copying path '/nix/store/isk8l71r4d1nl39mpv92ank2rs4cx3w9-openssl-3.3.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.8726292Z copying path '/nix/store/mqvgaq2bnb1701l7zcn0d6vd7w8b0z7l-openssl-3.3.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.8785796Z copying path '/nix/store/pbjp09wrnbklrfy7n2h5qix15fl5ylhj-libmpc-1.3.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.9293863Z copying path '/nix/store/kavgc464axad77kj4x4bza7s345nrhin-iptables-1.8.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.9302777Z copying path '/nix/store/lr3cvmq5ahqcj29p8c6m0fdl1y8krc86-diffutils-3.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.9305895Z copying path '/nix/store/vc2d1bfy1a5y1195nq7k6p0zcm6q89nx-findutils-4.10.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.9361528Z copying path '/nix/store/smd33cbgm2pwwnwj9l4b4fk39bdxfsfv-p11-kit-0.25.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.9406718Z copying path '/nix/store/w8xb93nwhnhlkqd9kwahkzqvbg98qs74-nghttp2-1.64.0-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.9592631Z copying path '/nix/store/cjg4jmnnf26367irpagiiffrni9bk7z0-gnupg-2.4.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.9605163Z copying path '/nix/store/zfjv48ikkqn3yhi8zi7lvqvxyscbg87n-patch-2.7.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.0196105Z copying path '/nix/store/9wwkzvmrlv43y71rbw8sbh9bamc62a16-patchelf-0.15.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.0201827Z copying path '/nix/store/5md7gyz45fm4bmkg2kb9a1hnmg8ryk9j-pcre2-10.44' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.0549784Z copying path '/nix/store/pgq4agv5wpanzr9a8mqlkncdbick7mn2-pcsclite-2.3.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.0813518Z copying path '/nix/store/9sqpmkq9fcycsrldbsdxw93hvspy8pr9-perl5.40.0-Clone-0.46' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.0899243Z copying path '/nix/store/jpk7s673pli65raimpl43jbhbg6ja4kx-perl5.40.0-FCGI-0.82' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.0954479Z copying path '/nix/store/x4kgvzlrndlsc9mn2gyrx9dla0a5y7y3-perl5.40.0-TermReadKey-2.38' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.1029681Z copying path '/nix/store/gda0f0dw64h74i98vkk7b7jwzxbkigzs-prometheus-2.55.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.1179098Z copying path '/nix/store/6hrwqlqxzvn3lry7fjyz4i6dkdmg38m6-perl5.40.0-HTTP-Message-6.45' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.1292568Z copying path '/nix/store/mfj2pd4n7vbczdx381margrm9b9jkbpq-protoc-gen-connect-go-1.17.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.1459192Z copying path '/nix/store/zwh1q2r2a1prmw4xxfpqa06ic7dl31yd-qrencode-4.1.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.1525810Z copying path '/nix/store/flw2dwllbq50954bk1qm6xwdzp8ikacl-systemd-minimal-libs-256.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.1527906Z copying path '/nix/store/mcr5gqxgkknqxa2vhnhixzd97vdsnsxi-perl5.40.0-HTML-Parser-3.81' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.1568552Z copying path '/nix/store/q73n7qdcl9yvlwh6p4n414vkxgnjjryp-perl5.40.0-HTTP-Cookies-6.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.2089237Z copying path '/nix/store/qjsj5vnbfpbg6r7jhd7znfgmcy0arn8n-gnugrep-3.11' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.2607476Z copying path '/nix/store/qxp4rv76dpjbvs37c3sfq33ial7mxgb0-perl5.40.0-HTTP-Daemon-6.16' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.3015000Z copying path '/nix/store/dwyr8xvjby2l1zz92a5pfl6bq27jhrm6-krb5-1.21.3-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.3018792Z copying path '/nix/store/q0fgny8kpagi6blmzyw15n4cmfx647kn-perl5.40.0-HTTP-Negotiate-6.01' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.3036944Z copying path '/nix/store/7f8vg8z0q721jyahy1vjbg2x3irbk5az-unbound-1.22.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.3091393Z copying path '/nix/store/6k8v1ffagipraln3nn12h1n22d5l9dvr-perl5.40.0-Net-SSLeay-1.92' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.3389262Z copying path '/nix/store/0z09m6fwgmc2a0zazp6lhyadfig10fd6-perl5.40.0-CGI-4.59' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.3886778Z copying path '/nix/store/bhvah40258cfi5sj1wiy2zmdn5xgj4m1-krb5-1.21.3-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.4114610Z copying path '/nix/store/09pyjyjdr5mwmki9gb0yf809l54xr8p2-openssl-3.3.3-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.4461176Z copying path '/nix/store/53rkjnnkbgg8pfn6ffpcdx4xbrl98yh8-readline-8.2p13' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.4516313Z copying path '/nix/store/88x6dfa5gnls0pmbvp4b9ci3bqqfja0n-util-linux-minimal-2.39.4-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5119144Z copying path '/nix/store/fvm65iknlk5kx9938xsc5485s9wzz1ig-lvm2-2.03.27-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5461485Z copying path '/nix/store/xv2bvwf6zv1hhlm9w4x0f7n0idhbsjh7-perl5.40.0-CGI-Fast-2.16' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5483393Z copying path '/nix/store/j7k6mzbdydimzw4mf23ahq6a7rz2f7w2-util-linux-minimal-2.39.4-login' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5535094Z copying path '/nix/store/73pq792gn6i9qfywsnd347vg0152w8rw-perl5.40.0-IO-Socket-SSL-2.083' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5576440Z copying path '/nix/store/pa7plncc30fhm909bis9haakh7gi0qbl-bash-interactive-5.2p37' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5578066Z copying path '/nix/store/sf31nmjhlsdp2h26vbwbpa7gwfn4i4na-xz-5.6.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5755707Z copying path '/nix/store/xxssfwyz4l32wiadvsrcf259nkb91myn-z3-4.11.2-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5759321Z copying path '/nix/store/vpg96mfr1jw5arlqg831i69g29v0sdb3-zlib-1.3.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5778143Z copying path '/nix/store/hgq0ircylcm0mx6y7ml9chcbwgrz9xg7-openssl-3.3.3-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5908368Z copying path '/nix/store/6cf2yj12gf51jn5vdbdw01gmgvyj431s-zstd-1.5.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.6267107Z copying path '/nix/store/lmfya9by589b0qgc2pqps1zy4jhldkvq-cryptsetup-2.7.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.6279214Z copying path '/nix/store/a9vgxnafcgb1khpjgn87ixmyv4dsqlp0-util-linux-minimal-2.39.4-mount' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.6545958Z copying path '/nix/store/f2sjbvr2gbp1dl1fwak6b77j18wv2rm8-perl5.40.0-Net-SMTP-SSL-1.04' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.6796246Z copying path '/nix/store/23j515bg7lgis34f0jkm9j6g00dpp2sh-binutils-2.43.1-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.6847906Z copying path '/nix/store/yk246qv4bbmr0mmh9y3gnfdkra5nnjgi-cracklib-2.10.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.6864569Z copying path '/nix/store/p751fjd81h3926ivxsq0x20lz5j7yscc-file-5.45' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.7161720Z copying path '/nix/store/yg4ahy7gahx91nq80achmzilrjyv0scj-gcc-13.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.7588320Z copying path '/nix/store/nfdnparxrnv6sy627lw1c27pdqzpbfs2-kexec-tools-2.0.29' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.7605738Z copying path '/nix/store/1md58p5vm4dixcwwpwrs78a7kjf6nnqk-gnutls-3.8.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.7772720Z copying path '/nix/store/yr9xanc3bgp95fj9kvbrrq47zhzni2i6-kmod-31' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.8760391Z copying path '/nix/store/qdypipr8zp0nkyrwqnakn3q3xhpghsrb-kmod-31-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.8941611Z copying path '/nix/store/6m49g3aqk5d5vdxp7chpgim5l6cfm7d6-libarchive-3.7.7-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.8953587Z copying path '/nix/store/n6zw4496n0bd9r6gjwkjmf5ja6757q32-krb5-1.21.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.9909707Z copying path '/nix/store/22qnvg3zddkf7rbpckv676qpsc2najv9-binutils-2.43.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.9936393Z copying path '/nix/store/kc1sdzqnymjwy74chlnkq2xlxnmrg30x-libfido2-1.15.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.9978472Z copying path '/nix/store/pvyhn761hgn17fpr6fy168vcv1ciwsgl-libssh2-1.11.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.0678813Z copying path '/nix/store/qmz79v7x18zmi6g2iagxwazqfwbxzhra-libssh2-1.11.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.1305383Z copying path '/nix/store/q4j9jj8jw74216cw4chsqlwdnglwly6p-perl-5.40.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.1407835Z copying path '/nix/store/i7gfv740vcygvl9pgqwq29nkzmsp09ww-sqlite-3.46.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.1428830Z copying path '/nix/store/blkjagm7k01k9sghpyckw4y6dd6z0knl-util-linux-minimal-2.39.4-swap' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.1732331Z copying path '/nix/store/17rp2wzkp8xfhxcd5zihx6qmnbaadlhs-libmicrohttpd-1.0.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.2275280Z copying path '/nix/store/zfk4v9lxal3ch98qnf7zlciwgmk4w1ij-krb5-1.21.3-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.2408013Z copying path '/nix/store/w2m5p0fb6pmqq6dz2jqlvnyw7n4vcbpx-curl-8.12.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.2450082Z copying path '/nix/store/sh26c2jcz7w2gii2px77bqy64fd026jd-boost-1.81.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.2957291Z copying path '/nix/store/rbns8mzghhqxih4hj2js4mb4s6ivy5d1-xz-5.6.3-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.3241512Z copying path '/nix/store/ccrjbcfl5zcdp0n5mh69f4airrb9g8m4-zlib-1.3.1-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.3562109Z copying path '/nix/store/lgfp6sl5hpykmld29rqvi9pam8ji8k24-curl-8.12.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.4958492Z copying path '/nix/store/gnnac2vpa466p2lpzskmbj5vjr6ikzhg-libpwquality-1.4.5-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.5028991Z copying path '/nix/store/0rg4nqym82ngd29dy8qm1bggm94dkry3-libssh2-1.11.1-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.5137128Z copying path '/nix/store/hsxp8g7zdr6wxk1mp812g8nbzvajzn4w-stdenv-linux' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.5422634Z copying path '/nix/store/xmmli2ijsz2br6573z3sqsgg0spnj7i9-zstd-1.5.6-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.5809085Z copying path '/nix/store/lhpwdis5hkyljz1d200bj1s6g51ljq9k-python3-3.12.8' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.6148233Z copying path '/nix/store/awbfciyq3cjvw6x8wd8wdjy8z2qxm98n-elfutils-0.191' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.6662035Z copying path '/nix/store/3hgwjb5hp0jm8fyi4vx9s4f3hjvp0n1r-tpm2-tss-4.1.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.7079199Z copying path '/nix/store/8qf68jid6rr2f4c8ppyp0ixdlv0axnpn-curl-8.12.1-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.7523360Z copying path '/nix/store/z9lnvmqymg80hk671fm2533ncczkf7z2-kbd-2.6.4' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.8224765Z copying path '/nix/store/04shrm4bvxw1yam87da7y9k872kqn777-curl-8.12.1-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.8917195Z copying path '/nix/store/007wiy8x5irdxzsdx3bdqx0k0a8hp6ji-shellcheck-0.10.0-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.8919044Z copying path '/nix/store/f95nqmgp2vaz1h68n36k605ay1ixnj0a-libbpf-1.4.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.9926702Z building '/nix/store/rkn5fk95kmnbxk65bxlyzqnmsmafh1f1-kind-with-registry.sh.drv'... -2025-07-23T19:31:09.2408568Z copying path '/nix/store/00x4qvjp4kcm932rv281v8n9y4xk9dv1-solc-0.8.21' from 'https://cache.nixos.org'... -2025-07-23T19:31:09.3243313Z copying path '/nix/store/w9qcpyhjrxsqrps91wkz8r4mqvg9zrxc-systemd-256.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:09.3953722Z copying path '/nix/store/1mv8pj4nxwnd9bbxshljc9p4cnl3rakj-binutils-wrapper-2.43.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:09.3972173Z copying path '/nix/store/ch1brsi5xwxgyv23csmvw1am9l40rf1c-shellcheck-0.10.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:10.2051363Z copying path '/nix/store/99accs107rzm78z74cj1wns59d0m1nh8-perl5.40.0-libwww-perl-6.72' from 'https://cache.nixos.org'... -2025-07-23T19:31:10.3335050Z copying path '/nix/store/7s649psqfmp6bf2ij6kba3nbwjp50z0w-promtail-3.2.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:11.2474266Z copying path '/nix/store/1fwh9nv8n93rjc7i7j9gcm3whdqpgy84-git-2.47.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:12.1380345Z copying path '/nix/store/gnd8f9h2ycxrfrvrga508c4n9cxy6720-gcc-wrapper-13.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:12.1522616Z copying path '/nix/store/szfi0xd0cwdaldhkp8vlgi7jfv662nmd-stdenv-linux' from 'https://cache.nixos.org'... -2025-07-23T19:31:12.2111974Z building '/nix/store/mbmxfdxryq3wr2wxm5brh42mcad1gvzy-kind-with-registry-1.0.0.drv'... -2025-07-23T19:31:12.3023632Z building '/nix/store/gvy0rwami6li8s64cb1q1hv75mnglnjn-nix-shell-env.drv'... -2025-07-23T19:31:12.7582022Z this path will be fetched (0.10 MiB download, 0.10 MiB unpacked): -2025-07-23T19:31:12.7583766Z /nix/store/hlv28jlwzk6kqj6vljm9cn8i7pw030nx-bash-interactive-5.2p37-man -2025-07-23T19:31:12.7594137Z copying path '/nix/store/hlv28jlwzk6kqj6vljm9cn8i7pw030nx-bash-interactive-5.2p37-man' from 'https://cache.nixos.org'... -2025-07-23T19:31:12.8902376Z dependencies installed -2025-07-23T19:31:12.8946315Z ##[group]Run echo "::warning::Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch?" -2025-07-23T19:31:12.8947060Z echo "::warning::Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch?" -2025-07-23T19:31:12.8975896Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-07-23T19:31:12.8976211Z env: -2025-07-23T19:31:12.8976400Z TMPDIR: /home/runner/work/_temp -2025-07-23T19:31:12.8976631Z ##[endgroup] -2025-07-23T19:31:12.9039788Z ##[warning]Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch? -2025-07-23T19:31:12.9060973Z ##[group]Run AVALANCHEGO_CLONE_PATH=avalanchego /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --impure --command bash -x ./scripts/run_task.sh test-e2e -2025-07-23T19:31:12.9062731Z AVALANCHEGO_CLONE_PATH=avalanchego /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --impure --command bash -x ./scripts/run_task.sh test-e2e -2025-07-23T19:31:12.9088994Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-07-23T19:31:12.9089306Z env: -2025-07-23T19:31:12.9089485Z TMPDIR: /home/runner/work/_temp -2025-07-23T19:31:12.9089738Z TMPNET_START_METRICS_COLLECTOR: false -2025-07-23T19:31:12.9089993Z TMPNET_START_LOGS_COLLECTOR: false -2025-07-23T19:31:12.9090234Z TMPNET_CHECK_METRICS_COLLECTED: false -2025-07-23T19:31:12.9090497Z TMPNET_CHECK_LOGS_COLLECTED: false -2025-07-23T19:31:12.9090728Z LOKI_USERNAME: -2025-07-23T19:31:12.9090900Z LOKI_PASSWORD: -2025-07-23T19:31:12.9091084Z PROMETHEUS_USERNAME: -2025-07-23T19:31:12.9091288Z PROMETHEUS_PASSWORD: -2025-07-23T19:31:12.9091483Z GH_REPO: ava-labs/coreth -2025-07-23T19:31:12.9091684Z GH_WORKFLOW: CI -2025-07-23T19:31:12.9091859Z GH_RUN_ID: 16480013789 -2025-07-23T19:31:12.9092051Z GH_RUN_NUMBER: 5026 -2025-07-23T19:31:12.9092230Z GH_RUN_ATTEMPT: 1 -2025-07-23T19:31:12.9092415Z GH_JOB_ID: avalanchego_e2e -2025-07-23T19:31:12.9092619Z ##[endgroup] -2025-07-23T19:31:12.9158384Z No local flake found, will attempt to use avalanchego flake -2025-07-23T19:31:12.9250918Z Starting nix shell for github:ava-labs/avalanchego?ref=v1.13.3-rc.1 -2025-07-23T19:31:15.2910799Z + set -euo pipefail -2025-07-23T19:31:15.2911143Z + command -v task -2025-07-23T19:31:15.2911434Z + exec task test-e2e -2025-07-23T19:31:15.3097863Z task: [test-e2e] ./scripts/tests.e2e.sh -2025-07-23T19:31:15.3162752Z running AvalancheGo e2e tests -2025-07-23T19:31:15.3392036Z task: [build-race] ./scripts/build.sh -r -2025-07-23T19:31:15.3431157Z Building with race detection enabled -2025-07-23T19:31:15.3540777Z Building AvalancheGo with [go version go1.23.9 linux/amd64]... -2025-07-23T19:32:40.6626243Z task: [build-xsvm] ./scripts/build_xsvm.sh -2025-07-23T19:32:40.6689451Z Building xsvm plugin... -2025-07-23T19:33:26.6501000Z Symlinking ./build/xsvm to /home/runner/.avalanchego/plugins/v3m4wPxaHpvGr8qfMeyK6PRW3idZrPHmYcMTt7oXdK47yurVH -2025-07-23T19:33:26.6531040Z Symlinking ./build/xsvm to /home/runner/work/coreth/coreth/avalanchego/build/plugins/v3m4wPxaHpvGr8qfMeyK6PRW3idZrPHmYcMTt7oXdK47yurVH -2025-07-23T19:33:26.6558013Z task: [test-e2e-ci] bash -x ./scripts/tests.e2e.sh '--ginkgo.label-filter=c || uses-c' -2025-07-23T19:33:26.6589347Z + set -euo pipefail -2025-07-23T19:33:26.6589830Z + [[ ./scripts/tests.e2e.sh =~ scripts/tests.e2e.sh ]] -2025-07-23T19:33:26.6590393Z + source ./scripts/constants.sh -2025-07-23T19:33:26.6590830Z ++ set -euo pipefail -2025-07-23T19:33:26.6595874Z ++++ dirname ./scripts/constants.sh -2025-07-23T19:33:26.6607915Z +++ cd ./scripts -2025-07-23T19:33:26.6608240Z +++ cd .. -2025-07-23T19:33:26.6608529Z +++ pwd -2025-07-23T19:33:26.6610674Z ++ AVALANCHE_PATH=/home/runner/work/coreth/coreth/avalanchego -2025-07-23T19:33:26.6611469Z ++ avalanchego_path=/home/runner/work/coreth/coreth/avalanchego/build/avalanchego -2025-07-23T19:33:26.6612162Z ++ static_ld_flags= -2025-07-23T19:33:26.6612478Z ++ '[' '' = 1 ']' -2025-07-23T19:33:26.6612983Z ++ export 'CGO_CFLAGS=-O2 -D__BLST_PORTABLE__' -2025-07-23T19:33:26.6613851Z ++ CGO_CFLAGS='-O2 -D__BLST_PORTABLE__' -2025-07-23T19:33:26.6614493Z ++ export CGO_ENABLED=1 -2025-07-23T19:33:26.6614835Z ++ CGO_ENABLED=1 -2025-07-23T19:33:26.6615240Z ++ export GOPROXY=https://proxy.golang.org -2025-07-23T19:33:26.6615757Z ++ GOPROXY=https://proxy.golang.org -2025-07-23T19:33:26.6616181Z + E2E_ARGS=("${@}") -2025-07-23T19:33:26.6618085Z + [[ --ginkgo.label-filter=c || uses-c =~ --runtime=kube ]] -2025-07-23T19:33:26.6619008Z ++ realpath ./build/avalanchego -2025-07-23T19:33:26.6631291Z + AVALANCHEGO_PATH=/home/runner/work/coreth/coreth/avalanchego/build/avalanchego -2025-07-23T19:33:26.6632338Z + E2E_ARGS+=("--avalanchego-path=${AVALANCHEGO_PATH}") -2025-07-23T19:33:26.6632906Z + GINKGO_ARGS= -2025-07-23T19:33:26.6633249Z + [[ -n 1 ]] -2025-07-23T19:33:26.6633672Z + echo 'tests will be executed serially to minimize resource requirements' -2025-07-23T19:33:26.6634322Z + [[ -n '' ]] -2025-07-23T19:33:26.6634561Z + GINKGO_ARGS+=' --randomize-all' -2025-07-23T19:33:26.6635383Z + ./bin/ginkgo --randomize-all -v ./tests/e2e -- '--ginkgo.label-filter=c || uses-c' --avalanchego-path=/home/runner/work/coreth/coreth/avalanchego/build/avalanchego -2025-07-23T19:33:26.6636272Z tests will be executed serially to minimize resource requirements -2025-07-23T19:33:47.7357896Z Running Suite: e2e test suites - /home/runner/work/coreth/coreth/avalanchego/tests/e2e -2025-07-23T19:33:47.7358654Z ====================================================================================== -2025-07-23T19:33:47.7359354Z Random Seed: 1753299207 - will randomize all specs -2025-07-23T19:33:47.7359607Z -2025-07-23T19:33:47.7359778Z Will run 4 of 14 specs -2025-07-23T19:33:47.7360131Z ------------------------------ -2025-07-23T19:33:47.7360491Z [SynchronizedBeforeSuite]  -2025-07-23T19:33:47.7361096Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/e2e_test.go:40 -2025-07-23T19:33:47.7449196Z [07-23|19:33:47.744] INFO e2e/e2e_test.go:56 setting upgrades {"upgrades": {"apricotPhase1Time":"2020-12-05T05:00:00Z","apricotPhase2Time":"2020-12-05T05:00:00Z","apricotPhase3Time":"2020-12-05T05:00:00Z","apricotPhase4Time":"2020-12-05T05:00:00Z","apricotPhase4MinPChainHeight":0,"apricotPhase5Time":"2020-12-05T05:00:00Z","apricotPhasePre6Time":"2020-12-05T05:00:00Z","apricotPhase6Time":"2020-12-05T05:00:00Z","apricotPhasePost6Time":"2020-12-05T05:00:00Z","banffTime":"2020-12-05T05:00:00Z","cortinaTime":"2020-12-05T05:00:00Z","cortinaXChainStopVertexID":"11111111111111111111111111111111LpoYY","durangoTime":"2020-12-05T05:00:00Z","etnaTime":"2020-12-05T05:00:00Z","fortunaTime":"2020-12-05T05:00:00Z","graniteTime":"9999-12-01T00:00:00Z"}} -2025-07-23T19:33:47.7454738Z [07-23|19:33:47.744] INFO e2e/helpers.go:287 waiting for network to start {"timeoutSeconds": 120} -2025-07-23T19:33:50.4809836Z [07-23|19:33:50.480] INFO tmpnet/network.go:238 preparing configuration for new network {"runtimeConfig": {"process":{"avalancheGoPath":"/home/runner/work/coreth/coreth/avalanchego/build/avalanchego","pluginDir":"/home/runner/.avalanchego/plugins"}}} -2025-07-23T19:33:50.4859426Z [07-23|19:33:50.485] INFO tmpnet/network.go:430 starting a single-node network with sybil protection disabled for quicker subnet creation -2025-07-23T19:33:50.4860965Z [07-23|19:33:50.485] INFO tmpnet/network.go:369 starting network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e", "uuid": "4a81e2e0-9ddd-4e4b-9042-64c43cc0602a"} -2025-07-23T19:33:55.0910561Z [07-23|19:33:55.090] INFO tmpnet/process_runtime.go:147 started local node {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "isEphemeral": false} -2025-07-23T19:33:55.0913702Z [07-23|19:33:55.091] INFO tmpnet/network.go:384 waiting for nodes to report healthy -2025-07-23T19:33:57.0932664Z [07-23|19:33:57.092] INFO tmpnet/network.go:955 node is healthy {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "uri": "http://127.0.0.1:41211"} -2025-07-23T19:33:57.0937459Z [07-23|19:33:57.092] INFO tmpnet/network.go:388 started network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e", "uuid": "4a81e2e0-9ddd-4e4b-9042-64c43cc0602a"} -2025-07-23T19:33:57.0944219Z [07-23|19:33:57.093] INFO tmpnet/network.go:402 metrics and logs available via grafana (collectors must be running) {"url": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299230485&to=now", "linkPath": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/metrics.txt"} -2025-07-23T19:33:57.0946637Z [07-23|19:33:57.093] INFO tmpnet/network.go:620 creating subnet {"name": "xsvm-a"} -2025-07-23T19:33:57.3579497Z [07-23|19:33:57.357] INFO tmpnet/network.go:639 created subnet {"name": "xsvm-a", "id": "azXA5XPTPqjPYN4pzBaHofqZLC3ZrEY13eM1iuYp3oVdRxV69"} -2025-07-23T19:33:57.3581544Z [07-23|19:33:57.357] INFO tmpnet/network.go:649 wrote subnet configuration {"name": "xsvm-a"} -2025-07-23T19:33:57.3582966Z [07-23|19:33:57.357] INFO tmpnet/network.go:620 creating subnet {"name": "xsvm-b"} -2025-07-23T19:33:57.4806216Z [07-23|19:33:57.480] INFO tmpnet/network.go:639 created subnet {"name": "xsvm-b", "id": "2DhzsRdU1B2qy2BZ4WgR2AKmHMfPSSmd8djFkH1y9edhMMrAD8"} -2025-07-23T19:33:57.4808266Z [07-23|19:33:57.480] INFO tmpnet/network.go:649 wrote subnet configuration {"name": "xsvm-b"} -2025-07-23T19:33:57.4817482Z [07-23|19:33:57.481] INFO tmpnet/network.go:697 adding validators for subnet {"name": "xsvm-a"} -2025-07-23T19:33:57.6071092Z [07-23|19:33:57.606] INFO tmpnet/subnet.go:196 added validator to subnet {"subnet": "xsvm-a", "nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi"} -2025-07-23T19:33:57.6072545Z [07-23|19:33:57.606] INFO tmpnet/network.go:697 adding validators for subnet {"name": "xsvm-b"} -2025-07-23T19:33:57.7309399Z [07-23|19:33:57.730] INFO tmpnet/subnet.go:196 added validator to subnet {"subnet": "xsvm-b", "nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y"} -2025-07-23T19:33:57.7311699Z [07-23|19:33:57.730] INFO tmpnet/subnet.go:261 waiting for subnet validators to become active {"subnet": "xsvm-a"} -2025-07-23T19:33:57.7319730Z [07-23|19:33:57.731] INFO tmpnet/subnet.go:281 saw the expected active validators of the subnet {"subnet": "xsvm-a"} -2025-07-23T19:33:57.7478819Z [07-23|19:33:57.747] INFO tmpnet/subnet.go:127 creating chains for subnet {"subnet": "xsvm-a"} -2025-07-23T19:33:57.8558516Z [07-23|19:33:57.855] INFO tmpnet/subnet.go:145 created chain {"chain": "SbBAb8nfj4xoTe6k1e7vhVWJ88bLNCtFEp1vPhCmKSjC9T1tc", "subnet": "xsvm-a", "vm": "v3m4wPxaHpvGr8qfMeyK6PRW3idZrPHmYcMTt7oXdK47yurVH"} -2025-07-23T19:33:57.8561003Z [07-23|19:33:57.855] INFO tmpnet/network.go:733 wrote subnet configuration {"name": "xsvm-a", "id": "azXA5XPTPqjPYN4pzBaHofqZLC3ZrEY13eM1iuYp3oVdRxV69"} -2025-07-23T19:33:57.8563015Z [07-23|19:33:57.855] INFO tmpnet/subnet.go:261 waiting for subnet validators to become active {"subnet": "xsvm-b"} -2025-07-23T19:33:57.8569719Z [07-23|19:33:57.856] INFO tmpnet/subnet.go:281 saw the expected active validators of the subnet {"subnet": "xsvm-b"} -2025-07-23T19:33:57.8749688Z [07-23|19:33:57.874] INFO tmpnet/subnet.go:127 creating chains for subnet {"subnet": "xsvm-b"} -2025-07-23T19:33:57.9852429Z [07-23|19:33:57.984] INFO tmpnet/subnet.go:145 created chain {"chain": "UtRoikpD9kByqTNfMq4xyERctyq8YyXg9nqQtmNzVRRyGbLzm", "subnet": "xsvm-b", "vm": "v3m4wPxaHpvGr8qfMeyK6PRW3idZrPHmYcMTt7oXdK47yurVH"} -2025-07-23T19:33:57.9855593Z [07-23|19:33:57.985] INFO tmpnet/network.go:733 wrote subnet configuration {"name": "xsvm-b", "id": "2DhzsRdU1B2qy2BZ4WgR2AKmHMfPSSmd8djFkH1y9edhMMrAD8"} -2025-07-23T19:33:57.9857396Z [07-23|19:33:57.985] INFO tmpnet/network.go:455 re-enabling sybil protection {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi"} -2025-07-23T19:33:57.9859294Z [07-23|19:33:57.985] INFO tmpnet/network.go:472 restarting bootstrap node {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi"} -2025-07-23T19:34:02.7079272Z [07-23|19:34:02.707] INFO tmpnet/process_runtime.go:147 started local node {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "isEphemeral": false} -2025-07-23T19:34:02.7085330Z [07-23|19:34:02.707] INFO tmpnet/network.go:483 starting remaining nodes -2025-07-23T19:34:07.3640559Z [07-23|19:34:07.363] INFO tmpnet/process_runtime.go:147 started local node {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "isEphemeral": false} -2025-07-23T19:34:07.3643740Z [07-23|19:34:07.363] INFO tmpnet/network.go:384 waiting for nodes to report healthy -2025-07-23T19:34:09.3683593Z [07-23|19:34:09.368] INFO tmpnet/network.go:955 node is healthy {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "uri": "http://127.0.0.1:34983"} -2025-07-23T19:34:12.7662878Z [07-23|19:34:12.765] INFO tmpnet/network.go:955 node is healthy {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "uri": "http://127.0.0.1:43559"} -2025-07-23T19:34:12.7665501Z [07-23|19:34:12.766] INFO tmpnet/network.go:388 started network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e", "uuid": "4a81e2e0-9ddd-4e4b-9042-64c43cc0602a"} -2025-07-23T19:34:12.7671173Z [07-23|19:34:12.766] INFO tmpnet/network.go:402 metrics and logs available via grafana (collectors must be running) {"url": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299242707&to=now", "linkPath": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/metrics.txt"} -2025-07-23T19:34:12.7674348Z [07-23|19:34:12.766] INFO e2e/helpers.go:308 network started successfully -2025-07-23T19:34:12.7680787Z [07-23|19:34:12.767] INFO e2e/env.go:229 network nodes are available {"uris": [{"NodeID":"NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y","URI":"http://127.0.0.1:34983"},{"NodeID":"NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi","URI":"http://127.0.0.1:43559"}]} -2025-07-23T19:34:12.7691595Z [SynchronizedBeforeSuite] PASSED [25.033 seconds] -2025-07-23T19:34:12.7692284Z ------------------------------ -2025-07-23T19:34:12.7692894Z SSSS -2025-07-23T19:34:12.7693482Z ------------------------------ -2025-07-23T19:34:12.7694895Z [C-Chain] [Interchain Workflow] should ensure that funds can be transferred from the C-Chain to the X-Chain and the P-Chain [c] -2025-07-23T19:34:12.7696433Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/c/interchain_workflow.go:28 -2025-07-23T19:34:12.7697663Z STEP: initializing a new eth client @ 07/23/25 19:34:12.769 -2025-07-23T19:34:12.7706391Z INFO targeting random node {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "uri": "http://127.0.0.1:34983"} -2025-07-23T19:34:12.7708064Z INFO initializing a new eth client {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "URI": "http://127.0.0.1:34983"} -2025-07-23T19:34:12.7713083Z STEP: allocating a pre-funded key to send from and a recipient key to deliver to @ 07/23/25 19:34:12.771 -2025-07-23T19:34:12.7714686Z STEP: sending funds from one address to another on the C-Chain @ 07/23/25 19:34:12.771 -2025-07-23T19:34:12.7730629Z INFO suggested gas price {"price": "2"} -2025-07-23T19:34:12.7737238Z INFO sending eth transaction {"txID": "0x5407ba46e9f63cc2fc094478fabd80fd54b68f233a34c02de7b93d529f3d42af"} -2025-07-23T19:34:13.2777054Z INFO eth transaction accepted {"txID": "0x5407ba46e9f63cc2fc094478fabd80fd54b68f233a34c02de7b93d529f3d42af", "gasUsed": 21000, "gasPrice": "4", "blockNumber": "1"} -2025-07-23T19:34:13.2780195Z STEP: waiting for the C-Chain recipient address to have received the sent funds @ 07/23/25 19:34:13.277 -2025-07-23T19:34:13.2783668Z STEP: initializing a keychain and associated wallet @ 07/23/25 19:34:13.278 -2025-07-23T19:34:13.2785776Z INFO initializing a new wallet {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "URI": "http://127.0.0.1:34983"} -2025-07-23T19:34:13.2958383Z INFO wallet balances in nAVAX {"xChain": 30000000000000000, "pChain": 20000000000000000} -2025-07-23T19:34:13.2959562Z STEP: defining common configuration @ 07/23/25 19:34:13.295 -2025-07-23T19:34:13.2960681Z STEP: exporting AVAX from the C-Chain to the X-Chain @ 07/23/25 19:34:13.295 -2025-07-23T19:34:13.2967449Z INFO suggested gas price {"price": "2"} -2025-07-23T19:34:13.4557575Z INFO issued transaction {"chainAlias": "C", "txID": "2uUxFDhG8ruqfKpxJuLq68HbAJtWgzUKMHMu9MeedJcKtT76d", "duration": "158.523888ms"} -2025-07-23T19:34:14.1777358Z INFO confirmed transaction {"chainAlias": "C", "txID": "2uUxFDhG8ruqfKpxJuLq68HbAJtWgzUKMHMu9MeedJcKtT76d", "totalDuration": "880.572225ms", "confirmationDuration": "722.048337ms"} -2025-07-23T19:34:14.1779592Z STEP: importing AVAX from the C-Chain to the X-Chain @ 07/23/25 19:34:14.177 -2025-07-23T19:34:14.1837202Z INFO issued transaction {"chainAlias": "X", "txID": "KgJHaeFk7kKLkS35bCEu4Yv5p6Ja6b34N8gKE1xDEvA396BHF", "duration": "5.767616ms"} -2025-07-23T19:34:14.2351649Z INFO confirmed transaction {"chainAlias": "X", "txID": "KgJHaeFk7kKLkS35bCEu4Yv5p6Ja6b34N8gKE1xDEvA396BHF", "totalDuration": "57.167164ms", "confirmationDuration": "51.399548ms"} -2025-07-23T19:34:14.2353005Z STEP: checking that the recipient address has received imported funds on the X-Chain @ 07/23/25 19:34:14.234 -2025-07-23T19:34:14.2353818Z STEP: exporting AVAX from the C-Chain to the P-Chain @ 07/23/25 19:34:14.234 -2025-07-23T19:34:14.2356929Z INFO suggested gas price {"price": "2"} -2025-07-23T19:34:14.2461690Z INFO issued transaction {"chainAlias": "C", "txID": "2HxdBSFBNJtEJcg2hquiwbF6z6uVzuWpGpnsKvTXvhabUP1WiQ", "duration": "10.113417ms"} -2025-07-23T19:34:16.1793052Z INFO confirmed transaction {"chainAlias": "C", "txID": "2HxdBSFBNJtEJcg2hquiwbF6z6uVzuWpGpnsKvTXvhabUP1WiQ", "totalDuration": "1.94258288s", "confirmationDuration": "1.932469463s"} -2025-07-23T19:34:16.1795415Z STEP: importing AVAX from the C-Chain to the P-Chain @ 07/23/25 19:34:16.178 -2025-07-23T19:34:16.1851393Z INFO issued transaction {"chainAlias": "P", "txID": "fBiCpBcpJ1oBL21CmxLb7bhksfYhAGtwwi8ek61qUQCtQK43R", "duration": "6.199959ms"} -2025-07-23T19:34:16.3467137Z INFO confirmed transaction {"chainAlias": "P", "txID": "fBiCpBcpJ1oBL21CmxLb7bhksfYhAGtwwi8ek61qUQCtQK43R", "totalDuration": "167.535408ms", "confirmationDuration": "161.335449ms"} -2025-07-23T19:34:16.3469714Z STEP: checking that the recipient address has received imported funds on the P-Chain @ 07/23/25 19:34:16.346 -2025-07-23T19:34:16.3478867Z STEP: checking if bootstrap is possible with the current network state @ 07/23/25 19:34:16.347 -2025-07-23T19:34:21.1577023Z INFO started local node {"nodeID": "NodeID-QAv9x5ptL42tbpP8ojrEcjYQNEEbpCB2B", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-QAv9x5ptL42tbpP8ojrEcjYQNEEbpCB2B", "isEphemeral": true} -2025-07-23T19:34:23.0636744Z INFO metrics and logs available via grafana (collectors must be running) {"uri": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299252769&to=1753299275062"} -2025-07-23T19:34:23.2756676Z • [10.506 seconds] -2025-07-23T19:34:23.2757645Z ------------------------------ -2025-07-23T19:34:23.2759924Z [P-Chain] [Interchain Workflow] should ensure that funds can be transferred from the P-Chain to the X-Chain and the C-Chain [uses-c, p] -2025-07-23T19:34:23.2762153Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/p/interchain_workflow.go:34 -2025-07-23T19:34:23.2772747Z STEP: checking that the network has a compatible minimum stake duration @ 07/23/25 19:34:23.277 -2025-07-23T19:34:23.2774540Z STEP: creating wallet with a funded key to send from and recipient key to deliver to @ 07/23/25 19:34:23.277 -2025-07-23T19:34:23.2789705Z INFO targeting random node {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "uri": "http://127.0.0.1:34983"} -2025-07-23T19:34:23.2791502Z INFO initializing a new wallet {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "URI": "http://127.0.0.1:34983"} -2025-07-23T19:34:23.2971737Z INFO wallet balances in nAVAX {"xChain": 30000000000000000, "pChain": 20000000000000000} -2025-07-23T19:34:23.2972952Z STEP: defining common configuration @ 07/23/25 19:34:23.296 -2025-07-23T19:34:23.2980391Z STEP: adding new node and waiting for it to report healthy @ 07/23/25 19:34:23.296 -2025-07-23T19:34:28.1179131Z INFO started local node {"nodeID": "NodeID-8zk2K7Bj2G9iZznu7zywcz1Z76x8bsmGj", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-8zk2K7Bj2G9iZznu7zywcz1Z76x8bsmGj", "isEphemeral": true} -2025-07-23T19:34:30.0190926Z STEP: retrieving new node's id and pop @ 07/23/25 19:34:30.018 -2025-07-23T19:34:30.0200277Z STEP: adding the new node as a validator @ 07/23/25 19:34:30.019 -2025-07-23T19:34:30.0296811Z INFO issued transaction {"chainAlias": "P", "txID": "2MsXTphp868AE3cYav2MjXuD2N6gFp3Z33Vjx5Pjit937aF9SN", "duration": "9.275622ms"} -2025-07-23T19:34:30.3536957Z INFO confirmed transaction {"chainAlias": "P", "txID": "2MsXTphp868AE3cYav2MjXuD2N6gFp3Z33Vjx5Pjit937aF9SN", "totalDuration": "331.877623ms", "confirmationDuration": "322.602001ms"} -2025-07-23T19:34:30.3539186Z STEP: adding a delegator to the new node @ 07/23/25 19:34:30.352 -2025-07-23T19:34:30.3647167Z INFO issued transaction {"chainAlias": "P", "txID": "cixyaagzkWQHbhMee9RGYAa4RKiyFCNbKYVnBvPzX3QQ81Hu7", "duration": "12.016242ms"} -2025-07-23T19:34:30.8463211Z INFO confirmed transaction {"chainAlias": "P", "txID": "cixyaagzkWQHbhMee9RGYAa4RKiyFCNbKYVnBvPzX3QQ81Hu7", "totalDuration": "493.497018ms", "confirmationDuration": "481.480776ms"} -2025-07-23T19:34:30.8464813Z STEP: exporting AVAX from the P-Chain to the X-Chain @ 07/23/25 19:34:30.846 -2025-07-23T19:34:30.8526253Z INFO issued transaction {"chainAlias": "P", "txID": "PvhrWKfrL49y26v9Lo6PNYLFbbauSig4fsyDwJx5jyVuzJXnx", "duration": "6.120529ms"} -2025-07-23T19:34:30.9161495Z INFO confirmed transaction {"chainAlias": "P", "txID": "PvhrWKfrL49y26v9Lo6PNYLFbbauSig4fsyDwJx5jyVuzJXnx", "totalDuration": "68.311332ms", "confirmationDuration": "62.190803ms"} -2025-07-23T19:34:30.9164082Z STEP: importing AVAX from the P-Chain to the X-Chain @ 07/23/25 19:34:30.914 -2025-07-23T19:34:30.9244925Z INFO issued transaction {"chainAlias": "X", "txID": "zJrgtN1tRQvWS4tC2wKvfoNJCvze4oZLbWLLWs8FFC9WdgdAS", "duration": "9.206996ms"} -2025-07-23T19:34:30.9969257Z INFO confirmed transaction {"chainAlias": "X", "txID": "zJrgtN1tRQvWS4tC2wKvfoNJCvze4oZLbWLLWs8FFC9WdgdAS", "totalDuration": "80.550747ms", "confirmationDuration": "71.343751ms"} -2025-07-23T19:34:30.9971643Z STEP: checking that the recipient address has received imported funds on the X-Chain @ 07/23/25 19:34:30.995 -2025-07-23T19:34:30.9973301Z STEP: exporting AVAX from the P-Chain to the C-Chain @ 07/23/25 19:34:30.995 -2025-07-23T19:34:31.0040095Z INFO issued transaction {"chainAlias": "P", "txID": "uk8oAgAT8VEvSmtEXhbjGyazLe8UC4vg7hFxYjYr6CvPYYZxu", "duration": "7.842388ms"} -2025-07-23T19:34:31.0883108Z INFO confirmed transaction {"chainAlias": "P", "txID": "uk8oAgAT8VEvSmtEXhbjGyazLe8UC4vg7hFxYjYr6CvPYYZxu", "totalDuration": "91.799036ms", "confirmationDuration": "83.956648ms"} -2025-07-23T19:34:31.0893654Z STEP: initializing a new eth client @ 07/23/25 19:34:31.087 -2025-07-23T19:34:31.0895862Z INFO initializing a new eth client {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "URI": "http://127.0.0.1:34983"} -2025-07-23T19:34:31.0897887Z STEP: importing AVAX from the P-Chain to the C-Chain @ 07/23/25 19:34:31.089 -2025-07-23T19:34:31.0930537Z INFO suggested gas price {"price": "2"} -2025-07-23T19:34:31.1016934Z INFO issued transaction {"chainAlias": "C", "txID": "22SdoY9fepXtuoW6Jbe8MF98iQcHpTQWHSTQAJ8AoF3yXxJoC3", "duration": "8.609553ms"} -2025-07-23T19:34:31.1656317Z INFO confirmed transaction {"chainAlias": "C", "txID": "22SdoY9fepXtuoW6Jbe8MF98iQcHpTQWHSTQAJ8AoF3yXxJoC3", "totalDuration": "70.189424ms", "confirmationDuration": "61.579871ms"} -2025-07-23T19:34:31.1659223Z STEP: checking that the recipient address has received imported funds on the C-Chain @ 07/23/25 19:34:31.163 -2025-07-23T19:34:31.1666886Z STEP: stopping validator node to free up resources for a bootstrap check @ 07/23/25 19:34:31.166 -2025-07-23T19:34:31.3460844Z STEP: checking if bootstrap is possible with the current network state @ 07/23/25 19:34:31.345 -2025-07-23T19:34:36.0866925Z INFO started local node {"nodeID": "NodeID-LTVxsGkZ8smzUCEVMEmaxQbE2g2SyWoY5", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-LTVxsGkZ8smzUCEVMEmaxQbE2g2SyWoY5", "isEphemeral": true} -2025-07-23T19:34:43.9932905Z INFO metrics and logs available via grafana (collectors must be running) {"uri": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299263275&to=1753299295990"} -2025-07-23T19:34:44.1868056Z INFO shutting down ephemeral node {"nodeID": "NodeID-8zk2K7Bj2G9iZznu7zywcz1Z76x8bsmGj"} -2025-07-23T19:34:44.1869430Z • [20.911 seconds] -2025-07-23T19:34:44.1870202Z ------------------------------ -2025-07-23T19:34:44.1871099Z SSS -2025-07-23T19:34:44.1872280Z ------------------------------ -2025-07-23T19:34:44.1873803Z [C-Chain] [Dynamic Fees] should ensure that the gas price is affected by load [c] -2025-07-23T19:34:44.1876206Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/c/dynamic_fees.go:58 -2025-07-23T19:34:44.1877819Z STEP: creating a new private network to ensure isolation from other tests @ 07/23/25 19:34:44.186 -2025-07-23T19:34:44.1906232Z INFO waiting for network to start {"timeoutSeconds": 120} -2025-07-23T19:34:44.1908631Z INFO preparing configuration for new network {"runtimeConfig": {"process":{"avalancheGoPath":"/home/runner/work/coreth/coreth/avalanchego/build/avalanchego","pluginDir":"/home/runner/.avalanchego/plugins"}}} -2025-07-23T19:34:44.1956740Z INFO starting network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees", "uuid": "bfb8e363-92fb-4e6b-a37c-4d53693fdcce"} -2025-07-23T19:34:46.1471772Z INFO started local node {"nodeID": "NodeID-JuB2rckCL8FLYwVy1N5fcwdUvEtCvzdNd", "dataDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees/NodeID-JuB2rckCL8FLYwVy1N5fcwdUvEtCvzdNd", "isEphemeral": false} -2025-07-23T19:34:48.0493626Z INFO started local node {"nodeID": "NodeID-Dz4rLAGba3Mnd9d7gUMvx8VxutZxXY5C4", "dataDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees/NodeID-Dz4rLAGba3Mnd9d7gUMvx8VxutZxXY5C4", "isEphemeral": false} -2025-07-23T19:34:48.0497236Z INFO waiting for nodes to report healthy -2025-07-23T19:34:50.0525180Z INFO node is healthy {"nodeID": "NodeID-Dz4rLAGba3Mnd9d7gUMvx8VxutZxXY5C4", "uri": "http://127.0.0.1:35543"} -2025-07-23T19:34:54.0519237Z INFO node is healthy {"nodeID": "NodeID-JuB2rckCL8FLYwVy1N5fcwdUvEtCvzdNd", "uri": "http://127.0.0.1:36927"} -2025-07-23T19:34:54.0522758Z INFO started network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees", "uuid": "bfb8e363-92fb-4e6b-a37c-4d53693fdcce"} -2025-07-23T19:34:54.0529979Z INFO metrics and logs available via grafana (collectors must be running) {"url": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7Cbfb8e363-92fb-4e6b-a37c-4d53693fdcce&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299284195&to=now", "linkPath": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees/metrics.txt"} -2025-07-23T19:34:54.0534176Z INFO network started successfully -2025-07-23T19:34:54.0535049Z STEP: allocating a pre-funded key @ 07/23/25 19:34:54.051 -2025-07-23T19:34:54.0536070Z STEP: initializing a coreth client @ 07/23/25 19:34:54.051 -2025-07-23T19:34:54.0537705Z INFO initializing a new eth client {"nodeID": "NodeID-JuB2rckCL8FLYwVy1N5fcwdUvEtCvzdNd", "URI": "http://127.0.0.1:36927"} -2025-07-23T19:34:54.0539010Z STEP: initializing a transaction signer @ 07/23/25 19:34:54.052 -2025-07-23T19:34:54.0540158Z STEP: checking if Fortuna is activated @ 07/23/25 19:34:54.053 -2025-07-23T19:34:54.0548083Z INFO set gas limit {"gasLimit": 10000000} -2025-07-23T19:34:54.0548943Z STEP: deploying an expensive contract @ 07/23/25 19:34:54.054 -2025-07-23T19:34:54.0558832Z INFO sending eth transaction {"txID": "0x3fecd6016dfff7e035adf798f9687c45aba5fa5a0254ccb2cf1f8e69474a8c82"} -2025-07-23T19:34:54.5598237Z INFO eth transaction accepted {"txID": "0x3fecd6016dfff7e035adf798f9687c45aba5fa5a0254ccb2cf1f8e69474a8c82", "gasUsed": 79365, "gasPrice": "2", "blockNumber": "1"} -2025-07-23T19:34:54.5601795Z INFO initializing gas prices {"initialPrice": "1", "targetPrice": "2"} -2025-07-23T19:34:54.5603394Z STEP: calling the contract repeatedly until a sufficient gas price increase is detected @ 07/23/25 19:34:54.56 -2025-07-23T19:34:54.5609098Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:34:54.5616745Z INFO sending eth transaction {"txID": "0x3dd9f7ff4dcbab12d2b65af8b7aaae3f1e410c53a1abb0122a86fc1a9252432c"} -2025-07-23T19:34:57.5656828Z INFO eth transaction accepted {"txID": "0x3dd9f7ff4dcbab12d2b65af8b7aaae3f1e410c53a1abb0122a86fc1a9252432c", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "2"} -2025-07-23T19:34:57.5659805Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:34:57.5668475Z INFO sending eth transaction {"txID": "0x0d407c5d1067a2139ad301731c6a62a93c0e8c800f1cb9818f736d226e12693a"} -2025-07-23T19:35:02.5709571Z INFO eth transaction accepted {"txID": "0x0d407c5d1067a2139ad301731c6a62a93c0e8c800f1cb9818f736d226e12693a", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "3"} -2025-07-23T19:35:02.5713764Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:02.5720937Z INFO sending eth transaction {"txID": "0xa4135274bdb8ebae625783f21673c746acfa8e4785d9646b7566f96aa92a6729"} -2025-07-23T19:35:07.5760174Z INFO eth transaction accepted {"txID": "0xa4135274bdb8ebae625783f21673c746acfa8e4785d9646b7566f96aa92a6729", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "4"} -2025-07-23T19:35:07.5764716Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:07.5772055Z INFO sending eth transaction {"txID": "0x22759d8e43ecbb528caeabf8131f99541bfe2c557df068a0fb670dd19c6a42bd"} -2025-07-23T19:35:12.5813012Z INFO eth transaction accepted {"txID": "0x22759d8e43ecbb528caeabf8131f99541bfe2c557df068a0fb670dd19c6a42bd", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "5"} -2025-07-23T19:35:12.5816590Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:12.5823149Z INFO sending eth transaction {"txID": "0xacd2073e0db59b33c9dcd24716a09257121fe4644e7acb2e2ba0a60c350141dc"} -2025-07-23T19:35:17.0887191Z INFO eth transaction accepted {"txID": "0xacd2073e0db59b33c9dcd24716a09257121fe4644e7acb2e2ba0a60c350141dc", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "6"} -2025-07-23T19:35:17.0897031Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:17.0906048Z INFO sending eth transaction {"txID": "0x2399d91a6ccf44e852b5bf752067910f02400363116ff702466c9e7fb7be1a8b"} -2025-07-23T19:35:22.5944475Z INFO eth transaction accepted {"txID": "0x2399d91a6ccf44e852b5bf752067910f02400363116ff702466c9e7fb7be1a8b", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "7"} -2025-07-23T19:35:22.5952958Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:22.5961670Z INFO sending eth transaction {"txID": "0xa5ad42c9657853d0306332feaf6b077f9b0f87bb7b15c9e4b709c299fb64d271"} -2025-07-23T19:35:27.5996107Z INFO eth transaction accepted {"txID": "0xa5ad42c9657853d0306332feaf6b077f9b0f87bb7b15c9e4b709c299fb64d271", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "8"} -2025-07-23T19:35:27.6000616Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:27.6008901Z INFO sending eth transaction {"txID": "0x873fbd4217601bc5f7f68668f2f963d76e432cf4b059af71e1cc693edfec9e15"} -2025-07-23T19:35:32.6041427Z INFO eth transaction accepted {"txID": "0x873fbd4217601bc5f7f68668f2f963d76e432cf4b059af71e1cc693edfec9e15", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "9"} -2025-07-23T19:35:32.6044421Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:32.6052156Z INFO sending eth transaction {"txID": "0x6528cb3bb120573c71b298b40003ee25fec891026b46b38273472825a1884e7f"} -2025-07-23T19:35:37.6084574Z INFO eth transaction accepted {"txID": "0x6528cb3bb120573c71b298b40003ee25fec891026b46b38273472825a1884e7f", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "10"} -2025-07-23T19:35:37.6088191Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:37.6094783Z INFO sending eth transaction {"txID": "0x106e6cb6e0ca075337548329e16b002658a1bd6d866af4676227227e6733e028"} -2025-07-23T19:35:42.1126624Z INFO eth transaction accepted {"txID": "0x106e6cb6e0ca075337548329e16b002658a1bd6d866af4676227227e6733e028", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "11"} -2025-07-23T19:35:42.1130024Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:42.1137134Z INFO sending eth transaction {"txID": "0xc8a4fdb11a27e1aafc69d48c7bba2c71ebc4ca2b2f8a258f1191bbb0466a6cc0"} -2025-07-23T19:35:47.6184090Z INFO eth transaction accepted {"txID": "0xc8a4fdb11a27e1aafc69d48c7bba2c71ebc4ca2b2f8a258f1191bbb0466a6cc0", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "12"} -2025-07-23T19:35:47.6189079Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:47.6195343Z INFO sending eth transaction {"txID": "0xdfefbf7ba237069e65f75c54fbdd9c8f1744fc543ff6c9f330d4da0f4a36b4ca"} -2025-07-23T19:35:52.6230902Z INFO eth transaction accepted {"txID": "0xdfefbf7ba237069e65f75c54fbdd9c8f1744fc543ff6c9f330d4da0f4a36b4ca", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "13"} -2025-07-23T19:35:52.6234361Z INFO gas price has increased {"initialPrice": "1", "targetPrice": "2", "newPrice": "2"} -2025-07-23T19:35:52.6236200Z STEP: sending small transactions until a sufficient gas price decrease is detected @ 07/23/25 19:35:52.623 -2025-07-23T19:35:52.6239828Z INFO gas price hasn't sufficiently decreased {"initialPrice": "1", "newPrice": "2"} -2025-07-23T19:35:52.6248007Z INFO sending eth transaction {"txID": "0x6ee6c0a4e194c46c958beff957b484edacb4e4cbb30ffa08a6609057b3bd73f3"} -2025-07-23T19:35:54.6288267Z INFO eth transaction accepted {"txID": "0x6ee6c0a4e194c46c958beff957b484edacb4e4cbb30ffa08a6609057b3bd73f3", "gasUsed": 21000, "gasPrice": "3", "blockNumber": "14"} -2025-07-23T19:35:54.6292211Z INFO gas price hasn't sufficiently decreased {"initialPrice": "1", "newPrice": "2"} -2025-07-23T19:35:54.6299531Z INFO sending eth transaction {"txID": "0x3c0ee96a4070a08e6f9722e1473d45f88ef93623181536112594404cb2f55df5"} -2025-07-23T19:35:56.6339869Z INFO eth transaction accepted {"txID": "0x3c0ee96a4070a08e6f9722e1473d45f88ef93623181536112594404cb2f55df5", "gasUsed": 21000, "gasPrice": "2", "blockNumber": "15"} -2025-07-23T19:35:56.6344304Z INFO gas price has decreased {"initialPrice": "1", "newPrice": "1"} -2025-07-23T19:35:56.6346635Z STEP: checking if bootstrap is possible with the current network state @ 07/23/25 19:35:56.634 -2025-07-23T19:35:58.6365871Z INFO started local node {"nodeID": "NodeID-L9kznVCrLKpnSNVGhs7Q9AjyxXnALFs1z", "dataDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees/NodeID-L9kznVCrLKpnSNVGhs7Q9AjyxXnALFs1z", "isEphemeral": true} -2025-07-23T19:36:06.7039457Z INFO shutting down network -2025-07-23T19:36:06.9767790Z • [82.790 seconds] -2025-07-23T19:36:06.9768914Z ------------------------------ -2025-07-23T19:36:06.9770720Z [X-Chain] [Interchain Workflow] should ensure that funds can be transferred from the X-Chain to the C-Chain and the P-Chain [uses-c, x] -2025-07-23T19:36:06.9773229Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/x/interchain_workflow.go:28 -2025-07-23T19:36:06.9790527Z INFO targeting random node {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "uri": "http://127.0.0.1:43559"} -2025-07-23T19:36:06.9792288Z STEP: creating wallet with a funded key to send from and recipient key to deliver to @ 07/23/25 19:36:06.978 -2025-07-23T19:36:06.9794382Z INFO initializing a new wallet {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "URI": "http://127.0.0.1:43559"} -2025-07-23T19:36:06.9981120Z INFO wallet balances in nAVAX {"xChain": 30000000000000000, "pChain": 19999979999918852} -2025-07-23T19:36:06.9982315Z STEP: defining common configuration @ 07/23/25 19:36:06.997 -2025-07-23T19:36:06.9983695Z STEP: sending funds from one address to another on the X-Chain @ 07/23/25 19:36:06.998 -2025-07-23T19:36:07.0036167Z INFO issued transaction {"chainAlias": "X", "txID": "2agMtTCCVt5pYgY86u1XAP4P9T6pQo7ByGaZMuJsPm2HC3oWiZ", "duration": "5.170109ms"} -2025-07-23T19:36:07.0450900Z INFO confirmed transaction {"chainAlias": "X", "txID": "2agMtTCCVt5pYgY86u1XAP4P9T6pQo7ByGaZMuJsPm2HC3oWiZ", "totalDuration": "46.549486ms", "confirmationDuration": "41.379377ms"} -2025-07-23T19:36:07.0454272Z STEP: checking that the X-Chain recipient address has received the sent funds @ 07/23/25 19:36:07.044 -2025-07-23T19:36:07.0456196Z STEP: exporting AVAX from the X-Chain to the C-Chain @ 07/23/25 19:36:07.044 -2025-07-23T19:36:07.0565012Z INFO issued transaction {"chainAlias": "X", "txID": "2MNiwCxtDiuWKPD8hVe6DazmMiJjMLn9z8A46B44nTJrW9MSdG", "duration": "10.870273ms"} -2025-07-23T19:36:07.1125133Z INFO confirmed transaction {"chainAlias": "X", "txID": "2MNiwCxtDiuWKPD8hVe6DazmMiJjMLn9z8A46B44nTJrW9MSdG", "totalDuration": "66.102652ms", "confirmationDuration": "55.232379ms"} -2025-07-23T19:36:07.1127123Z STEP: initializing a new eth client @ 07/23/25 19:36:07.111 -2025-07-23T19:36:07.1129151Z INFO initializing a new eth client {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "URI": "http://127.0.0.1:43559"} -2025-07-23T19:36:07.1130840Z STEP: importing AVAX from the X-Chain to the C-Chain @ 07/23/25 19:36:07.111 -2025-07-23T19:36:07.1133257Z INFO suggested gas price {"price": "2"} -2025-07-23T19:36:07.1204901Z INFO issued transaction {"chainAlias": "C", "txID": "2g4rUn1YRdmGyP5vcEEvVWyAuq3amXSgT675x1MxWQmpruVV3c", "duration": "6.980125ms"} -2025-07-23T19:36:07.1719392Z INFO confirmed transaction {"chainAlias": "C", "txID": "2g4rUn1YRdmGyP5vcEEvVWyAuq3amXSgT675x1MxWQmpruVV3c", "totalDuration": "58.376929ms", "confirmationDuration": "51.396804ms"} -2025-07-23T19:36:07.1721042Z STEP: checking that the recipient address has received imported funds on the C-Chain @ 07/23/25 19:36:07.171 -2025-07-23T19:36:07.1725363Z STEP: exporting AVAX from the X-Chain to the P-Chain @ 07/23/25 19:36:07.172 -2025-07-23T19:36:07.1787030Z INFO issued transaction {"chainAlias": "X", "txID": "UJdMohTjLmQnbGqSCLGDDkpzvECpDQDybUMnoBGWRKmautcmz", "duration": "5.908658ms"} -2025-07-23T19:36:07.7204459Z INFO confirmed transaction {"chainAlias": "X", "txID": "UJdMohTjLmQnbGqSCLGDDkpzvECpDQDybUMnoBGWRKmautcmz", "totalDuration": "547.497751ms", "confirmationDuration": "541.589093ms"} -2025-07-23T19:36:07.7205874Z STEP: importing AVAX from the X-Chain to the P-Chain @ 07/23/25 19:36:07.72 -2025-07-23T19:36:07.7290631Z INFO issued transaction {"chainAlias": "P", "txID": "gug3S9tdw2ZAFCBcNkD5dMrNCNd9gKNpdk8DKaF6sAC1zrkjD", "duration": "5.735355ms"} -2025-07-23T19:36:08.1603396Z INFO confirmed transaction {"chainAlias": "P", "txID": "gug3S9tdw2ZAFCBcNkD5dMrNCNd9gKNpdk8DKaF6sAC1zrkjD", "totalDuration": "439.524931ms", "confirmationDuration": "433.789576ms"} -2025-07-23T19:36:08.1606100Z STEP: checking that the recipient address has received imported funds on the P-Chain @ 07/23/25 19:36:08.159 -2025-07-23T19:36:08.1622565Z STEP: checking if bootstrap is possible with the current network state @ 07/23/25 19:36:08.162 -2025-07-23T19:36:12.9117373Z INFO started local node {"nodeID": "NodeID-Mrw4ywPLFpxivCZyoGELNcNnFqiyAbEhK", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-Mrw4ywPLFpxivCZyoGELNcNnFqiyAbEhK", "isEphemeral": true} -2025-07-23T19:36:14.8187764Z INFO metrics and logs available via grafana (collectors must be running) {"uri": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299366976&to=1753299386816"} -2025-07-23T19:36:15.0137348Z • [8.037 seconds] -2025-07-23T19:36:15.0138298Z ------------------------------ -2025-07-23T19:36:15.0139159Z SSS -2025-07-23T19:36:15.0140240Z ------------------------------ -2025-07-23T19:36:15.0140983Z [DeferCleanup (Suite)]  -2025-07-23T19:36:15.0142436Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:36:15.0145345Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:36:15.0146288Z ------------------------------ -2025-07-23T19:36:15.0146871Z [DeferCleanup (Suite)]  -2025-07-23T19:36:15.0148217Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:36:15.0149441Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:36:15.0150529Z ------------------------------ -2025-07-23T19:36:15.0151513Z [DeferCleanup (Suite)]  -2025-07-23T19:36:15.0153239Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:36:15.0154724Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:36:15.0155303Z ------------------------------ -2025-07-23T19:36:15.0155775Z [DeferCleanup (Suite)]  -2025-07-23T19:36:15.0156690Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:36:15.0157969Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:36:15.0158610Z ------------------------------ -2025-07-23T19:36:15.0159070Z [DeferCleanup (Suite)]  -2025-07-23T19:36:15.0159959Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:36:15.0161005Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:36:15.0161818Z ------------------------------ -2025-07-23T19:36:15.0162453Z [DeferCleanup (Suite)]  -2025-07-23T19:36:15.0163708Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:36:15.0165614Z [07-23|19:36:15.013] INFO e2e/helpers.go:346 shutting down network -2025-07-23T19:36:15.3482582Z [DeferCleanup (Suite)] PASSED [0.334 seconds] -2025-07-23T19:36:15.3483831Z ------------------------------ -2025-07-23T19:36:15.3484845Z [DeferCleanup (Suite)]  -2025-07-23T19:36:15.3486023Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:36:15.3487199Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:36:15.3488182Z ------------------------------ -2025-07-23T19:36:15.3488525Z -2025-07-23T19:36:15.3488857Z Ran 4 of 14 Specs in 147.613 seconds -2025-07-23T19:36:15.3490052Z SUCCESS! -- 4 Passed | 0 Failed | 0 Pending | 10 Skipped -2025-07-23T19:36:15.3490893Z PASS -2025-07-23T19:36:15.3648417Z -2025-07-23T19:36:15.3648758Z Ginkgo ran 1 suite in 2m47.789871904s -2025-07-23T19:36:15.3649251Z Test Suite Passed -2025-07-23T19:36:15.3730158Z ##[group]Run actions/upload-artifact@v4 -2025-07-23T19:36:15.3730424Z with: -2025-07-23T19:36:15.3730599Z name: -tmpnet-data -2025-07-23T19:36:15.3731005Z path: ~/.tmpnet/networks -~/.tmpnet/prometheus/prometheus.log -~/.tmpnet/promtail/promtail.log - -2025-07-23T19:36:15.3731466Z if-no-files-found: error -2025-07-23T19:36:15.3731680Z compression-level: 6 -2025-07-23T19:36:15.3731880Z overwrite: false -2025-07-23T19:36:15.3732096Z include-hidden-files: false -2025-07-23T19:36:15.3732314Z env: -2025-07-23T19:36:15.3732484Z TMPDIR: /home/runner/work/_temp -2025-07-23T19:36:15.3732713Z ##[endgroup] -2025-07-23T19:36:15.6468546Z Multiple search paths detected. Calculating the least common ancestor of all paths -2025-07-23T19:36:15.6471134Z The least common ancestor is /home/runner/.tmpnet. This will be the root directory of the artifact -2025-07-23T19:36:15.6472419Z With the provided path, there will be 139 files uploaded -2025-07-23T19:36:15.6478154Z Artifact name is valid! -2025-07-23T19:36:15.6479269Z Root directory input is valid! -2025-07-23T19:36:15.7712944Z Beginning upload of artifact content to blob storage -2025-07-23T19:36:16.4020105Z Uploaded bytes 2284192 -2025-07-23T19:36:16.4154930Z Finished uploading artifact content to blob storage! -2025-07-23T19:36:16.4158611Z SHA256 digest of uploaded artifact zip is adccef765d38c6f02b712eea815ea5cadf242aa659cc869ec5b99c6fca674942 -2025-07-23T19:36:16.4160716Z Finalizing artifact upload -2025-07-23T19:36:16.5300885Z Artifact -tmpnet-data.zip successfully finalized. Artifact ID 3600349177 -2025-07-23T19:36:16.5302557Z Artifact -tmpnet-data has been successfully uploaded! Final size is 2284192 bytes. Artifact ID is 3600349177 -2025-07-23T19:36:16.5309755Z Artifact download URL: https://github.com/ava-labs/coreth/actions/runs/16480013789/artifacts/3600349177 -2025-07-23T19:36:16.5502327Z Post job cleanup. -2025-07-23T19:36:16.7055443Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:36:16.7094764Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:36:16.7119404Z /home/runner/go/pkg/mod -2025-07-23T19:36:16.7148083Z /home/runner/.cache/go-build -2025-07-23T19:36:16.7153299Z Cache hit occurred on the primary key setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d, not saving cache. -2025-07-23T19:36:16.7264790Z Post job cleanup. -2025-07-23T19:36:16.8293502Z [command]/usr/bin/git version -2025-07-23T19:36:16.8331928Z git version 2.50.1 -2025-07-23T19:36:16.8384870Z Temporarily overriding HOME='/home/runner/work/_temp/f2e259d2-b225-4571-8771-c6ad4dd8d0d9' before making global git config changes -2025-07-23T19:36:16.8386242Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:36:16.8390984Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:36:16.8427243Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:36:16.8459503Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:36:16.8682898Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:36:16.8703684Z http.https://github.com/.extraheader -2025-07-23T19:36:16.8716617Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader -2025-07-23T19:36:16.8746224Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:36:16.9075807Z Cleaning up orphan processes diff --git a/logs_42241282643/2_e2e warp tests.txt b/logs_42241282643/2_e2e warp tests.txt deleted file mode 100644 index 24fafb8c5c..0000000000 --- a/logs_42241282643/2_e2e warp tests.txt +++ /dev/null @@ -1,1819 +0,0 @@ -2025-07-23T19:28:54.2430326Z Current runner version: '2.326.0' -2025-07-23T19:28:54.2462576Z ##[group]Runner Image Provisioner -2025-07-23T19:28:54.2463860Z Hosted Compute Agent -2025-07-23T19:28:54.2464909Z Version: 20250711.363 -2025-07-23T19:28:54.2466055Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c -2025-07-23T19:28:54.2467210Z Build Date: 2025-07-11T20:04:25Z -2025-07-23T19:28:54.2468244Z ##[endgroup] -2025-07-23T19:28:54.2469265Z ##[group]Operating System -2025-07-23T19:28:54.2470199Z Ubuntu -2025-07-23T19:28:54.2470910Z 24.04.2 -2025-07-23T19:28:54.2471747Z LTS -2025-07-23T19:28:54.2472472Z ##[endgroup] -2025-07-23T19:28:54.2473228Z ##[group]Runner Image -2025-07-23T19:28:54.2474611Z Image: ubuntu-24.04 -2025-07-23T19:28:54.2475476Z Version: 20250720.1.0 -2025-07-23T19:28:54.2477295Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md -2025-07-23T19:28:54.2480234Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 -2025-07-23T19:28:54.2482111Z ##[endgroup] -2025-07-23T19:28:54.2486588Z ##[group]GITHUB_TOKEN Permissions -2025-07-23T19:28:54.2489442Z Actions: write -2025-07-23T19:28:54.2490305Z Attestations: write -2025-07-23T19:28:54.2491124Z Checks: write -2025-07-23T19:28:54.2491982Z Contents: write -2025-07-23T19:28:54.2492844Z Deployments: write -2025-07-23T19:28:54.2493614Z Discussions: write -2025-07-23T19:28:54.2494784Z Issues: write -2025-07-23T19:28:54.2495689Z Metadata: read -2025-07-23T19:28:54.2496481Z Models: read -2025-07-23T19:28:54.2497490Z Packages: write -2025-07-23T19:28:54.2498313Z Pages: write -2025-07-23T19:28:54.2499099Z PullRequests: write -2025-07-23T19:28:54.2500049Z RepositoryProjects: write -2025-07-23T19:28:54.2501065Z SecurityEvents: write -2025-07-23T19:28:54.2502271Z Statuses: write -2025-07-23T19:28:54.2503160Z ##[endgroup] -2025-07-23T19:28:54.2506276Z Secret source: Actions -2025-07-23T19:28:54.2507636Z Prepare workflow directory -2025-07-23T19:28:54.2978824Z Prepare all required actions -2025-07-23T19:28:54.3034802Z Getting action download info -2025-07-23T19:28:54.5607983Z ##[group]Download immutable action package 'actions/checkout@v4' -2025-07-23T19:28:54.5609509Z Version: 4.2.2 -2025-07-23T19:28:54.5611150Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 -2025-07-23T19:28:54.5612918Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 -2025-07-23T19:28:54.5614373Z ##[endgroup] -2025-07-23T19:28:54.6722232Z ##[group]Download immutable action package 'actions/setup-go@v5' -2025-07-23T19:28:54.6723487Z Version: 5.5.0 -2025-07-23T19:28:54.6725111Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb -2025-07-23T19:28:54.6726851Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 -2025-07-23T19:28:54.6728069Z ##[endgroup] -2025-07-23T19:28:54.8999180Z Download action repository 'ava-labs/avalanchego@66ce7a7701db0c4b370f97b339478d5b5ebe919a' (SHA:66ce7a7701db0c4b370f97b339478d5b5ebe919a) -2025-07-23T19:28:55.9950232Z Getting action download info -2025-07-23T19:28:56.1465891Z Download action repository 'cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f' (SHA:02a151ada4993995686f9ed4f1be7cfbb229e56f) -2025-07-23T19:28:56.3752857Z ##[group]Download immutable action package 'actions/upload-artifact@v4' -2025-07-23T19:28:56.3753300Z Version: 4.6.2 -2025-07-23T19:28:56.3753680Z Digest: sha256:290722aa3281d5caf23d0acdc3dbeb3424786a1a01a9cc97e72f147225e37c38 -2025-07-23T19:28:56.3754426Z Source commit SHA: ea165f8d65b6e75b540449e92b4886f43607fa02 -2025-07-23T19:28:56.3754778Z ##[endgroup] -2025-07-23T19:28:56.5236765Z Complete job name: e2e warp tests -2025-07-23T19:28:56.6013125Z ##[group]Run actions/checkout@v4 -2025-07-23T19:28:56.6014251Z with: -2025-07-23T19:28:56.6014642Z fetch-depth: 0 -2025-07-23T19:28:56.6015277Z repository: ava-labs/coreth -2025-07-23T19:28:56.6016098Z token: *** -2025-07-23T19:28:56.6016497Z ssh-strict: true -2025-07-23T19:28:56.6016901Z ssh-user: git -2025-07-23T19:28:56.6017307Z persist-credentials: true -2025-07-23T19:28:56.6017751Z clean: true -2025-07-23T19:28:56.6018718Z sparse-checkout-cone-mode: true -2025-07-23T19:28:56.6019353Z fetch-tags: false -2025-07-23T19:28:56.6019910Z show-progress: true -2025-07-23T19:28:56.6020315Z lfs: false -2025-07-23T19:28:56.6020685Z submodules: false -2025-07-23T19:28:56.6021090Z set-safe-directory: true -2025-07-23T19:28:56.6022100Z ##[endgroup] -2025-07-23T19:28:56.7186829Z Syncing repository: ava-labs/coreth -2025-07-23T19:28:56.7188142Z ##[group]Getting Git version info -2025-07-23T19:28:56.7188555Z Working directory is '/home/runner/work/coreth/coreth' -2025-07-23T19:28:56.7189169Z [command]/usr/bin/git version -2025-07-23T19:28:56.7905588Z git version 2.50.1 -2025-07-23T19:28:56.7930746Z ##[endgroup] -2025-07-23T19:28:56.7943794Z Temporarily overriding HOME='/home/runner/work/_temp/d15459b7-157c-4910-bfea-980f7312e17a' before making global git config changes -2025-07-23T19:28:56.7945040Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:28:56.7949037Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:28:56.7982303Z Deleting the contents of '/home/runner/work/coreth/coreth' -2025-07-23T19:28:56.7986139Z ##[group]Initializing the repository -2025-07-23T19:28:56.7990037Z [command]/usr/bin/git init /home/runner/work/coreth/coreth -2025-07-23T19:28:56.8052116Z hint: Using 'master' as the name for the initial branch. This default branch name -2025-07-23T19:28:56.8053154Z hint: is subject to change. To configure the initial branch name to use in all -2025-07-23T19:28:56.8054336Z hint: of your new repositories, which will suppress this warning, call: -2025-07-23T19:28:56.8055095Z hint: -2025-07-23T19:28:56.8055631Z hint: git config --global init.defaultBranch -2025-07-23T19:28:56.8056280Z hint: -2025-07-23T19:28:56.8056941Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and -2025-07-23T19:28:56.8057927Z hint: 'development'. The just-created branch can be renamed via this command: -2025-07-23T19:28:56.8058733Z hint: -2025-07-23T19:28:56.8059207Z hint: git branch -m -2025-07-23T19:28:56.8059701Z hint: -2025-07-23T19:28:56.8060369Z hint: Disable this message with "git config set advice.defaultBranchName false" -2025-07-23T19:28:56.8061356Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ -2025-07-23T19:28:56.8066348Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth -2025-07-23T19:28:56.8096714Z ##[endgroup] -2025-07-23T19:28:56.8097470Z ##[group]Disabling automatic garbage collection -2025-07-23T19:28:56.8101611Z [command]/usr/bin/git config --local gc.auto 0 -2025-07-23T19:28:56.8129632Z ##[endgroup] -2025-07-23T19:28:56.8130396Z ##[group]Setting up auth -2025-07-23T19:28:56.8137277Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:28:56.8166746Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:28:56.8473063Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:28:56.8502266Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:28:56.8718253Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** -2025-07-23T19:28:56.8759143Z ##[endgroup] -2025-07-23T19:28:56.8760108Z ##[group]Fetching the repository -2025-07-23T19:28:56.8768257Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge -2025-07-23T19:29:08.4724106Z From https://github.com/ava-labs/coreth -2025-07-23T19:29:08.4726693Z * [new branch] 001-align-trie -> origin/001-align-trie -2025-07-23T19:29:08.4730141Z * [new branch] AddContexts -> origin/AddContexts -2025-07-23T19:29:08.4731158Z * [new branch] RodrigoVillar/initial-gas-target -> origin/RodrigoVillar/initial-gas-target -2025-07-23T19:29:08.4732494Z * [new branch] aaronbuchwald/detailed-import-tx-chainid-errs -> origin/aaronbuchwald/detailed-import-tx-chainid-errs -2025-07-23T19:29:08.4733824Z * [new branch] aaronbuchwald/prefetch-state -> origin/aaronbuchwald/prefetch-state -2025-07-23T19:29:08.4736991Z * [new branch] aaronbuchwald/prefetch-state-single-step-build -> origin/aaronbuchwald/prefetch-state-single-step-build -2025-07-23T19:29:08.4738238Z * [new branch] add-chaindb -> origin/add-chaindb -2025-07-23T19:29:08.4744607Z * [new branch] add-contracts-gitignore -> origin/add-contracts-gitignore -2025-07-23T19:29:08.4745687Z * [new branch] add-sig-get-metrics -> origin/add-sig-get-metrics -2025-07-23T19:29:08.4746655Z * [new branch] alarso16/firewood-bootstrap -> origin/alarso16/firewood-bootstrap -2025-07-23T19:29:08.4747759Z * [new branch] alarso16/firewood-error-apis -> origin/alarso16/firewood-error-apis -2025-07-23T19:29:08.4748903Z * [new branch] alarso16/firewood-integration-rv -> origin/alarso16/firewood-integration-rv -2025-07-23T19:29:08.4750053Z * [new branch] alarso16/libevm-upstream-sync -> origin/alarso16/libevm-upstream-sync -2025-07-23T19:29:08.4751804Z * [new branch] alarso16/parallelize-syncers -> origin/alarso16/parallelize-syncers -2025-07-23T19:29:08.4754240Z * [new branch] alarso16/show-flake-lines -> origin/alarso16/show-flake-lines -2025-07-23T19:29:08.4756242Z * [new branch] alarso16/state-syncer-interface -> origin/alarso16/state-syncer-interface -2025-07-23T19:29:08.4758198Z * [new branch] alarso16/static-snapsync -> origin/alarso16/static-snapsync -2025-07-23T19:29:08.4760480Z * [new branch] alt-fix-snapshot -> origin/alt-fix-snapshot -2025-07-23T19:29:08.4762680Z * [new branch] ap1-committed-gas -> origin/ap1-committed-gas -2025-07-23T19:29:08.4766282Z * [new branch] arr4n/abstract-customtypes-def-vs-access -> origin/arr4n/abstract-customtypes-def-vs-access -2025-07-23T19:29:08.4767992Z * [new branch] arr4n/libevm-clean-history -> origin/arr4n/libevm-clean-history -2025-07-23T19:29:08.4770325Z * [new branch] arr4n/libevm-dirty-history -> origin/arr4n/libevm-dirty-history -2025-07-23T19:29:08.4772297Z * [new branch] arr4n/libevm-upstream-types -> origin/arr4n/libevm-upstream-types -2025-07-23T19:29:08.4774839Z * [new branch] arr4n/metric-registration-order -> origin/arr4n/metric-registration-order -2025-07-23T19:29:08.4776858Z * [new branch] arr4n/min-gas-cap-sketch -> origin/arr4n/min-gas-cap-sketch -2025-07-23T19:29:08.4779111Z * [new branch] arr4n/test-only-build-tags -> origin/arr4n/test-only-build-tags -2025-07-23T19:29:08.4781117Z * [new branch] ast-drawing -> origin/ast-drawing -2025-07-23T19:29:08.4783330Z * [new branch] atomic-000 -> origin/atomic-000 -2025-07-23T19:29:08.4786001Z * [new branch] atomic-mempool-refactor -> origin/atomic-mempool-refactor -2025-07-23T19:29:08.4787709Z * [new branch] atomic-refactor -> origin/atomic-refactor -2025-07-23T19:29:08.4790070Z * [new branch] atomic-refactor-ctd -> origin/atomic-refactor-ctd -2025-07-23T19:29:08.4792558Z * [new branch] atomic-tx-verifier -> origin/atomic-tx-verifier -2025-07-23T19:29:08.4794325Z * [new branch] atomic-vm-api -> origin/atomic-vm-api -2025-07-23T19:29:08.4796809Z * [new branch] atomic-vm-backend -> origin/atomic-vm-backend -2025-07-23T19:29:08.4798841Z * [new branch] atomic-vm-finalize -> origin/atomic-vm-finalize -2025-07-23T19:29:08.4800816Z * [new branch] atomic-vm-mempool-gossip -> origin/atomic-vm-mempool-gossip -2025-07-23T19:29:08.4803280Z * [new branch] atomic-vm-pkg -> origin/atomic-vm-pkg -2025-07-23T19:29:08.4805688Z * [new branch] atomic-vm-refactor -> origin/atomic-vm-refactor -2025-07-23T19:29:08.4807928Z * [new branch] atomic-vm-refactor-finalize -> origin/atomic-vm-refactor-finalize -2025-07-23T19:29:08.4810072Z * [new branch] atomic-vm-syncers -> origin/atomic-vm-syncers -2025-07-23T19:29:08.4812247Z * [new branch] atomic-vm-wrapper -> origin/atomic-vm-wrapper -2025-07-23T19:29:08.4814713Z * [new branch] auto-pr-subnet-evm -> origin/auto-pr-subnet-evm -2025-07-23T19:29:08.4817077Z * [new branch] auto-pr-subnet-evm-test -> origin/auto-pr-subnet-evm-test -2025-07-23T19:29:08.4819080Z * [new branch] auto-sync-subnet-evm -> origin/auto-sync-subnet-evm -2025-07-23T19:29:08.4821567Z * [new branch] avoid-modifying-global-var-tests -> origin/avoid-modifying-global-var-tests -2025-07-23T19:29:08.4823605Z * [new branch] avoid-overriding-commit-interval -> origin/avoid-overriding-commit-interval -2025-07-23T19:29:08.4826022Z * [new branch] backfill_blocks -> origin/backfill_blocks -2025-07-23T19:29:08.4828364Z * [new branch] backfill_blocks_0 -> origin/backfill_blocks_0 -2025-07-23T19:29:08.4830396Z * [new branch] bench-nft -> origin/bench-nft -2025-07-23T19:29:08.4832826Z * [new branch] better-copy -> origin/better-copy -2025-07-23T19:29:08.4835114Z * [new branch] block-builder -> origin/block-builder -2025-07-23T19:29:08.4837794Z * [new branch] bloom-filter-gossip -> origin/bloom-filter-gossip -2025-07-23T19:29:08.4839911Z * [new branch] buf-modules -> origin/buf-modules -2025-07-23T19:29:08.4842370Z * [new branch] bump-avalanchego-master -> origin/bump-avalanchego-master -2025-07-23T19:29:08.4844369Z * [new branch] bump-compat-avago -> origin/bump-compat-avago -2025-07-23T19:29:08.4846790Z * [new branch] bump-pebble -> origin/bump-pebble -2025-07-23T19:29:08.4848993Z * [new branch] cancun-genesis -> origin/cancun-genesis -2025-07-23T19:29:08.4852041Z * [new branch] ceyonur/move-config -> origin/ceyonur/move-config -2025-07-23T19:29:08.4854456Z * [new branch] check-processing-blocks-for-atomic-txs -> origin/check-processing-blocks-for-atomic-txs -2025-07-23T19:29:08.4856437Z * [new branch] cleanup-wip -> origin/cleanup-wip -2025-07-23T19:29:08.4858876Z * [new branch] concrete-vm -> origin/concrete-vm -2025-07-23T19:29:08.4861113Z * [new branch] config-cleanup -> origin/config-cleanup -2025-07-23T19:29:08.4863346Z * [new branch] coreth-000 -> origin/coreth-000 -2025-07-23T19:29:08.4865966Z * [new branch] coreth-001 -> origin/coreth-001 -2025-07-23T19:29:08.4868147Z * [new branch] coreth-001-minimal -> origin/coreth-001-minimal -2025-07-23T19:29:08.4870632Z * [new branch] coreth-001-minimal-triedb-refcount -> origin/coreth-001-minimal-triedb-refcount -2025-07-23T19:29:08.4872834Z * [new branch] coreth-001-minimal-triedb-refcount-statedb-mod -> origin/coreth-001-minimal-triedb-refcount-statedb-mod -2025-07-23T19:29:08.4875325Z * [new branch] coreth-001-shared-statedb-triedb-backends -> origin/coreth-001-shared-statedb-triedb-backends -2025-07-23T19:29:08.4877153Z * [new branch] coreth-002 -> origin/coreth-002 -2025-07-23T19:29:08.4879741Z * [new branch] coreth-002-pathdb-mem -> origin/coreth-002-pathdb-mem -2025-07-23T19:29:08.4881940Z * [new branch] coreth-002-pathdb-mem-atomic -> origin/coreth-002-pathdb-mem-atomic -2025-07-23T19:29:08.4884115Z * [new branch] coreth-block-flex -> origin/coreth-block-flex -2025-07-23T19:29:08.4886794Z * [new branch] db-stats -> origin/db-stats -2025-07-23T19:29:08.4889176Z * [new branch] deferred-verification -> origin/deferred-verification -2025-07-23T19:29:08.4893847Z * [new branch] dependabot/github_actions/github/codeql-action-3.29.2 -> origin/dependabot/github_actions/github/codeql-action-3.29.2 -2025-07-23T19:29:08.4898159Z * [new branch] dependabot/go_modules/github.com/cespare/cp-1.1.1 -> origin/dependabot/go_modules/github.com/cespare/cp-1.1.1 -2025-07-23T19:29:08.4901331Z * [new branch] dependabot/go_modules/github.com/hashicorp/golang-lru-1.0.2 -> origin/dependabot/go_modules/github.com/hashicorp/golang-lru-1.0.2 -2025-07-23T19:29:08.4904675Z * [new branch] dependabot/go_modules/github.com/spf13/cast-1.9.2 -> origin/dependabot/go_modules/github.com/spf13/cast-1.9.2 -2025-07-23T19:29:08.4908531Z * [new branch] dependabot/go_modules/golang.org/x/crypto-0.40.0 -> origin/dependabot/go_modules/golang.org/x/crypto-0.40.0 -2025-07-23T19:29:08.4910452Z * [new branch] dependabot/go_modules/golang.org/x/oauth2-0.27.0 -> origin/dependabot/go_modules/golang.org/x/oauth2-0.27.0 -2025-07-23T19:29:08.4912804Z * [new branch] dependabot/go_modules/golang.org/x/tools-0.35.0 -> origin/dependabot/go_modules/golang.org/x/tools-0.35.0 -2025-07-23T19:29:08.4915046Z * [new branch] disable-gossip -> origin/disable-gossip -2025-07-23T19:29:08.4917667Z * [new branch] disable-new-gossip -> origin/disable-new-gossip -2025-07-23T19:29:08.4920008Z * [new branch] downgrade-bad-block-logs -> origin/downgrade-bad-block-logs -2025-07-23T19:29:08.4922326Z * [new branch] downgrade-logs -> origin/downgrade-logs -2025-07-23T19:29:08.4924998Z * [new branch] dynamic_state_sync_readiness_fix -> origin/dynamic_state_sync_readiness_fix -2025-07-23T19:29:08.4927708Z * [new branch] eth-call-depth-metrics -> origin/eth-call-depth-metrics -2025-07-23T19:29:08.4929940Z * [new branch] fastsync-all -> origin/fastsync-all -2025-07-23T19:29:08.4932348Z * [new branch] find-flake-add-logs -> origin/find-flake-add-logs -2025-07-23T19:29:08.4934865Z * [new branch] fix-derive-logs -> origin/fix-derive-logs -2025-07-23T19:29:08.4937281Z * [new branch] fix-error -> origin/fix-error -2025-07-23T19:29:08.4939804Z * [new branch] fix-setting-eth-upgrades-trace -> origin/fix-setting-eth-upgrades-trace -2025-07-23T19:29:08.4942045Z * [new branch] fix-upstream-licenses -> origin/fix-upstream-licenses -2025-07-23T19:29:08.4944483Z * [new branch] fork-refactor -> origin/fork-refactor -2025-07-23T19:29:08.4947090Z * [new branch] fupgrade-libevm-sync-upstream -> origin/fupgrade-libevm-sync-upstream -2025-07-23T19:29:08.4949088Z * [new branch] generic-cache -> origin/generic-cache -2025-07-23T19:29:08.4951582Z * [new branch] generic-set -> origin/generic-set -2025-07-23T19:29:08.4953796Z * [new branch] generic-sort -> origin/generic-sort -2025-07-23T19:29:08.4956466Z * [new branch] genericNodeID -> origin/genericNodeID -2025-07-23T19:29:08.4959582Z * [new branch] get-preference -> origin/get-preference -2025-07-23T19:29:08.4961506Z * [new branch] geth-compile-v1.14.7 -> origin/geth-compile-v1.14.7 -2025-07-23T19:29:08.4964198Z * [new branch] geth-migration -> origin/geth-migration -2025-07-23T19:29:08.4966581Z * [new branch] geth-v1.12.2-compile -> origin/geth-v1.12.2-compile -2025-07-23T19:29:08.4971033Z * [new branch] gh-readonly-queue/master/pr-1064-8fa714aa59bcec3f418c1cc8312789585993b1b1 -> origin/gh-readonly-queue/master/pr-1064-8fa714aa59bcec3f418c1cc8312789585993b1b1 -2025-07-23T19:29:08.4972864Z * [new branch] hyper-dep-with-commit-to-db -> origin/hyper-dep-with-commit-to-db -2025-07-23T19:29:08.4975280Z * [new branch] inspector -> origin/inspector -2025-07-23T19:29:08.4977753Z * [new branch] integration-testing -> origin/integration-testing -2025-07-23T19:29:08.4980103Z * [new branch] legacy-sdk -> origin/legacy-sdk -2025-07-23T19:29:08.4982605Z * [new branch] libevm -> origin/libevm -2025-07-23T19:29:08.4985163Z * [new branch] libevm-atomic-refactor -> origin/libevm-atomic-refactor -2025-07-23T19:29:08.4987770Z * [new branch] libevm-atomic-refactor-2 -> origin/libevm-atomic-refactor-2 -2025-07-23T19:29:08.4990241Z * [new branch] libevm-avalanchegov.1.12 -> origin/libevm-avalanchegov.1.12 -2025-07-23T19:29:08.4992743Z * [new branch] libevm-move-atomic-txs -> origin/libevm-move-atomic-txs -2025-07-23T19:29:08.4995260Z * [new branch] libevm-upstream-sync -> origin/libevm-upstream-sync -2025-07-23T19:29:08.4997602Z * [new branch] linter -> origin/linter -2025-07-23T19:29:08.5000210Z * [new branch] maru-update-ci -> origin/maru-update-ci -2025-07-23T19:29:08.5002489Z * [new branch] marun-bump-avalanchego -> origin/marun-bump-avalanchego -2025-07-23T19:29:08.5005081Z * [new branch] master -> origin/master -2025-07-23T19:29:08.5008250Z * [new branch] migrate-geth-v1.10.23 -> origin/migrate-geth-v1.10.23 -2025-07-23T19:29:08.5010722Z * [new branch] migrate-warp-precompile-warp-api-enabled -> origin/migrate-warp-precompile-warp-api-enabled -2025-07-23T19:29:08.5012282Z * [new branch] miner-upstream -> origin/miner-upstream -2025-07-23T19:29:08.5014642Z * [new branch] minimize-gossip-delays -> origin/minimize-gossip-delays -2025-07-23T19:29:08.5016654Z * [new branch] move-atomic-txs-config -> origin/move-atomic-txs-config -2025-07-23T19:29:08.5018533Z * [new branch] nativeassetcall-ut -> origin/nativeassetcall-ut -2025-07-23T19:29:08.5020804Z * [new branch] newevmblockcontext-refactor -> origin/newevmblockcontext-refactor -2025-07-23T19:29:08.5022599Z * [new branch] nit-network-upgrades -> origin/nit-network-upgrades -2025-07-23T19:29:08.5024769Z * [new branch] opentelemetry -> origin/opentelemetry -2025-07-23T19:29:08.5026865Z * [new branch] p2p-error -> origin/p2p-error -2025-07-23T19:29:08.5029071Z * [new branch] p2p-sampling -> origin/p2p-sampling -2025-07-23T19:29:08.5031235Z * [new branch] p2p-sender-ref -> origin/p2p-sender-ref -2025-07-23T19:29:08.5033470Z * [new branch] parallel-copy-based-prefetcher -> origin/parallel-copy-based-prefetcher -2025-07-23T19:29:08.5035778Z * [new branch] parallel-copy-based-prefetcher-no-abort -> origin/parallel-copy-based-prefetcher-no-abort -2025-07-23T19:29:08.5037525Z * [new branch] params-extra-refactor-0 -> origin/params-extra-refactor-0 -2025-07-23T19:29:08.5039652Z * [new branch] params-separation-attempt -> origin/params-separation-attempt -2025-07-23T19:29:08.5041498Z * [new branch] prefetch-state -> origin/prefetch-state -2025-07-23T19:29:08.5044152Z * [new branch] prefetch-tries-conservative -> origin/prefetch-tries-conservative -2025-07-23T19:29:08.5046222Z * [new branch] prefetch-tries-more-aggr -> origin/prefetch-tries-more-aggr -2025-07-23T19:29:08.5048612Z * [new branch] prestate-lookup-account-storage-update -> origin/prestate-lookup-account-storage-update -2025-07-23T19:29:08.5050534Z * [new branch] push-gossip-feature-branch -> origin/push-gossip-feature-branch -2025-07-23T19:29:08.5052462Z * [new branch] push-gossip-feature-branch-foobar -> origin/push-gossip-feature-branch-foobar -2025-07-23T19:29:08.5055998Z * [new branch] qdm12/acp176/min-target-per-second-var -> origin/qdm12/acp176/min-target-per-second-var -2025-07-23T19:29:08.5057708Z * [new branch] qdm12/blockchain-upstream -> origin/qdm12/blockchain-upstream -2025-07-23T19:29:08.5059341Z * [new branch] qdm12/miner-upstream -> origin/qdm12/miner-upstream -2025-07-23T19:29:08.5062640Z * [new branch] qdm12/params/add-missing-checkprecompilescompatible -> origin/qdm12/params/add-missing-checkprecompilescompatible -2025-07-23T19:29:08.5064204Z * [new branch] qdm12/upstream-params -> origin/qdm12/upstream-params -2025-07-23T19:29:08.5066862Z * [new branch] race-tests-ci-master -> origin/race-tests-ci-master -2025-07-23T19:29:08.5069045Z * [new branch] rebase-v1.12.0 -> origin/rebase-v1.12.0 -2025-07-23T19:29:08.5071404Z * [new branch] reduce-coreth-state-usage -> origin/reduce-coreth-state-usage -2025-07-23T19:29:08.5073639Z * [new branch] refactor-ap1-checks -> origin/refactor-ap1-checks -2025-07-23T19:29:08.5076427Z * [new branch] refactor-block-verification -> origin/refactor-block-verification -2025-07-23T19:29:08.5078550Z * [new branch] refactor-gas -> origin/refactor-gas -2025-07-23T19:29:08.5080826Z * [new branch] refactor-proposer-vm -> origin/refactor-proposer-vm -2025-07-23T19:29:08.5083057Z * [new branch] refactor-statedb -> origin/refactor-statedb -2025-07-23T19:29:08.5085597Z * [new branch] refactor-vm-conflicts -> origin/refactor-vm-conflicts -2025-07-23T19:29:08.5087968Z * [new branch] register-p256v-precompile -> origin/register-p256v-precompile -2025-07-23T19:29:08.5090265Z * [new branch] remove-async-accept -> origin/remove-async-accept -2025-07-23T19:29:08.5092527Z * [new branch] remove-atomic -> origin/remove-atomic -2025-07-23T19:29:08.5095046Z * [new branch] remove-cb58 -> origin/remove-cb58 -2025-07-23T19:29:08.5097417Z * [new branch] remove-db-manager -> origin/remove-db-manager -2025-07-23T19:29:08.5099799Z * [new branch] remove-fork-compat-check -> origin/remove-fork-compat-check -2025-07-23T19:29:08.5102075Z * [new branch] remove-gasSelfdestructAP1 -> origin/remove-gasSelfdestructAP1 -2025-07-23T19:29:08.5104409Z * [new branch] remove-old-rules -> origin/remove-old-rules -2025-07-23T19:29:08.5107054Z * [new branch] remove-semaphore -> origin/remove-semaphore -2025-07-23T19:29:08.5109515Z * [new branch] remove-set-preference-warn-log -> origin/remove-set-preference-warn-log -2025-07-23T19:29:08.5112455Z * [new branch] remove-unused-interface-definition -> origin/remove-unused-interface-definition -2025-07-23T19:29:08.5114437Z * [new branch] rename-chains -> origin/rename-chains -2025-07-23T19:29:08.5116739Z * [new branch] rename-choices -> origin/rename-choices -2025-07-23T19:29:08.5118824Z * [new branch] rename-constants -> origin/rename-constants -2025-07-23T19:29:08.5122116Z * [new branch] repair-atomic-trie-root-height-map-measure-synchronous -> origin/repair-atomic-trie-root-height-map-measure-synchronous -2025-07-23T19:29:08.5123585Z * [new branch] repro-522 -> origin/repro-522 -2025-07-23T19:29:08.5126476Z * [new branch] repro-bloom -> origin/repro-bloom -2025-07-23T19:29:08.5128606Z * [new branch] reprocess-atomics -> origin/reprocess-atomics -2025-07-23T19:29:08.5130960Z * [new branch] reprocess-block-refactor-callexpert -> origin/reprocess-block-refactor-callexpert -2025-07-23T19:29:08.5132925Z * [new branch] reprocess-blocks -> origin/reprocess-blocks -2025-07-23T19:29:08.5135675Z * [new branch] reprocess-blocks-ap1-committed-gas -> origin/reprocess-blocks-ap1-committed-gas -2025-07-23T19:29:08.5137755Z * [new branch] reprocess-blocks-refactor-gas -> origin/reprocess-blocks-refactor-gas -2025-07-23T19:29:08.5139897Z * [new branch] reprocess-blocks-use-libevm -> origin/reprocess-blocks-use-libevm -2025-07-23T19:29:08.5142181Z * [new branch] reprocess-blocks-use-libevm-trace -> origin/reprocess-blocks-use-libevm-trace -2025-07-23T19:29:08.5144393Z * [new branch] reprocess-checkroots -> origin/reprocess-checkroots -2025-07-23T19:29:08.5146734Z * [new branch] return-vm-type -> origin/return-vm-type -2025-07-23T19:29:08.5149128Z * [new branch] rewrite-test-retry-logic -> origin/rewrite-test-retry-logic -2025-07-23T19:29:08.5152279Z * [new branch] rkuris/firewood-bootstrap-suggestions -> origin/rkuris/firewood-bootstrap-suggestions -2025-07-23T19:29:08.5154594Z * [new branch] sae-poc -> origin/sae-poc -2025-07-23T19:29:08.5157173Z * [new branch] script-reprocess -> origin/script-reprocess -2025-07-23T19:29:08.5159585Z * [new branch] script-reprocess-x -> origin/script-reprocess-x -2025-07-23T19:29:08.5161836Z * [new branch] script-reprocess-y -> origin/script-reprocess-y -2025-07-23T19:29:08.5164452Z * [new branch] sdk-push-gossip-interfaces -> origin/sdk-push-gossip-interfaces -2025-07-23T19:29:08.5166995Z * [new branch] seperate-atomic-pkg-base -> origin/seperate-atomic-pkg-base -2025-07-23T19:29:08.5169339Z * [new branch] simulations -> origin/simulations -2025-07-23T19:29:08.5171802Z * [new branch] snapserve-frequent-commits -> origin/snapserve-frequent-commits -2025-07-23T19:29:08.5174507Z * [new branch] snyk-fix-2b08d3d44bb91dc52bab15989aa0a542 -> origin/snyk-fix-2b08d3d44bb91dc52bab15989aa0a542 -2025-07-23T19:29:08.5176826Z * [new branch] subnet-evm-000 -> origin/subnet-evm-000 -2025-07-23T19:29:08.5179345Z * [new branch] subscribeToEvents -> origin/subscribeToEvents -2025-07-23T19:29:08.5181850Z * [new branch] support-multiple-code-hashes -> origin/support-multiple-code-hashes -2025-07-23T19:29:08.5184398Z * [new branch] sync-enabled-updateFrequency -> origin/sync-enabled-updateFrequency -2025-07-23T19:29:08.5186872Z * [new branch] sync-hacks -> origin/sync-hacks -2025-07-23T19:29:08.5189364Z * [new branch] sync-subnet-evm-branch -> origin/sync-subnet-evm-branch -2025-07-23T19:29:08.5191812Z * [new branch] sync-subnet-evm-ccff8037 -> origin/sync-subnet-evm-ccff8037 -2025-07-23T19:29:08.5194303Z * [new branch] test-atomic-syncer -> origin/test-atomic-syncer -2025-07-23T19:29:08.5196958Z * [new branch] test-atomic-syncer-with-cmd -> origin/test-atomic-syncer-with-cmd -2025-07-23T19:29:08.5199295Z * [new branch] test-avago -> origin/test-avago -2025-07-23T19:29:08.5201681Z * [new branch] test-cleanup -> origin/test-cleanup -2025-07-23T19:29:08.5204521Z * [new branch] toEngine -> origin/toEngine -2025-07-23T19:29:08.5207094Z * [new branch] trie-benchmarks -> origin/trie-benchmarks -2025-07-23T19:29:08.5209550Z * [new branch] trie-prefetcher-alt -> origin/trie-prefetcher-alt -2025-07-23T19:29:08.5212683Z * [new branch] tsachi/acp118-nodeid -> origin/tsachi/acp118-nodeid -2025-07-23T19:29:08.5214890Z * [new branch] tsachi/gossip-mempool -> origin/tsachi/gossip-mempool -2025-07-23T19:29:08.5217278Z * [new branch] tx-lookup-skip -> origin/tx-lookup-skip -2025-07-23T19:29:08.5219799Z * [new branch] unexport-visitor -> origin/unexport-visitor -2025-07-23T19:29:08.5222227Z * [new branch] update-avago -> origin/update-avago -2025-07-23T19:29:08.5224868Z * [new branch] update-avago-telepoter -> origin/update-avago-telepoter -2025-07-23T19:29:08.5227214Z * [new branch] update-comment -> origin/update-comment -2025-07-23T19:29:08.5229752Z * [new branch] updated-version -> origin/updated-version -2025-07-23T19:29:08.5232202Z * [new branch] upgrade2 -> origin/upgrade2 -2025-07-23T19:29:08.5234877Z * [new branch] use-libevm-extra -> origin/use-libevm-extra -2025-07-23T19:29:08.5237349Z * [new branch] use-libevm-snapshot-blockhashes -> origin/use-libevm-snapshot-blockhashes -2025-07-23T19:29:08.5239914Z * [new branch] use-libevm-statedb-backends-optional-params -> origin/use-libevm-statedb-backends-optional-params -2025-07-23T19:29:08.5242167Z * [new branch] use-libevm-statedb-statedb -> origin/use-libevm-statedb-statedb -2025-07-23T19:29:08.5244900Z * [new branch] use-libevm-statedb-statedb-blockchain -> origin/use-libevm-statedb-statedb-blockchain -2025-07-23T19:29:08.5247359Z * [new branch] use-upstream-log -> origin/use-upstream-log -2025-07-23T19:29:08.5249811Z * [new branch] v0.11.7-release-notes -> origin/v0.11.7-release-notes -2025-07-23T19:29:08.5252402Z * [new branch] validator-gossiper -> origin/validator-gossiper -2025-07-23T19:29:08.5255027Z * [new branch] vm-integration-fixture -> origin/vm-integration-fixture -2025-07-23T19:29:08.5257577Z * [new branch] warp-test-test -> origin/warp-test-test -2025-07-23T19:29:08.5259998Z * [new branch] wip-branch -> origin/wip-branch -2025-07-23T19:29:08.5262493Z * [new branch] xxx-bench-storagetrie -> origin/xxx-bench-storagetrie -2025-07-23T19:29:08.5265041Z * [new branch] xxx-bench-storagetrie-2 -> origin/xxx-bench-storagetrie-2 -2025-07-23T19:29:08.5267987Z * [new branch] yacovm/subscriptions -> origin/yacovm/subscriptions -2025-07-23T19:29:08.5269701Z * [new tag] app-error-0.12.9 -> app-error-0.12.9 -2025-07-23T19:29:08.5271494Z * [new tag] remove-crosschain-coreth -> remove-crosschain-coreth -2025-07-23T19:29:08.5272740Z * [new tag] update-id -> update-id -2025-07-23T19:29:08.5274231Z * [new tag] v0.1.0 -> v0.1.0 -2025-07-23T19:29:08.5275486Z * [new tag] v0.10.0 -> v0.10.0 -2025-07-23T19:29:08.5276844Z * [new tag] v0.10.0-rc.0 -> v0.10.0-rc.0 -2025-07-23T19:29:08.5278365Z * [new tag] v0.10.0-rc.1 -> v0.10.0-rc.1 -2025-07-23T19:29:08.5279643Z * [new tag] v0.10.0-rc.2 -> v0.10.0-rc.2 -2025-07-23T19:29:08.5280956Z * [new tag] v0.10.1 -> v0.10.1 -2025-07-23T19:29:08.5282321Z * [new tag] v0.10.1-patch -> v0.10.1-patch -2025-07-23T19:29:08.5283717Z * [new tag] v0.10.1-rc.0 -> v0.10.1-rc.0 -2025-07-23T19:29:08.5285340Z * [new tag] v0.10.1-rc.0-patch -> v0.10.1-rc.0-patch -2025-07-23T19:29:08.5287026Z * [new tag] v0.11.0 -> v0.11.0 -2025-07-23T19:29:08.5288230Z * [new tag] v0.11.0-rc.0 -> v0.11.0-rc.0 -2025-07-23T19:29:08.5289618Z * [new tag] v0.11.0-rc.0-patch -> v0.11.0-rc.0-patch -2025-07-23T19:29:08.5291182Z * [new tag] v0.11.0-rc.1 -> v0.11.0-rc.1 -2025-07-23T19:29:08.5292396Z * [new tag] v0.11.0-rc.2 -> v0.11.0-rc.2 -2025-07-23T19:29:08.5293737Z * [new tag] v0.11.0-rc.3 -> v0.11.0-rc.3 -2025-07-23T19:29:08.5295742Z * [new tag] v0.11.0-rc.4 -> v0.11.0-rc.4 -2025-07-23T19:29:08.5296976Z * [new tag] v0.11.0-rc.4-patch -> v0.11.0-rc.4-patch -2025-07-23T19:29:08.5298282Z * [new tag] v0.11.1 -> v0.11.1 -2025-07-23T19:29:08.5299644Z * [new tag] v0.11.1-rc.0 -> v0.11.1-rc.0 -2025-07-23T19:29:08.5301028Z * [new tag] v0.11.1-rc.1 -> v0.11.1-rc.1 -2025-07-23T19:29:08.5302416Z * [new tag] v0.11.1-rc.2 -> v0.11.1-rc.2 -2025-07-23T19:29:08.5304075Z * [new tag] v0.11.1-rc.3 -> v0.11.1-rc.3 -2025-07-23T19:29:08.5305492Z * [new tag] v0.11.1-rc.4 -> v0.11.1-rc.4 -2025-07-23T19:29:08.5306705Z * [new tag] v0.11.1-rc.5 -> v0.11.1-rc.5 -2025-07-23T19:29:08.5307948Z * [new tag] v0.11.1-rc.6 -> v0.11.1-rc.6 -2025-07-23T19:29:08.5309485Z * [new tag] v0.11.1-rc.7 -> v0.11.1-rc.7 -2025-07-23T19:29:08.5310783Z * [new tag] v0.11.2 -> v0.11.2 -2025-07-23T19:29:08.5312029Z * [new tag] v0.11.2-rc.0 -> v0.11.2-rc.0 -2025-07-23T19:29:08.5313806Z * [new tag] v0.11.3 -> v0.11.3 -2025-07-23T19:29:08.5315194Z * [new tag] v0.11.3-rc.0 -> v0.11.3-rc.0 -2025-07-23T19:29:08.5316403Z * [new tag] v0.11.3-rc.1 -> v0.11.3-rc.1 -2025-07-23T19:29:08.5318055Z * [new tag] v0.11.4 -> v0.11.4 -2025-07-23T19:29:08.5319308Z * [new tag] v0.11.4-rc.0 -> v0.11.4-rc.0 -2025-07-23T19:29:08.5320839Z * [new tag] v0.11.5 -> v0.11.5 -2025-07-23T19:29:08.5321939Z * [new tag] v0.11.5-rc.0 -> v0.11.5-rc.0 -2025-07-23T19:29:08.5323667Z * [new tag] v0.11.6 -> v0.11.6 -2025-07-23T19:29:08.5324900Z * [new tag] v0.11.6-rc.0 -> v0.11.6-rc.0 -2025-07-23T19:29:08.5326649Z * [new tag] v0.11.7 -> v0.11.7 -2025-07-23T19:29:08.5328054Z * [new tag] v0.11.7-rc.0 -> v0.11.7-rc.0 -2025-07-23T19:29:08.5329618Z * [new tag] v0.11.7-rc.1 -> v0.11.7-rc.1 -2025-07-23T19:29:08.5330953Z * [new tag] v0.11.7-rc.2 -> v0.11.7-rc.2 -2025-07-23T19:29:08.5332159Z * [new tag] v0.11.7-rc.3 -> v0.11.7-rc.3 -2025-07-23T19:29:08.5333761Z * [new tag] v0.11.8 -> v0.11.8 -2025-07-23T19:29:08.5335292Z * [new tag] v0.11.8-rc.0 -> v0.11.8-rc.0 -2025-07-23T19:29:08.5336956Z * [new tag] v0.11.8-rc.1 -> v0.11.8-rc.1 -2025-07-23T19:29:08.5338217Z * [new tag] v0.11.8-rc.2 -> v0.11.8-rc.2 -2025-07-23T19:29:08.5339828Z * [new tag] v0.11.8-rc.3 -> v0.11.8-rc.3 -2025-07-23T19:29:08.5341153Z * [new tag] v0.11.9 -> v0.11.9 -2025-07-23T19:29:08.5342359Z * [new tag] v0.11.9-rc.0 -> v0.11.9-rc.0 -2025-07-23T19:29:08.5344152Z * [new tag] v0.12.0 -> v0.12.0 -2025-07-23T19:29:08.5345516Z * [new tag] v0.12.0-rc.0 -> v0.12.0-rc.0 -2025-07-23T19:29:08.5346915Z * [new tag] v0.12.0-rc.1 -> v0.12.0-rc.1 -2025-07-23T19:29:08.5348563Z * [new tag] v0.12.0-rc.2 -> v0.12.0-rc.2 -2025-07-23T19:29:08.5349820Z * [new tag] v0.12.1 -> v0.12.1 -2025-07-23T19:29:08.5351129Z * [new tag] v0.12.1-rc.0 -> v0.12.1-rc.0 -2025-07-23T19:29:08.5353026Z * [new tag] v0.12.10 -> v0.12.10 -2025-07-23T19:29:08.5354270Z * [new tag] v0.12.10-rc.0 -> v0.12.10-rc.0 -2025-07-23T19:29:08.5355995Z * [new tag] v0.12.10-rc.1 -> v0.12.10-rc.1 -2025-07-23T19:29:08.5357184Z * [new tag] v0.12.10-rc.2 -> v0.12.10-rc.2 -2025-07-23T19:29:08.5358940Z * [new tag] v0.12.10-rc.3 -> v0.12.10-rc.3 -2025-07-23T19:29:08.5360244Z * [new tag] v0.12.10-rc.4 -> v0.12.10-rc.4 -2025-07-23T19:29:08.5361432Z * [new tag] v0.12.10-rc.5 -> v0.12.10-rc.5 -2025-07-23T19:29:08.5363483Z * [new tag] v0.12.10-wip-bloom-metrics -> v0.12.10-wip-bloom-metrics -2025-07-23T19:29:08.5364774Z * [new tag] v0.12.11-rc.0 -> v0.12.11-rc.0 -2025-07-23T19:29:08.5366545Z * [new tag] v0.12.11-rc.1 -> v0.12.11-rc.1 -2025-07-23T19:29:08.5367898Z * [new tag] v0.12.11-rc.2 -> v0.12.11-rc.2 -2025-07-23T19:29:08.5369555Z * [new tag] v0.12.11-rc.3 -> v0.12.11-rc.3 -2025-07-23T19:29:08.5370855Z * [new tag] v0.12.2 -> v0.12.2 -2025-07-23T19:29:08.5372530Z * [new tag] v0.12.2-rc.0 -> v0.12.2-rc.0 -2025-07-23T19:29:08.5373804Z * [new tag] v0.12.3 -> v0.12.3 -2025-07-23T19:29:08.5375822Z * [new tag] v0.12.3-rc.0 -> v0.12.3-rc.0 -2025-07-23T19:29:08.5376940Z * [new tag] v0.12.3-rc.1 -> v0.12.3-rc.1 -2025-07-23T19:29:08.5378466Z * [new tag] v0.12.4 -> v0.12.4 -2025-07-23T19:29:08.5380108Z * [new tag] v0.12.4-rc.0 -> v0.12.4-rc.0 -2025-07-23T19:29:08.5381461Z * [new tag] v0.12.4-rc.1 -> v0.12.4-rc.1 -2025-07-23T19:29:08.5383157Z * [new tag] v0.12.4-rc.2 -> v0.12.4-rc.2 -2025-07-23T19:29:08.5384646Z * [new tag] v0.12.4-rc.3 -> v0.12.4-rc.3 -2025-07-23T19:29:08.5385899Z * [new tag] v0.12.4-rc.4 -> v0.12.4-rc.4 -2025-07-23T19:29:08.5387584Z * [new tag] v0.12.5 -> v0.12.5 -2025-07-23T19:29:08.5388938Z * [new tag] v0.12.5-rc.0 -> v0.12.5-rc.0 -2025-07-23T19:29:08.5390492Z * [new tag] v0.12.5-rc.1 -> v0.12.5-rc.1 -2025-07-23T19:29:08.5392029Z * [new tag] v0.12.5-rc.2 -> v0.12.5-rc.2 -2025-07-23T19:29:08.5393387Z * [new tag] v0.12.5-rc.3 -> v0.12.5-rc.3 -2025-07-23T19:29:08.5395218Z * [new tag] v0.12.5-rc.4 -> v0.12.5-rc.4 -2025-07-23T19:29:08.5396516Z * [new tag] v0.12.5-rc.5 -> v0.12.5-rc.5 -2025-07-23T19:29:08.5398161Z * [new tag] v0.12.5-rc.6 -> v0.12.5-rc.6 -2025-07-23T19:29:08.5399524Z * [new tag] v0.12.6 -> v0.12.6 -2025-07-23T19:29:08.5401136Z * [new tag] v0.12.6-rc.0 -> v0.12.6-rc.0 -2025-07-23T19:29:08.5402287Z * [new tag] v0.12.6-rc.1 -> v0.12.6-rc.1 -2025-07-23T19:29:08.5404045Z * [new tag] v0.12.6-rc.2 -> v0.12.6-rc.2 -2025-07-23T19:29:08.5405744Z * [new tag] v0.12.7 -> v0.12.7 -2025-07-23T19:29:08.5407137Z * [new tag] v0.12.7-rc.0 -> v0.12.7-rc.0 -2025-07-23T19:29:08.5408736Z * [new tag] v0.12.7-rc.1 -> v0.12.7-rc.1 -2025-07-23T19:29:08.5410269Z * [new tag] v0.12.8-rc.0 -> v0.12.8-rc.0 -2025-07-23T19:29:08.5411689Z * [new tag] v0.12.8-rc.1 -> v0.12.8-rc.1 -2025-07-23T19:29:08.5413334Z * [new tag] v0.12.9-rc.0 -> v0.12.9-rc.0 -2025-07-23T19:29:08.5414816Z * [new tag] v0.12.9-rc.1 -> v0.12.9-rc.1 -2025-07-23T19:29:08.5416017Z * [new tag] v0.12.9-rc.2 -> v0.12.9-rc.2 -2025-07-23T19:29:08.5417890Z * [new tag] v0.12.9-rc.3 -> v0.12.9-rc.3 -2025-07-23T19:29:08.5419242Z * [new tag] v0.12.9-rc.4 -> v0.12.9-rc.4 -2025-07-23T19:29:08.5420887Z * [new tag] v0.12.9-rc.5 -> v0.12.9-rc.5 -2025-07-23T19:29:08.5422563Z * [new tag] v0.12.9-rc.6 -> v0.12.9-rc.6 -2025-07-23T19:29:08.5424095Z * [new tag] v0.12.9-rc.7 -> v0.12.9-rc.7 -2025-07-23T19:29:08.5425836Z * [new tag] v0.12.9-rc.8 -> v0.12.9-rc.8 -2025-07-23T19:29:08.5427131Z * [new tag] v0.12.9-rc.9 -> v0.12.9-rc.9 -2025-07-23T19:29:08.5428872Z * [new tag] v0.13.0-rc.0 -> v0.13.0-rc.0 -2025-07-23T19:29:08.5430280Z * [new tag] v0.13.1 -> v0.13.1 -2025-07-23T19:29:08.5431945Z * [new tag] v0.13.1-rc.0 -> v0.13.1-rc.0 -2025-07-23T19:29:08.5433350Z * [new tag] v0.13.1-rc.1 -> v0.13.1-rc.1 -2025-07-23T19:29:08.5434972Z * [new tag] v0.13.1-rc.2 -> v0.13.1-rc.2 -2025-07-23T19:29:08.5436601Z * [new tag] v0.13.1-rc.3 -> v0.13.1-rc.3 -2025-07-23T19:29:08.5437951Z * [new tag] v0.13.1-rc.4 -> v0.13.1-rc.4 -2025-07-23T19:29:08.5439711Z * [new tag] v0.13.1-rc.5 -> v0.13.1-rc.5 -2025-07-23T19:29:08.5441300Z * [new tag] v0.13.2 -> v0.13.2 -2025-07-23T19:29:08.5442664Z * [new tag] v0.13.2-rc.0 -> v0.13.2-rc.0 -2025-07-23T19:29:08.5444302Z * [new tag] v0.13.2-rc.1 -> v0.13.2-rc.1 -2025-07-23T19:29:08.5445845Z * [new tag] v0.13.2-rc.2 -> v0.13.2-rc.2 -2025-07-23T19:29:08.5447679Z * [new tag] v0.13.2-stake-sampling -> v0.13.2-stake-sampling -2025-07-23T19:29:08.5449367Z * [new tag] v0.13.2-stake-sampling.2 -> v0.13.2-stake-sampling.2 -2025-07-23T19:29:08.5450771Z * [new tag] v0.13.3 -> v0.13.3 -2025-07-23T19:29:08.5452570Z * [new tag] v0.13.3-rc.0 -> v0.13.3-rc.0 -2025-07-23T19:29:08.5454347Z * [new tag] v0.13.3-rc.1 -> v0.13.3-rc.1 -2025-07-23T19:29:08.5456267Z * [new tag] v0.13.3-rc.2 -> v0.13.3-rc.2 -2025-07-23T19:29:08.5457923Z * [new tag] v0.13.4 -> v0.13.4 -2025-07-23T19:29:08.5459553Z * [new tag] v0.13.4-connect-self -> v0.13.4-connect-self -2025-07-23T19:29:08.5461251Z * [new tag] v0.13.4-geth-1.13.8 -> v0.13.4-geth-1.13.8 -2025-07-23T19:29:08.5462937Z * [new tag] v0.13.4-rc.0 -> v0.13.4-rc.0 -2025-07-23T19:29:08.5464737Z * [new tag] v0.13.5 -> v0.13.5 -2025-07-23T19:29:08.5466443Z * [new tag] v0.13.5-rc.0 -> v0.13.5-rc.0 -2025-07-23T19:29:08.5468153Z * [new tag] v0.13.5-remove-optional-gatherer -> v0.13.5-remove-optional-gatherer -2025-07-23T19:29:08.5469661Z * [new tag] v0.13.5-remove-optional-gatherer.2 -> v0.13.5-remove-optional-gatherer.2 -2025-07-23T19:29:08.5471194Z * [new tag] v0.13.6-rc.0 -> v0.13.6-rc.0 -2025-07-23T19:29:08.5472980Z * [new tag] v0.13.6-rc.1 -> v0.13.6-rc.1 -2025-07-23T19:29:08.5474854Z * [new tag] v0.13.6-remove-status -> v0.13.6-remove-status -2025-07-23T19:29:08.5476501Z * [new tag] v0.13.7 -> v0.13.7 -2025-07-23T19:29:08.5478214Z * [new tag] v0.13.7-acp-118-handlers -> v0.13.7-acp-118-handlers -2025-07-23T19:29:08.5479561Z * [new tag] v0.13.7-fixed-genesis-upgrade -> v0.13.7-fixed-genesis-upgrade -2025-07-23T19:29:08.5481517Z * [new tag] v0.13.7-rc.0 -> v0.13.7-rc.0 -2025-07-23T19:29:08.5482887Z * [new tag] v0.13.7-remove-status -> v0.13.7-remove-status -2025-07-23T19:29:08.5484796Z * [new tag] v0.13.8 -> v0.13.8 -2025-07-23T19:29:08.5486571Z * [new tag] v0.13.8-fix-genesis-upgrade -> v0.13.8-fix-genesis-upgrade -2025-07-23T19:29:08.5487998Z * [new tag] v0.13.8-fixed-genesis-upgrade -> v0.13.8-fixed-genesis-upgrade -2025-07-23T19:29:08.5489736Z * [new tag] v0.13.9-rc.0 -> v0.13.9-rc.0 -2025-07-23T19:29:08.5491131Z * [new tag] v0.13.9-rc.1 -> v0.13.9-rc.1 -2025-07-23T19:29:08.5493118Z * [new tag] v0.13.9-rc.2-encapsulate-signer -> v0.13.9-rc.2-encapsulate-signer -2025-07-23T19:29:08.5494861Z * [new tag] v0.13.9-rc.3-acp118-nodeid -> v0.13.9-rc.3-acp118-nodeid -2025-07-23T19:29:08.5496620Z * [new tag] v0.13.9-rc.3-acp118-nodeid2 -> v0.13.9-rc.3-acp118-nodeid2 -2025-07-23T19:29:08.5498018Z * [new tag] v0.13.9-rc.3-acp118-nodeid3 -> v0.13.9-rc.3-acp118-nodeid3 -2025-07-23T19:29:08.5500072Z * [new tag] v0.14.0 -> v0.14.0 -2025-07-23T19:29:08.5501744Z * [new tag] v0.14.1-acp-176.0 -> v0.14.1-acp-176.0 -2025-07-23T19:29:08.5503410Z * [new tag] v0.14.1-acp-176.1 -> v0.14.1-acp-176.1 -2025-07-23T19:29:08.5505516Z * [new tag] v0.14.1-libevm.rc.1 -> v0.14.1-libevm.rc.1 -2025-07-23T19:29:08.5507249Z * [new tag] v0.14.1-libevm.rc.2 -> v0.14.1-libevm.rc.2 -2025-07-23T19:29:08.5508921Z * [new tag] v0.14.1-rc.0 -> v0.14.1-rc.0 -2025-07-23T19:29:08.5510593Z * [new tag] v0.14.1-rc.1 -> v0.14.1-rc.1 -2025-07-23T19:29:08.5512275Z * [new tag] v0.14.1-rc.2 -> v0.14.1-rc.2 -2025-07-23T19:29:08.5514125Z * [new tag] v0.14.1-rc.3 -> v0.14.1-rc.3 -2025-07-23T19:29:08.5516282Z * [new tag] v0.14.1-rename-fortuna.0 -> v0.14.1-rename-fortuna.0 -2025-07-23T19:29:08.5517727Z * [new tag] v0.14.1-update-fee-api.0 -> v0.14.1-update-fee-api.0 -2025-07-23T19:29:08.5519584Z * [new tag] v0.14.2-verify-interface -> v0.14.2-verify-interface -2025-07-23T19:29:08.5521366Z * [new tag] v0.14.2-verify-interface2 -> v0.14.2-verify-interface2 -2025-07-23T19:29:08.5523104Z * [new tag] v0.14.2-verify-interface3 -> v0.14.2-verify-interface3 -2025-07-23T19:29:08.5524994Z * [new tag] v0.14.2-verify-interface4 -> v0.14.2-verify-interface4 -2025-07-23T19:29:08.5526807Z * [new tag] v0.14.2-verify-interface5 -> v0.14.2-verify-interface5 -2025-07-23T19:29:08.5528269Z * [new tag] v0.14.2-verify-interface6 -> v0.14.2-verify-interface6 -2025-07-23T19:29:08.5530023Z * [new tag] v0.15.0 -> v0.15.0 -2025-07-23T19:29:08.5531781Z * [new tag] v0.15.0-rc.0 -> v0.15.0-rc.0 -2025-07-23T19:29:08.5533161Z * [new tag] v0.15.0-rc.1 -> v0.15.0-rc.1 -2025-07-23T19:29:08.5535213Z * [new tag] v0.15.1 -> v0.15.1 -2025-07-23T19:29:08.5537042Z * [new tag] v0.15.1-rc.0 -> v0.15.1-rc.0 -2025-07-23T19:29:08.5538602Z * [new tag] v0.15.1-rc.1 -> v0.15.1-rc.1 -2025-07-23T19:29:08.5540455Z * [new tag] v0.15.2 -> v0.15.2 -2025-07-23T19:29:08.5542235Z * [new tag] v0.15.2-rc.0 -> v0.15.2-rc.0 -2025-07-23T19:29:08.5544131Z * [new tag] v0.15.3-rc.0 -> v0.15.3-rc.0 -2025-07-23T19:29:08.5545930Z * [new tag] v0.15.3-rc.1 -> v0.15.3-rc.1 -2025-07-23T19:29:08.5547561Z * [new tag] v0.2.0 -> v0.2.0 -2025-07-23T19:29:08.5549216Z * [new tag] v0.2.1 -> v0.2.1 -2025-07-23T19:29:08.5551075Z * [new tag] v0.2.10 -> v0.2.10 -2025-07-23T19:29:08.5552434Z * [new tag] v0.2.11 -> v0.2.11 -2025-07-23T19:29:08.5554330Z * [new tag] v0.2.12 -> v0.2.12 -2025-07-23T19:29:08.5556782Z * [new tag] v0.2.12-rc.1 -> v0.2.12-rc.1 -2025-07-23T19:29:08.5558318Z * [new tag] v0.2.13 -> v0.2.13 -2025-07-23T19:29:08.5559818Z * [new tag] v0.2.14 -> v0.2.14 -2025-07-23T19:29:08.5561554Z * [new tag] v0.2.14-rc.1 -> v0.2.14-rc.1 -2025-07-23T19:29:08.5562916Z * [new tag] v0.2.15 -> v0.2.15 -2025-07-23T19:29:08.5564804Z * [new tag] v0.2.15-rc.1 -> v0.2.15-rc.1 -2025-07-23T19:29:08.5566147Z * [new tag] v0.2.15-rc.2 -> v0.2.15-rc.2 -2025-07-23T19:29:08.5568040Z * [new tag] v0.2.15-rc.3 -> v0.2.15-rc.3 -2025-07-23T19:29:08.5569329Z * [new tag] v0.2.15-rc.4 -> v0.2.15-rc.4 -2025-07-23T19:29:08.5570638Z * [new tag] v0.2.2 -> v0.2.2 -2025-07-23T19:29:08.5572352Z * [new tag] v0.2.3 -> v0.2.3 -2025-07-23T19:29:08.5573700Z * [new tag] v0.2.4 -> v0.2.4 -2025-07-23T19:29:08.5575746Z * [new tag] v0.2.5 -> v0.2.5 -2025-07-23T19:29:08.5577068Z * [new tag] v0.2.6 -> v0.2.6 -2025-07-23T19:29:08.5578599Z * [new tag] v0.2.7-rc.1 -> v0.2.7-rc.1 -2025-07-23T19:29:08.5580153Z * [new tag] v0.2.7-rc.2 -> v0.2.7-rc.2 -2025-07-23T19:29:08.5581620Z * [new tag] v0.2.7-rc.3 -> v0.2.7-rc.3 -2025-07-23T19:29:08.5583239Z * [new tag] v0.2.7-rc.4 -> v0.2.7-rc.4 -2025-07-23T19:29:08.5584820Z * [new tag] v0.2.8 -> v0.2.8 -2025-07-23T19:29:08.5586513Z * [new tag] v0.2.8-rc.1 -> v0.2.8-rc.1 -2025-07-23T19:29:08.5588065Z * [new tag] v0.2.8-rc.2 -> v0.2.8-rc.2 -2025-07-23T19:29:08.5589420Z * [new tag] v0.2.8-rc.3 -> v0.2.8-rc.3 -2025-07-23T19:29:08.5591150Z * [new tag] v0.2.8-rc.4 -> v0.2.8-rc.4 -2025-07-23T19:29:08.5592476Z * [new tag] v0.2.8-rc.5 -> v0.2.8-rc.5 -2025-07-23T19:29:08.5594299Z * [new tag] v0.2.8-rc.6 -> v0.2.8-rc.6 -2025-07-23T19:29:08.5596072Z * [new tag] v0.3.0-rc.1 -> v0.3.0-rc.1 -2025-07-23T19:29:08.5597602Z * [new tag] v0.3.0-rc.2 -> v0.3.0-rc.2 -2025-07-23T19:29:08.5599305Z * [new tag] v0.3.0-rc.3 -> v0.3.0-rc.3 -2025-07-23T19:29:08.5600509Z * [new tag] v0.3.0-rc.4 -> v0.3.0-rc.4 -2025-07-23T19:29:08.5602272Z * [new tag] v0.3.0-rc.5 -> v0.3.0-rc.5 -2025-07-23T19:29:08.5604040Z * [new tag] v0.3.0-rc.6 -> v0.3.0-rc.6 -2025-07-23T19:29:08.5605691Z * [new tag] v0.3.1 -> v0.3.1 -2025-07-23T19:29:08.5607311Z * [new tag] v0.3.1-rc.1 -> v0.3.1-rc.1 -2025-07-23T19:29:08.5608711Z * [new tag] v0.3.1-rc.2 -> v0.3.1-rc.2 -2025-07-23T19:29:08.5610452Z * [new tag] v0.3.10 -> v0.3.10 -2025-07-23T19:29:08.5611825Z * [new tag] v0.3.11 -> v0.3.11 -2025-07-23T19:29:08.5613386Z * [new tag] v0.3.11-update-id -> v0.3.11-update-id -2025-07-23T19:29:08.5614844Z * [new tag] v0.3.11-update-id-2 -> v0.3.11-update-id-2 -2025-07-23T19:29:08.5616732Z * [new tag] v0.3.11-update-id-3 -> v0.3.11-update-id-3 -2025-07-23T19:29:08.5618078Z * [new tag] v0.3.12 -> v0.3.12 -2025-07-23T19:29:08.5620166Z * [new tag] v0.3.12-id-update -> v0.3.12-id-update -2025-07-23T19:29:08.5621279Z * [new tag] v0.3.13 -> v0.3.13 -2025-07-23T19:29:08.5623060Z * [new tag] v0.3.14 -> v0.3.14 -2025-07-23T19:29:08.5624893Z * [new tag] v0.3.15 -> v0.3.15 -2025-07-23T19:29:08.5626579Z * [new tag] v0.3.15-rc.1 -> v0.3.15-rc.1 -2025-07-23T19:29:08.5628155Z * [new tag] v0.3.15-rc.2 -> v0.3.15-rc.2 -2025-07-23T19:29:08.5629936Z * [new tag] v0.3.16 -> v0.3.16 -2025-07-23T19:29:08.5631594Z * [new tag] v0.3.17 -> v0.3.17 -2025-07-23T19:29:08.5633228Z * [new tag] v0.3.17-rc.1 -> v0.3.17-rc.1 -2025-07-23T19:29:08.5634736Z * [new tag] v0.3.18 -> v0.3.18 -2025-07-23T19:29:08.5636650Z * [new tag] v0.3.18-rc.1 -> v0.3.18-rc.1 -2025-07-23T19:29:08.5638343Z * [new tag] v0.3.18-rc.2 -> v0.3.18-rc.2 -2025-07-23T19:29:08.5639961Z * [new tag] v0.3.19 -> v0.3.19 -2025-07-23T19:29:08.5641598Z * [new tag] v0.3.19-rc.1 -> v0.3.19-rc.1 -2025-07-23T19:29:08.5643364Z * [new tag] v0.3.2 -> v0.3.2 -2025-07-23T19:29:08.5645341Z * [new tag] v0.3.20 -> v0.3.20 -2025-07-23T19:29:08.5647202Z * [new tag] v0.3.20-rc.1 -> v0.3.20-rc.1 -2025-07-23T19:29:08.5669159Z * [new tag] v0.3.20-rc.2 -> v0.3.20-rc.2 -2025-07-23T19:29:08.5675188Z * [new tag] v0.3.20-rc.3 -> v0.3.20-rc.3 -2025-07-23T19:29:08.5675943Z * [new tag] v0.3.20-rc.4 -> v0.3.20-rc.4 -2025-07-23T19:29:08.5676601Z * [new tag] v0.3.21 -> v0.3.21 -2025-07-23T19:29:08.5677264Z * [new tag] v0.3.21-rc.1 -> v0.3.21-rc.1 -2025-07-23T19:29:08.5677922Z * [new tag] v0.3.22 -> v0.3.22 -2025-07-23T19:29:08.5678550Z * [new tag] v0.3.23 -> v0.3.23 -2025-07-23T19:29:08.5679172Z * [new tag] v0.3.24 -> v0.3.24 -2025-07-23T19:29:08.5679806Z * [new tag] v0.3.24-rc.1 -> v0.3.24-rc.1 -2025-07-23T19:29:08.5680463Z * [new tag] v0.3.25 -> v0.3.25 -2025-07-23T19:29:08.5681103Z * [new tag] v0.3.25-rc.1 -> v0.3.25-rc.1 -2025-07-23T19:29:08.5681778Z * [new tag] v0.3.26 -> v0.3.26 -2025-07-23T19:29:08.5682440Z * [new tag] v0.3.27 -> v0.3.27 -2025-07-23T19:29:08.5683101Z * [new tag] v0.3.27-rc.1 -> v0.3.27-rc.1 -2025-07-23T19:29:08.5683756Z * [new tag] v0.3.3-rc.1 -> v0.3.3-rc.1 -2025-07-23T19:29:08.5684621Z * [new tag] v0.3.3-rc.2 -> v0.3.3-rc.2 -2025-07-23T19:29:08.5685294Z * [new tag] v0.3.3-rc.3 -> v0.3.3-rc.3 -2025-07-23T19:29:08.5685988Z * [new tag] v0.3.3-rc.4 -> v0.3.3-rc.4 -2025-07-23T19:29:08.5686626Z * [new tag] v0.3.3-rc.5 -> v0.3.3-rc.5 -2025-07-23T19:29:08.5687258Z * [new tag] v0.3.3-rc.6 -> v0.3.3-rc.6 -2025-07-23T19:29:08.5687900Z * [new tag] v0.3.3-rc.7 -> v0.3.3-rc.7 -2025-07-23T19:29:08.5688523Z * [new tag] v0.3.4 -> v0.3.4 -2025-07-23T19:29:08.5689156Z * [new tag] v0.3.5 -> v0.3.5 -2025-07-23T19:29:08.5689785Z * [new tag] v0.3.5-rc.1 -> v0.3.5-rc.1 -2025-07-23T19:29:08.5690449Z * [new tag] v0.3.5-rc.2 -> v0.3.5-rc.2 -2025-07-23T19:29:08.5691929Z * [new tag] v0.3.5-rc.3 -> v0.3.5-rc.3 -2025-07-23T19:29:08.5693327Z * [new tag] v0.3.6 -> v0.3.6 -2025-07-23T19:29:08.5695733Z * [new tag] v0.3.7 -> v0.3.7 -2025-07-23T19:29:08.5697064Z * [new tag] v0.3.8 -> v0.3.8 -2025-07-23T19:29:08.5698624Z * [new tag] v0.3.9 -> v0.3.9 -2025-07-23T19:29:08.5700641Z * [new tag] v0.4.0 -> v0.4.0 -2025-07-23T19:29:08.5702234Z * [new tag] v0.4.0-rc.1 -> v0.4.0-rc.1 -2025-07-23T19:29:08.5704266Z * [new tag] v0.4.0-rc.2 -> v0.4.0-rc.2 -2025-07-23T19:29:08.5705976Z * [new tag] v0.4.0-rc.3 -> v0.4.0-rc.3 -2025-07-23T19:29:08.5707840Z * [new tag] v0.4.0-rc.4 -> v0.4.0-rc.4 -2025-07-23T19:29:08.5709364Z * [new tag] v0.4.0-rc.5 -> v0.4.0-rc.5 -2025-07-23T19:29:08.5711357Z * [new tag] v0.4.0-rc.6 -> v0.4.0-rc.6 -2025-07-23T19:29:08.5712931Z * [new tag] v0.4.0-rc.7 -> v0.4.0-rc.7 -2025-07-23T19:29:08.5715099Z * [new tag] v0.4.0-rc.8 -> v0.4.0-rc.8 -2025-07-23T19:29:08.5716595Z * [new tag] v0.4.1 -> v0.4.1 -2025-07-23T19:29:08.5718231Z * [new tag] v0.4.1-rc.1 -> v0.4.1-rc.1 -2025-07-23T19:29:08.5719992Z * [new tag] v0.4.2 -> v0.4.2 -2025-07-23T19:29:08.5722042Z * [new tag] v0.4.2-rc.1 -> v0.4.2-rc.1 -2025-07-23T19:29:08.5723588Z * [new tag] v0.4.2-rc.2 -> v0.4.2-rc.2 -2025-07-23T19:29:08.5725794Z * [new tag] v0.4.2-rc.3 -> v0.4.2-rc.3 -2025-07-23T19:29:08.5727254Z * [new tag] v0.4.2-rc.4 -> v0.4.2-rc.4 -2025-07-23T19:29:08.5729329Z * [new tag] v0.4.3-rc.1 -> v0.4.3-rc.1 -2025-07-23T19:29:08.5730855Z * [new tag] v0.4.3-rc.2 -> v0.4.3-rc.2 -2025-07-23T19:29:08.5732707Z * [new tag] v0.4.3-rc.3 -> v0.4.3-rc.3 -2025-07-23T19:29:08.5734462Z * [new tag] v0.4.3-rc.4 -> v0.4.3-rc.4 -2025-07-23T19:29:08.5736429Z * [new tag] v0.5.0 -> v0.5.0 -2025-07-23T19:29:08.5738357Z * [new tag] v0.5.0-rc.1 -> v0.5.0-rc.1 -2025-07-23T19:29:08.5739965Z * [new tag] v0.5.0-rc.2 -> v0.5.0-rc.2 -2025-07-23T19:29:08.5741856Z * [new tag] v0.5.1 -> v0.5.1 -2025-07-23T19:29:08.5743465Z * [new tag] v0.5.1-metervm -> v0.5.1-metervm -2025-07-23T19:29:08.5745271Z * [new tag] v0.5.1-metervm2 -> v0.5.1-metervm2 -2025-07-23T19:29:08.5747259Z * [new tag] v0.5.1-rc.1 -> v0.5.1-rc.1 -2025-07-23T19:29:08.5748532Z * [new tag] v0.5.1-rc.2 -> v0.5.1-rc.2 -2025-07-23T19:29:08.5750472Z * [new tag] v0.5.2 -> v0.5.2 -2025-07-23T19:29:08.5752081Z * [new tag] v0.5.2-pre-upgrade.1 -> v0.5.2-pre-upgrade.1 -2025-07-23T19:29:08.5753625Z * [new tag] v0.5.2-rc.1 -> v0.5.2-rc.1 -2025-07-23T19:29:08.5755918Z * [new tag] v0.5.2-rc.2 -> v0.5.2-rc.2 -2025-07-23T19:29:08.5757699Z * [new tag] v0.5.2-rc.3 -> v0.5.2-rc.3 -2025-07-23T19:29:08.5759245Z * [new tag] v0.5.2-rc.4 -> v0.5.2-rc.4 -2025-07-23T19:29:08.5761293Z * [new tag] v0.5.2-rc.5 -> v0.5.2-rc.5 -2025-07-23T19:29:08.5762810Z * [new tag] v0.5.3 -> v0.5.3 -2025-07-23T19:29:08.5764522Z * [new tag] v0.5.3-metervm3 -> v0.5.3-metervm3 -2025-07-23T19:29:08.5766395Z * [new tag] v0.5.3-metervm4 -> v0.5.3-metervm4 -2025-07-23T19:29:08.5768188Z * [new tag] v0.5.3-rc.1 -> v0.5.3-rc.1 -2025-07-23T19:29:08.5769685Z * [new tag] v0.5.3-rc.2 -> v0.5.3-rc.2 -2025-07-23T19:29:08.5771688Z * [new tag] v0.5.4 -> v0.5.4 -2025-07-23T19:29:08.5773518Z * [new tag] v0.5.4-rc.1 -> v0.5.4-rc.1 -2025-07-23T19:29:08.5775617Z * [new tag] v0.5.4-rc.10 -> v0.5.4-rc.10 -2025-07-23T19:29:08.5777398Z * [new tag] v0.5.4-rc.11 -> v0.5.4-rc.11 -2025-07-23T19:29:08.5779453Z * [new tag] v0.5.4-rc.12 -> v0.5.4-rc.12 -2025-07-23T19:29:08.5780799Z * [new tag] v0.5.4-rc.13 -> v0.5.4-rc.13 -2025-07-23T19:29:08.5782903Z * [new tag] v0.5.4-rc.2 -> v0.5.4-rc.2 -2025-07-23T19:29:08.5785028Z * [new tag] v0.5.4-rc.3 -> v0.5.4-rc.3 -2025-07-23T19:29:08.5786980Z * [new tag] v0.5.4-rc.4 -> v0.5.4-rc.4 -2025-07-23T19:29:08.5788891Z * [new tag] v0.5.4-rc.5 -> v0.5.4-rc.5 -2025-07-23T19:29:08.5791007Z * [new tag] v0.5.4-rc.6 -> v0.5.4-rc.6 -2025-07-23T19:29:08.5792814Z * [new tag] v0.5.4-rc.7 -> v0.5.4-rc.7 -2025-07-23T19:29:08.5794491Z * [new tag] v0.5.4-rc.8 -> v0.5.4-rc.8 -2025-07-23T19:29:08.5796833Z * [new tag] v0.5.4-rc.9 -> v0.5.4-rc.9 -2025-07-23T19:29:08.5798219Z * [new tag] v0.5.5 -> v0.5.5 -2025-07-23T19:29:08.5800155Z * [new tag] v0.5.5-rc.0 -> v0.5.5-rc.0 -2025-07-23T19:29:08.5801942Z * [new tag] v0.5.5-rc.1 -> v0.5.5-rc.1 -2025-07-23T19:29:08.5804096Z * [new tag] v0.5.6 -> v0.5.6 -2025-07-23T19:29:08.5805938Z * [new tag] v0.5.6-rc.0 -> v0.5.6-rc.0 -2025-07-23T19:29:08.5807745Z * [new tag] v0.5.6-rc.1 -> v0.5.6-rc.1 -2025-07-23T19:29:08.5809592Z * [new tag] v0.5.6-rc.2 -> v0.5.6-rc.2 -2025-07-23T19:29:08.5811572Z * [new tag] v0.5.6-rc.3 -> v0.5.6-rc.3 -2025-07-23T19:29:08.5813365Z * [new tag] v0.5.6-rc.4 -> v0.5.6-rc.4 -2025-07-23T19:29:08.5815179Z * [new tag] v0.5.6-rc.5 -> v0.5.6-rc.5 -2025-07-23T19:29:08.5816652Z * [new tag] v0.5.6-rc.6 -> v0.5.6-rc.6 -2025-07-23T19:29:08.5818762Z * [new tag] v0.5.7 -> v0.5.7 -2025-07-23T19:29:08.5820582Z * [new tag] v0.5.7-rc.0 -> v0.5.7-rc.0 -2025-07-23T19:29:08.5822510Z * [new tag] v0.5.7-rc.1 -> v0.5.7-rc.1 -2025-07-23T19:29:08.5824835Z * [new tag] v0.6.0 -> v0.6.0 -2025-07-23T19:29:08.5826934Z * [new tag] v0.6.0-rc.0 -> v0.6.0-rc.0 -2025-07-23T19:29:08.5828305Z * [new tag] v0.6.0-rc.1 -> v0.6.0-rc.1 -2025-07-23T19:29:08.5830341Z * [new tag] v0.6.1 -> v0.6.1 -2025-07-23T19:29:08.5832061Z * [new tag] v0.6.1-rc.0 -> v0.6.1-rc.0 -2025-07-23T19:29:08.5834195Z * [new tag] v0.6.1-rc.1 -> v0.6.1-rc.1 -2025-07-23T19:29:08.5836267Z * [new tag] v0.6.1-rc.2 -> v0.6.1-rc.2 -2025-07-23T19:29:08.5837636Z * [new tag] v0.6.1-rc.3 -> v0.6.1-rc.3 -2025-07-23T19:29:08.5839742Z * [new tag] v0.6.2 -> v0.6.2 -2025-07-23T19:29:08.5841049Z * [new tag] v0.6.2-rc.0 -> v0.6.2-rc.0 -2025-07-23T19:29:08.5843061Z * [new tag] v0.6.3 -> v0.6.3 -2025-07-23T19:29:08.5844775Z * [new tag] v0.6.3-rc.0 -> v0.6.3-rc.0 -2025-07-23T19:29:08.5846760Z * [new tag] v0.6.3-rc.1 -> v0.6.3-rc.1 -2025-07-23T19:29:08.5848767Z * [new tag] v0.6.4-rc.0 -> v0.6.4-rc.0 -2025-07-23T19:29:08.5850681Z * [new tag] v0.7.0 -> v0.7.0 -2025-07-23T19:29:08.5853081Z * [new tag] v0.7.0-rc.0 -> v0.7.0-rc.0 -2025-07-23T19:29:08.5854490Z * [new tag] v0.7.0-rc.1 -> v0.7.0-rc.1 -2025-07-23T19:29:08.5856671Z * [new tag] v0.7.0-rc.10 -> v0.7.0-rc.10 -2025-07-23T19:29:08.5858177Z * [new tag] v0.7.0-rc.11 -> v0.7.0-rc.11 -2025-07-23T19:29:08.5859967Z * [new tag] v0.7.0-rc.12 -> v0.7.0-rc.12 -2025-07-23T19:29:08.5861707Z * [new tag] v0.7.0-rc.13 -> v0.7.0-rc.13 -2025-07-23T19:29:08.5863232Z * [new tag] v0.7.0-rc.14 -> v0.7.0-rc.14 -2025-07-23T19:29:08.5864823Z * [new tag] v0.7.0-rc.2 -> v0.7.0-rc.2 -2025-07-23T19:29:08.5866634Z * [new tag] v0.7.0-rc.3 -> v0.7.0-rc.3 -2025-07-23T19:29:08.5868276Z * [new tag] v0.7.0-rc.4 -> v0.7.0-rc.4 -2025-07-23T19:29:08.5869924Z * [new tag] v0.7.0-rc.5 -> v0.7.0-rc.5 -2025-07-23T19:29:08.5871741Z * [new tag] v0.7.0-rc.6 -> v0.7.0-rc.6 -2025-07-23T19:29:08.5873170Z * [new tag] v0.7.0-rc.8 -> v0.7.0-rc.8 -2025-07-23T19:29:08.5875094Z * [new tag] v0.7.0-rc.9 -> v0.7.0-rc.9 -2025-07-23T19:29:08.5876716Z * [new tag] v0.7.1 -> v0.7.1 -2025-07-23T19:29:08.5878440Z * [new tag] v0.7.1-rc.0 -> v0.7.1-rc.0 -2025-07-23T19:29:08.5879901Z * [new tag] v0.7.1-rc.1 -> v0.7.1-rc.1 -2025-07-23T19:29:08.5881147Z * [new tag] v0.7.1-rc.2 -> v0.7.1-rc.2 -2025-07-23T19:29:08.5882971Z * [new tag] v0.7.2 -> v0.7.2 -2025-07-23T19:29:08.5884306Z * [new tag] v0.7.2-rc.0 -> v0.7.2-rc.0 -2025-07-23T19:29:08.5885734Z * [new tag] v0.7.2-rc.1 -> v0.7.2-rc.1 -2025-07-23T19:29:08.5887322Z * [new tag] v0.7.3-rc.0 -> v0.7.3-rc.0 -2025-07-23T19:29:08.5888688Z * [new tag] v0.7.3-rc.1 -> v0.7.3-rc.1 -2025-07-23T19:29:08.5890462Z * [new tag] v0.7.3-rc.2 -> v0.7.3-rc.2 -2025-07-23T19:29:08.5891744Z * [new tag] v0.7.3-rc.3 -> v0.7.3-rc.3 -2025-07-23T19:29:08.5893621Z * [new tag] v0.7.4 -> v0.7.4 -2025-07-23T19:29:08.5894883Z * [new tag] v0.7.4-rc.0 -> v0.7.4-rc.0 -2025-07-23T19:29:08.5896309Z * [new tag] v0.7.4-rc.1 -> v0.7.4-rc.1 -2025-07-23T19:29:08.5897984Z * [new tag] v0.7.5 -> v0.7.5 -2025-07-23T19:29:08.5899239Z * [new tag] v0.7.5-rc.0 -> v0.7.5-rc.0 -2025-07-23T19:29:08.5900964Z * [new tag] v0.7.5-rc.1 -> v0.7.5-rc.1 -2025-07-23T19:29:08.5902066Z * [new tag] v0.7.5-rc.2 -> v0.7.5-rc.2 -2025-07-23T19:29:08.5903749Z * [new tag] v0.8.0 -> v0.8.0 -2025-07-23T19:29:08.5905587Z * [new tag] v0.8.0-rc.0 -> v0.8.0-rc.0 -2025-07-23T19:29:08.5907331Z * [new tag] v0.8.0-rc.1 -> v0.8.0-rc.1 -2025-07-23T19:29:08.5908777Z * [new tag] v0.8.0-rc.2 -> v0.8.0-rc.2 -2025-07-23T19:29:08.5910194Z * [new tag] v0.8.0-rc.3 -> v0.8.0-rc.3 -2025-07-23T19:29:08.5911940Z * [new tag] v0.8.1-rc.0 -> v0.8.1-rc.0 -2025-07-23T19:29:08.5913559Z * [new tag] v0.8.1-rc.1 -> v0.8.1-rc.1 -2025-07-23T19:29:08.5915119Z * [new tag] v0.8.1-rc.2 -> v0.8.1-rc.2 -2025-07-23T19:29:08.5917098Z * [new tag] v0.8.10 -> v0.8.10 -2025-07-23T19:29:08.5918273Z * [new tag] v0.8.10-rc.0 -> v0.8.10-rc.0 -2025-07-23T19:29:08.5928245Z * [new tag] v0.8.10-rc.1 -> v0.8.10-rc.1 -2025-07-23T19:29:08.5929883Z * [new tag] v0.8.10-rc.2 -> v0.8.10-rc.2 -2025-07-23T19:29:08.5931393Z * [new tag] v0.8.10-rc.3 -> v0.8.10-rc.3 -2025-07-23T19:29:08.5932761Z * [new tag] v0.8.10-rc.4 -> v0.8.10-rc.4 -2025-07-23T19:29:08.5934421Z * [new tag] v0.8.10-rc.5 -> v0.8.10-rc.5 -2025-07-23T19:29:08.5936309Z * [new tag] v0.8.10-rc.6 -> v0.8.10-rc.6 -2025-07-23T19:29:08.5937412Z * [new tag] v0.8.10-rc.7 -> v0.8.10-rc.7 -2025-07-23T19:29:08.5939132Z * [new tag] v0.8.11 -> v0.8.11 -2025-07-23T19:29:08.5940980Z * [new tag] v0.8.11-rc.0 -> v0.8.11-rc.0 -2025-07-23T19:29:08.5942014Z * [new tag] v0.8.11-rc.1 -> v0.8.11-rc.1 -2025-07-23T19:29:08.5943641Z * [new tag] v0.8.11-rc.10 -> v0.8.11-rc.10 -2025-07-23T19:29:08.5945103Z * [new tag] v0.8.11-rc.11 -> v0.8.11-rc.11 -2025-07-23T19:29:08.5946914Z * [new tag] v0.8.11-rc.2 -> v0.8.11-rc.2 -2025-07-23T19:29:08.5948371Z * [new tag] v0.8.11-rc.4 -> v0.8.11-rc.4 -2025-07-23T19:29:08.5950094Z * [new tag] v0.8.11-rc.5 -> v0.8.11-rc.5 -2025-07-23T19:29:08.5951152Z * [new tag] v0.8.11-rc.6 -> v0.8.11-rc.6 -2025-07-23T19:29:08.5952668Z * [new tag] v0.8.11-rc.7 -> v0.8.11-rc.7 -2025-07-23T19:29:08.5954784Z * [new tag] v0.8.11-rc.8 -> v0.8.11-rc.8 -2025-07-23T19:29:08.5957002Z * [new tag] v0.8.11-rc.9 -> v0.8.11-rc.9 -2025-07-23T19:29:08.5958638Z * [new tag] v0.8.12 -> v0.8.12 -2025-07-23T19:29:08.5961063Z * [new tag] v0.8.12-rc.0 -> v0.8.12-rc.0 -2025-07-23T19:29:08.5962524Z * [new tag] v0.8.12-rc.1 -> v0.8.12-rc.1 -2025-07-23T19:29:08.5964650Z * [new tag] v0.8.13 -> v0.8.13 -2025-07-23T19:29:08.5966628Z * [new tag] v0.8.13-rc.0 -> v0.8.13-rc.0 -2025-07-23T19:29:08.5968583Z * [new tag] v0.8.13-rc.1 -> v0.8.13-rc.1 -2025-07-23T19:29:08.5970175Z * [new tag] v0.8.13-rc.2 -> v0.8.13-rc.2 -2025-07-23T19:29:08.5971954Z * [new tag] v0.8.13-rc.3 -> v0.8.13-rc.3 -2025-07-23T19:29:08.5973676Z * [new tag] v0.8.13-rc.4 -> v0.8.13-rc.4 -2025-07-23T19:29:08.5975151Z * [new tag] v0.8.13-rc.5 -> v0.8.13-rc.5 -2025-07-23T19:29:08.5976868Z * [new tag] v0.8.14 -> v0.8.14 -2025-07-23T19:29:08.5978232Z * [new tag] v0.8.14-rc.0 -> v0.8.14-rc.0 -2025-07-23T19:29:08.5979621Z * [new tag] v0.8.15 -> v0.8.15 -2025-07-23T19:29:08.5981272Z * [new tag] v0.8.15-rc.0 -> v0.8.15-rc.0 -2025-07-23T19:29:08.5982527Z * [new tag] v0.8.15-rc.1 -> v0.8.15-rc.1 -2025-07-23T19:29:08.5983854Z * [new tag] v0.8.15-rc.2 -> v0.8.15-rc.2 -2025-07-23T19:29:08.5985783Z * [new tag] v0.8.16 -> v0.8.16 -2025-07-23T19:29:08.5987410Z * [new tag] v0.8.16-rc.0 -> v0.8.16-rc.0 -2025-07-23T19:29:08.5989165Z * [new tag] v0.8.16-rc.1 -> v0.8.16-rc.1 -2025-07-23T19:29:08.5990265Z * [new tag] v0.8.16-rc.2 -> v0.8.16-rc.2 -2025-07-23T19:29:08.5991963Z * [new tag] v0.8.2 -> v0.8.2 -2025-07-23T19:29:08.5993465Z * [new tag] v0.8.2-rc.0 -> v0.8.2-rc.0 -2025-07-23T19:29:08.5995074Z * [new tag] v0.8.3 -> v0.8.3 -2025-07-23T19:29:08.5997417Z * [new tag] v0.8.3-rc.0 -> v0.8.3-rc.0 -2025-07-23T19:29:08.5998837Z * [new tag] v0.8.3-rc.1 -> v0.8.3-rc.1 -2025-07-23T19:29:08.6000152Z * [new tag] v0.8.3-rc.2 -> v0.8.3-rc.2 -2025-07-23T19:29:08.6001933Z * [new tag] v0.8.3-rc.3 -> v0.8.3-rc.3 -2025-07-23T19:29:08.6003158Z * [new tag] v0.8.4 -> v0.8.4 -2025-07-23T19:29:08.6005011Z * [new tag] v0.8.4-rc.1 -> v0.8.4-rc.1 -2025-07-23T19:29:08.6006871Z * [new tag] v0.8.4-rc.2 -> v0.8.4-rc.2 -2025-07-23T19:29:08.6008255Z * [new tag] v0.8.4-rc.3 -> v0.8.4-rc.3 -2025-07-23T19:29:08.6010069Z * [new tag] v0.8.4-rc0 -> v0.8.4-rc0 -2025-07-23T19:29:08.6011297Z * [new tag] v0.8.5 -> v0.8.5 -2025-07-23T19:29:08.6012953Z * [new tag] v0.8.5-rc.0 -> v0.8.5-rc.0 -2025-07-23T19:29:08.6014421Z * [new tag] v0.8.5-rc.1 -> v0.8.5-rc.1 -2025-07-23T19:29:08.6015745Z * [new tag] v0.8.5-rc.2 -> v0.8.5-rc.2 -2025-07-23T19:29:08.6017912Z * [new tag] v0.8.6 -> v0.8.6 -2025-07-23T19:29:08.6018974Z * [new tag] v0.8.6-rc.0 -> v0.8.6-rc.0 -2025-07-23T19:29:08.6020356Z * [new tag] v0.8.6-rc.1 -> v0.8.6-rc.1 -2025-07-23T19:29:08.6021990Z * [new tag] v0.8.7 -> v0.8.7 -2025-07-23T19:29:08.6023391Z * [new tag] v0.8.7-rc.0 -> v0.8.7-rc.0 -2025-07-23T19:29:08.6025166Z * [new tag] v0.8.7-rc.1 -> v0.8.7-rc.1 -2025-07-23T19:29:08.6026373Z * [new tag] v0.8.7-rc.2 -> v0.8.7-rc.2 -2025-07-23T19:29:08.6028137Z * [new tag] v0.8.8 -> v0.8.8 -2025-07-23T19:29:08.6029270Z * [new tag] v0.8.8-rc.0 -> v0.8.8-rc.0 -2025-07-23T19:29:08.6031042Z * [new tag] v0.8.9 -> v0.8.9 -2025-07-23T19:29:08.6033463Z * [new tag] v0.8.9-rc.0 -> v0.8.9-rc.0 -2025-07-23T19:29:08.6036698Z * [new tag] v0.8.9-rc.1 -> v0.8.9-rc.1 -2025-07-23T19:29:08.6037344Z * [new tag] v0.9.0 -> v0.9.0 -2025-07-23T19:29:08.6037961Z * [new tag] v0.9.0-rc.0 -> v0.9.0-rc.0 -2025-07-23T19:29:08.6038604Z * [new tag] v0.9.0-rc.1 -> v0.9.0-rc.1 -2025-07-23T19:29:08.6039292Z * [new tag] v0.9.0-rc.11 -> v0.9.0-rc.11 -2025-07-23T19:29:08.6041164Z * [new tag] v0.9.0-rc.12 -> v0.9.0-rc.12 -2025-07-23T19:29:08.6042359Z * [new tag] v0.9.0-rc.13 -> v0.9.0-rc.13 -2025-07-23T19:29:08.6044326Z * [new tag] v0.9.0-rc.14 -> v0.9.0-rc.14 -2025-07-23T19:29:08.6046031Z * [new tag] v0.9.0-rc.2 -> v0.9.0-rc.2 -2025-07-23T19:29:08.6047378Z * [new tag] v0.9.0-rc.3 -> v0.9.0-rc.3 -2025-07-23T19:29:08.6049176Z * [new tag] v0.9.0-rc.4 -> v0.9.0-rc.4 -2025-07-23T19:29:08.6050604Z * [new tag] v0.9.0-rc.5 -> v0.9.0-rc.5 -2025-07-23T19:29:08.6052364Z * [new tag] v0.9.0-rc.6 -> v0.9.0-rc.6 -2025-07-23T19:29:08.6053618Z * [new tag] v0.9.0-rc.9 -> v0.9.0-rc.9 -2025-07-23T19:29:08.6056045Z * [new tag] with-avalanchego-test-pkg -> with-avalanchego-test-pkg -2025-07-23T19:29:08.6059198Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge -2025-07-23T19:29:08.6161530Z ##[endgroup] -2025-07-23T19:29:08.6162186Z ##[group]Determining the checkout info -2025-07-23T19:29:08.6162869Z ##[endgroup] -2025-07-23T19:29:08.6168732Z [command]/usr/bin/git sparse-checkout disable -2025-07-23T19:29:08.6210127Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig -2025-07-23T19:29:08.6236301Z ##[group]Checking out the ref -2025-07-23T19:29:08.6240655Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge -2025-07-23T19:29:08.7375146Z Note: switching to 'refs/remotes/pull/1065/merge'. -2025-07-23T19:29:08.7375897Z -2025-07-23T19:29:08.7376157Z You are in 'detached HEAD' state. You can look around, make experimental -2025-07-23T19:29:08.7376758Z changes and commit them, and you can discard any commits you make in this -2025-07-23T19:29:08.7377280Z state without impacting any branches by switching back to a branch. -2025-07-23T19:29:08.7377599Z -2025-07-23T19:29:08.7377805Z If you want to create a new branch to retain commits you create, you may -2025-07-23T19:29:08.7378317Z do so (now or later) by using -c with the switch command. Example: -2025-07-23T19:29:08.7378626Z -2025-07-23T19:29:08.7378753Z git switch -c -2025-07-23T19:29:08.7378986Z -2025-07-23T19:29:08.7379102Z Or undo this operation with: -2025-07-23T19:29:08.7379285Z -2025-07-23T19:29:08.7379390Z git switch - -2025-07-23T19:29:08.7379543Z -2025-07-23T19:29:08.7379794Z Turn off this advice by setting config variable advice.detachedHead to false -2025-07-23T19:29:08.7380128Z -2025-07-23T19:29:08.7380478Z HEAD is now at d85ec0364 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 -2025-07-23T19:29:08.7391905Z ##[endgroup] -2025-07-23T19:29:08.7433435Z [command]/usr/bin/git log -1 --format=%H -2025-07-23T19:29:08.7455300Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -2025-07-23T19:29:08.7667418Z ##[group]Run actions/setup-go@v5 -2025-07-23T19:29:08.7667662Z with: -2025-07-23T19:29:08.7667840Z go-version-file: go.mod -2025-07-23T19:29:08.7668050Z check-latest: false -2025-07-23T19:29:08.7668364Z token: *** -2025-07-23T19:29:08.7668529Z cache: true -2025-07-23T19:29:08.7668698Z ##[endgroup] -2025-07-23T19:29:08.9269082Z Setup go version spec 1.23.9 -2025-07-23T19:29:08.9280263Z Attempting to download 1.23.9... -2025-07-23T19:29:09.2290878Z matching 1.23.9... -2025-07-23T19:29:09.2332586Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz -2025-07-23T19:29:09.7498168Z Extracting Go... -2025-07-23T19:29:09.7602027Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/37ec91b0-76a2-4903-b265-0c32d531296b -f /home/runner/work/_temp/76e90d44-c8d9-4477-a2a6-b1069342d5ff -2025-07-23T19:29:11.3968705Z Successfully extracted go to /home/runner/work/_temp/37ec91b0-76a2-4903-b265-0c32d531296b -2025-07-23T19:29:11.3969248Z Adding to the cache ... -2025-07-23T19:29:15.6448838Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 -2025-07-23T19:29:15.6449365Z Added go to the path -2025-07-23T19:29:15.6451826Z Successfully set up Go version 1.23.9 -2025-07-23T19:29:15.6642434Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:29:15.6670332Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:29:15.6701238Z /home/runner/go/pkg/mod -2025-07-23T19:29:15.6715943Z /home/runner/.cache/go-build -2025-07-23T19:29:15.7377776Z Cache hit for: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:16.7739823Z Received 226492416 of 743127682 (30.5%), 214.9 MBs/sec -2025-07-23T19:29:17.7730220Z Received 436207616 of 743127682 (58.7%), 207.5 MBs/sec -2025-07-23T19:29:18.7730408Z Received 671088640 of 743127682 (90.3%), 213.0 MBs/sec -2025-07-23T19:29:19.0758803Z Received 743127682 of 743127682 (100.0%), 214.2 MBs/sec -2025-07-23T19:29:19.0760033Z Cache Size: ~709 MB (743127682 B) -2025-07-23T19:29:19.0878232Z [command]/usr/bin/tar -xf /home/runner/work/_temp/d2a69ecc-e327-4505-a636-70e75d99984a/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd -2025-07-23T19:29:25.9750771Z Cache restored successfully -2025-07-23T19:29:26.1098554Z Cache restored from key: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:26.1119486Z go version go1.23.9 linux/amd64 -2025-07-23T19:29:26.1119673Z -2025-07-23T19:29:26.1119943Z ##[group]go env -2025-07-23T19:29:26.3282528Z GO111MODULE='' -2025-07-23T19:29:26.3284081Z GOARCH='amd64' -2025-07-23T19:29:26.3284705Z GOBIN='' -2025-07-23T19:29:26.3285080Z GOCACHE='/home/runner/.cache/go-build' -2025-07-23T19:29:26.3285557Z GOENV='/home/runner/.config/go/env' -2025-07-23T19:29:26.3285946Z GOEXE='' -2025-07-23T19:29:26.3286157Z GOEXPERIMENT='' -2025-07-23T19:29:26.3286423Z GOFLAGS='' -2025-07-23T19:29:26.3286726Z GOHOSTARCH='amd64' -2025-07-23T19:29:26.3287051Z GOHOSTOS='linux' -2025-07-23T19:29:26.3287621Z GOINSECURE='' -2025-07-23T19:29:26.3287979Z GOMODCACHE='/home/runner/go/pkg/mod' -2025-07-23T19:29:26.3288242Z GONOPROXY='' -2025-07-23T19:29:26.3288414Z GONOSUMDB='' -2025-07-23T19:29:26.3288573Z GOOS='linux' -2025-07-23T19:29:26.3288752Z GOPATH='/home/runner/go' -2025-07-23T19:29:26.3289247Z GOPRIVATE='' -2025-07-23T19:29:26.3289658Z GOPROXY='https://proxy.golang.org,direct' -2025-07-23T19:29:26.3290144Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' -2025-07-23T19:29:26.3290605Z GOSUMDB='sum.golang.org' -2025-07-23T19:29:26.3290974Z GOTMPDIR='' -2025-07-23T19:29:26.3291272Z GOTOOLCHAIN='auto' -2025-07-23T19:29:26.3291908Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' -2025-07-23T19:29:26.3292465Z GOVCS='' -2025-07-23T19:29:26.3292742Z GOVERSION='go1.23.9' -2025-07-23T19:29:26.3293056Z GODEBUG='' -2025-07-23T19:29:26.3293341Z GOTELEMETRY='local' -2025-07-23T19:29:26.3294241Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' -2025-07-23T19:29:26.3294750Z GCCGO='gccgo' -2025-07-23T19:29:26.3295045Z GOAMD64='v1' -2025-07-23T19:29:26.3295326Z AR='ar' -2025-07-23T19:29:26.3295579Z CC='gcc' -2025-07-23T19:29:26.3295840Z CXX='g++' -2025-07-23T19:29:26.3296111Z CGO_ENABLED='1' -2025-07-23T19:29:26.3296489Z GOMOD='/home/runner/work/coreth/coreth/go.mod' -2025-07-23T19:29:26.3296786Z GOWORK='' -2025-07-23T19:29:26.3296962Z CGO_CFLAGS='-O2 -g' -2025-07-23T19:29:26.3297154Z CGO_CPPFLAGS='' -2025-07-23T19:29:26.3297672Z CGO_CXXFLAGS='-O2 -g' -2025-07-23T19:29:26.3297958Z CGO_FFLAGS='-O2 -g' -2025-07-23T19:29:26.3298142Z CGO_LDFLAGS='-O2 -g' -2025-07-23T19:29:26.3298356Z PKG_CONFIG='pkg-config' -2025-07-23T19:29:26.3299577Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build906995900=/tmp/go-build -gno-record-gcc-switches' -2025-07-23T19:29:26.3300487Z -2025-07-23T19:29:26.3300950Z ##[endgroup] -2025-07-23T19:29:26.3468494Z ##[group]Run ./scripts/run_task.sh build-avalanchego-with-coreth -2025-07-23T19:29:26.3468990Z ./scripts/run_task.sh build-avalanchego-with-coreth -2025-07-23T19:29:26.3502635Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:26.3502972Z env: -2025-07-23T19:29:26.3503278Z AVALANCHEGO_CLONE_PATH: /tmp/e2e/warp/avalanchego -2025-07-23T19:29:26.3503706Z ##[endgroup] -2025-07-23T19:29:27.4620224Z task: [build-avalanchego-with-coreth] ./scripts/build_avalanchego_with_coreth.sh -2025-07-23T19:29:27.4745354Z checking out target AvalancheGo version v1.13.3-rc.1 -2025-07-23T19:29:27.4745706Z creating new clone -2025-07-23T19:29:27.4758645Z Cloning into '/tmp/e2e/warp/avalanchego'... -2025-07-23T19:29:34.6710814Z Switched to a new branch 'test-v1.13.3-rc.1' -2025-07-23T19:29:34.6722816Z updating coreth dependency to point to /home/runner/work/coreth/coreth -2025-07-23T19:29:34.7223108Z go: downloading connectrpc.com/connect v1.18.1 -2025-07-23T19:29:34.7244198Z go: downloading github.com/prometheus/client_golang v1.16.0 -2025-07-23T19:29:34.7283857Z go: downloading github.com/prometheus/client_model v0.3.0 -2025-07-23T19:29:34.7286003Z go: downloading github.com/prometheus/common v0.42.0 -2025-07-23T19:29:34.7957711Z go: downloading google.golang.org/protobuf v1.35.2 -2025-07-23T19:29:34.9971377Z go: downloading github.com/jackpal/gateway v1.0.6 -2025-07-23T19:29:35.0009824Z go: downloading github.com/ava-labs/simplex v0.0.0-20250626192006-220e6aeacdc1 -2025-07-23T19:29:35.0157351Z go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.4 -2025-07-23T19:29:35.0400977Z go: downloading github.com/compose-spec/compose-go v1.20.2 -2025-07-23T19:29:35.1168260Z go: downloading github.com/antithesishq/antithesis-sdk-go v0.3.8 -2025-07-23T19:29:35.2134241Z go: downloading github.com/prometheus/procfs v0.10.1 -2025-07-23T19:29:35.2732177Z go: downloading github.com/ava-labs/ledger-avalanche/go v0.0.0-20241009183145-e6f90a8a1a60 -2025-07-23T19:29:35.3187733Z go: downloading github.com/tyler-smith/go-bip32 v1.0.0 -2025-07-23T19:29:35.3529823Z go: downloading github.com/nbutton23/zxcvbn-go v0.0.0-20180912185939-ae427f1e4c1d -2025-07-23T19:29:35.3566313Z go: downloading connectrpc.com/grpcreflect v1.3.0 -2025-07-23T19:29:35.3793536Z go: downloading github.com/inconshreveable/mousetrap v1.1.0 -2025-07-23T19:29:35.3871352Z go: downloading github.com/distribution/reference v0.5.0 -2025-07-23T19:29:35.3872471Z go: downloading github.com/docker/go-connections v0.4.0 -2025-07-23T19:29:35.3885623Z go: downloading github.com/docker/go-units v0.5.0 -2025-07-23T19:29:35.4010904Z go: downloading github.com/mattn/go-shellwords v1.0.12 -2025-07-23T19:29:35.4032524Z go: downloading github.com/opencontainers/go-digest v1.0.0 -2025-07-23T19:29:35.4047785Z go: downloading gotest.tools/v3 v3.4.0 -2025-07-23T19:29:35.4192021Z go: downloading github.com/klauspost/compress v1.15.15 -2025-07-23T19:29:35.4386258Z go: downloading github.com/zondax/ledger-go v1.0.0 -2025-07-23T19:29:35.4532150Z go: downloading github.com/ava-labs/firewood-go-ethhash/ffi v0.0.8 -2025-07-23T19:29:35.4587776Z go: downloading github.com/FactomProject/basen v0.0.0-20150613233007-fe3947df716e -2025-07-23T19:29:35.5324099Z go: downloading github.com/FactomProject/btcutilecc v0.0.0-20130527213604-d3a63a5752ec -2025-07-23T19:29:35.6012903Z go: downloading golang.org/x/oauth2 v0.21.0 -2025-07-23T19:29:35.6432222Z go: downloading github.com/golang-jwt/jwt/v4 v4.5.0 -2025-07-23T19:29:35.6688160Z go: downloading github.com/zondax/hid v0.9.2 -2025-07-23T19:29:35.6771039Z go: downloading github.com/golang-jwt/jwt v3.2.2+incompatible -2025-07-23T19:29:35.7067987Z go: downloading github.com/cmars/basen v0.0.0-20150613233007-fe3947df716e -2025-07-23T19:29:35.7163233Z go: downloading launchpad.net/gocheck v0.0.0-20140225173054-000000000087 -2025-07-23T19:29:35.7269389Z go: downloading github.com/sirupsen/logrus v1.9.0 -2025-07-23T19:29:37.5539344Z building avalanchego -2025-07-23T19:29:37.5659547Z Building AvalancheGo with [go version go1.23.9 linux/amd64]... -2025-07-23T19:30:52.5253289Z ##[group]Run ava-labs/avalanchego/.github/actions/run-monitored-tmpnet-cmd@66ce7a7701db0c4b370f97b339478d5b5ebe919a -2025-07-23T19:30:52.5253808Z with: -2025-07-23T19:30:52.5254196Z run: ./scripts/run_task.sh test-e2e-warp-ci -2025-07-23T19:30:52.5254545Z run_env: AVALANCHEGO_BUILD_PATH=/tmp/e2e/warp/avalanchego/build -2025-07-23T19:30:52.5254856Z artifact_prefix: warp -2025-07-23T19:30:52.5255058Z runtime: process -2025-07-23T19:30:52.5255251Z repository_owner: ava-labs -2025-07-23T19:30:52.5255461Z repository_name: coreth -2025-07-23T19:30:52.5255658Z workflow: CI -2025-07-23T19:30:52.5255833Z run_id: 16480013789 -2025-07-23T19:30:52.5256007Z run_number: 5026 -2025-07-23T19:30:52.5256182Z run_attempt: 1 -2025-07-23T19:30:52.5256351Z job: e2e_warp -2025-07-23T19:30:52.5256542Z ##[endgroup] -2025-07-23T19:30:52.5351281Z ##[group]Run cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f -2025-07-23T19:30:52.5351653Z with: -2025-07-23T19:30:52.5351852Z enable_kvm: true -2025-07-23T19:30:52.5352028Z ##[endgroup] -2025-07-23T19:30:52.5367475Z ##[group]Run ${GITHUB_ACTION_PATH}/install-nix.sh -2025-07-23T19:30:52.5367829Z ${GITHUB_ACTION_PATH}/install-nix.sh -2025-07-23T19:30:52.5396780Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-07-23T19:30:52.5397089Z env: -2025-07-23T19:30:52.5397261Z INPUT_EXTRA_NIX_CONFIG: -2025-07-23T19:30:52.5397479Z INPUT_GITHUB_ACCESS_TOKEN: -2025-07-23T19:30:52.5397694Z INPUT_INSTALL_OPTIONS: -2025-07-23T19:30:52.5397888Z INPUT_INSTALL_URL: -2025-07-23T19:30:52.5398070Z INPUT_NIX_PATH: -2025-07-23T19:30:52.5398256Z INPUT_ENABLE_KVM: true -2025-07-23T19:30:52.5398665Z GITHUB_TOKEN: *** -2025-07-23T19:30:52.5398846Z ##[endgroup] -2025-07-23T19:30:52.5472686Z ##[group]Enabling KVM support -2025-07-23T19:30:52.5539671Z KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm" -2025-07-23T19:30:52.5842697Z Enabled KVM -2025-07-23T19:30:52.5843328Z ##[endgroup] -2025-07-23T19:30:52.5844295Z ##[group]Installing Nix -2025-07-23T19:30:52.6129696Z installer options: --no-channel-add --darwin-use-unencrypted-nix-store-volume --nix-extra-conf-file /tmp/tmp.W0ihg3Z3cO/nix.conf --daemon --daemon-user-count 8 -2025-07-23T19:30:52.9227146Z * Host releases.nixos.org:443 was resolved. -2025-07-23T19:30:52.9227702Z * IPv6: 2a04:4e42:77::729 -2025-07-23T19:30:52.9228051Z * IPv4: 146.75.30.217 -2025-07-23T19:30:52.9228381Z * Trying 146.75.30.217:443... -2025-07-23T19:30:52.9278031Z * Connected to releases.nixos.org (146.75.30.217) port 443 -2025-07-23T19:30:52.9292375Z * ALPN: curl offers h2,http/1.1 -2025-07-23T19:30:52.9294145Z } [5 bytes data] -2025-07-23T19:30:52.9294908Z * TLSv1.3 (OUT), TLS handshake, Client hello (1): -2025-07-23T19:30:52.9296396Z } [512 bytes data] -2025-07-23T19:30:52.9506193Z * CAfile: /etc/ssl/certs/ca-certificates.crt -2025-07-23T19:30:52.9506726Z * CApath: /etc/ssl/certs -2025-07-23T19:30:52.9510348Z { [5 bytes data] -2025-07-23T19:30:52.9511148Z * TLSv1.3 (IN), TLS handshake, Server hello (2): -2025-07-23T19:30:52.9511645Z { [104 bytes data] -2025-07-23T19:30:52.9512025Z * TLSv1.2 (IN), TLS handshake, Certificate (11): -2025-07-23T19:30:52.9512476Z { [2827 bytes data] -2025-07-23T19:30:52.9513040Z * TLSv1.2 (IN), TLS handshake, Server key exchange (12): -2025-07-23T19:30:52.9513522Z { [300 bytes data] -2025-07-23T19:30:52.9514282Z * TLSv1.2 (IN), TLS handshake, Server finished (14): -2025-07-23T19:30:52.9514742Z { [4 bytes data] -2025-07-23T19:30:52.9516400Z * TLSv1.2 (OUT), TLS handshake, Client key exchange (16): -2025-07-23T19:30:52.9516902Z } [37 bytes data] -2025-07-23T19:30:52.9517335Z * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1): -2025-07-23T19:30:52.9517841Z } [1 bytes data] -2025-07-23T19:30:52.9518142Z * TLSv1.2 (OUT), TLS handshake, Finished (20): -2025-07-23T19:30:52.9518408Z } [16 bytes data] -2025-07-23T19:30:52.9570162Z * TLSv1.2 (IN), TLS handshake, Finished (20): -2025-07-23T19:30:52.9570633Z { [16 bytes data] -2025-07-23T19:30:52.9571625Z * SSL connection using TLSv1.2 / ECDHE-RSA-CHACHA20-POLY1305 / X25519 / RSASSA-PSS -2025-07-23T19:30:52.9572187Z * ALPN: server accepted h2 -2025-07-23T19:30:52.9572412Z * Server certificate: -2025-07-23T19:30:52.9572631Z * subject: CN=releases.nixos.org -2025-07-23T19:30:52.9572878Z * start date: Oct 11 20:56:16 2024 GMT -2025-07-23T19:30:52.9573128Z * expire date: Nov 12 20:56:15 2025 GMT -2025-07-23T19:30:52.9573504Z * subjectAltName: host "releases.nixos.org" matched cert's "releases.nixos.org" -2025-07-23T19:30:52.9574218Z * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2024 Q4 -2025-07-23T19:30:52.9574581Z * SSL certificate verify ok. -2025-07-23T19:30:52.9575008Z * Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption -2025-07-23T19:30:52.9575623Z * Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption -2025-07-23T19:30:52.9576268Z * Certificate level 2: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption -2025-07-23T19:30:52.9576705Z } [5 bytes data] -2025-07-23T19:30:52.9576887Z * using HTTP/2 -2025-07-23T19:30:52.9577218Z * [HTTP/2] [1] OPENED stream for https://releases.nixos.org/nix/nix-2.26.3/install -2025-07-23T19:30:52.9577576Z * [HTTP/2] [1] [:method: GET] -2025-07-23T19:30:52.9577797Z * [HTTP/2] [1] [:scheme: https] -2025-07-23T19:30:52.9578055Z * [HTTP/2] [1] [:authority: releases.nixos.org] -2025-07-23T19:30:52.9578345Z * [HTTP/2] [1] [:path: /nix/nix-2.26.3/install] -2025-07-23T19:30:52.9578604Z * [HTTP/2] [1] [user-agent: curl/8.5.0] -2025-07-23T19:30:52.9578846Z * [HTTP/2] [1] [accept: */*] -2025-07-23T19:30:52.9579066Z } [5 bytes data] -2025-07-23T19:30:52.9579264Z > GET /nix/nix-2.26.3/install HTTP/2 -2025-07-23T19:30:52.9579505Z > Host: releases.nixos.org -2025-07-23T19:30:52.9579749Z > User-Agent: curl/8.5.0 -2025-07-23T19:30:52.9580131Z > Accept: */* -2025-07-23T19:30:52.9580291Z > -2025-07-23T19:30:52.9621323Z { [5 bytes data] -2025-07-23T19:30:52.9642738Z < HTTP/2 200 -2025-07-23T19:30:52.9643399Z < last-modified: Wed, 05 Mar 2025 18:21:15 GMT -2025-07-23T19:30:52.9644592Z < etag: "c6753896884bce9b95ec3ca7be157ef6" -2025-07-23T19:30:52.9645202Z < x-amz-server-side-encryption: AES256 -2025-07-23T19:30:52.9645744Z < content-type: text/plain -2025-07-23T19:30:52.9646195Z < server: AmazonS3 -2025-07-23T19:30:52.9646580Z < via: 1.1 varnish, 1.1 varnish -2025-07-23T19:30:52.9647058Z < access-control-allow-origin: * -2025-07-23T19:30:52.9647531Z < accept-ranges: bytes -2025-07-23T19:30:52.9647945Z < date: Wed, 23 Jul 2025 19:30:52 GMT -2025-07-23T19:30:52.9648405Z < age: 9629 -2025-07-23T19:30:52.9648907Z < x-served-by: cache-dub4357-DUB, cache-iad-kiad7000142-IAD -2025-07-23T19:30:52.9649476Z < x-cache: HIT, HIT -2025-07-23T19:30:52.9649777Z < x-cache-hits: 3, 1 -2025-07-23T19:30:52.9650097Z < content-length: 4267 -2025-07-23T19:30:52.9650400Z < -2025-07-23T19:30:52.9650655Z { [4267 bytes data] -2025-07-23T19:30:52.9651052Z * Connection #0 to host releases.nixos.org left intact -2025-07-23T19:30:52.9721204Z downloading Nix 2.26.3 binary tarball for x86_64-linux from 'https://releases.nixos.org/nix/nix-2.26.3/nix-2.26.3-x86_64-linux.tar.xz' to '/tmp/nix-binary-tarball-unpack.BFXbScEBNw'... -2025-07-23T19:30:52.9789527Z % Total % Received % Xferd Average Speed Time Time Time Current -2025-07-23T19:30:52.9791328Z Dload Upload Total Spent Left Speed -2025-07-23T19:30:52.9792614Z -2025-07-23T19:30:53.0430725Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 -2025-07-23T19:30:53.1646756Z 0 22.6M 0 143k 0 0 2232k 0 0:00:10 --:--:-- 0:00:10 2207k -2025-07-23T19:30:53.1647263Z 100 22.6M 100 22.6M 0 0 121M 0 --:--:-- --:--:-- --:--:-- 121M -2025-07-23T19:30:54.7498746Z Note: a multi-user installation is possible. See https://nixos.org/manual/nix/stable/installation/installing-binary.html#multi-user-installation -2025-07-23T19:30:54.7508677Z Warning: the flag --darwin-use-unencrypted-nix-store-volume -2025-07-23T19:30:54.7509827Z is no longer needed and will be removed in the future. -2025-07-23T19:30:54.7510220Z -2025-07-23T19:30:54.7520167Z Switching to the Multi-user Installer -2025-07-23T19:30:54.7620343Z Welcome to the Multi-User Nix Installation -2025-07-23T19:30:54.7629734Z  -2025-07-23T19:30:54.7630248Z This installation tool will set up your computer with the Nix package -2025-07-23T19:30:54.7630863Z manager. This will happen in a few stages: -2025-07-23T19:30:54.7631061Z -2025-07-23T19:30:54.7631246Z 1. Make sure your computer doesn't already have Nix. If it does, I -2025-07-23T19:30:54.7631734Z will show you instructions on how to clean up your old install. -2025-07-23T19:30:54.7632100Z -2025-07-23T19:30:54.7632382Z 2. Show you what I am going to install and where. Then I will ask -2025-07-23T19:30:54.7632976Z if you are ready to continue. -2025-07-23T19:30:54.7633209Z -2025-07-23T19:30:54.7633518Z 3. Create the system users (uids [30001..30008]) and groups (gid 30000) -2025-07-23T19:30:54.7634295Z that the Nix daemon uses to run builds. To create system users -2025-07-23T19:30:54.7634707Z in a different range, exit and run this tool again with -2025-07-23T19:30:54.7635024Z NIX_FIRST_BUILD_UID set. -2025-07-23T19:30:54.7635184Z -2025-07-23T19:30:54.7635333Z 4. Perform the basic installation of the Nix files daemon. -2025-07-23T19:30:54.7635546Z -2025-07-23T19:30:54.7635728Z 5. Configure your shell to import special Nix Profile files, so you -2025-07-23T19:30:54.7636047Z can use Nix. -2025-07-23T19:30:54.7636159Z -2025-07-23T19:30:54.7636241Z 6. Start the Nix daemon. -2025-07-23T19:30:54.7636373Z -2025-07-23T19:30:54.7636628Z Would you like to see a more detailed list of what I will do? -2025-07-23T19:30:54.7637021Z No TTY, assuming you would say yes :) -2025-07-23T19:30:54.7642161Z -2025-07-23T19:30:54.7642446Z I will: -2025-07-23T19:30:54.7642569Z -2025-07-23T19:30:54.7642744Z - make sure your computer doesn't already have Nix files -2025-07-23T19:30:54.7643173Z (if it does, I will tell you how to clean them up.) -2025-07-23T19:30:54.7643846Z - create local users (see the list above for the users I'll make) -2025-07-23T19:30:54.7644697Z - create a local group (nixbld) -2025-07-23T19:30:54.7645009Z - install Nix in /nix -2025-07-23T19:30:54.7645248Z - create a configuration file in /etc/nix -2025-07-23T19:30:54.7645608Z - set up the "default profile" by creating some Nix-related files in -2025-07-23T19:30:54.7645939Z /root -2025-07-23T19:30:54.7657339Z - back up /etc/bash.bashrc to /etc/bash.bashrc.backup-before-nix -2025-07-23T19:30:54.7657800Z - update /etc/bash.bashrc to include some Nix configuration -2025-07-23T19:30:54.7668881Z - load and start a service (at /etc/systemd/system/nix-daemon.service -2025-07-23T19:30:54.7669366Z and /etc/systemd/system/nix-daemon.socket) for nix-daemon -2025-07-23T19:30:54.7669625Z -2025-07-23T19:30:54.7671459Z Ready to continue? -2025-07-23T19:30:54.7671997Z No TTY, assuming you would say yes :) -2025-07-23T19:30:54.7692854Z -2025-07-23T19:30:54.7693422Z ---- let's talk about sudo ----------------------------------------------------- -2025-07-23T19:30:54.7704576Z This script is going to call sudo a lot. Normally, it would show you -2025-07-23T19:30:54.7705351Z exactly what commands it is running and why. However, the script is -2025-07-23T19:30:54.7705718Z run in a headless fashion, like this: -2025-07-23T19:30:54.7705882Z -2025-07-23T19:30:54.7706044Z $ curl -L https://nixos.org/nix/install | sh -2025-07-23T19:30:54.7706357Z -2025-07-23T19:30:54.7706634Z or maybe in a CI pipeline. Because of that, I'm going to skip the -2025-07-23T19:30:54.7707114Z verbose output in the interest of brevity. -2025-07-23T19:30:54.7707296Z -2025-07-23T19:30:54.7707378Z If you would like to -2025-07-23T19:30:54.7707612Z see the output, try like this: -2025-07-23T19:30:54.7707759Z -2025-07-23T19:30:54.7707937Z $ curl -L -o install-nix https://nixos.org/nix/install -2025-07-23T19:30:54.7708234Z $ sh ./install-nix -2025-07-23T19:30:54.7708559Z -2025-07-23T19:30:54.7708566Z -2025-07-23T19:30:54.7708772Z ~~> Checking for artifacts of previous installs -2025-07-23T19:30:54.7716889Z Before I try to install, I'll check for signs Nix already is or has -2025-07-23T19:30:54.7717483Z been installed on this system. -2025-07-23T19:30:54.7750360Z -2025-07-23T19:30:54.7751050Z ---- Nix config report --------------------------------------------------------- -2025-07-23T19:30:54.7751812Z  Temp Dir: /tmp/tmp.eIS0LfBP7g -2025-07-23T19:30:54.7752362Z  Nix Root: /nix -2025-07-23T19:30:54.7752731Z  Build Users: 8 -2025-07-23T19:30:54.7752997Z  Build Group ID: 30000 -2025-07-23T19:30:54.7753260Z Build Group Name: nixbld -2025-07-23T19:30:54.7753409Z -2025-07-23T19:30:54.7753519Z build users: -2025-07-23T19:30:54.7753743Z  Username: UID -2025-07-23T19:30:54.7780632Z  nixbld1: 30001 -2025-07-23T19:30:54.7790757Z  nixbld2: 30002 -2025-07-23T19:30:54.7800695Z  nixbld3: 30003 -2025-07-23T19:30:54.7810884Z  nixbld4: 30004 -2025-07-23T19:30:54.7820865Z  nixbld5: 30005 -2025-07-23T19:30:54.7830787Z  nixbld6: 30006 -2025-07-23T19:30:54.7840539Z  nixbld7: 30007 -2025-07-23T19:30:54.7850724Z  nixbld8: 30008 -2025-07-23T19:30:54.7851001Z -2025-07-23T19:30:54.7851237Z Ready to continue? -2025-07-23T19:30:54.7851832Z No TTY, assuming you would say yes :) -2025-07-23T19:30:54.7852317Z -2025-07-23T19:30:54.7852616Z ~~> Setting up the build group nixbld -2025-07-23T19:30:54.8255214Z  Created: Yes -2025-07-23T19:30:54.8278009Z -2025-07-23T19:30:54.8278412Z ~~> Setting up the build user nixbld1 -2025-07-23T19:30:54.8428505Z useradd warning: nixbld1's uid 30001 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:54.8513671Z  Created: Yes -2025-07-23T19:30:54.8519215Z  Hidden: Yes -2025-07-23T19:30:54.8537237Z  Home Directory: /var/empty -2025-07-23T19:30:54.8557228Z  Note: Nix build user 1 -2025-07-23T19:30:54.8574927Z  Logins Disabled: Yes -2025-07-23T19:30:54.8597506Z  Member of nixbld: Yes -2025-07-23T19:30:54.8615469Z  PrimaryGroupID: 30000 -2025-07-23T19:30:54.8626225Z -2025-07-23T19:30:54.8626547Z ~~> Setting up the build user nixbld2 -2025-07-23T19:30:54.8754882Z useradd warning: nixbld2's uid 30002 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:54.8834246Z  Created: Yes -2025-07-23T19:30:54.8839523Z  Hidden: Yes -2025-07-23T19:30:54.8857393Z  Home Directory: /var/empty -2025-07-23T19:30:54.8877611Z  Note: Nix build user 2 -2025-07-23T19:30:54.8895463Z  Logins Disabled: Yes -2025-07-23T19:30:54.8913583Z  Member of nixbld: Yes -2025-07-23T19:30:54.8931732Z  PrimaryGroupID: 30000 -2025-07-23T19:30:54.8942415Z -2025-07-23T19:30:54.8942735Z ~~> Setting up the build user nixbld3 -2025-07-23T19:30:54.9073046Z useradd warning: nixbld3's uid 30003 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:54.9156812Z  Created: Yes -2025-07-23T19:30:54.9162029Z  Hidden: Yes -2025-07-23T19:30:54.9180478Z  Home Directory: /var/empty -2025-07-23T19:30:54.9200301Z  Note: Nix build user 3 -2025-07-23T19:30:54.9217827Z  Logins Disabled: Yes -2025-07-23T19:30:54.9236144Z  Member of nixbld: Yes -2025-07-23T19:30:54.9259387Z  PrimaryGroupID: 30000 -2025-07-23T19:30:54.9271371Z -2025-07-23T19:30:54.9272815Z ~~> Setting up the build user nixbld4 -2025-07-23T19:30:54.9401909Z useradd warning: nixbld4's uid 30004 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:54.9483597Z  Created: Yes -2025-07-23T19:30:54.9489197Z  Hidden: Yes -2025-07-23T19:30:54.9507725Z  Home Directory: /var/empty -2025-07-23T19:30:54.9527573Z  Note: Nix build user 4 -2025-07-23T19:30:54.9545715Z  Logins Disabled: Yes -2025-07-23T19:30:54.9563817Z  Member of nixbld: Yes -2025-07-23T19:30:54.9582144Z  PrimaryGroupID: 30000 -2025-07-23T19:30:54.9592912Z -2025-07-23T19:30:54.9593509Z ~~> Setting up the build user nixbld5 -2025-07-23T19:30:54.9740614Z useradd warning: nixbld5's uid 30005 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:54.9826950Z  Created: Yes -2025-07-23T19:30:54.9832258Z  Hidden: Yes -2025-07-23T19:30:54.9850518Z  Home Directory: /var/empty -2025-07-23T19:30:54.9870507Z  Note: Nix build user 5 -2025-07-23T19:30:54.9888234Z  Logins Disabled: Yes -2025-07-23T19:30:54.9906381Z  Member of nixbld: Yes -2025-07-23T19:30:54.9924867Z  PrimaryGroupID: 30000 -2025-07-23T19:30:54.9935227Z -2025-07-23T19:30:54.9935598Z ~~> Setting up the build user nixbld6 -2025-07-23T19:30:55.0064905Z useradd warning: nixbld6's uid 30006 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:55.0148595Z  Created: Yes -2025-07-23T19:30:55.0154014Z  Hidden: Yes -2025-07-23T19:30:55.0171953Z  Home Directory: /var/empty -2025-07-23T19:30:55.0192132Z  Note: Nix build user 6 -2025-07-23T19:30:55.0210180Z  Logins Disabled: Yes -2025-07-23T19:30:55.0229043Z  Member of nixbld: Yes -2025-07-23T19:30:55.0246956Z  PrimaryGroupID: 30000 -2025-07-23T19:30:55.0257900Z -2025-07-23T19:30:55.0258312Z ~~> Setting up the build user nixbld7 -2025-07-23T19:30:55.0386703Z useradd warning: nixbld7's uid 30007 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:55.0482601Z  Created: Yes -2025-07-23T19:30:55.0488060Z  Hidden: Yes -2025-07-23T19:30:55.0507686Z  Home Directory: /var/empty -2025-07-23T19:30:55.0528272Z  Note: Nix build user 7 -2025-07-23T19:30:55.0546387Z  Logins Disabled: Yes -2025-07-23T19:30:55.0565166Z  Member of nixbld: Yes -2025-07-23T19:30:55.0582817Z  PrimaryGroupID: 30000 -2025-07-23T19:30:55.0593488Z -2025-07-23T19:30:55.0594085Z ~~> Setting up the build user nixbld8 -2025-07-23T19:30:55.0727641Z useradd warning: nixbld8's uid 30008 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:55.0813618Z  Created: Yes -2025-07-23T19:30:55.0819185Z  Hidden: Yes -2025-07-23T19:30:55.0838065Z  Home Directory: /var/empty -2025-07-23T19:30:55.0858050Z  Note: Nix build user 8 -2025-07-23T19:30:55.0876445Z  Logins Disabled: Yes -2025-07-23T19:30:55.0895169Z  Member of nixbld: Yes -2025-07-23T19:30:55.0913184Z  PrimaryGroupID: 30000 -2025-07-23T19:30:55.0913514Z -2025-07-23T19:30:55.0914067Z ~~> Setting up the basic directory structure -2025-07-23T19:30:55.1047013Z install: creating directory '/nix' -2025-07-23T19:30:55.1047539Z install: creating directory '/nix/var' -2025-07-23T19:30:55.1048019Z install: creating directory '/nix/var/log' -2025-07-23T19:30:55.1048338Z install: creating directory '/nix/var/log/nix' -2025-07-23T19:30:55.1048644Z install: creating directory '/nix/var/log/nix/drvs' -2025-07-23T19:30:55.1048944Z install: creating directory '/nix/var/nix' -2025-07-23T19:30:55.1049256Z install: creating directory '/nix/var/nix/db' -2025-07-23T19:30:55.1049786Z install: creating directory '/nix/var/nix/gcroots' -2025-07-23T19:30:55.1050141Z install: creating directory '/nix/var/nix/profiles' -2025-07-23T19:30:55.1050476Z install: creating directory '/nix/var/nix/temproots' -2025-07-23T19:30:55.1050818Z install: creating directory '/nix/var/nix/userpool' -2025-07-23T19:30:55.1051157Z install: creating directory '/nix/var/nix/daemon-socket' -2025-07-23T19:30:55.1051525Z install: creating directory '/nix/var/nix/gcroots/per-user' -2025-07-23T19:30:55.1051917Z install: creating directory '/nix/var/nix/profiles/per-user' -2025-07-23T19:30:55.1129251Z install: creating directory '/nix/store' -2025-07-23T19:30:55.1214319Z install: creating directory '/etc/nix' -2025-07-23T19:30:55.1224158Z -2025-07-23T19:30:55.1224687Z ~~> Installing Nix -2025-07-23T19:30:55.3190252Z  Alright! We have our first nix at /nix/store/x3235311q3n51rppm2y2ycwd7nb3mgpn-nix-2.26.3 -2025-07-23T19:30:55.3906066Z Just finished getting the nix database ready. -2025-07-23T19:30:55.3908889Z -2025-07-23T19:30:55.3910097Z ~~> Setting up shell profiles: /etc/bashrc /etc/profile.d/nix.sh /etc/zshrc /etc/bash.bashrc /etc/zsh/zshrc -2025-07-23T19:30:55.4075785Z  -2025-07-23T19:30:55.4076053Z # Nix -2025-07-23T19:30:55.4076495Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-07-23T19:30:55.4077365Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-07-23T19:30:55.4077951Z fi -2025-07-23T19:30:55.4078231Z # End Nix -2025-07-23T19:30:55.4078398Z -2025-07-23T19:30:55.4246708Z -2025-07-23T19:30:55.4246866Z # Nix -2025-07-23T19:30:55.4247333Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-07-23T19:30:55.4247947Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-07-23T19:30:55.4248492Z fi -2025-07-23T19:30:55.4248770Z # End Nix -2025-07-23T19:30:55.4248946Z -2025-07-23T19:30:55.4418574Z -2025-07-23T19:30:55.4418950Z # Nix -2025-07-23T19:30:55.4419640Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-07-23T19:30:55.4420527Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-07-23T19:30:55.4421084Z fi -2025-07-23T19:30:55.4421361Z # End Nix -2025-07-23T19:30:55.4421519Z -2025-07-23T19:30:55.4591696Z -2025-07-23T19:30:55.4592079Z # Nix -2025-07-23T19:30:55.4592638Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-07-23T19:30:55.4593542Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-07-23T19:30:55.4594761Z fi -2025-07-23T19:30:55.4595042Z # End Nix -2025-07-23T19:30:55.4595210Z -2025-07-23T19:30:55.4617698Z -2025-07-23T19:30:55.4618794Z ~~> Setting up shell profiles for Fish with conf.d/nix.fish inside /etc/fish /usr/local/etc/fish /opt/homebrew/etc/fish /opt/local/etc/fish -2025-07-23T19:30:55.4679396Z  -2025-07-23T19:30:55.4679812Z ~~> Setting up the default profile -2025-07-23T19:30:55.4970779Z installing 'nix-2.26.3' -2025-07-23T19:30:55.5101133Z building '/nix/store/5afca9ydks0pp5szkwwhi7a6m2zmgk9g-user-environment.drv'... -2025-07-23T19:30:55.5496267Z installing 'nss-cacert-3.107' -2025-07-23T19:30:55.5622645Z building '/nix/store/ilxzpc39hcw5jr229rmajjkyz1a0fym1-user-environment.drv'... -2025-07-23T19:30:55.5831307Z  -2025-07-23T19:30:55.5831798Z ~~> Setting up the nix-daemon systemd service -2025-07-23T19:30:55.6195297Z Created symlink /etc/systemd/system/nix-daemon.service → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.service. -2025-07-23T19:30:55.8843330Z Created symlink /etc/systemd/system/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. -2025-07-23T19:30:55.8845550Z Created symlink /etc/systemd/system/sockets.target.wants/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. -2025-07-23T19:30:56.4371599Z Alright! We're done! -2025-07-23T19:30:56.4392444Z Try it! Open a new terminal, and type: -2025-07-23T19:30:56.4392976Z -2025-07-23T19:30:56.4393238Z $ nix-shell -p nix-info --run "nix-info -m" -2025-07-23T19:30:56.4393576Z -2025-07-23T19:30:56.4394109Z Thank you for using this installer. If you have any feedback or need -2025-07-23T19:30:56.4394696Z help, don't hesitate: -2025-07-23T19:30:56.4394914Z -2025-07-23T19:30:56.4395063Z You can open an issue at -2025-07-23T19:30:56.4395683Z https://github.com/NixOS/nix/issues/new?labels=installer&template=installer.md -2025-07-23T19:30:56.4396200Z -2025-07-23T19:30:56.4396484Z Or get in touch with the community: https://nixos.org/community -2025-07-23T19:30:56.4412591Z -2025-07-23T19:30:56.4413304Z ---- Reminders ----------------------------------------------------------------- -2025-07-23T19:30:56.4414525Z [ 1 ] -2025-07-23T19:30:56.4415020Z Nix won't work in active shell sessions until you restart them. -2025-07-23T19:30:56.4415435Z -2025-07-23T19:30:56.5111193Z ##[endgroup] -2025-07-23T19:30:56.5169235Z ##[group]Run /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --command echo "dependencies installed" -2025-07-23T19:30:56.5170606Z /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --command echo "dependencies installed" -2025-07-23T19:30:56.5200327Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-07-23T19:30:56.5200629Z env: -2025-07-23T19:30:56.5200808Z TMPDIR: /home/runner/work/_temp -2025-07-23T19:30:56.5201048Z ##[endgroup] -2025-07-23T19:30:56.5267924Z No local flake found, will attempt to use avalanchego flake -2025-07-23T19:30:56.5350627Z Starting nix shell for github:ava-labs/avalanchego?ref=v1.13.3-rc.1 -2025-07-23T19:30:56.7350385Z unpacking 'github:ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a' into the Git cache... -2025-07-23T19:30:58.3945669Z copying path '/nix/store/i99indk3y6pc3sm0k1xx3nakm193lqzb-source' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7445211Z copying path '/nix/store/899rx4l5zz1za8nx7ijp7swv5ibc8wx2-git-2.47.2-doc' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7450953Z copying path '/nix/store/zpab59ialz19x6f65jbjf5xb8waa54av-iana-etc-20240318' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7474145Z copying path '/nix/store/dgzz9k53hz1qgklnj9667xzliyidj9cs-mailcap-2.1.54' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7480512Z copying path '/nix/store/hnpph37w6p5jfspwf5pksljpf0wqwjg3-perl5.40.0-Digest-HMAC-1.04' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7484853Z copying path '/nix/store/cnb01qfmg8c3irp630nplhwa201d7xsr-perl5.40.0-FCGI-ProcManager-0.28' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7486255Z copying path '/nix/store/v657ak4hdkixvq99rk3qvyh28in945dv-perl5.40.0-HTML-TagCloud-0.38' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7502222Z copying path '/nix/store/9qrv0d0yd9wss610gjzv3507ry6v9mzw-perl5.40.0-URI-5.21' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7506771Z copying path '/nix/store/pz7y4qd8lyhg9y6wmb9hynivx36f53zp-perl5.40.0-libnet-3.15' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7510229Z copying path '/nix/store/l6mypzy4rvkxd5kwzs18d88syirislib-tzdata-2024b' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7526301Z copying path '/nix/store/czlhi3r9b6ip4xyynwibfhm458ljwsir-gcc-13.3.0-libgcc' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7534066Z copying path '/nix/store/d8qbcrirc6jidfacy0qa50zy07i15xcz-gnu-config-2024-01-01' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7586517Z copying path '/nix/store/rscnjwdmhya0wcdmbygr3jpz6p39kvhr-perl5.40.0-Encode-Locale-1.05' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7590941Z copying path '/nix/store/w9yrswzdifcjhg0righ76aqb6bpslhkb-perl5.40.0-Mozilla-CA-20230821' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7593127Z copying path '/nix/store/74bbxwiamv62d2l089f1r8apv295vsry-perl5.40.0-HTML-Tagset-3.20' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7594830Z copying path '/nix/store/krx6xw6wxakapdkviirq57yh3nl3227h-perl5.40.0-IO-HTML-1.004' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7598049Z copying path '/nix/store/3r0pprxsd9n52nb2yqq3idwb75d0spzd-perl5.40.0-LWP-MediaTypes-6.04' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7690284Z copying path '/nix/store/maxa3xhmxggrc5v2vc0c3pjb79hjlkp9-glibc-2.40-66' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7694255Z copying path '/nix/store/dvsai0ym9czjl5mcsarcdwccb70615n4-linux-headers-6.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7705403Z copying path '/nix/store/x6i8jiz3yv3h209xfbz9a3ch1sm16167-dns-root-data-2024-06-20' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7708355Z copying path '/nix/store/5ahjfkydg49xvbr3vghhv317prgspnf3-mirrors-list' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7709753Z copying path '/nix/store/swnhrfysvmwjvibcafm0im377pcfs80v-curl-8.12.1-man' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7715303Z copying path '/nix/store/970fk2m63qra4ybkpp99rw7mld9fphlv-nghttp2-1.64.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7836662Z copying path '/nix/store/frpqzb3223826xq72s0fcjmjmj50wpyn-perl5.40.0-Authen-SASL-2.1700' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7886708Z copying path '/nix/store/ldlsmrf2rrq28s08mzjk245vr26dwwhi-perl5.40.0-Test-RequiresInternet-0.05' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7888412Z copying path '/nix/store/hz5m52dx8x6vvi5pp0yikxb3b05bmi2j-perl5.40.0-Test-Needs-0.002010' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7889976Z copying path '/nix/store/vlfgix8rcbj3l9yk0rna1damxkafbq18-perl5.40.0-Net-HTTP-6.23' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7901102Z copying path '/nix/store/vvjpgyk6jgd6k74pgpjrln6m6aqyiaig-perl5.40.0-Try-Tiny-0.31' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7905606Z copying path '/nix/store/6aqxgf5ygcscqsh4p9krd0dz2hc1cn0w-perl5.40.0-WWW-RobotRules-6.02' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7907325Z copying path '/nix/store/lj7p9q5kgmdcq768rvsgvjndi42mjcn8-publicsuffix-list-0-unstable-2024-10-25' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7908952Z copying path '/nix/store/5xvxvpl9armf0p6y9m4g1zl1mypvr9m7-perl5.40.0-TimeDate-2.33' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7925653Z copying path '/nix/store/i9ymkbklv1q9yzl7wwx7300wbkqdln0r-update-autotools-gnu-config-scripts-hook' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8170609Z copying path '/nix/store/2h648f4xlzszyc01yf67xd2rgira65js-perl5.40.0-Test-Fatal-0.017' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8283237Z copying path '/nix/store/shx8jax9b662cd9nlml731hh9wks24v1-perl5.40.0-HTTP-Date-6.06' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8484802Z copying path '/nix/store/0m34prvcx3d3vd9f4djbaqji7yb9swsh-perl5.40.0-HTTP-CookieJar-0.014' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8486464Z copying path '/nix/store/i9hiqc4dfksm9cpqvff39smfpn49zbj6-perl5.40.0-File-Listing-6.16' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8839068Z copying path '/nix/store/23cshhh8k7z46gadr86krv15xphggawm-kubectl-1.31.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8844924Z copying path '/nix/store/1fqgvq0i498w4ynywyj224i49izzzqrk-protoc-gen-go-grpc-1.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8846465Z copying path '/nix/store/as8g73awbgrhpf5p6qjnrd5v9anw74ix-go-task-3.39.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8847830Z copying path '/nix/store/19402vwa1rndilww6fpbviz0lza8846p-kind-0.24.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8849374Z copying path '/nix/store/i7r45jjmvfxiw8j7ihjx51jachylq1si-protoc-gen-go-1.35.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3492003Z copying path '/nix/store/vlgwyb076hkz7yv96sjnj9msb1jn1ggz-attr-2.5.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3494371Z copying path '/nix/store/8vpg72ik2kgxfj05lc56hkqrdrfl8xi9-bash-5.2p37' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3497669Z copying path '/nix/store/wg9gg3zkwcqhyycj0vkfnhgk5a4z9faq-ed-1.20.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3505659Z copying path '/nix/store/83s1wqvrx7yvy3g6dmdr2icgg3qqbjcp-brotli-1.1.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3507054Z copying path '/nix/store/c9z2sp8dyx1k0zk374v1142hmphashd0-buf-1.47.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3508471Z copying path '/nix/store/fcqfyri9kljs5jd7h556f004qmci1qin-expand-response-params' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3509898Z copying path '/nix/store/0hv5ymwkczx3ak8h3yldfbwbab33jnrw-expat-2.6.4' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3511468Z copying path '/nix/store/mhd0rk497xm0xnip7262xdw9bylvzh99-gcc-13.3.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3515312Z copying path '/nix/store/qiisx6c7qpyzq522j3icsfhj8ayw6ah4-bzip2-1.0.8' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3519558Z copying path '/nix/store/cfb4pxnfh2sf4csk8xh7abfqv96k66nh-glibc-2.40-66-getent' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3521197Z copying path '/nix/store/8k19h07hh2g1w5kp5yglzddswnvdmxpy-gmp-6.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3522594Z copying path '/nix/store/7zv1sq1k25gk2rvgxnm262vp5hydkv1a-gdbm-1.24-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3524132Z copying path '/nix/store/m3da56j3r7h4hp0kr8v1xsnk16x900yf-gnumake-4.4.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3527832Z copying path '/nix/store/2kiskq24j06g4qw3xs8zsy2dkawh4gxk-glibc-2.40-66-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3529342Z copying path '/nix/store/3p3fwczck2yn1wwfjnymzkz8w11vbvg7-gawk-5.3.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3648861Z copying path '/nix/store/3ks7b6p43dpvnlnxgvlcy2jaf1np37p2-gnused-4.9' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3738602Z copying path '/nix/store/1fby1pxf0z16lgl728i2sqwqr2hrw2h8-json-c-0.17' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3761551Z copying path '/nix/store/mwwpv4k7skbx4vr2qjc89pvs7mhmgapb-k9s-0.32.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3839671Z copying path '/nix/store/dyizbk50iglbibrbwbgw2mhgskwb6ham-acl-2.3.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3841856Z copying path '/nix/store/79kh226vw8rrk62jbs27hdad1clwy447-keyutils-1.6.3-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3935723Z copying path '/nix/store/r4p475lxvaklr9rj8l2a4sahkx5c0209-getent-glibc-2.40-66' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3998349Z copying path '/nix/store/yyfzan4mn874v885jy6fs598gjb31c4l-bzip2-1.0.8-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4000745Z copying path '/nix/store/wnsn67xb3i072b6i496y002byvc3ipa3-kubernetes-helm-3.16.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4282882Z copying path '/nix/store/q57zi48njdcgxy4n8d5lm5pf746drc8f-isl-0.20' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4285268Z copying path '/nix/store/bpzy7snv1xr7s1z2xi7bw0q5z9j6g1gg-libantlr3c-3.4' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4368975Z copying path '/nix/store/0iabf1jhsfrrxkdi599kb8m37p82yr1z-audit-4.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4611683Z copying path '/nix/store/nc394xps4al1r99ziabqvajbkrhxr5b7-gzip-1.13' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4646637Z copying path '/nix/store/ky06iawcwsvxmx8yw66y2a7iy7b14yii-libapparmor-4.0.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4652837Z copying path '/nix/store/pmg7hw4ar16dhx5hk6jswvxy349wzsm7-gnutar-1.35' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4743513Z copying path '/nix/store/fx6mfndjsbb0dqn9jzf1ksz9wf1dlrq7-libcap-2.70-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4794592Z copying path '/nix/store/81awch8mhqanda1vy0c09bflgra4cxh0-glibc-2.40-66-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4815742Z copying path '/nix/store/7yf5ijcl2lh90xs5nkrdpfdvcmc9fnc5-libcbor-0.11.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4859977Z copying path '/nix/store/bldybfhh9v9dvpms8kh87v1a6jp6i28p-libevent-2.1.12' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.5129201Z copying path '/nix/store/wxgvd9mivxdbahxidq751gxyz7x7jb8n-libffi-3.4.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.5295568Z copying path '/nix/store/p0c3g3dxr818lggbk6ms3nhm97g0pir9-libgpg-error-1.50' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.5435787Z copying path '/nix/store/2w8a5z0rcs4fk3ds3fnd03x6syjjl1hb-libmnl-1.0.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.5546338Z copying path '/nix/store/ywvi2y4yv3qyh0phw9y2ji17smh8nawj-libnfnetlink-1.0.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.5828337Z copying path '/nix/store/dg6d7zs1bwnhwb3sd3xdbldvpa163a5z-libnl-3.10.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.5903825Z copying path '/nix/store/xxc6rkndd68cq1225asn380bbj0512dg-libpsl-0.21.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.5996405Z copying path '/nix/store/qhs6zflzhdr11j6byf1c1j52z39hnaaw-db-4.8.30' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.6109392Z copying path '/nix/store/8g8wdqid20924fbppbljsl6l7gr0p21j-gettext-0.21.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.6219281Z copying path '/nix/store/dsxb6qvi21bzy21c98kb71wfbdj4lmz7-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.6509369Z copying path '/nix/store/nn7nj7xq8gdfyxqhchphzia7i34rwb0v-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.6516159Z copying path '/nix/store/rq8lq7r8vjqrbn2bgfglm9dxfi83gdg9-icu4c-74.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.6643454Z copying path '/nix/store/96m2mjx55syyky6zymjnbl3pvgxlwchb-libnftnl-1.2.8' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.6830367Z copying path '/nix/store/17195j62sjxjn0xwnmj3icr01n3d678r-libnetfilter_conntrack-1.1.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.6876039Z copying path '/nix/store/68vmpyiabh89l7hbp9z2hmwci74vnfi4-libseccomp-2.5.5-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.6997638Z copying path '/nix/store/wr7w1x0x1j4qli60wm22q3bc02dga08c-libtasn1-4.20.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.7196838Z copying path '/nix/store/hnh6ivl105y4sw0ifv4kbihrvbddmlkm-libxcrypt-4.4.36' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.7381741Z copying path '/nix/store/9yh47sg27z9263ll65d414rgcyrclk57-libxml2-2.13.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.7585652Z copying path '/nix/store/99jfkvhck3c2675n2cy71g40km6m0pf9-libassuan-2.5.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.7686202Z copying path '/nix/store/h9c111ckc8wg3ksxb7kj8cwhgaj52118-libgcrypt-1.10.3-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.7688169Z copying path '/nix/store/p9k3wzaw6d3wjgcbrfv2g1chj0mj2inb-lz4-1.10.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.7806552Z copying path '/nix/store/yh2c9f04q1vcfhpkamidrg3sdnwk5bvy-mpdecimal-4.0.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.7869284Z copying path '/nix/store/1h2yigiwy6bgpyzlywj36s5nqkgca8bv-libpcap-1.10.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.7978004Z copying path '/nix/store/9m68vvhnsq5cpkskphgw84ikl9m6wjwp-coreutils-9.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.8053066Z copying path '/nix/store/b75dbfz0gria25kn2qlfpnmp39h31spw-mpfr-4.2.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.8176514Z copying path '/nix/store/mgpn83jmnf37ky77a8qy6m466qqmlyqk-cln-1.3.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.8602844Z copying path '/nix/store/qvrp85i3yc9vw5x1vyx714m03jsf60rc-cvc4-1.8' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.8625533Z copying path '/nix/store/z7ndn3k8zfjrf713gq443q7a2ixzaab5-ncurses-6.4.20221231' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.9438561Z copying path '/nix/store/6s0zzvp9in28jkmzwh5p69v1zwpi5mi4-linux-pam-1.6.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.9568707Z copying path '/nix/store/q95qgxy40rx1ifa13j8l38sx3myvkhb9-nettle-3.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.9786629Z copying path '/nix/store/1w5jm9zaxwr5b8nvh41c7iz236my185m-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.9929811Z copying path '/nix/store/j4377imdqpm27h5hspds1skgsazyj0d9-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.0129640Z copying path '/nix/store/n9ya3i584zvcw6696326sdlg61d6lamf-npth-1.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.0142608Z copying path '/nix/store/kavgc464axad77kj4x4bza7s345nrhin-iptables-1.8.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.0323106Z copying path '/nix/store/pbjp09wrnbklrfy7n2h5qix15fl5ylhj-libmpc-1.3.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.0760262Z copying path '/nix/store/lr3cvmq5ahqcj29p8c6m0fdl1y8krc86-diffutils-3.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.0788443Z copying path '/nix/store/vc2d1bfy1a5y1195nq7k6p0zcm6q89nx-findutils-4.10.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.0861319Z copying path '/nix/store/isk8l71r4d1nl39mpv92ank2rs4cx3w9-openssl-3.3.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.1367276Z copying path '/nix/store/mqvgaq2bnb1701l7zcn0d6vd7w8b0z7l-openssl-3.3.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.2117607Z copying path '/nix/store/w8xb93nwhnhlkqd9kwahkzqvbg98qs74-nghttp2-1.64.0-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.2124209Z copying path '/nix/store/cjg4jmnnf26367irpagiiffrni9bk7z0-gnupg-2.4.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.2201170Z copying path '/nix/store/smd33cbgm2pwwnwj9l4b4fk39bdxfsfv-p11-kit-0.25.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.2327662Z copying path '/nix/store/zfjv48ikkqn3yhi8zi7lvqvxyscbg87n-patch-2.7.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.2815343Z copying path '/nix/store/9wwkzvmrlv43y71rbw8sbh9bamc62a16-patchelf-0.15.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3129419Z copying path '/nix/store/5md7gyz45fm4bmkg2kb9a1hnmg8ryk9j-pcre2-10.44' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3249516Z copying path '/nix/store/pgq4agv5wpanzr9a8mqlkncdbick7mn2-pcsclite-2.3.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3426542Z copying path '/nix/store/9sqpmkq9fcycsrldbsdxw93hvspy8pr9-perl5.40.0-Clone-0.46' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3439372Z copying path '/nix/store/jpk7s673pli65raimpl43jbhbg6ja4kx-perl5.40.0-FCGI-0.82' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3627092Z copying path '/nix/store/x4kgvzlrndlsc9mn2gyrx9dla0a5y7y3-perl5.40.0-TermReadKey-2.38' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3629486Z copying path '/nix/store/gda0f0dw64h74i98vkk7b7jwzxbkigzs-prometheus-2.55.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3669486Z copying path '/nix/store/mfj2pd4n7vbczdx381margrm9b9jkbpq-protoc-gen-connect-go-1.17.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3791079Z copying path '/nix/store/6hrwqlqxzvn3lry7fjyz4i6dkdmg38m6-perl5.40.0-HTTP-Message-6.45' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3806401Z copying path '/nix/store/zwh1q2r2a1prmw4xxfpqa06ic7dl31yd-qrencode-4.1.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.4059875Z copying path '/nix/store/flw2dwllbq50954bk1qm6xwdzp8ikacl-systemd-minimal-libs-256.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.4181365Z copying path '/nix/store/88x6dfa5gnls0pmbvp4b9ci3bqqfja0n-util-linux-minimal-2.39.4-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.4184691Z copying path '/nix/store/7f8vg8z0q721jyahy1vjbg2x3irbk5az-unbound-1.22.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.4262646Z copying path '/nix/store/53rkjnnkbgg8pfn6ffpcdx4xbrl98yh8-readline-8.2p13' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.4286509Z copying path '/nix/store/mcr5gqxgkknqxa2vhnhixzd97vdsnsxi-perl5.40.0-HTML-Parser-3.81' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.4509554Z copying path '/nix/store/q73n7qdcl9yvlwh6p4n414vkxgnjjryp-perl5.40.0-HTTP-Cookies-6.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.5235680Z copying path '/nix/store/qjsj5vnbfpbg6r7jhd7znfgmcy0arn8n-gnugrep-3.11' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.5814101Z copying path '/nix/store/0z09m6fwgmc2a0zazp6lhyadfig10fd6-perl5.40.0-CGI-4.59' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.5966133Z copying path '/nix/store/qxp4rv76dpjbvs37c3sfq33ial7mxgb0-perl5.40.0-HTTP-Daemon-6.16' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.6034212Z copying path '/nix/store/q0fgny8kpagi6blmzyw15n4cmfx647kn-perl5.40.0-HTTP-Negotiate-6.01' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.6528795Z copying path '/nix/store/bhvah40258cfi5sj1wiy2zmdn5xgj4m1-krb5-1.21.3-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.6637279Z copying path '/nix/store/fvm65iknlk5kx9938xsc5485s9wzz1ig-lvm2-2.03.27-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.6817212Z copying path '/nix/store/pa7plncc30fhm909bis9haakh7gi0qbl-bash-interactive-5.2p37' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.6942864Z copying path '/nix/store/09pyjyjdr5mwmki9gb0yf809l54xr8p2-openssl-3.3.3-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.6946829Z copying path '/nix/store/dwyr8xvjby2l1zz92a5pfl6bq27jhrm6-krb5-1.21.3-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7024856Z copying path '/nix/store/6k8v1ffagipraln3nn12h1n22d5l9dvr-perl5.40.0-Net-SSLeay-1.92' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7095037Z copying path '/nix/store/j7k6mzbdydimzw4mf23ahq6a7rz2f7w2-util-linux-minimal-2.39.4-login' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7244166Z copying path '/nix/store/a9vgxnafcgb1khpjgn87ixmyv4dsqlp0-util-linux-minimal-2.39.4-mount' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7286659Z copying path '/nix/store/blkjagm7k01k9sghpyckw4y6dd6z0knl-util-linux-minimal-2.39.4-swap' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7436711Z copying path '/nix/store/sf31nmjhlsdp2h26vbwbpa7gwfn4i4na-xz-5.6.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7456499Z copying path '/nix/store/xv2bvwf6zv1hhlm9w4x0f7n0idhbsjh7-perl5.40.0-CGI-Fast-2.16' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7717843Z copying path '/nix/store/lmfya9by589b0qgc2pqps1zy4jhldkvq-cryptsetup-2.7.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7856155Z copying path '/nix/store/hgq0ircylcm0mx6y7ml9chcbwgrz9xg7-openssl-3.3.3-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7858632Z copying path '/nix/store/xxssfwyz4l32wiadvsrcf259nkb91myn-z3-4.11.2-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7915925Z copying path '/nix/store/vpg96mfr1jw5arlqg831i69g29v0sdb3-zlib-1.3.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7922186Z copying path '/nix/store/73pq792gn6i9qfywsnd347vg0152w8rw-perl5.40.0-IO-Socket-SSL-2.083' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7956281Z copying path '/nix/store/6cf2yj12gf51jn5vdbdw01gmgvyj431s-zstd-1.5.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.8127632Z copying path '/nix/store/23j515bg7lgis34f0jkm9j6g00dpp2sh-binutils-2.43.1-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.8491938Z copying path '/nix/store/yk246qv4bbmr0mmh9y3gnfdkra5nnjgi-cracklib-2.10.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.8643507Z copying path '/nix/store/p751fjd81h3926ivxsq0x20lz5j7yscc-file-5.45' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.9017239Z copying path '/nix/store/yg4ahy7gahx91nq80achmzilrjyv0scj-gcc-13.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.9211505Z copying path '/nix/store/1md58p5vm4dixcwwpwrs78a7kjf6nnqk-gnutls-3.8.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.9484835Z copying path '/nix/store/nfdnparxrnv6sy627lw1c27pdqzpbfs2-kexec-tools-2.0.29' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.9551399Z copying path '/nix/store/n6zw4496n0bd9r6gjwkjmf5ja6757q32-krb5-1.21.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.9659827Z copying path '/nix/store/kc1sdzqnymjwy74chlnkq2xlxnmrg30x-libfido2-1.15.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.0294090Z copying path '/nix/store/yr9xanc3bgp95fj9kvbrrq47zhzni2i6-kmod-31' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.0490555Z copying path '/nix/store/qdypipr8zp0nkyrwqnakn3q3xhpghsrb-kmod-31-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.0804714Z copying path '/nix/store/6m49g3aqk5d5vdxp7chpgim5l6cfm7d6-libarchive-3.7.7-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.1055341Z copying path '/nix/store/pvyhn761hgn17fpr6fy168vcv1ciwsgl-libssh2-1.11.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.1181372Z copying path '/nix/store/22qnvg3zddkf7rbpckv676qpsc2najv9-binutils-2.43.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.1693466Z copying path '/nix/store/zfk4v9lxal3ch98qnf7zlciwgmk4w1ij-krb5-1.21.3-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.1877265Z copying path '/nix/store/17rp2wzkp8xfhxcd5zihx6qmnbaadlhs-libmicrohttpd-1.0.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.2304432Z copying path '/nix/store/qmz79v7x18zmi6g2iagxwazqfwbxzhra-libssh2-1.11.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.2735259Z copying path '/nix/store/q4j9jj8jw74216cw4chsqlwdnglwly6p-perl-5.40.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.2858070Z copying path '/nix/store/f2sjbvr2gbp1dl1fwak6b77j18wv2rm8-perl5.40.0-Net-SMTP-SSL-1.04' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.3207465Z copying path '/nix/store/w2m5p0fb6pmqq6dz2jqlvnyw7n4vcbpx-curl-8.12.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.3219929Z copying path '/nix/store/sh26c2jcz7w2gii2px77bqy64fd026jd-boost-1.81.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.3837116Z copying path '/nix/store/i7gfv740vcygvl9pgqwq29nkzmsp09ww-sqlite-3.46.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.4015839Z copying path '/nix/store/rbns8mzghhqxih4hj2js4mb4s6ivy5d1-xz-5.6.3-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.4017251Z copying path '/nix/store/ccrjbcfl5zcdp0n5mh69f4airrb9g8m4-zlib-1.3.1-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.4283528Z copying path '/nix/store/xmmli2ijsz2br6573z3sqsgg0spnj7i9-zstd-1.5.6-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.4822905Z copying path '/nix/store/lgfp6sl5hpykmld29rqvi9pam8ji8k24-curl-8.12.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.5038396Z copying path '/nix/store/0rg4nqym82ngd29dy8qm1bggm94dkry3-libssh2-1.11.1-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.5290238Z copying path '/nix/store/hsxp8g7zdr6wxk1mp812g8nbzvajzn4w-stdenv-linux' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.5876660Z copying path '/nix/store/gnnac2vpa466p2lpzskmbj5vjr6ikzhg-libpwquality-1.4.5-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.5976235Z copying path '/nix/store/awbfciyq3cjvw6x8wd8wdjy8z2qxm98n-elfutils-0.191' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.6228007Z copying path '/nix/store/3hgwjb5hp0jm8fyi4vx9s4f3hjvp0n1r-tpm2-tss-4.1.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.6366401Z copying path '/nix/store/lhpwdis5hkyljz1d200bj1s6g51ljq9k-python3-3.12.8' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.6701985Z copying path '/nix/store/z9lnvmqymg80hk671fm2533ncczkf7z2-kbd-2.6.4' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.7488221Z copying path '/nix/store/8qf68jid6rr2f4c8ppyp0ixdlv0axnpn-curl-8.12.1-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.9819159Z copying path '/nix/store/007wiy8x5irdxzsdx3bdqx0k0a8hp6ji-shellcheck-0.10.0-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.9820656Z copying path '/nix/store/f95nqmgp2vaz1h68n36k605ay1ixnj0a-libbpf-1.4.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:17.0428080Z copying path '/nix/store/04shrm4bvxw1yam87da7y9k872kqn777-curl-8.12.1-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:17.1735316Z building '/nix/store/rkn5fk95kmnbxk65bxlyzqnmsmafh1f1-kind-with-registry.sh.drv'... -2025-07-23T19:31:17.2480249Z copying path '/nix/store/w9qcpyhjrxsqrps91wkz8r4mqvg9zrxc-systemd-256.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:17.3458021Z copying path '/nix/store/00x4qvjp4kcm932rv281v8n9y4xk9dv1-solc-0.8.21' from 'https://cache.nixos.org'... -2025-07-23T19:31:17.3569628Z copying path '/nix/store/1mv8pj4nxwnd9bbxshljc9p4cnl3rakj-binutils-wrapper-2.43.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:17.3988135Z copying path '/nix/store/ch1brsi5xwxgyv23csmvw1am9l40rf1c-shellcheck-0.10.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:18.3928389Z copying path '/nix/store/99accs107rzm78z74cj1wns59d0m1nh8-perl5.40.0-libwww-perl-6.72' from 'https://cache.nixos.org'... -2025-07-23T19:31:18.4427035Z copying path '/nix/store/7s649psqfmp6bf2ij6kba3nbwjp50z0w-promtail-3.2.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:19.3718486Z copying path '/nix/store/1fwh9nv8n93rjc7i7j9gcm3whdqpgy84-git-2.47.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:20.3471201Z copying path '/nix/store/gnd8f9h2ycxrfrvrga508c4n9cxy6720-gcc-wrapper-13.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:20.3559088Z copying path '/nix/store/szfi0xd0cwdaldhkp8vlgi7jfv662nmd-stdenv-linux' from 'https://cache.nixos.org'... -2025-07-23T19:31:20.4069932Z building '/nix/store/mbmxfdxryq3wr2wxm5brh42mcad1gvzy-kind-with-registry-1.0.0.drv'... -2025-07-23T19:31:20.4979512Z building '/nix/store/gvy0rwami6li8s64cb1q1hv75mnglnjn-nix-shell-env.drv'... -2025-07-23T19:31:20.9272642Z this path will be fetched (0.10 MiB download, 0.10 MiB unpacked): -2025-07-23T19:31:20.9273346Z /nix/store/hlv28jlwzk6kqj6vljm9cn8i7pw030nx-bash-interactive-5.2p37-man -2025-07-23T19:31:20.9282862Z copying path '/nix/store/hlv28jlwzk6kqj6vljm9cn8i7pw030nx-bash-interactive-5.2p37-man' from 'https://cache.nixos.org'... -2025-07-23T19:31:21.0821474Z dependencies installed -2025-07-23T19:31:21.0886857Z ##[group]Run echo "::warning::Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch?" -2025-07-23T19:31:21.0888095Z echo "::warning::Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch?" -2025-07-23T19:31:21.0927472Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-07-23T19:31:21.0927973Z env: -2025-07-23T19:31:21.0928271Z TMPDIR: /home/runner/work/_temp -2025-07-23T19:31:21.0928613Z ##[endgroup] -2025-07-23T19:31:21.1011961Z ##[warning]Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch? -2025-07-23T19:31:21.1043326Z ##[group]Run AVALANCHEGO_BUILD_PATH=/tmp/e2e/warp/avalanchego/build /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --impure --command bash -x ./scripts/run_task.sh test-e2e-warp-ci -2025-07-23T19:31:21.1046911Z AVALANCHEGO_BUILD_PATH=/tmp/e2e/warp/avalanchego/build /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --impure --command bash -x ./scripts/run_task.sh test-e2e-warp-ci -2025-07-23T19:31:21.1083804Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-07-23T19:31:21.1084323Z env: -2025-07-23T19:31:21.1084502Z TMPDIR: /home/runner/work/_temp -2025-07-23T19:31:21.1084745Z TMPNET_START_METRICS_COLLECTOR: false -2025-07-23T19:31:21.1084990Z TMPNET_START_LOGS_COLLECTOR: false -2025-07-23T19:31:21.1085229Z TMPNET_CHECK_METRICS_COLLECTED: false -2025-07-23T19:31:21.1085467Z TMPNET_CHECK_LOGS_COLLECTED: false -2025-07-23T19:31:21.1085676Z LOKI_USERNAME: -2025-07-23T19:31:21.1085854Z LOKI_PASSWORD: -2025-07-23T19:31:21.1086041Z PROMETHEUS_USERNAME: -2025-07-23T19:31:21.1086237Z PROMETHEUS_PASSWORD: -2025-07-23T19:31:21.1086424Z GH_REPO: ava-labs/coreth -2025-07-23T19:31:21.1086620Z GH_WORKFLOW: CI -2025-07-23T19:31:21.1086800Z GH_RUN_ID: 16480013789 -2025-07-23T19:31:21.1086984Z GH_RUN_NUMBER: 5026 -2025-07-23T19:31:21.1087164Z GH_RUN_ATTEMPT: 1 -2025-07-23T19:31:21.1087340Z GH_JOB_ID: e2e_warp -2025-07-23T19:31:21.1087515Z ##[endgroup] -2025-07-23T19:31:21.1311811Z No local flake found, will attempt to use avalanchego flake -2025-07-23T19:31:21.1398056Z Starting nix shell for github:ava-labs/avalanchego?ref=v1.13.3-rc.1 -2025-07-23T19:31:23.4703813Z + set -euo pipefail -2025-07-23T19:31:23.4704416Z + command -v task -2025-07-23T19:31:23.4704759Z + exec task test-e2e-warp-ci -2025-07-23T19:31:23.4930442Z task: [build] ./scripts/build.sh -2025-07-23T19:31:23.5222417Z Using branch: d85ec0364 -2025-07-23T19:31:23.5239400Z Building Coreth @ GitCommit: d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 at /home/runner/.avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy -2025-07-23T19:31:54.0361820Z task: [test-e2e-warp] ./scripts/run_ginkgo_warp.sh -2025-07-23T19:31:54.0569940Z Using branch: d85ec0364 -2025-07-23T19:31:54.0587032Z Running with extra args: --avalanchego-path=/tmp/e2e/warp/avalanchego/build/avalanchego -2025-07-23T19:32:11.2865271Z Running Suite: coreth warp e2e test - /home/runner/work/coreth/coreth/tests/warp -2025-07-23T19:32:11.2865946Z ================================================================================ -2025-07-23T19:32:11.2866547Z Random Seed: 1753299114 -2025-07-23T19:32:11.2866746Z -2025-07-23T19:32:11.2866910Z Will run 1 of 1 specs -2025-07-23T19:32:11.2867285Z ------------------------------ -2025-07-23T19:32:11.2867662Z [SynchronizedBeforeSuite]  -2025-07-23T19:32:11.2868242Z /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 -2025-07-23T19:32:11.2869375Z > Enter [SynchronizedBeforeSuite] TOP-LEVEL - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 @ 07/23/25 19:32:11.286 -2025-07-23T19:32:11.2875280Z INFO waiting for network to start {"timeoutSeconds": 120} -2025-07-23T19:32:11.2876719Z INFO preparing configuration for new network {"runtimeConfig": {"process":{"avalancheGoPath":"/tmp/e2e/warp/avalanchego/build/avalanchego","pluginDir":"/home/runner/.avalanchego/plugins"}}} -2025-07-23T19:32:11.2998458Z INFO starting network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e", "uuid": "831b7731-4dd7-401a-a2aa-7d4d54bfac1b"} -2025-07-23T19:32:11.9026716Z INFO started local node {"nodeID": "NodeID-3wsBNScnZA9m17LzxpzCGvmzcKf67tPHk", "dataDir": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e/NodeID-3wsBNScnZA9m17LzxpzCGvmzcKf67tPHk", "isEphemeral": false} -2025-07-23T19:32:12.4551180Z INFO started local node {"nodeID": "NodeID-AjFCBTWUwfRZHTnySyCjdknRp12LaqFon", "dataDir": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e/NodeID-AjFCBTWUwfRZHTnySyCjdknRp12LaqFon", "isEphemeral": false} -2025-07-23T19:32:12.4553360Z INFO waiting for nodes to report healthy -2025-07-23T19:32:14.4565045Z INFO node is healthy {"nodeID": "NodeID-AjFCBTWUwfRZHTnySyCjdknRp12LaqFon", "uri": "http://127.0.0.1:35575"} -2025-07-23T19:32:17.8564267Z INFO node is healthy {"nodeID": "NodeID-3wsBNScnZA9m17LzxpzCGvmzcKf67tPHk", "uri": "http://127.0.0.1:43963"} -2025-07-23T19:32:17.8566373Z INFO started network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e", "uuid": "831b7731-4dd7-401a-a2aa-7d4d54bfac1b"} -2025-07-23T19:32:17.8570537Z INFO metrics and logs available via grafana (collectors must be running) {"url": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C831b7731-4dd7-401a-a2aa-7d4d54bfac1b&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299131299&to=now", "linkPath": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e/metrics.txt"} -2025-07-23T19:32:17.8573198Z INFO network started successfully -2025-07-23T19:32:17.8581214Z INFO network nodes are available {"uris": [{"NodeID":"NodeID-3wsBNScnZA9m17LzxpzCGvmzcKf67tPHk","URI":"http://127.0.0.1:43963"},{"NodeID":"NodeID-AjFCBTWUwfRZHTnySyCjdknRp12LaqFon","URI":"http://127.0.0.1:35575"}]} -2025-07-23T19:32:17.8583751Z < Exit [SynchronizedBeforeSuite] TOP-LEVEL - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 @ 07/23/25 19:32:17.857 (6.571s) -2025-07-23T19:32:17.8587797Z > Enter [SynchronizedBeforeSuite] TOP-LEVEL - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 @ 07/23/25 19:32:17.857 -2025-07-23T19:32:17.8606424Z < Exit [SynchronizedBeforeSuite] TOP-LEVEL - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 @ 07/23/25 19:32:17.86 (2ms) -2025-07-23T19:32:17.8607807Z [SynchronizedBeforeSuite] PASSED [6.574 seconds] -2025-07-23T19:32:17.8608489Z ------------------------------ -2025-07-23T19:32:17.8608942Z [Warp] -2025-07-23T19:32:17.8609847Z /home/runner/work/coreth/coreth/tests/warp/warp_test.go:127 -2025-07-23T19:32:17.8610665Z C-Chain -> C-Chain -2025-07-23T19:32:17.8611502Z /home/runner/work/coreth/coreth/tests/warp/warp_test.go:156 -2025-07-23T19:32:17.8613313Z > Enter [BeforeEach] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/metrics_link.go:27 @ 07/23/25 19:32:17.86 -2025-07-23T19:32:17.8615612Z < Exit [BeforeEach] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/metrics_link.go:27 @ 07/23/25 19:32:17.86 (0s) -2025-07-23T19:32:17.8617353Z > Enter [It] C-Chain -> C-Chain - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:156 @ 07/23/25 19:32:17.86 -2025-07-23T19:32:17.8618811Z "level"=0 "msg"="Creating ethclient for blockchain A" "blockchainID"="2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo" -2025-07-23T19:32:17.8620200Z "level"=0 "msg"="Creating ethclient for blockchain A" "blockchainID"="2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo" -2025-07-23T19:32:17.8621596Z "level"=0 "msg"="Creating ethclient for blockchain B" "blockchainID"="2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo" -2025-07-23T19:32:17.8625710Z "level"=0 "msg"="Creating ethclient for blockchain B" "blockchainID"="2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo" -2025-07-23T19:32:19.8672963Z "level"=0 "msg"="Sending message from A to B" -2025-07-23T19:32:19.8679852Z "level"=0 "msg"="Sending sendWarpMessage transaction" "txHash"="0xcdd2c3e614865c0a389544350f188695a106bdab5883f66ee56725b3528fc8df" -2025-07-23T19:32:19.8686344Z "level"=0 "msg"="Waiting for transaction to be accepted" -2025-07-23T19:32:20.8697354Z "level"=0 "msg"="Constructing warp block hash unsigned message" "blockHash"="0x5c7afdebbd10e93279441062b28e528c80b6853d395915f4f5fbdd6730c0a77d" -2025-07-23T19:32:20.8698298Z "level"=0 "msg"="Fetching relevant warp logs from the newly produced block" -2025-07-23T19:32:20.8701453Z "level"=0 "msg"="Parsing logData as unsigned warp message" -2025-07-23T19:32:20.8704190Z "level"=0 "msg"="Parsed unsignedWarpMsg" "unsignedWarpMessageID"="2dJXPKGac79ZmsoVeyTQ2v4ZVMTDedMyvvqKY3Jfgvk65i8kKG" "unsignedWarpMessage"="UnsignedMessage(NetworkID = 88888, SourceChainID = 2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo, Payload = 000000000001000000148db97c7cece249c2b98bdc0226cc4c2a57bf52fc00000003010203)" -2025-07-23T19:32:20.8706452Z "level"=0 "msg"="client accepted the block containing SendWarpMessage" "client"=0 "height"=3 -2025-07-23T19:32:20.8709019Z "level"=0 "msg"="client accepted the block containing SendWarpMessage" "client"=1 "height"=3 -2025-07-23T19:32:20.8709811Z "level"=0 "msg"="Aggregating signatures via API" -2025-07-23T19:32:20.8725776Z "level"=0 "msg"="Aggregating signatures from validator set" "numValidators"=2 "totalWeight"=2000000000000000 -2025-07-23T19:32:20.8775461Z "level"=0 "msg"="Aggregated signatures for warp messages" "addressedCallMessage"="000000015b38b5a4cf0874043005ee5ab1209c8edefd431257b7e6764199106d78747918698d00000025000000000001000000148db97c7cece249c2b98bdc0226cc4c2a57bf52fc00000003010203000000000000000103b28a349108202d40221da58363b9a8755547558dd59fb77399eb02252498c183cc8177ecaeec86374c981087acb3263e0aed71170f7493c1ad984c130d900eb157ec34e968ac4ef5ce4e9ab2e40983dfdff9032992815b5925648feb51540098" "blockPayloadMessage"="000000015b38b5a4cf0874043005ee5ab1209c8edefd431257b7e6764199106d78747918698d000000260000000000005c7afdebbd10e93279441062b28e528c80b6853d395915f4f5fbdd6730c0a77d000000000000000103b6de3a05d724fe7067ff3bd8d610c2417ac356327cce728126648600c597dc32e5f7c78fc326f914aeacae4840616f07139c390ee35c1aa059071140b39740dc2a94f71d5c161a91a13d9b1e8f4a647265d7410fafc4ca3cd808a8a9f84b1619" -2025-07-23T19:32:20.8782377Z "level"=0 "msg"="Aggregating signatures via p2p aggregator" -2025-07-23T19:32:20.8783129Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:20.8795195Z "level"=0 "msg"="Fetching block payload aggregate signature via p2p API" -2025-07-23T19:32:20.8818026Z "level"=0 "msg"="Delivering addressed call payload to receiving subnet" -2025-07-23T19:32:20.8827994Z "level"=0 "msg"="Sending getVerifiedWarpMessage transaction" "txHash"="0x2c84ac1a0bb1cb97d7c051142046368d4f828b9453583d497eb46195dfbc114c" "txBytes"="02f9017383015b3803843b9aca008534630b8a00834c4b4094020000000000000000000000000000000000000580a46f8253500000000000000000000000000000000000000000000000000000000000000000f8dff8dd940200000000000000000000000000000000000005f8c6a0000000015b38b5a4cf0874043005ee5ab1209c8edefd431257b7e6764199106da078747918698d00000025000000000001000000148db97c7cece249c2b98bdc02a026cc4c2a57bf52fc00000003010203000000000000000103b28a349108202d40a0221da58363b9a8755547558dd59fb77399eb02252498c183cc8177ecaeec8637a04c981087acb3263e0aed71170f7493c1ad984c130d900eb157ec34e968ac4ef5a0ce4e9ab2e40983dfdff9032992815b5925648feb51540098ff0000000000000001a0389ea93aa7de9afca4268aff0963288bc18581b29eb3b0163d441cea1520172ea0569686ef255a3df87c0edea9d8129a5e39c42e282b3e1ae62ddfde1822bfc099" -2025-07-23T19:32:20.8833774Z "level"=0 "msg"="Waiting for transaction to be accepted" -2025-07-23T19:32:21.8842352Z "level"=0 "msg"="Fetching relevant warp logs and receipts from new block" -2025-07-23T19:32:21.8845208Z "level"=0 "msg"="Delivering block hash payload to receiving subnet" -2025-07-23T19:32:21.8856726Z "level"=0 "msg"="Sending getVerifiedWarpBlockHash transaction" "txHash"="0x7232381eb0a29380f4cbc22793f6b6621bada7742612c6af889f805f22d74b06" "txBytes"="02f9017383015b3804843b9aca008534630b8a00834c4b4094020000000000000000000000000000000000000580a4ce7f59290000000000000000000000000000000000000000000000000000000000000000f8dff8dd940200000000000000000000000000000000000005f8c6a0000000015b38b5a4cf0874043005ee5ab1209c8edefd431257b7e6764199106da078747918698d000000260000000000005c7afdebbd10e93279441062b28e528ca080b6853d395915f4f5fbdd6730c0a77d000000000000000103b6de3a05d724fea07067ff3bd8d610c2417ac356327cce728126648600c597dc32e5f7c78fc326f9a014aeacae4840616f07139c390ee35c1aa059071140b39740dc2a94f71d5c161aa091a13d9b1e8f4a647265d7410fafc4ca3cd808a8a9f84b1619ff00000000000001a06b09e4593d91fbf3bdf3e6d2a3f91cf48322ecd89740f036eec6c8b269861b82a005128aeaf8540fe0ff729a244d8cd48aadfd9dd91b02d05815d9703c1c0e69d7" -2025-07-23T19:32:21.8862853Z "level"=0 "msg"="Waiting for transaction to be accepted" -2025-07-23T19:32:22.8867993Z "level"=0 "msg"="Fetching relevant warp logs and receipts from new block" -2025-07-23T19:32:22.8870547Z "level"=0 "msg"="Executing warp load test" -2025-07-23T19:32:22.8875455Z "level"=0 "msg"="Distributing funds on sending subnet" "numKeys"=2 -2025-07-23T19:32:27.4089323Z "level"=0 "msg"="Distributing funds on receiving subnet" "numKeys"=2 -2025-07-23T19:32:29.0097034Z "level"=0 "msg"="Creating workers for each subnet..." -2025-07-23T19:32:29.0105144Z "level"=0 "msg"="Subscribing to warp send events on sending subnet" -2025-07-23T19:32:29.0108148Z "level"=0 "msg"="Generating tx sequence to send warp messages..." -2025-07-23T19:32:29.0127180Z "level"=0 "msg"="Executing warp send loader..." -2025-07-23T19:32:30.0353767Z "level"=0 "msg"="Executing warp delivery sequences..." -2025-07-23T19:32:30.0354590Z "level"=0 "msg"="Executing warp delivery..." -2025-07-23T19:32:30.0357099Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0358894Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0382005Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0403670Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0427892Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0441408Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0460726Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0471324Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0495882Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0510451Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0529763Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0549396Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0570597Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0587869Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0602741Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0618749Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0636626Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0653129Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0671629Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0690989Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:33.0152425Z "level"=0 "msg"="Completed warp delivery successfully." -2025-07-23T19:32:33.0155002Z < Exit [It] C-Chain -> C-Chain - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:156 @ 07/23/25 19:32:33.015 (15.155s) -2025-07-23T19:32:33.0157354Z > Enter [AfterEach] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/metrics_link.go:33 @ 07/23/25 19:32:33.015 -2025-07-23T19:32:33.0168812Z INFO metrics and logs available via grafana (collectors must be running) {"uri": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C831b7731-4dd7-401a-a2aa-7d4d54bfac1b&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299137860&to=1753299165015"} -2025-07-23T19:32:33.0172236Z < Exit [AfterEach] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/metrics_link.go:33 @ 07/23/25 19:32:33.016 (1ms) -2025-07-23T19:32:33.0175006Z > Enter [DeferCleanup (Each)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0177600Z < Exit [DeferCleanup (Each)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0179659Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0181322Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0183249Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0185220Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0186785Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0188648Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0190441Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0192076Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0194380Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0196544Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0198204Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0200659Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0202313Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0204456Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0205856Z • [15.156 seconds] -2025-07-23T19:32:33.0206357Z ------------------------------ -2025-07-23T19:32:33.0206837Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0207837Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0209868Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0212314Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0213703Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:32:33.0214445Z ------------------------------ -2025-07-23T19:32:33.0214928Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0216033Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0218146Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0220606Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) -2025-07-23T19:32:33.0221970Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:32:33.0222534Z ------------------------------ -2025-07-23T19:32:33.0223015Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0224497Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0226653Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 -2025-07-23T19:32:33.0229142Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) -2025-07-23T19:32:33.0230524Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:32:33.0231074Z ------------------------------ -2025-07-23T19:32:33.0231559Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0232606Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0234920Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 -2025-07-23T19:32:33.0237465Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) -2025-07-23T19:32:33.0238888Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:32:33.0239481Z ------------------------------ -2025-07-23T19:32:33.0239989Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0241058Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0243306Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 -2025-07-23T19:32:33.0246323Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) -2025-07-23T19:32:33.0247561Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:32:33.0248164Z ------------------------------ -2025-07-23T19:32:33.0248666Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0249765Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0252018Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 -2025-07-23T19:32:33.0254823Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) -2025-07-23T19:32:33.0256273Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:32:33.0256875Z ------------------------------ -2025-07-23T19:32:33.0257381Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0258505Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0260759Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 -2025-07-23T19:32:33.0263285Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) -2025-07-23T19:32:33.0264317Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:32:33.0264669Z ------------------------------ -2025-07-23T19:32:33.0265147Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0265795Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0267029Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 -2025-07-23T19:32:33.0267800Z INFO shutting down network -2025-07-23T19:32:33.0971513Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.096 (80ms) -2025-07-23T19:32:33.0973096Z [DeferCleanup (Suite)] PASSED [0.080 seconds] -2025-07-23T19:32:33.0973736Z ------------------------------ -2025-07-23T19:32:33.0974446Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0975583Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0977884Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.096 -2025-07-23T19:32:33.0980269Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.096 (0s) -2025-07-23T19:32:33.0981707Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:32:33.0982296Z ------------------------------ -2025-07-23T19:32:33.0982597Z -2025-07-23T19:32:33.0983114Z Ran 1 of 1 Specs in 21.811 seconds -2025-07-23T19:32:33.0984270Z SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped -2025-07-23T19:32:33.0984976Z PASS -2025-07-23T19:32:33.1151659Z -2025-07-23T19:32:33.1152119Z Ginkgo ran 1 suite in 38.306979704s -2025-07-23T19:32:33.1152528Z Test Suite Passed -2025-07-23T19:32:33.1268509Z ##[group]Run actions/upload-artifact@v4 -2025-07-23T19:32:33.1268750Z with: -2025-07-23T19:32:33.1268918Z name: warp-tmpnet-data -2025-07-23T19:32:33.1269316Z path: ~/.tmpnet/networks -~/.tmpnet/prometheus/prometheus.log -~/.tmpnet/promtail/promtail.log - -2025-07-23T19:32:33.1269743Z if-no-files-found: error -2025-07-23T19:32:33.1269949Z compression-level: 6 -2025-07-23T19:32:33.1270137Z overwrite: false -2025-07-23T19:32:33.1270328Z include-hidden-files: false -2025-07-23T19:32:33.1270528Z env: -2025-07-23T19:32:33.1270698Z TMPDIR: /home/runner/work/_temp -2025-07-23T19:32:33.1270924Z ##[endgroup] -2025-07-23T19:32:33.3555565Z Multiple search paths detected. Calculating the least common ancestor of all paths -2025-07-23T19:32:33.3557792Z The least common ancestor is /home/runner/.tmpnet. This will be the root directory of the artifact -2025-07-23T19:32:33.3558418Z With the provided path, there will be 30 files uploaded -2025-07-23T19:32:33.3562850Z Artifact name is valid! -2025-07-23T19:32:33.3564395Z Root directory input is valid! -2025-07-23T19:32:33.4713342Z Beginning upload of artifact content to blob storage -2025-07-23T19:32:33.5880268Z Uploaded bytes 254232 -2025-07-23T19:32:33.6015142Z Finished uploading artifact content to blob storage! -2025-07-23T19:32:33.6018293Z SHA256 digest of uploaded artifact zip is 97986e70a9422e37f591caac4d5b55a84772901452c11682c77e38ac53246095 -2025-07-23T19:32:33.6020364Z Finalizing artifact upload -2025-07-23T19:32:33.6986967Z Artifact warp-tmpnet-data.zip successfully finalized. Artifact ID 3600323265 -2025-07-23T19:32:33.6988219Z Artifact warp-tmpnet-data has been successfully uploaded! Final size is 254232 bytes. Artifact ID is 3600323265 -2025-07-23T19:32:33.6994922Z Artifact download URL: https://github.com/ava-labs/coreth/actions/runs/16480013789/artifacts/3600323265 -2025-07-23T19:32:33.7147732Z Post job cleanup. -2025-07-23T19:32:33.8724144Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:32:33.8761838Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:32:33.8786518Z /home/runner/go/pkg/mod -2025-07-23T19:32:33.8814345Z /home/runner/.cache/go-build -2025-07-23T19:32:33.8819142Z Cache hit occurred on the primary key setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d, not saving cache. -2025-07-23T19:32:33.8917758Z Post job cleanup. -2025-07-23T19:32:33.9863814Z [command]/usr/bin/git version -2025-07-23T19:32:33.9904645Z git version 2.50.1 -2025-07-23T19:32:33.9956196Z Temporarily overriding HOME='/home/runner/work/_temp/9550696a-0377-4acd-a5e5-706ab8435ca6' before making global git config changes -2025-07-23T19:32:33.9957573Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:32:33.9961701Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:32:33.9997528Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:32:34.0030310Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:32:34.0251729Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:32:34.0272217Z http.https://github.com/.extraheader -2025-07-23T19:32:34.0285249Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader -2025-07-23T19:32:34.0314571Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:32:34.0637208Z Cleaning up orphan processes diff --git a/logs_42241282643/3_Golang Unit Tests (ubuntu-22.04).txt b/logs_42241282643/3_Golang Unit Tests (ubuntu-22.04).txt deleted file mode 100644 index 2b60a77dd1..0000000000 --- a/logs_42241282643/3_Golang Unit Tests (ubuntu-22.04).txt +++ /dev/null @@ -1,3210 +0,0 @@ -2025-07-23T19:28:54.8331942Z Current runner version: '2.326.0' -2025-07-23T19:28:54.8354655Z ##[group]Runner Image Provisioner -2025-07-23T19:28:54.8355655Z Hosted Compute Agent -2025-07-23T19:28:54.8356172Z Version: 20250711.363 -2025-07-23T19:28:54.8356865Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c -2025-07-23T19:28:54.8357543Z Build Date: 2025-07-11T20:04:25Z -2025-07-23T19:28:54.8358081Z ##[endgroup] -2025-07-23T19:28:54.8358665Z ##[group]Operating System -2025-07-23T19:28:54.8359191Z Ubuntu -2025-07-23T19:28:54.8359680Z 22.04.5 -2025-07-23T19:28:54.8360126Z LTS -2025-07-23T19:28:54.8360590Z ##[endgroup] -2025-07-23T19:28:54.8361028Z ##[group]Runner Image -2025-07-23T19:28:54.8361588Z Image: ubuntu-22.04 -2025-07-23T19:28:54.8362095Z Version: 20250720.1.0 -2025-07-23T19:28:54.8363056Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20250720.1/images/ubuntu/Ubuntu2204-Readme.md -2025-07-23T19:28:54.8364554Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20250720.1 -2025-07-23T19:28:54.8365883Z ##[endgroup] -2025-07-23T19:28:54.8368347Z ##[group]GITHUB_TOKEN Permissions -2025-07-23T19:28:54.8370251Z Actions: write -2025-07-23T19:28:54.8370732Z Attestations: write -2025-07-23T19:28:54.8371348Z Checks: write -2025-07-23T19:28:54.8371847Z Contents: write -2025-07-23T19:28:54.8372373Z Deployments: write -2025-07-23T19:28:54.8372999Z Discussions: write -2025-07-23T19:28:54.8373512Z Issues: write -2025-07-23T19:28:54.8373982Z Metadata: read -2025-07-23T19:28:54.8374485Z Models: read -2025-07-23T19:28:54.8375218Z Packages: write -2025-07-23T19:28:54.8375681Z Pages: write -2025-07-23T19:28:54.8376224Z PullRequests: write -2025-07-23T19:28:54.8376722Z RepositoryProjects: write -2025-07-23T19:28:54.8377266Z SecurityEvents: write -2025-07-23T19:28:54.8377915Z Statuses: write -2025-07-23T19:28:54.8378390Z ##[endgroup] -2025-07-23T19:28:54.8380311Z Secret source: Actions -2025-07-23T19:28:54.8381029Z Prepare workflow directory -2025-07-23T19:28:54.8701229Z Prepare all required actions -2025-07-23T19:28:54.8737936Z Getting action download info -2025-07-23T19:28:55.3676152Z ##[group]Download immutable action package 'actions/checkout@v4' -2025-07-23T19:28:55.3677203Z Version: 4.2.2 -2025-07-23T19:28:55.3678223Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 -2025-07-23T19:28:55.3679357Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 -2025-07-23T19:28:55.3680082Z ##[endgroup] -2025-07-23T19:28:55.4736639Z ##[group]Download immutable action package 'actions/setup-go@v5' -2025-07-23T19:28:55.4737348Z Version: 5.5.0 -2025-07-23T19:28:55.4738187Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb -2025-07-23T19:28:55.4739084Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 -2025-07-23T19:28:55.4739734Z ##[endgroup] -2025-07-23T19:28:55.8319368Z Complete job name: Golang Unit Tests (ubuntu-22.04) -2025-07-23T19:28:55.8918240Z ##[group]Run actions/checkout@v4 -2025-07-23T19:28:55.8919261Z with: -2025-07-23T19:28:55.8919682Z repository: ava-labs/coreth -2025-07-23T19:28:55.8920314Z token: *** -2025-07-23T19:28:55.8920732Z ssh-strict: true -2025-07-23T19:28:55.8921111Z ssh-user: git -2025-07-23T19:28:55.8921494Z persist-credentials: true -2025-07-23T19:28:55.8921922Z clean: true -2025-07-23T19:28:55.8922301Z sparse-checkout-cone-mode: true -2025-07-23T19:28:55.8922765Z fetch-depth: 1 -2025-07-23T19:28:55.8923130Z fetch-tags: false -2025-07-23T19:28:55.8923501Z show-progress: true -2025-07-23T19:28:55.8923884Z lfs: false -2025-07-23T19:28:55.8924232Z submodules: false -2025-07-23T19:28:55.8924614Z set-safe-directory: true -2025-07-23T19:28:55.8925685Z ##[endgroup] -2025-07-23T19:28:55.9980547Z Syncing repository: ava-labs/coreth -2025-07-23T19:28:55.9982301Z ##[group]Getting Git version info -2025-07-23T19:28:55.9982944Z Working directory is '/home/runner/work/coreth/coreth' -2025-07-23T19:28:55.9983953Z [command]/usr/bin/git version -2025-07-23T19:28:56.0054693Z git version 2.50.1 -2025-07-23T19:28:56.0080264Z ##[endgroup] -2025-07-23T19:28:56.0093265Z Temporarily overriding HOME='/home/runner/work/_temp/54a04151-546b-430a-9f32-6573bafa504e' before making global git config changes -2025-07-23T19:28:56.0095218Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:28:56.0098195Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:28:56.0132514Z Deleting the contents of '/home/runner/work/coreth/coreth' -2025-07-23T19:28:56.0136198Z ##[group]Initializing the repository -2025-07-23T19:28:56.0139707Z [command]/usr/bin/git init /home/runner/work/coreth/coreth -2025-07-23T19:28:56.0228786Z hint: Using 'master' as the name for the initial branch. This default branch name -2025-07-23T19:28:56.0230236Z hint: is subject to change. To configure the initial branch name to use in all -2025-07-23T19:28:56.0231131Z hint: of your new repositories, which will suppress this warning, call: -2025-07-23T19:28:56.0231969Z hint: -2025-07-23T19:28:56.0232766Z hint: git config --global init.defaultBranch -2025-07-23T19:28:56.0233556Z hint: -2025-07-23T19:28:56.0234478Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and -2025-07-23T19:28:56.0236287Z hint: 'development'. The just-created branch can be renamed via this command: -2025-07-23T19:28:56.0237559Z hint: -2025-07-23T19:28:56.0238224Z hint: git branch -m -2025-07-23T19:28:56.0239018Z hint: -2025-07-23T19:28:56.0240065Z hint: Disable this message with "git config set advice.defaultBranchName false" -2025-07-23T19:28:56.0241729Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ -2025-07-23T19:28:56.0246826Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth -2025-07-23T19:28:56.0279554Z ##[endgroup] -2025-07-23T19:28:56.0280731Z ##[group]Disabling automatic garbage collection -2025-07-23T19:28:56.0284224Z [command]/usr/bin/git config --local gc.auto 0 -2025-07-23T19:28:56.0312203Z ##[endgroup] -2025-07-23T19:28:56.0313384Z ##[group]Setting up auth -2025-07-23T19:28:56.0319708Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:28:56.0349879Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:28:56.0661290Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:28:56.0691183Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:28:56.0913238Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** -2025-07-23T19:28:56.0948816Z ##[endgroup] -2025-07-23T19:28:56.0950381Z ##[group]Fetching the repository -2025-07-23T19:28:56.0958994Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge -2025-07-23T19:28:56.8801183Z From https://github.com/ava-labs/coreth -2025-07-23T19:28:56.8803255Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge -2025-07-23T19:28:56.8829103Z ##[endgroup] -2025-07-23T19:28:56.8830226Z ##[group]Determining the checkout info -2025-07-23T19:28:56.8831636Z ##[endgroup] -2025-07-23T19:28:56.8836051Z [command]/usr/bin/git sparse-checkout disable -2025-07-23T19:28:56.8875116Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig -2025-07-23T19:28:56.8901736Z ##[group]Checking out the ref -2025-07-23T19:28:56.8905239Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge -2025-07-23T19:28:57.0018441Z Note: switching to 'refs/remotes/pull/1065/merge'. -2025-07-23T19:28:57.0019456Z -2025-07-23T19:28:57.0020166Z You are in 'detached HEAD' state. You can look around, make experimental -2025-07-23T19:28:57.0021817Z changes and commit them, and you can discard any commits you make in this -2025-07-23T19:28:57.0024404Z state without impacting any branches by switching back to a branch. -2025-07-23T19:28:57.0026283Z -2025-07-23T19:28:57.0027291Z If you want to create a new branch to retain commits you create, you may -2025-07-23T19:28:57.0029635Z do so (now or later) by using -c with the switch command. Example: -2025-07-23T19:28:57.0031073Z -2025-07-23T19:28:57.0031593Z git switch -c -2025-07-23T19:28:57.0032538Z -2025-07-23T19:28:57.0033051Z Or undo this operation with: -2025-07-23T19:28:57.0034024Z -2025-07-23T19:28:57.0034487Z git switch - -2025-07-23T19:28:57.0035397Z -2025-07-23T19:28:57.0036632Z Turn off this advice by setting config variable advice.detachedHead to false -2025-07-23T19:28:57.0038453Z -2025-07-23T19:28:57.0040669Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 -2025-07-23T19:28:57.0045719Z ##[endgroup] -2025-07-23T19:28:57.0070010Z [command]/usr/bin/git log -1 --format=%H -2025-07-23T19:28:57.0092023Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -2025-07-23T19:28:57.0393772Z ##[group]Run actions/setup-go@v5 -2025-07-23T19:28:57.0394937Z with: -2025-07-23T19:28:57.0395673Z go-version-file: go.mod -2025-07-23T19:28:57.0396571Z check-latest: false -2025-07-23T19:28:57.0397676Z token: *** -2025-07-23T19:28:57.0398395Z cache: true -2025-07-23T19:28:57.0399126Z ##[endgroup] -2025-07-23T19:28:57.2021335Z Setup go version spec 1.23.9 -2025-07-23T19:28:57.2034151Z Attempting to download 1.23.9... -2025-07-23T19:28:57.7649982Z matching 1.23.9... -2025-07-23T19:28:57.7691099Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz -2025-07-23T19:28:58.3892187Z Extracting Go... -2025-07-23T19:28:58.3994633Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/60b1434f-42a1-47fc-a10a-f4667a45a644 -f /home/runner/work/_temp/3e9464b8-4da0-4c4c-b6d4-38c95d686176 -2025-07-23T19:29:00.0426641Z Successfully extracted go to /home/runner/work/_temp/60b1434f-42a1-47fc-a10a-f4667a45a644 -2025-07-23T19:29:00.0427414Z Adding to the cache ... -2025-07-23T19:29:04.2892243Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 -2025-07-23T19:29:04.2893833Z Added go to the path -2025-07-23T19:29:04.2897070Z Successfully set up Go version 1.23.9 -2025-07-23T19:29:04.3081023Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:29:04.3107958Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:29:04.3135235Z /home/runner/go/pkg/mod -2025-07-23T19:29:04.3149659Z /home/runner/.cache/go-build -2025-07-23T19:29:04.5572327Z Cache hit for: setup-go-Linux-x64-ubuntu22-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:05.8480514Z Received 4194304 of 675091954 (0.6%), 4.0 MBs/sec -2025-07-23T19:29:06.8539342Z Received 130023424 of 675091954 (19.3%), 62.0 MBs/sec -2025-07-23T19:29:07.8497743Z Received 230686720 of 675091954 (34.2%), 73.3 MBs/sec -2025-07-23T19:29:08.8503070Z Received 331350016 of 675091954 (49.1%), 78.9 MBs/sec -2025-07-23T19:29:09.8556029Z Received 436207616 of 675091954 (64.6%), 83.2 MBs/sec -2025-07-23T19:29:10.8506513Z Received 536870912 of 675091954 (79.5%), 85.3 MBs/sec -2025-07-23T19:29:11.8510928Z Received 658505728 of 675091954 (97.5%), 89.7 MBs/sec -2025-07-23T19:29:12.4961613Z Received 675091954 of 675091954 (100.0%), 84.2 MBs/sec -2025-07-23T19:29:12.4962481Z Cache Size: ~644 MB (675091954 B) -2025-07-23T19:29:12.4997640Z [command]/usr/bin/tar -xf /home/runner/work/_temp/0e3892d4-ee3f-4459-97c3-5d56fc181423/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd -2025-07-23T19:29:18.2710234Z Cache restored successfully -2025-07-23T19:29:18.5678843Z Cache restored from key: setup-go-Linux-x64-ubuntu22-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:18.5704464Z go version go1.23.9 linux/amd64 -2025-07-23T19:29:18.5704671Z -2025-07-23T19:29:18.5705510Z ##[group]go env -2025-07-23T19:29:18.6225881Z GO111MODULE='' -2025-07-23T19:29:18.6226356Z GOARCH='amd64' -2025-07-23T19:29:18.6226760Z GOBIN='' -2025-07-23T19:29:18.6227090Z GOCACHE='/home/runner/.cache/go-build' -2025-07-23T19:29:18.6227667Z GOENV='/home/runner/.config/go/env' -2025-07-23T19:29:18.6228062Z GOEXE='' -2025-07-23T19:29:18.6228336Z GOEXPERIMENT='' -2025-07-23T19:29:18.6228655Z GOFLAGS='' -2025-07-23T19:29:18.6228950Z GOHOSTARCH='amd64' -2025-07-23T19:29:18.6229156Z GOHOSTOS='linux' -2025-07-23T19:29:18.6229341Z GOINSECURE='' -2025-07-23T19:29:18.6229553Z GOMODCACHE='/home/runner/go/pkg/mod' -2025-07-23T19:29:18.6229803Z GONOPROXY='' -2025-07-23T19:29:18.6229975Z GONOSUMDB='' -2025-07-23T19:29:18.6230147Z GOOS='linux' -2025-07-23T19:29:18.6230329Z GOPATH='/home/runner/go' -2025-07-23T19:29:18.6230539Z GOPRIVATE='' -2025-07-23T19:29:18.6230796Z GOPROXY='https://proxy.golang.org,direct' -2025-07-23T19:29:18.6231132Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' -2025-07-23T19:29:18.6231399Z GOSUMDB='sum.golang.org' -2025-07-23T19:29:18.6231632Z GOTMPDIR='' -2025-07-23T19:29:18.6232078Z GOTOOLCHAIN='auto' -2025-07-23T19:29:18.6232431Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' -2025-07-23T19:29:18.6232770Z GOVCS='' -2025-07-23T19:29:18.6232943Z GOVERSION='go1.23.9' -2025-07-23T19:29:18.6233132Z GODEBUG='' -2025-07-23T19:29:18.6233305Z GOTELEMETRY='local' -2025-07-23T19:29:18.6233564Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' -2025-07-23T19:29:18.6233839Z GCCGO='gccgo' -2025-07-23T19:29:18.6234014Z GOAMD64='v1' -2025-07-23T19:29:18.6234180Z AR='ar' -2025-07-23T19:29:18.6234344Z CC='gcc' -2025-07-23T19:29:18.6234501Z CXX='g++' -2025-07-23T19:29:18.6234659Z CGO_ENABLED='1' -2025-07-23T19:29:18.6235123Z GOMOD='/home/runner/work/coreth/coreth/go.mod' -2025-07-23T19:29:18.6235381Z GOWORK='' -2025-07-23T19:29:18.6235550Z CGO_CFLAGS='-O2 -g' -2025-07-23T19:29:18.6235738Z CGO_CPPFLAGS='' -2025-07-23T19:29:18.6235924Z CGO_CXXFLAGS='-O2 -g' -2025-07-23T19:29:18.6236114Z CGO_FFLAGS='-O2 -g' -2025-07-23T19:29:18.6236309Z CGO_LDFLAGS='-O2 -g' -2025-07-23T19:29:18.6236512Z PKG_CONFIG='pkg-config' -2025-07-23T19:29:18.6237177Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build2693634516=/tmp/go-build -gno-record-gcc-switches' -2025-07-23T19:29:18.6237697Z -2025-07-23T19:29:18.6238000Z ##[endgroup] -2025-07-23T19:29:18.6422933Z ##[group]Run go mod download -2025-07-23T19:29:18.6423288Z go mod download -2025-07-23T19:29:18.6461453Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:18.6461718Z ##[endgroup] -2025-07-23T19:29:18.7029704Z ##[group]Run ./scripts/run_task.sh check-generate-codec -2025-07-23T19:29:18.7030160Z ./scripts/run_task.sh check-generate-codec -2025-07-23T19:29:18.7063522Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:18.7063772Z ##[endgroup] -2025-07-23T19:29:19.2466833Z task: [generate-codec] grep -lr -E '^// Code generated by github\.com\/fjl\/gencodec\. DO NOT EDIT\.$' . | xargs -r rm -2025-07-23T19:29:19.2629499Z task: [generate-codec] go generate -run "github.com/fjl/gencodec" ./... -2025-07-23T19:29:27.5745159Z task: [check-clean-branch] git add --all -2025-07-23T19:29:27.5813021Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null -2025-07-23T19:29:27.5853256Z task: [check-clean-branch] git status --short -2025-07-23T19:29:27.5920033Z task: [check-clean-branch] git diff-index --quiet HEAD -2025-07-23T19:29:27.6041189Z ##[group]Run ./scripts/run_task.sh check-generate-mocks -2025-07-23T19:29:27.6041597Z ./scripts/run_task.sh check-generate-mocks -2025-07-23T19:29:27.6075421Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:27.6075659Z ##[endgroup] -2025-07-23T19:29:27.9946587Z task: [generate-mocks] grep -lr -E '^// Code generated by MockGen\. DO NOT EDIT\.$' . | xargs -r rm -2025-07-23T19:29:28.0095323Z task: [generate-mocks] go generate -run "go.uber.org/mock/mockgen" ./... -2025-07-23T19:29:35.7047602Z task: [check-clean-branch] git add --all -2025-07-23T19:29:35.7114218Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null -2025-07-23T19:29:35.7162767Z task: [check-clean-branch] git status --short -2025-07-23T19:29:35.7230162Z task: [check-clean-branch] git diff-index --quiet HEAD -2025-07-23T19:29:35.7358678Z ##[group]Run ./scripts/run_task.sh build -2025-07-23T19:29:35.7359005Z ./scripts/run_task.sh build -2025-07-23T19:29:35.7392117Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:35.7392355Z ##[endgroup] -2025-07-23T19:29:36.1297270Z task: [build] ./scripts/build.sh -2025-07-23T19:29:36.1494633Z Using branch: d85ec03 -2025-07-23T19:29:36.1512139Z Building Coreth @ GitCommit: d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 at /home/runner/.avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy -2025-07-23T19:29:42.1473120Z ##[group]Run ./scripts/run_task.sh build-test -2025-07-23T19:29:42.1473475Z ./scripts/run_task.sh build-test -2025-07-23T19:29:42.1505931Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:42.1506160Z env: -2025-07-23T19:29:42.1506321Z TIMEOUT: -2025-07-23T19:29:42.1506499Z ##[endgroup] -2025-07-23T19:29:42.5341234Z task: [build-test] ./scripts/build_test.sh -2025-07-23T19:29:42.5463578Z Using branch: d85ec03 -2025-07-23T19:29:42.9322542Z Test run 1 of 4 -2025-07-23T19:29:42.9322808Z Getting expected test list... -2025-07-23T19:29:51.3588552Z Expected tests: 1 tests -2025-07-23T19:29:51.3588937Z Running tests... -2025-07-23T19:36:52.7662718Z All tests passed! -2025-07-23T19:36:52.7808758Z ##[group]Run ./scripts/run_task.sh coverage -2025-07-23T19:36:52.7809339Z ./scripts/run_task.sh coverage -2025-07-23T19:36:52.7884647Z shell: /usr/bin/bash -e {0} -2025-07-23T19:36:52.7885241Z ##[endgroup] -2025-07-23T19:36:53.8544207Z task: [coverage] ./scripts/coverage.sh -2025-07-23T19:36:54.3320867Z Current test coverage : 0.0 -2025-07-23T19:36:54.3321303Z 60.0 % -2025-07-23T19:36:54.3321616Z ======================================== -2025-07-23T19:36:54.7656350Z github.com/ava-labs/coreth/accounts/abi/abi.go:59: JSON 100.0% -2025-07-23T19:36:54.7657423Z github.com/ava-labs/coreth/accounts/abi/abi.go:74: Pack 91.7% -2025-07-23T19:36:54.7658490Z github.com/ava-labs/coreth/accounts/abi/abi.go:103: PackEvent 81.8% -2025-07-23T19:36:54.7659579Z github.com/ava-labs/coreth/accounts/abi/abi.go:147: PackOutput 71.4% -2025-07-23T19:36:54.7660610Z github.com/ava-labs/coreth/accounts/abi/abi.go:162: getInputs 80.0% -2025-07-23T19:36:54.7661697Z github.com/ava-labs/coreth/accounts/abi/abi.go:182: getArguments 90.0% -2025-07-23T19:36:54.7662492Z github.com/ava-labs/coreth/accounts/abi/abi.go:205: UnpackInput 0.0% -2025-07-23T19:36:54.7663299Z github.com/ava-labs/coreth/accounts/abi/abi.go:214: Unpack 75.0% -2025-07-23T19:36:54.7664167Z github.com/ava-labs/coreth/accounts/abi/abi.go:228: UnpackInputIntoInterface 85.7% -2025-07-23T19:36:54.7665292Z github.com/ava-labs/coreth/accounts/abi/abi.go:243: UnpackIntoInterface 85.7% -2025-07-23T19:36:54.7666188Z github.com/ava-labs/coreth/accounts/abi/abi.go:256: UnpackIntoMap 100.0% -2025-07-23T19:36:54.7667045Z github.com/ava-labs/coreth/accounts/abi/abi.go:265: UnmarshalJSON 85.7% -2025-07-23T19:36:54.7667861Z github.com/ava-labs/coreth/accounts/abi/abi.go:330: MethodById 100.0% -2025-07-23T19:36:54.7668634Z github.com/ava-labs/coreth/accounts/abi/abi.go:344: EventByID 100.0% -2025-07-23T19:36:54.7669438Z github.com/ava-labs/coreth/accounts/abi/abi.go:355: ErrorByID 100.0% -2025-07-23T19:36:54.7670248Z github.com/ava-labs/coreth/accounts/abi/abi.go:365: HasFallback 100.0% -2025-07-23T19:36:54.7671056Z github.com/ava-labs/coreth/accounts/abi/abi.go:370: HasReceive 100.0% -2025-07-23T19:36:54.7671866Z github.com/ava-labs/coreth/accounts/abi/abi.go:402: UnpackRevert 81.8% -2025-07-23T19:36:54.7672719Z github.com/ava-labs/coreth/accounts/abi/argument.go:57: UnmarshalJSON 90.0% -2025-07-23T19:36:54.7673644Z github.com/ava-labs/coreth/accounts/abi/argument.go:75: NonIndexed 100.0% -2025-07-23T19:36:54.7674552Z github.com/ava-labs/coreth/accounts/abi/argument.go:86: isTuple 100.0% -2025-07-23T19:36:54.7676229Z github.com/ava-labs/coreth/accounts/abi/argument.go:91: Unpack 100.0% -2025-07-23T19:36:54.7677128Z github.com/ava-labs/coreth/accounts/abi/argument.go:102: UnpackIntoMap 58.3% -2025-07-23T19:36:54.7678008Z github.com/ava-labs/coreth/accounts/abi/argument.go:124: Copy 77.8% -2025-07-23T19:36:54.7678882Z github.com/ava-labs/coreth/accounts/abi/argument.go:142: copyAtomic 100.0% -2025-07-23T19:36:54.7679778Z github.com/ava-labs/coreth/accounts/abi/argument.go:153: copyTuple 95.7% -2025-07-23T19:36:54.7680598Z github.com/ava-labs/coreth/accounts/abi/argument.go:195: UnpackValues 100.0% -2025-07-23T19:36:54.7681454Z github.com/ava-labs/coreth/accounts/abi/argument.go:228: PackValues 0.0% -2025-07-23T19:36:54.7682554Z github.com/ava-labs/coreth/accounts/abi/argument.go:233: Pack 100.0% -2025-07-23T19:36:54.7683275Z github.com/ava-labs/coreth/accounts/abi/argument.go:276: ToCamelCase 100.0% -2025-07-23T19:36:54.7684245Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:56: NewTransactor 0.0% -2025-07-23T19:36:54.7685389Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:73: NewKeyStoreTransactor 0.0% -2025-07-23T19:36:54.7686349Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:96: NewKeyedTransactor 0.0% -2025-07-23T19:36:54.7687554Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:118: NewTransactorWithChainID 0.0% -2025-07-23T19:36:54.7688277Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:132: NewKeyStoreTransactorWithChainID 0.0% -2025-07-23T19:36:54.7688948Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:155: NewKeyedTransactorWithChainID 72.7% -2025-07-23T19:36:54.7689553Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:179: NewClefTransactor 0.0% -2025-07-23T19:36:54.7690118Z github.com/ava-labs/coreth/accounts/abi/bind/backends/simulated.go:67: Fork 0.0% -2025-07-23T19:36:54.7691128Z github.com/ava-labs/coreth/accounts/abi/bind/backends/simulated.go:78: NewSimulatedBackend 0.0% -2025-07-23T19:36:54.7692110Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:128: GetAbi 0.0% -2025-07-23T19:36:54.7692976Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:155: NewBoundContract 100.0% -2025-07-23T19:36:54.7693874Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:167: DeployContract 77.8% -2025-07-23T19:36:54.7694461Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:187: Call 100.0% -2025-07-23T19:36:54.7695447Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:265: Transact 75.0% -2025-07-23T19:36:54.7696255Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:278: RawTransact 0.0% -2025-07-23T19:36:54.7697039Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:286: Transfer 0.0% -2025-07-23T19:36:54.7697876Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:294: wrapNativeAssetCall 83.3% -2025-07-23T19:36:54.7698758Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:324: createDynamicTx 84.0% -2025-07-23T19:36:54.7699621Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:376: createLegacyTx 81.8% -2025-07-23T19:36:54.7700472Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:419: estimateGasLimit 71.4% -2025-07-23T19:36:54.7701289Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:440: getNonce 75.0% -2025-07-23T19:36:54.7702124Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:451: transact 66.7% -2025-07-23T19:36:54.7702907Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:502: FilterLogs 0.0% -2025-07-23T19:36:54.7703728Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:551: WatchLogs 0.0% -2025-07-23T19:36:54.7704523Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:581: UnpackLog 0.0% -2025-07-23T19:36:54.7705541Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:604: UnpackLogIntoMap 83.3% -2025-07-23T19:36:54.7706396Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:628: ensureContext 100.0% -2025-07-23T19:36:54.7707538Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:54: isKeyWord 100.0% -2025-07-23T19:36:54.7708376Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:95: Bind 92.2% -2025-07-23T19:36:54.7709247Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:323: bindBasicTypeGo 100.0% -2025-07-23T19:36:54.7710003Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:349: bindTypeGo 100.0% -2025-07-23T19:36:54.7710913Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:370: bindTopicTypeGo 100.0% -2025-07-23T19:36:54.7711994Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:394: bindStructTypeGo 100.0% -2025-07-23T19:36:54.7712874Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:445: alias 100.0% -2025-07-23T19:36:54.7713671Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:462: decapitalise 75.0% -2025-07-23T19:36:54.7714489Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:473: structured 100.0% -2025-07-23T19:36:54.7715537Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:496: hasStruct 100.0% -2025-07-23T19:36:54.7716415Z github.com/ava-labs/coreth/accounts/abi/bind/util.go:43: WaitMined 91.7% -2025-07-23T19:36:54.7717304Z github.com/ava-labs/coreth/accounts/abi/bind/util.go:71: WaitDeployed 90.9% -2025-07-23T19:36:54.7718425Z github.com/ava-labs/coreth/accounts/abi/error.go:54: NewError 92.9% -2025-07-23T19:36:54.7719232Z github.com/ava-labs/coreth/accounts/abi/error.go:91: String 100.0% -2025-07-23T19:36:54.7720017Z github.com/ava-labs/coreth/accounts/abi/error.go:95: Unpack 0.0% -2025-07-23T19:36:54.7720914Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:50: formatSliceString 66.7% -2025-07-23T19:36:54.7721904Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:59: sliceTypeCheck 90.0% -2025-07-23T19:36:54.7722850Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:82: typeCheck 100.0% -2025-07-23T19:36:54.7723771Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:98: typeErr 100.0% -2025-07-23T19:36:54.7724631Z github.com/ava-labs/coreth/accounts/abi/event.go:73: NewEvent 100.0% -2025-07-23T19:36:54.7725607Z github.com/ava-labs/coreth/accounts/abi/event.go:112: String 100.0% -2025-07-23T19:36:54.7726440Z github.com/ava-labs/coreth/accounts/abi/method.go:105: NewMethod 100.0% -2025-07-23T19:36:54.7727265Z github.com/ava-labs/coreth/accounts/abi/method.go:164: String 100.0% -2025-07-23T19:36:54.7728085Z github.com/ava-labs/coreth/accounts/abi/method.go:169: IsConstant 0.0% -2025-07-23T19:36:54.7728895Z github.com/ava-labs/coreth/accounts/abi/method.go:175: IsPayable 0.0% -2025-07-23T19:36:54.7729753Z github.com/ava-labs/coreth/accounts/abi/pack.go:42: packBytesSlice 100.0% -2025-07-23T19:36:54.7730602Z github.com/ava-labs/coreth/accounts/abi/pack.go:49: packElement 83.3% -2025-07-23T19:36:54.7731413Z github.com/ava-labs/coreth/accounts/abi/pack.go:85: packNum 80.0% -2025-07-23T19:36:54.7732295Z github.com/ava-labs/coreth/accounts/abi/reflect.go:52: ConvertType 83.3% -2025-07-23T19:36:54.7733142Z github.com/ava-labs/coreth/accounts/abi/reflect.go:66: indirect 100.0% -2025-07-23T19:36:54.7734026Z github.com/ava-labs/coreth/accounts/abi/reflect.go:75: reflectIntType 100.0% -2025-07-23T19:36:54.7735110Z github.com/ava-labs/coreth/accounts/abi/reflect.go:103: mustArrayToByteSlice 100.0% -2025-07-23T19:36:54.7736018Z github.com/ava-labs/coreth/accounts/abi/reflect.go:113: set 100.0% -2025-07-23T19:36:54.7736830Z github.com/ava-labs/coreth/accounts/abi/reflect.go:137: setSlice 75.0% -2025-07-23T19:36:54.7737650Z github.com/ava-labs/coreth/accounts/abi/reflect.go:151: setArray 84.6% -2025-07-23T19:36:54.7738484Z github.com/ava-labs/coreth/accounts/abi/reflect.go:172: setStruct 75.0% -2025-07-23T19:36:54.7739420Z github.com/ava-labs/coreth/accounts/abi/reflect.go:195: mapArgNamesToStructFields 100.0% -2025-07-23T19:36:54.7740467Z github.com/ava-labs/coreth/accounts/abi/topics.go:45: packTopic 96.4% -2025-07-23T19:36:54.7741205Z github.com/ava-labs/coreth/accounts/abi/topics.go:111: PackTopics 85.7% -2025-07-23T19:36:54.7742001Z github.com/ava-labs/coreth/accounts/abi/topics.go:125: MakeTopics 87.5% -2025-07-23T19:36:54.7742865Z github.com/ava-labs/coreth/accounts/abi/topics.go:139: genIntType 100.0% -2025-07-23T19:36:54.7743731Z github.com/ava-labs/coreth/accounts/abi/topics.go:153: ParseTopics 100.0% -2025-07-23T19:36:54.7744642Z github.com/ava-labs/coreth/accounts/abi/topics.go:162: ParseTopicsIntoMap 100.0% -2025-07-23T19:36:54.7745757Z github.com/ava-labs/coreth/accounts/abi/topics.go:174: parseTopicWithSetter 95.0% -2025-07-23T19:36:54.7746643Z github.com/ava-labs/coreth/accounts/abi/type.go:81: NewType 93.1% -2025-07-23T19:36:54.7747432Z github.com/ava-labs/coreth/accounts/abi/type.go:239: GetType 80.0% -2025-07-23T19:36:54.7748229Z github.com/ava-labs/coreth/accounts/abi/type.go:275: String 100.0% -2025-07-23T19:36:54.7749011Z github.com/ava-labs/coreth/accounts/abi/type.go:279: pack 90.9% -2025-07-23T19:36:54.7749871Z github.com/ava-labs/coreth/accounts/abi/type.go:362: requiresLengthPrefix 100.0% -2025-07-23T19:36:54.7750945Z github.com/ava-labs/coreth/accounts/abi/type.go:373: isDynamicType 100.0% -2025-07-23T19:36:54.7751818Z github.com/ava-labs/coreth/accounts/abi/type.go:393: getTypeSize 100.0% -2025-07-23T19:36:54.7752648Z github.com/ava-labs/coreth/accounts/abi/type.go:412: isLetter 100.0% -2025-07-23T19:36:54.7753489Z github.com/ava-labs/coreth/accounts/abi/type.go:423: isValidFieldName 66.7% -2025-07-23T19:36:54.7754351Z github.com/ava-labs/coreth/accounts/abi/unpack.go:49: ReadInteger 100.0% -2025-07-23T19:36:54.7755387Z github.com/ava-labs/coreth/accounts/abi/unpack.go:119: readBool 100.0% -2025-07-23T19:36:54.7756315Z github.com/ava-labs/coreth/accounts/abi/unpack.go:138: readFunctionType 66.7% -2025-07-23T19:36:54.7757270Z github.com/ava-labs/coreth/accounts/abi/unpack.go:151: ReadFixedBytes 80.0% -2025-07-23T19:36:54.7757929Z github.com/ava-labs/coreth/accounts/abi/unpack.go:163: forEachUnpack 81.2% -2025-07-23T19:36:54.7758471Z github.com/ava-labs/coreth/accounts/abi/unpack.go:203: forTupleUnpack 83.3% -2025-07-23T19:36:54.7759000Z github.com/ava-labs/coreth/accounts/abi/unpack.go:235: toGoType 83.9% -2025-07-23T19:36:54.7759549Z github.com/ava-labs/coreth/accounts/abi/unpack.go:299: lengthPrefixPointsTo 94.1% -2025-07-23T19:36:54.7760101Z github.com/ava-labs/coreth/accounts/abi/unpack.go:329: tuplePointsTo 71.4% -2025-07-23T19:36:54.7760644Z github.com/ava-labs/coreth/accounts/abi/utils.go:43: ResolveNameConflict 100.0% -2025-07-23T19:36:54.7761139Z github.com/ava-labs/coreth/cmd/abigen/main.go:90: init 100.0% -2025-07-23T19:36:54.7761574Z github.com/ava-labs/coreth/cmd/abigen/main.go:106: abigen 0.0% -2025-07-23T19:36:54.7762009Z github.com/ava-labs/coreth/cmd/abigen/main.go:245: main 0.0% -2025-07-23T19:36:54.7762498Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:24: newNameFilter 100.0% -2025-07-23T19:36:54.7763000Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:38: add 100.0% -2025-07-23T19:36:54.7763488Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:57: Matches 100.0% -2025-07-23T19:36:54.7764009Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:53: BuildConfig 0.0% -2025-07-23T19:36:54.7764556Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:86: BuildViper 0.0% -2025-07-23T19:36:54.7765436Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:109: BuildFlagSet 0.0% -2025-07-23T19:36:54.7766019Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:115: addSimulatorFlags 0.0% -2025-07-23T19:36:54.7766565Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:22: CreateKey 0.0% -2025-07-23T19:36:54.7767230Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:27: Load 0.0% -2025-07-23T19:36:54.7767700Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:36: LoadAll 0.0% -2025-07-23T19:36:54.7768171Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:73: Save 0.0% -2025-07-23T19:36:54.7768646Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:79: Generate 0.0% -2025-07-23T19:36:54.7769168Z github.com/ava-labs/coreth/cmd/simulator/load/funder.go:25: DistributeFunds 0.0% -2025-07-23T19:36:54.7769695Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:46: New 0.0% -2025-07-23T19:36:54.7770186Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:60: Execute 0.0% -2025-07-23T19:36:54.7770726Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:89: ConfirmReachedTip 0.0% -2025-07-23T19:36:54.7771283Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:125: ExecuteLoader 0.0% -2025-07-23T19:36:54.7771890Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:30: NewSingleAddressTxWorker 0.0% -2025-07-23T19:36:54.7772495Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:50: NewTxReceiptWorker 0.0% -2025-07-23T19:36:54.7773041Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:67: IssueTx 0.0% -2025-07-23T19:36:54.7773665Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:71: ConfirmTx 0.0% -2025-07-23T19:36:54.7774410Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:78: confirmTxByNonce 0.0% -2025-07-23T19:36:54.7775471Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:103: confirmTxByReceipt 0.0% -2025-07-23T19:36:54.7776428Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:120: LatestHeight 0.0% -2025-07-23T19:36:54.7777312Z github.com/ava-labs/coreth/cmd/simulator/main/main.go:19: main 0.0% -2025-07-23T19:36:54.7777951Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:29: NewDefaultMetrics 0.0% -2025-07-23T19:36:54.7778551Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:35: NewMetrics 0.0% -2025-07-23T19:36:54.7779097Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:68: Serve 0.0% -2025-07-23T19:36:54.7779633Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:106: Shutdown 0.0% -2025-07-23T19:36:54.7780172Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:111: Print 0.0% -2025-07-23T19:36:54.7780702Z github.com/ava-labs/coreth/cmd/simulator/txs/agent.go:51: NewIssueNAgent 0.0% -2025-07-23T19:36:54.7781217Z github.com/ava-labs/coreth/cmd/simulator/txs/agent.go:61: Execute 0.0% -2025-07-23T19:36:54.7781786Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:20: GenerateTxSequence 0.0% -2025-07-23T19:36:54.7782402Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:43: GenerateTxSequences 0.0% -2025-07-23T19:36:54.7782982Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:55: addTxs 0.0% -2025-07-23T19:36:54.7783576Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:76: ConvertTxSliceToSequence 0.0% -2025-07-23T19:36:54.7784161Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:88: Chan 0.0% -2025-07-23T19:36:54.7784636Z github.com/ava-labs/coreth/cmd/utils/cmd.go:33: Fatalf 0.0% -2025-07-23T19:36:54.7785287Z github.com/ava-labs/coreth/cmd/utils/flags.go:33: CheckExclusive 0.0% -2025-07-23T19:36:54.7785812Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:81: NewDummyEngine 0.0% -2025-07-23T19:36:54.7786356Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:95: NewETHFaker 0.0% -2025-07-23T19:36:54.7786885Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:102: NewFaker 100.0% -2025-07-23T19:36:54.7787436Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:108: NewFakerWithClock 0.0% -2025-07-23T19:36:54.7788035Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:115: NewFakerWithCallbacks 0.0% -2025-07-23T19:36:54.7788790Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:122: NewFakerWithMode 0.0% -2025-07-23T19:36:54.7789400Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:130: NewFakerWithModeAndClock 0.0% -2025-07-23T19:36:54.7789997Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:137: NewCoinbaseFaker 0.0% -2025-07-23T19:36:54.7790560Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:144: NewFullFaker 0.0% -2025-07-23T19:36:54.7791144Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:151: verifyHeaderGasFields 0.0% -2025-07-23T19:36:54.7791716Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:203: verifyHeader 0.0% -2025-07-23T19:36:54.7792246Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:263: Author 0.0% -2025-07-23T19:36:54.7792772Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:267: VerifyHeader 0.0% -2025-07-23T19:36:54.7793309Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:285: VerifyUncles 0.0% -2025-07-23T19:36:54.7793838Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:292: Prepare 0.0% -2025-07-23T19:36:54.7794381Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:297: verifyBlockFee 81.0% -2025-07-23T19:36:54.7795309Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:367: Finalize 0.0% -2025-07-23T19:36:54.7795909Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:419: FinalizeAndAssemble 0.0% -2025-07-23T19:36:54.7796493Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:477: CalcDifficulty 0.0% -2025-07-23T19:36:54.7797030Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:481: Close 0.0% -2025-07-23T19:36:54.7797597Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:47: VerifyEIP4844Header 0.0% -2025-07-23T19:36:54.7798216Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:81: CalcExcessBlobGas 100.0% -2025-07-23T19:36:54.7798812Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:90: CalcBlobFee 100.0% -2025-07-23T19:36:54.7799399Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:96: fakeExponential 100.0% -2025-07-23T19:36:54.7799976Z github.com/ava-labs/coreth/core/block_validator.go:53: NewBlockValidator 100.0% -2025-07-23T19:36:54.7800507Z github.com/ava-labs/coreth/core/block_validator.go:65: ValidateBody 62.5% -2025-07-23T19:36:54.7801019Z github.com/ava-labs/coreth/core/block_validator.go:122: ValidateState 66.7% -2025-07-23T19:36:54.7801531Z github.com/ava-labs/coreth/core/block_validator.go:150: CalcGasLimit 85.7% -2025-07-23T19:36:54.7802058Z github.com/ava-labs/coreth/core/blockchain.go:210: triedbConfig 90.0% -2025-07-23T19:36:54.7802603Z github.com/ava-labs/coreth/core/blockchain.go:260: DefaultCacheConfigWithScheme 100.0% -2025-07-23T19:36:54.7803147Z github.com/ava-labs/coreth/core/blockchain.go:385: NewBlockChain 81.8% -2025-07-23T19:36:54.7803680Z github.com/ava-labs/coreth/core/blockchain.go:507: writeBlockAcceptedIndices 66.7% -2025-07-23T19:36:54.7804244Z github.com/ava-labs/coreth/core/blockchain.go:518: batchBlockAcceptedIndices 80.0% -2025-07-23T19:36:54.7804957Z github.com/ava-labs/coreth/core/blockchain.go:529: flattenSnapshot 87.5% -2025-07-23T19:36:54.7805852Z github.com/ava-labs/coreth/core/blockchain.go:558: warmAcceptedCaches 84.2% -2025-07-23T19:36:54.7806648Z github.com/ava-labs/coreth/core/blockchain.go:595: startAcceptor 92.0% -2025-07-23T19:36:54.7807521Z github.com/ava-labs/coreth/core/blockchain.go:646: addAcceptorQueue 100.0% -2025-07-23T19:36:54.7808337Z github.com/ava-labs/coreth/core/blockchain.go:663: DrainAcceptorQueue 80.0% -2025-07-23T19:36:54.7809258Z github.com/ava-labs/coreth/core/blockchain.go:677: stopAcceptor 100.0% -2025-07-23T19:36:54.7810182Z github.com/ava-labs/coreth/core/blockchain.go:699: InitializeSnapshots 0.0% -2025-07-23T19:36:54.7811353Z github.com/ava-labs/coreth/core/blockchain.go:708: SenderCacher 0.0% -2025-07-23T19:36:54.7812245Z github.com/ava-labs/coreth/core/blockchain.go:714: loadLastState 81.8% -2025-07-23T19:36:54.7813113Z github.com/ava-labs/coreth/core/blockchain.go:762: loadGenesisState 90.0% -2025-07-23T19:36:54.7813777Z github.com/ava-labs/coreth/core/blockchain.go:780: Export 0.0% -2025-07-23T19:36:54.7814245Z github.com/ava-labs/coreth/core/blockchain.go:785: ExportN 0.0% -2025-07-23T19:36:54.7814719Z github.com/ava-labs/coreth/core/blockchain.go:792: ExportCallback 0.0% -2025-07-23T19:36:54.7815552Z github.com/ava-labs/coreth/core/blockchain.go:828: writeHeadBlock 87.5% -2025-07-23T19:36:54.7816088Z github.com/ava-labs/coreth/core/blockchain.go:847: ValidateCanonicalChain 66.7% -2025-07-23T19:36:54.7816652Z github.com/ava-labs/coreth/core/blockchain.go:956: stopWithoutSaving 100.0% -2025-07-23T19:36:54.7817140Z github.com/ava-labs/coreth/core/blockchain.go:988: Stop 100.0% -2025-07-23T19:36:54.7817617Z github.com/ava-labs/coreth/core/blockchain.go:1022: SetPreference 100.0% -2025-07-23T19:36:54.7818126Z github.com/ava-labs/coreth/core/blockchain.go:1034: setPreference 87.5% -2025-07-23T19:36:54.7818673Z github.com/ava-labs/coreth/core/blockchain.go:1060: LastConsensusAcceptedBlock 100.0% -2025-07-23T19:36:54.7819418Z github.com/ava-labs/coreth/core/blockchain.go:1071: LastAcceptedBlock 100.0% -2025-07-23T19:36:54.7819961Z github.com/ava-labs/coreth/core/blockchain.go:1083: Accept 84.6% -2025-07-23T19:36:54.7820442Z github.com/ava-labs/coreth/core/blockchain.go:1132: Reject 76.9% -2025-07-23T19:36:54.7820951Z github.com/ava-labs/coreth/core/blockchain.go:1162: writeKnownBlock 83.3% -2025-07-23T19:36:54.7821521Z github.com/ava-labs/coreth/core/blockchain.go:1175: writeCanonicalBlockWithLogs 100.0% -2025-07-23T19:36:54.7822051Z github.com/ava-labs/coreth/core/blockchain.go:1186: newTip 100.0% -2025-07-23T19:36:54.7822560Z github.com/ava-labs/coreth/core/blockchain.go:1195: writeBlockAndSetHead 83.3% -2025-07-23T19:36:54.7823104Z github.com/ava-labs/coreth/core/blockchain.go:1213: writeBlockWithState 61.1% -2025-07-23T19:36:54.7823609Z github.com/ava-labs/coreth/core/blockchain.go:1260: InsertChain 86.7% -2025-07-23T19:36:54.7824098Z github.com/ava-labs/coreth/core/blockchain.go:1296: InsertBlock 100.0% -2025-07-23T19:36:54.7824609Z github.com/ava-labs/coreth/core/blockchain.go:1300: InsertBlockManual 100.0% -2025-07-23T19:36:54.7825377Z github.com/ava-labs/coreth/core/blockchain.go:1311: insertBlock 88.7% -2025-07-23T19:36:54.7825996Z github.com/ava-labs/coreth/core/blockchain.go:1448: collectUnflattenedLogs 81.2% -2025-07-23T19:36:54.7826519Z github.com/ava-labs/coreth/core/blockchain.go:1477: collectLogs 100.0% -2025-07-23T19:36:54.7826990Z github.com/ava-labs/coreth/core/blockchain.go:1485: reorg 67.2% -2025-07-23T19:36:54.7827441Z github.com/ava-labs/coreth/core/blockchain.go:1642: String 75.0% -2025-07-23T19:36:54.7827907Z github.com/ava-labs/coreth/core/blockchain.go:1668: BadBlocks 0.0% -2025-07-23T19:36:54.7828378Z github.com/ava-labs/coreth/core/blockchain.go:1681: addBadBlock 100.0% -2025-07-23T19:36:54.7828862Z github.com/ava-labs/coreth/core/blockchain.go:1689: reportBlock 100.0% -2025-07-23T19:36:54.7829359Z github.com/ava-labs/coreth/core/blockchain.go:1705: reprocessBlock 77.8% -2025-07-23T19:36:54.7829864Z github.com/ava-labs/coreth/core/blockchain.go:1747: commitWithSnap 75.0% -2025-07-23T19:36:54.7830355Z github.com/ava-labs/coreth/core/blockchain.go:1783: initSnapshot 90.0% -2025-07-23T19:36:54.7830848Z github.com/ava-labs/coreth/core/blockchain.go:1814: reprocessState 83.1% -2025-07-23T19:36:54.7831354Z github.com/ava-labs/coreth/core/blockchain.go:1956: protectTrieIndex 60.0% -2025-07-23T19:36:54.7831921Z github.com/ava-labs/coreth/core/blockchain.go:1978: populateMissingTries 74.3% -2025-07-23T19:36:54.7832708Z github.com/ava-labs/coreth/core/blockchain.go:2059: CleanBlockRootsAboveLastAccepted 85.7% -2025-07-23T19:36:54.7833338Z github.com/ava-labs/coreth/core/blockchain.go:2102: gatherBlockRootsAboveLastAccepted 90.9% -2025-07-23T19:36:54.7833928Z github.com/ava-labs/coreth/core/blockchain.go:2132: ResetToStateSyncedBlock 0.0% -2025-07-23T19:36:54.7834463Z github.com/ava-labs/coreth/core/blockchain.go:2187: CacheConfig 100.0% -2025-07-23T19:36:54.7835123Z github.com/ava-labs/coreth/core/blockchain.go:2191: repairTxIndexTail 100.0% -2025-07-23T19:36:54.7835711Z github.com/ava-labs/coreth/core/blockchain_ext.go:15: getOrOverrideAsRegisteredCounter 83.3% -2025-07-23T19:36:54.7836331Z github.com/ava-labs/coreth/core/blockchain_iterator.go:60: newBlockChainIterator 85.0% -2025-07-23T19:36:54.7836917Z github.com/ava-labs/coreth/core/blockchain_iterator.go:120: populateReaders 88.9% -2025-07-23T19:36:54.7837446Z github.com/ava-labs/coreth/core/blockchain_iterator.go:139: Next 75.0% -2025-07-23T19:36:54.7837940Z github.com/ava-labs/coreth/core/blockchain_iterator.go:180: Stop 100.0% -2025-07-23T19:36:54.7838460Z github.com/ava-labs/coreth/core/blockchain_reader.go:45: CurrentHeader 100.0% -2025-07-23T19:36:54.7838986Z github.com/ava-labs/coreth/core/blockchain_reader.go:51: CurrentBlock 100.0% -2025-07-23T19:36:54.7839637Z github.com/ava-labs/coreth/core/blockchain_reader.go:57: HasHeader 100.0% -2025-07-23T19:36:54.7840158Z github.com/ava-labs/coreth/core/blockchain_reader.go:63: GetHeader 100.0% -2025-07-23T19:36:54.7840684Z github.com/ava-labs/coreth/core/blockchain_reader.go:69: GetHeaderByHash 100.0% -2025-07-23T19:36:54.7841232Z github.com/ava-labs/coreth/core/blockchain_reader.go:75: GetHeaderByNumber 100.0% -2025-07-23T19:36:54.7841755Z github.com/ava-labs/coreth/core/blockchain_reader.go:81: GetBody 0.0% -2025-07-23T19:36:54.7842244Z github.com/ava-labs/coreth/core/blockchain_reader.go:100: HasBlock 60.0% -2025-07-23T19:36:54.7842759Z github.com/ava-labs/coreth/core/blockchain_reader.go:111: HasFastBlock 0.0% -2025-07-23T19:36:54.7843266Z github.com/ava-labs/coreth/core/blockchain_reader.go:123: GetBlock 100.0% -2025-07-23T19:36:54.7843781Z github.com/ava-labs/coreth/core/blockchain_reader.go:138: GetBlockByHash 75.0% -2025-07-23T19:36:54.7844327Z github.com/ava-labs/coreth/core/blockchain_reader.go:148: GetBlockByNumber 100.0% -2025-07-23T19:36:54.7845004Z github.com/ava-labs/coreth/core/blockchain_reader.go:158: GetBlocksFromHash 0.0% -2025-07-23T19:36:54.7845559Z github.com/ava-labs/coreth/core/blockchain_reader.go:176: GetReceiptsByHash 76.9% -2025-07-23T19:36:54.7846119Z github.com/ava-labs/coreth/core/blockchain_reader.go:197: GetCanonicalHash 100.0% -2025-07-23T19:36:54.7846702Z github.com/ava-labs/coreth/core/blockchain_reader.go:211: GetTransactionLookup 87.5% -2025-07-23T19:36:54.7847254Z github.com/ava-labs/coreth/core/blockchain_reader.go:235: HasState 100.0% -2025-07-23T19:36:54.7847787Z github.com/ava-labs/coreth/core/blockchain_reader.go:242: HasBlockAndState 100.0% -2025-07-23T19:36:54.7848306Z github.com/ava-labs/coreth/core/blockchain_reader.go:252: State 100.0% -2025-07-23T19:36:54.7848802Z github.com/ava-labs/coreth/core/blockchain_reader.go:257: StateAt 100.0% -2025-07-23T19:36:54.7849304Z github.com/ava-labs/coreth/core/blockchain_reader.go:262: Config 100.0% -2025-07-23T19:36:54.7849790Z github.com/ava-labs/coreth/core/blockchain_reader.go:265: Engine 100.0% -2025-07-23T19:36:54.7850283Z github.com/ava-labs/coreth/core/blockchain_reader.go:268: Snapshots 0.0% -2025-07-23T19:36:54.7850774Z github.com/ava-labs/coreth/core/blockchain_reader.go:273: Validator 0.0% -2025-07-23T19:36:54.7851267Z github.com/ava-labs/coreth/core/blockchain_reader.go:278: Processor 0.0% -2025-07-23T19:36:54.7851761Z github.com/ava-labs/coreth/core/blockchain_reader.go:283: StateCache 0.0% -2025-07-23T19:36:54.7852462Z github.com/ava-labs/coreth/core/blockchain_reader.go:288: GasLimit 0.0% -2025-07-23T19:36:54.7852958Z github.com/ava-labs/coreth/core/blockchain_reader.go:293: Genesis 100.0% -2025-07-23T19:36:54.7853460Z github.com/ava-labs/coreth/core/blockchain_reader.go:298: GetVMConfig 0.0% -2025-07-23T19:36:54.7853963Z github.com/ava-labs/coreth/core/blockchain_reader.go:303: TrieDB 100.0% -2025-07-23T19:36:54.7854465Z github.com/ava-labs/coreth/core/blockchain_reader.go:308: HeaderChain 0.0% -2025-07-23T19:36:54.7855131Z github.com/ava-labs/coreth/core/blockchain_reader.go:313: SubscribeRemovedLogsEvent 0.0% -2025-07-23T19:36:54.7855723Z github.com/ava-labs/coreth/core/blockchain_reader.go:318: SubscribeChainEvent 0.0% -2025-07-23T19:36:54.7856308Z github.com/ava-labs/coreth/core/blockchain_reader.go:323: SubscribeChainHeadEvent 0.0% -2025-07-23T19:36:54.7856900Z github.com/ava-labs/coreth/core/blockchain_reader.go:328: SubscribeChainSideEvent 0.0% -2025-07-23T19:36:54.7857480Z github.com/ava-labs/coreth/core/blockchain_reader.go:333: SubscribeLogsEvent 0.0% -2025-07-23T19:36:54.7858074Z github.com/ava-labs/coreth/core/blockchain_reader.go:339: SubscribeBlockProcessingEvent 0.0% -2025-07-23T19:36:54.7858708Z github.com/ava-labs/coreth/core/blockchain_reader.go:344: SubscribeChainAcceptedEvent 100.0% -2025-07-23T19:36:54.7859461Z github.com/ava-labs/coreth/core/blockchain_reader.go:349: SubscribeAcceptedLogsEvent 100.0% -2025-07-23T19:36:54.7860123Z github.com/ava-labs/coreth/core/blockchain_reader.go:354: SubscribeAcceptedTransactionEvent 0.0% -2025-07-23T19:36:54.7860696Z github.com/ava-labs/coreth/core/blockchain_reader.go:359: GetLogs 0.0% -2025-07-23T19:36:54.7861198Z github.com/ava-labs/coreth/core/bloom_indexer.go:60: NewBloomIndexer 0.0% -2025-07-23T19:36:54.7861678Z github.com/ava-labs/coreth/core/bloom_indexer.go:72: Reset 0.0% -2025-07-23T19:36:54.7862139Z github.com/ava-labs/coreth/core/bloom_indexer.go:80: Process 0.0% -2025-07-23T19:36:54.7862604Z github.com/ava-labs/coreth/core/bloom_indexer.go:88: Commit 0.0% -2025-07-23T19:36:54.7863055Z github.com/ava-labs/coreth/core/bloom_indexer.go:101: Prune 0.0% -2025-07-23T19:36:54.7863554Z github.com/ava-labs/coreth/core/bloombits/generator.go:56: NewGenerator 83.3% -2025-07-23T19:36:54.7864082Z github.com/ava-labs/coreth/core/bloombits/generator.go:69: AddBloom 90.5% -2025-07-23T19:36:54.7864591Z github.com/ava-labs/coreth/core/bloombits/generator.go:101: Bitset 60.0% -2025-07-23T19:36:54.7865391Z github.com/ava-labs/coreth/core/bloombits/matcher.go:49: calcBloomIndexes 100.0% -2025-07-23T19:36:54.7865930Z github.com/ava-labs/coreth/core/bloombits/matcher.go:103: NewMatcher 100.0% -2025-07-23T19:36:54.7866454Z github.com/ava-labs/coreth/core/bloombits/matcher.go:148: addScheduler 100.0% -2025-07-23T19:36:54.7866959Z github.com/ava-labs/coreth/core/bloombits/matcher.go:158: Start 97.0% -2025-07-23T19:36:54.7867445Z github.com/ava-labs/coreth/core/bloombits/matcher.go:235: run 100.0% -2025-07-23T19:36:54.7867931Z github.com/ava-labs/coreth/core/bloombits/matcher.go:270: subMatch 98.3% -2025-07-23T19:36:54.7868442Z github.com/ava-labs/coreth/core/bloombits/matcher.go:392: distributor 100.0% -2025-07-23T19:36:54.7868953Z github.com/ava-labs/coreth/core/bloombits/matcher.go:534: Close 100.0% -2025-07-23T19:36:54.7869435Z github.com/ava-labs/coreth/core/bloombits/matcher.go:543: Error 0.0% -2025-07-23T19:36:54.7869952Z github.com/ava-labs/coreth/core/bloombits/matcher.go:553: allocateRetrieval 100.0% -2025-07-23T19:36:54.7870515Z github.com/ava-labs/coreth/core/bloombits/matcher.go:567: pendingSections 100.0% -2025-07-23T19:36:54.7871074Z github.com/ava-labs/coreth/core/bloombits/matcher.go:581: allocateSections 100.0% -2025-07-23T19:36:54.7871615Z github.com/ava-labs/coreth/core/bloombits/matcher.go:599: deliverSections 100.0% -2025-07-23T19:36:54.7872309Z github.com/ava-labs/coreth/core/bloombits/matcher.go:609: Multiplex 81.8% -2025-07-23T19:36:54.7872841Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:60: newScheduler 100.0% -2025-07-23T19:36:54.7873355Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:70: run 100.0% -2025-07-23T19:36:54.7873843Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:84: reset 100.0% -2025-07-23T19:36:54.7874378Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:98: scheduleRequests 100.0% -2025-07-23T19:36:54.7875080Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:145: scheduleDeliveries 100.0% -2025-07-23T19:36:54.7875646Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:182: deliver 100.0% -2025-07-23T19:36:54.7876168Z github.com/ava-labs/coreth/core/bounded_buffer.go:21: NewBoundedBuffer 100.0% -2025-07-23T19:36:54.7876665Z github.com/ava-labs/coreth/core/bounded_buffer.go:32: Insert 90.0% -2025-07-23T19:36:54.7877134Z github.com/ava-labs/coreth/core/bounded_buffer.go:55: Last 100.0% -2025-07-23T19:36:54.7877624Z github.com/ava-labs/coreth/core/chain_indexer.go:115: NewChainIndexer 100.0% -2025-07-23T19:36:54.7878135Z github.com/ava-labs/coreth/core/chain_indexer.go:142: AddCheckpoint 0.0% -2025-07-23T19:36:54.7878727Z github.com/ava-labs/coreth/core/chain_indexer.go:160: Start 0.0% -2025-07-23T19:36:54.7879197Z github.com/ava-labs/coreth/core/chain_indexer.go:169: Close 58.8% -2025-07-23T19:36:54.7879654Z github.com/ava-labs/coreth/core/chain_indexer.go:209: eventLoop 0.0% -2025-07-23T19:36:54.7880121Z github.com/ava-labs/coreth/core/chain_indexer.go:255: newHead 78.1% -2025-07-23T19:36:54.7880599Z github.com/ava-labs/coreth/core/chain_indexer.go:316: updateLoop 95.2% -2025-07-23T19:36:54.7881100Z github.com/ava-labs/coreth/core/chain_indexer.go:400: processSection 68.4% -2025-07-23T19:36:54.7881602Z github.com/ava-labs/coreth/core/chain_indexer.go:434: verifyLastHead 75.0% -2025-07-23T19:36:54.7882097Z github.com/ava-labs/coreth/core/chain_indexer.go:446: Sections 100.0% -2025-07-23T19:36:54.7882592Z github.com/ava-labs/coreth/core/chain_indexer.go:455: AddChildIndexer 70.0% -2025-07-23T19:36:54.7883072Z github.com/ava-labs/coreth/core/chain_indexer.go:477: Prune 0.0% -2025-07-23T19:36:54.7883566Z github.com/ava-labs/coreth/core/chain_indexer.go:483: loadValidSections 66.7% -2025-07-23T19:36:54.7884091Z github.com/ava-labs/coreth/core/chain_indexer.go:491: setValidSections 100.0% -2025-07-23T19:36:54.7884596Z github.com/ava-labs/coreth/core/chain_indexer.go:507: SectionHead 100.0% -2025-07-23T19:36:54.7885200Z github.com/ava-labs/coreth/core/chain_indexer.go:520: setSectionHead 100.0% -2025-07-23T19:36:54.7885721Z github.com/ava-labs/coreth/core/chain_indexer.go:529: removeSectionHead 100.0% -2025-07-23T19:36:54.7886229Z github.com/ava-labs/coreth/core/chain_makers.go:68: SetCoinbase 50.0% -2025-07-23T19:36:54.7886696Z github.com/ava-labs/coreth/core/chain_makers.go:80: SetExtra 0.0% -2025-07-23T19:36:54.7887154Z github.com/ava-labs/coreth/core/chain_makers.go:85: AppendExtra 0.0% -2025-07-23T19:36:54.7887615Z github.com/ava-labs/coreth/core/chain_makers.go:90: SetNonce 0.0% -2025-07-23T19:36:54.7888090Z github.com/ava-labs/coreth/core/chain_makers.go:97: SetDifficulty 100.0% -2025-07-23T19:36:54.7888568Z github.com/ava-labs/coreth/core/chain_makers.go:102: Difficulty 0.0% -2025-07-23T19:36:54.7889068Z github.com/ava-labs/coreth/core/chain_makers.go:108: SetParentBeaconRoot 0.0% -2025-07-23T19:36:54.7889559Z github.com/ava-labs/coreth/core/chain_makers.go:124: addTx 90.9% -2025-07-23T19:36:54.7890008Z github.com/ava-labs/coreth/core/chain_makers.go:149: AddTx 100.0% -2025-07-23T19:36:54.7890479Z github.com/ava-labs/coreth/core/chain_makers.go:160: AddTxWithChain 0.0% -2025-07-23T19:36:54.7890987Z github.com/ava-labs/coreth/core/chain_makers.go:167: AddTxWithVMConfig 100.0% -2025-07-23T19:36:54.7891667Z github.com/ava-labs/coreth/core/chain_makers.go:172: GetBalance 0.0% -2025-07-23T19:36:54.7892152Z github.com/ava-labs/coreth/core/chain_makers.go:180: AddUncheckedTx 0.0% -2025-07-23T19:36:54.7892618Z github.com/ava-labs/coreth/core/chain_makers.go:185: Number 0.0% -2025-07-23T19:36:54.7893083Z github.com/ava-labs/coreth/core/chain_makers.go:190: Timestamp 100.0% -2025-07-23T19:36:54.7893553Z github.com/ava-labs/coreth/core/chain_makers.go:195: BaseFee 100.0% -2025-07-23T19:36:54.7893997Z github.com/ava-labs/coreth/core/chain_makers.go:200: Gas 0.0% -2025-07-23T19:36:54.7894436Z github.com/ava-labs/coreth/core/chain_makers.go:205: Signer 0.0% -2025-07-23T19:36:54.7895050Z github.com/ava-labs/coreth/core/chain_makers.go:214: AddUncheckedReceipt 0.0% -2025-07-23T19:36:54.7895557Z github.com/ava-labs/coreth/core/chain_makers.go:220: TxNonce 66.7% -2025-07-23T19:36:54.7896027Z github.com/ava-labs/coreth/core/chain_makers.go:228: AddUncle 100.0% -2025-07-23T19:36:54.7896495Z github.com/ava-labs/coreth/core/chain_makers.go:235: PrevBlock 60.0% -2025-07-23T19:36:54.7896960Z github.com/ava-labs/coreth/core/chain_makers.go:248: OffsetTime 0.0% -2025-07-23T19:36:54.7897574Z github.com/ava-labs/coreth/core/chain_makers.go:257: SetOnBlockGenerated 0.0% -2025-07-23T19:36:54.7898101Z github.com/ava-labs/coreth/core/chain_makers.go:273: GenerateChain 79.2% -2025-07-23T19:36:54.7898632Z github.com/ava-labs/coreth/core/chain_makers.go:362: GenerateChainWithGenesis 87.5% -2025-07-23T19:36:54.7899150Z github.com/ava-labs/coreth/core/chain_makers.go:374: makeHeader 89.5% -2025-07-23T19:36:54.7899636Z github.com/ava-labs/coreth/core/chain_makers.go:425: newChainMaker 100.0% -2025-07-23T19:36:54.7900115Z github.com/ava-labs/coreth/core/chain_makers.go:434: add 100.0% -2025-07-23T19:36:54.7900581Z github.com/ava-labs/coreth/core/chain_makers.go:440: blockByNumber 0.0% -2025-07-23T19:36:54.7901063Z github.com/ava-labs/coreth/core/chain_makers.go:455: Config 100.0% -2025-07-23T19:36:54.7901512Z github.com/ava-labs/coreth/core/chain_makers.go:460: Engine 0.0% -2025-07-23T19:36:54.7901979Z github.com/ava-labs/coreth/core/chain_makers.go:464: CurrentHeader 0.0% -2025-07-23T19:36:54.7902489Z github.com/ava-labs/coreth/core/chain_makers.go:471: GetHeaderByNumber 0.0% -2025-07-23T19:36:54.7902994Z github.com/ava-labs/coreth/core/chain_makers.go:479: GetHeaderByHash 0.0% -2025-07-23T19:36:54.7903477Z github.com/ava-labs/coreth/core/chain_makers.go:487: GetHeader 0.0% -2025-07-23T19:36:54.7903935Z github.com/ava-labs/coreth/core/chain_makers.go:491: GetBlock 0.0% -2025-07-23T19:36:54.7904450Z github.com/ava-labs/coreth/core/coretest/test_indices.go:21: CheckTxIndices 100.0% -2025-07-23T19:36:54.7905204Z github.com/ava-labs/coreth/core/evm.go:47: init 100.0% -2025-07-23T19:36:54.7905669Z github.com/ava-labs/coreth/core/evm.go:61: OverrideNewEVMArgs 100.0% -2025-07-23T19:36:54.7906167Z github.com/ava-labs/coreth/core/evm.go:74: OverrideEVMResetArgs 100.0% -2025-07-23T19:36:54.7906632Z github.com/ava-labs/coreth/core/evm.go:79: wrapStateDB 100.0% -2025-07-23T19:36:54.7907089Z github.com/ava-labs/coreth/core/evm.go:90: GetCommittedState 100.0% -2025-07-23T19:36:54.7907570Z github.com/ava-labs/coreth/core/evm.go:106: NewEVMBlockContext 100.0% -2025-07-23T19:36:54.7908111Z github.com/ava-labs/coreth/core/evm.go:147: NewEVMBlockContextWithPredicateResults 0.0% -2025-07-23T19:36:54.7908636Z github.com/ava-labs/coreth/core/evm.go:160: NewEVMTxContext 100.0% -2025-07-23T19:36:54.7909081Z github.com/ava-labs/coreth/core/evm.go:173: GetHashFn 10.0% -2025-07-23T19:36:54.7909511Z github.com/ava-labs/coreth/core/evm.go:213: CanTransfer 100.0% -2025-07-23T19:36:54.7909938Z github.com/ava-labs/coreth/core/evm.go:218: Transfer 100.0% -2025-07-23T19:36:54.7910530Z github.com/ava-labs/coreth/core/extstate/statedb.go:38: New 100.0% -2025-07-23T19:36:54.7911025Z github.com/ava-labs/coreth/core/extstate/statedb.go:45: Prepare 100.0% -2025-07-23T19:36:54.7911585Z github.com/ava-labs/coreth/core/extstate/statedb.go:61: GetPredicateStorageSlots 75.0% -2025-07-23T19:36:54.7912130Z github.com/ava-labs/coreth/core/fifo_cache.go:24: NewFIFOCache 100.0% -2025-07-23T19:36:54.7912585Z github.com/ava-labs/coreth/core/fifo_cache.go:43: Put 100.0% -2025-07-23T19:36:54.7913006Z github.com/ava-labs/coreth/core/fifo_cache.go:51: Get 100.0% -2025-07-23T19:36:54.7913429Z github.com/ava-labs/coreth/core/fifo_cache.go:61: remove 0.0% -2025-07-23T19:36:54.7913844Z github.com/ava-labs/coreth/core/fifo_cache.go:68: Put 0.0% -2025-07-23T19:36:54.7914256Z github.com/ava-labs/coreth/core/fifo_cache.go:69: Get 100.0% -2025-07-23T19:36:54.7914681Z github.com/ava-labs/coreth/core/gaspool.go:40: AddGas 75.0% -2025-07-23T19:36:54.7915223Z github.com/ava-labs/coreth/core/gaspool.go:50: SubGas 100.0% -2025-07-23T19:36:54.7915638Z github.com/ava-labs/coreth/core/gaspool.go:59: Gas 0.0% -2025-07-23T19:36:54.7916050Z github.com/ava-labs/coreth/core/gaspool.go:64: SetGas 0.0% -2025-07-23T19:36:54.7916589Z github.com/ava-labs/coreth/core/gaspool.go:68: String 0.0% -2025-07-23T19:36:54.7917037Z github.com/ava-labs/coreth/core/gen_genesis.go:20: MarshalJSON 0.0% -2025-07-23T19:36:54.7917514Z github.com/ava-labs/coreth/core/gen_genesis.go:63: UnmarshalJSON 0.0% -2025-07-23T19:36:54.7917967Z github.com/ava-labs/coreth/core/genesis.go:109: Error 0.0% -2025-07-23T19:36:54.7918425Z github.com/ava-labs/coreth/core/genesis.go:128: SetupGenesisBlock 77.8% -2025-07-23T19:36:54.7918902Z github.com/ava-labs/coreth/core/genesis.go:212: IsVerkle 100.0% -2025-07-23T19:36:54.7919348Z github.com/ava-labs/coreth/core/genesis.go:217: ToBlock 100.0% -2025-07-23T19:36:54.7919804Z github.com/ava-labs/coreth/core/genesis.go:222: trieConfig 100.0% -2025-07-23T19:36:54.7920245Z github.com/ava-labs/coreth/core/genesis.go:233: toBlock 90.5% -2025-07-23T19:36:54.7920675Z github.com/ava-labs/coreth/core/genesis.go:321: Commit 80.0% -2025-07-23T19:36:54.7921126Z github.com/ava-labs/coreth/core/genesis.go:344: MustCommit 75.0% -2025-07-23T19:36:54.7921623Z github.com/ava-labs/coreth/core/genesis.go:353: GenesisBlockForTesting 100.0% -2025-07-23T19:36:54.7922132Z github.com/ava-labs/coreth/core/genesis.go:363: ReadBlockByHash 75.0% -2025-07-23T19:36:54.7922632Z github.com/ava-labs/coreth/core/headerchain.go:84: NewHeaderChain 85.7% -2025-07-23T19:36:54.7923138Z github.com/ava-labs/coreth/core/headerchain.go:121: GetBlockNumber 100.0% -2025-07-23T19:36:54.7923629Z github.com/ava-labs/coreth/core/headerchain.go:134: GetHeader 100.0% -2025-07-23T19:36:54.7924118Z github.com/ava-labs/coreth/core/headerchain.go:150: GetHeaderByHash 75.0% -2025-07-23T19:36:54.7924613Z github.com/ava-labs/coreth/core/headerchain.go:161: HasHeader 66.7% -2025-07-23T19:36:54.7925242Z github.com/ava-labs/coreth/core/headerchain.go:170: GetHeaderByNumber 100.0% -2025-07-23T19:36:54.7925771Z github.com/ava-labs/coreth/core/headerchain.go:181: GetCanonicalHash 100.0% -2025-07-23T19:36:54.7926286Z github.com/ava-labs/coreth/core/headerchain.go:187: CurrentHeader 100.0% -2025-07-23T19:36:54.7926788Z github.com/ava-labs/coreth/core/headerchain.go:193: SetCurrentHeader 100.0% -2025-07-23T19:36:54.7927284Z github.com/ava-labs/coreth/core/headerchain.go:199: SetGenesis 100.0% -2025-07-23T19:36:54.7927745Z github.com/ava-labs/coreth/core/headerchain.go:204: Config 0.0% -2025-07-23T19:36:54.7928192Z github.com/ava-labs/coreth/core/headerchain.go:207: Engine 0.0% -2025-07-23T19:36:54.7928642Z github.com/ava-labs/coreth/core/headerchain.go:211: GetBlock 0.0% -2025-07-23T19:36:54.7929280Z github.com/ava-labs/coreth/core/predicate_check.go:22: CheckPredicates 100.0% -2025-07-23T19:36:54.7929821Z github.com/ava-labs/coreth/core/sender_cacher.go:61: NewTxSenderCacher 100.0% -2025-07-23T19:36:54.7930314Z github.com/ava-labs/coreth/core/sender_cacher.go:78: cache 100.0% -2025-07-23T19:36:54.7930780Z github.com/ava-labs/coreth/core/sender_cacher.go:89: Recover 90.9% -2025-07-23T19:36:54.7931246Z github.com/ava-labs/coreth/core/sender_cacher.go:119: Shutdown 100.0% -2025-07-23T19:36:54.7931767Z github.com/ava-labs/coreth/core/state/database.go:42: NewDatabase 100.0% -2025-07-23T19:36:54.7932311Z github.com/ava-labs/coreth/core/state/database.go:46: NewDatabaseWithConfig 100.0% -2025-07-23T19:36:54.7932887Z github.com/ava-labs/coreth/core/state/database.go:51: NewDatabaseWithNodeDB 0.0% -2025-07-23T19:36:54.7933433Z github.com/ava-labs/coreth/core/state/database.go:55: wrapIfFirewood 100.0% -2025-07-23T19:36:54.7933976Z github.com/ava-labs/coreth/core/state/firewood_database.go:25: OpenTrie 100.0% -2025-07-23T19:36:54.7934540Z github.com/ava-labs/coreth/core/state/firewood_database.go:30: OpenStorageTrie 75.0% -2025-07-23T19:36:54.7935192Z github.com/ava-labs/coreth/core/state/firewood_database.go:40: CopyTrie 0.0% -2025-07-23T19:36:54.7935855Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:42: stateBloomHash 100.0% -2025-07-23T19:36:54.7936454Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:69: newStateBloomWithSize 80.0% -2025-07-23T19:36:54.7937056Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:80: NewStateBloomFromDisk 0.0% -2025-07-23T19:36:54.7937594Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:90: Commit 63.6% -2025-07-23T19:36:54.7938089Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:112: Put 37.5% -2025-07-23T19:36:54.7938580Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:128: Delete 0.0% -2025-07-23T19:36:54.7939085Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:134: Contain 100.0% -2025-07-23T19:36:54.7939593Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:96: NewPruner 66.7% -2025-07-23T19:36:54.7940100Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:136: prune 38.2% -2025-07-23T19:36:54.7940601Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:261: Prune 66.7% -2025-07-23T19:36:54.7941128Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:315: RecoverPruning 26.7% -2025-07-23T19:36:54.7941685Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:344: extractGenesis 48.6% -2025-07-23T19:36:54.7942248Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:403: bloomFilterName 100.0% -2025-07-23T19:36:54.7942808Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:407: isBloomFilter 0.0% -2025-07-23T19:36:54.7943425Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:415: findBloomFilter 50.0% -2025-07-23T19:36:54.7943985Z github.com/ava-labs/coreth/core/state/snapshot/context.go:55: Info 100.0% -2025-07-23T19:36:54.7944510Z github.com/ava-labs/coreth/core/state/snapshot/context.go:61: Debug 100.0% -2025-07-23T19:36:54.7945134Z github.com/ava-labs/coreth/core/state/snapshot/context.go:67: log 45.0% -2025-07-23T19:36:54.7945724Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:65: GenerateAccountTrieRoot 0.0% -2025-07-23T19:36:54.7946395Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:70: GenerateStorageTrieRoot 0.0% -2025-07-23T19:36:54.7947010Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:77: GenerateTrie 0.0% -2025-07-23T19:36:54.7947606Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:134: newGenerateStats 100.0% -2025-07-23T19:36:54.7948229Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:143: progressAccounts 0.0% -2025-07-23T19:36:54.7948841Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:152: finishAccounts 100.0% -2025-07-23T19:36:54.7949596Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:160: progressContract 0.0% -2025-07-23T19:36:54.7950208Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:172: finishContract 100.0% -2025-07-23T19:36:54.7950792Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:182: report 42.9% -2025-07-23T19:36:54.7951359Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:222: reportDone 100.0% -2025-07-23T19:36:54.7951933Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:236: runReport 100.0% -2025-07-23T19:36:54.7952518Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:257: generateTrieRoot 79.4% -2025-07-23T19:36:54.7953130Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:375: stackTrieGenerate 75.0% -2025-07-23T19:36:54.7953703Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:92: init 80.0% -2025-07-23T19:36:54.7954287Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:140: destructBloomHash 100.0% -2025-07-23T19:36:54.7955005Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:145: accountBloomHash 100.0% -2025-07-23T19:36:54.7955616Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:150: storageBloomHash 100.0% -2025-07-23T19:36:54.7956335Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:157: newDiffLayer 83.3% -2025-07-23T19:36:54.7956914Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:201: rebloom 100.0% -2025-07-23T19:36:54.7957455Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:242: Root 100.0% -2025-07-23T19:36:54.7958003Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:247: BlockHash 100.0% -2025-07-23T19:36:54.7958562Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:252: Parent 100.0% -2025-07-23T19:36:54.7959100Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:261: Stale 100.0% -2025-07-23T19:36:54.7959647Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:267: Account 88.9% -2025-07-23T19:36:54.7960201Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:286: AccountRLP 86.7% -2025-07-23T19:36:54.7960756Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:318: accountRLP 95.0% -2025-07-23T19:36:54.7961306Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:357: Storage 60.0% -2025-07-23T19:36:54.7961846Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:389: storage 69.6% -2025-07-23T19:36:54.7962382Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:431: Update 100.0% -2025-07-23T19:36:54.7962919Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:438: flatten 95.5% -2025-07-23T19:36:54.7963473Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:497: AccountList 100.0% -2025-07-23T19:36:54.7964044Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:533: StorageList 100.0% -2025-07-23T19:36:54.7964609Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:70: Release 0.0% -2025-07-23T19:36:54.7965242Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:78: Root 100.0% -2025-07-23T19:36:54.7965786Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:83: BlockHash 100.0% -2025-07-23T19:36:54.7966338Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:88: Parent 100.0% -2025-07-23T19:36:54.7966878Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:94: Stale 100.0% -2025-07-23T19:36:54.7967409Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:103: Account 88.9% -2025-07-23T19:36:54.7967970Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:120: AccountRLP 100.0% -2025-07-23T19:36:54.7968528Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:158: Storage 100.0% -2025-07-23T19:36:54.7969077Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:199: Update 100.0% -2025-07-23T19:36:54.7969831Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:55: generateSnapshot 91.7% -2025-07-23T19:36:54.7970435Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:90: journalProgress 88.2% -2025-07-23T19:36:54.7971032Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:127: checkAndFlush 50.0% -2025-07-23T19:36:54.7971594Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:178: generate 68.9% -2025-07-23T19:36:54.7972208Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:335: newMeteredSnapshotCache 100.0% -2025-07-23T19:36:54.7972841Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:69: AccountIterator 100.0% -2025-07-23T19:36:54.7973400Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:83: Next 70.0% -2025-07-23T19:36:54.7973924Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:108: Error 100.0% -2025-07-23T19:36:54.7974460Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:113: Hash 100.0% -2025-07-23T19:36:54.7975097Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:125: Account 81.8% -2025-07-23T19:36:54.7975652Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:143: Release 0.0% -2025-07-23T19:36:54.7976346Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:153: AccountIterator 100.0% -2025-07-23T19:36:54.7976932Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:162: Next 90.0% -2025-07-23T19:36:54.7977462Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:186: Error 100.0% -2025-07-23T19:36:54.7977997Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:194: Hash 100.0% -2025-07-23T19:36:54.7978527Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:199: Account 100.0% -2025-07-23T19:36:54.7979067Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:204: Release 33.3% -2025-07-23T19:36:54.7979649Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:233: StorageIterator 100.0% -2025-07-23T19:36:54.7980208Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:250: Next 70.0% -2025-07-23T19:36:54.7980737Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:275: Error 100.0% -2025-07-23T19:36:54.7981269Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:280: Hash 100.0% -2025-07-23T19:36:54.7981790Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:292: Slot 72.7% -2025-07-23T19:36:54.7982315Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:311: Release 0.0% -2025-07-23T19:36:54.7982896Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:325: StorageIterator 100.0% -2025-07-23T19:36:54.7983458Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:341: Next 90.0% -2025-07-23T19:36:54.7983980Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:365: Error 100.0% -2025-07-23T19:36:54.7984509Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:373: Hash 100.0% -2025-07-23T19:36:54.7985155Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:378: Slot 100.0% -2025-07-23T19:36:54.7985700Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:383: Release 33.3% -2025-07-23T19:36:54.7986328Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:53: initBinaryAccountIterator 100.0% -2025-07-23T19:36:54.7987046Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:78: initBinaryStorageIterator 82.6% -2025-07-23T19:36:54.7987685Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:130: Next 100.0% -2025-07-23T19:36:54.7988260Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:162: Error 100.0% -2025-07-23T19:36:54.7988824Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:167: Hash 100.0% -2025-07-23T19:36:54.7989405Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:176: Account 57.1% -2025-07-23T19:36:54.7990110Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:194: Slot 57.1% -2025-07-23T19:36:54.7990681Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:207: Release 0.0% -2025-07-23T19:36:54.7991325Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:214: newBinaryAccountIterator 100.0% -2025-07-23T19:36:54.7992032Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:221: newBinaryStorageIterator 100.0% -2025-07-23T19:36:54.7992654Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:47: Cmp 50.0% -2025-07-23T19:36:54.7993243Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:86: newFastIterator 92.9% -2025-07-23T19:36:54.7993829Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:124: init 87.5% -2025-07-23T19:36:54.7994385Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:179: Next 83.3% -2025-07-23T19:36:54.7995048Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:235: next 100.0% -2025-07-23T19:36:54.7995603Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:296: move 100.0% -2025-07-23T19:36:54.7996158Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:304: Error 100.0% -2025-07-23T19:36:54.7996920Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:309: Hash 100.0% -2025-07-23T19:36:54.7997504Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:315: Account 100.0% -2025-07-23T19:36:54.7998072Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:321: Slot 100.0% -2025-07-23T19:36:54.7998645Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:327: Release 100.0% -2025-07-23T19:36:54.7999207Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:335: Debug 0.0% -2025-07-23T19:36:54.7999830Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:345: newFastAccountIterator 100.0% -2025-07-23T19:36:54.8000510Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:352: newFastStorageIterator 100.0% -2025-07-23T19:36:54.8001125Z github.com/ava-labs/coreth/core/state/snapshot/journal.go:61: loadSnapshot 0.0% -2025-07-23T19:36:54.8001739Z github.com/ava-labs/coreth/core/state/snapshot/journal.go:143: ResetSnapshotGeneration 0.0% -2025-07-23T19:36:54.8002322Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:205: New 0.0% -2025-07-23T19:36:54.8002858Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:254: insertSnap 100.0% -2025-07-23T19:36:54.8003417Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:266: Snapshot 100.0% -2025-07-23T19:36:54.8003976Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:272: getSnapshot 85.7% -2025-07-23T19:36:54.8004527Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:288: Snapshots 0.0% -2025-07-23T19:36:54.8005233Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:323: WithBlockHashes 0.0% -2025-07-23T19:36:54.8005854Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:329: Update 0.0% -2025-07-23T19:36:54.8006452Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:350: UpdateWithBlockHashes 81.8% -2025-07-23T19:36:54.8007079Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:386: verifyIntegrity 57.1% -2025-07-23T19:36:54.8007639Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:413: Cap 0.0% -2025-07-23T19:36:54.8008172Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:433: Flatten 83.1% -2025-07-23T19:36:54.8008749Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:533: NumStateLayers 100.0% -2025-07-23T19:36:54.8009341Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:540: NumBlockLayers 100.0% -2025-07-23T19:36:54.8009926Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:548: Discard 100.0% -2025-07-23T19:36:54.8010643Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:560: discard 78.6% -2025-07-23T19:36:54.8011217Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:592: AbortGeneration 0.0% -2025-07-23T19:36:54.8011819Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:603: abortGeneration 63.6% -2025-07-23T19:36:54.8012403Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:631: diffToDisk 75.4% -2025-07-23T19:36:54.8012956Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:779: Release 0.0% -2025-07-23T19:36:54.8013492Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:788: Rebuild 0.0% -2025-07-23T19:36:54.8014063Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:842: AccountIterator 71.4% -2025-07-23T19:36:54.8014665Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:859: StorageIterator 100.0% -2025-07-23T19:36:54.8015414Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:863: StorageIteratorWithForce 71.4% -2025-07-23T19:36:54.8016012Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:878: Verify 0.0% -2025-07-23T19:36:54.8016547Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:886: verify 66.7% -2025-07-23T19:36:54.8017203Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:918: disklayer 83.3% -2025-07-23T19:36:54.8017766Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:941: diskRoot 0.0% -2025-07-23T19:36:54.8018314Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:951: generating 87.5% -2025-07-23T19:36:54.8018857Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:965: DiskRoot 0.0% -2025-07-23T19:36:54.8019389Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:977: Size 0.0% -2025-07-23T19:36:54.8020070Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:14: DiskAccountIterator 0.0% -2025-07-23T19:36:54.8020812Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:21: DiskStorageIterator 0.0% -2025-07-23T19:36:54.8021529Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:41: NewDiskLayer 0.0% -2025-07-23T19:36:54.8022359Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:53: NewTestTree 100.0% -2025-07-23T19:36:54.8023109Z github.com/ava-labs/coreth/core/state/snapshot/utils.go:43: CheckDanglingStorage 50.0% -2025-07-23T19:36:54.8023838Z github.com/ava-labs/coreth/core/state/snapshot/utils.go:53: checkDanglingDiskStorage 76.5% -2025-07-23T19:36:54.8024527Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:45: WipeSnapshot 80.0% -2025-07-23T19:36:54.8040021Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:68: wipeContent 60.0% -2025-07-23T19:36:54.8040714Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:84: wipeKeyRange 59.4% -2025-07-23T19:36:54.8041239Z github.com/ava-labs/coreth/core/state/statedb.go:65: New 75.0% -2025-07-23T19:36:54.8041720Z github.com/ava-labs/coreth/core/state/statedb.go:81: Done 0.0% -2025-07-23T19:36:54.8042242Z github.com/ava-labs/coreth/core/state/statedb.go:87: WithConcurrentWorkers 0.0% -2025-07-23T19:36:54.8042816Z github.com/ava-labs/coreth/core/state/statedb.go:95: GetBalanceMultiCoin 100.0% -2025-07-23T19:36:54.8043354Z github.com/ava-labs/coreth/core/state/statedb.go:101: GetState 100.0% -2025-07-23T19:36:54.8043877Z github.com/ava-labs/coreth/core/state/statedb.go:107: AddBalanceMultiCoin 75.0% -2025-07-23T19:36:54.8044425Z github.com/ava-labs/coreth/core/state/statedb.go:121: SubBalanceMultiCoin 71.4% -2025-07-23T19:36:54.8045054Z github.com/ava-labs/coreth/core/state/statedb.go:136: SetState 100.0% -2025-07-23T19:36:54.8045553Z github.com/ava-labs/coreth/core/state/statedb.go:144: SetTxContext 0.0% -2025-07-23T19:36:54.8046030Z github.com/ava-labs/coreth/core/state/statedb.go:151: GetTxHash 0.0% -2025-07-23T19:36:54.8046714Z github.com/ava-labs/coreth/core/state/statedb.go:155: Copy 0.0% -2025-07-23T19:36:54.8047215Z github.com/ava-labs/coreth/core/state/statedb.go:169: NormalizeCoinID 100.0% -2025-07-23T19:36:54.8047754Z github.com/ava-labs/coreth/core/state/statedb.go:177: NormalizeStateKey 100.0% -2025-07-23T19:36:54.8048259Z github.com/ava-labs/coreth/core/state_manager.go:41: init 100.0% -2025-07-23T19:36:54.8048740Z github.com/ava-labs/coreth/core/state_manager.go:67: NewTrieWriter 100.0% -2025-07-23T19:36:54.8049234Z github.com/ava-labs/coreth/core/state_manager.go:91: InsertTrie 100.0% -2025-07-23T19:36:54.8049710Z github.com/ava-labs/coreth/core/state_manager.go:97: AcceptTrie 100.0% -2025-07-23T19:36:54.8050195Z github.com/ava-labs/coreth/core/state_manager.go:103: RejectTrie 100.0% -2025-07-23T19:36:54.8050675Z github.com/ava-labs/coreth/core/state_manager.go:107: Shutdown 100.0% -2025-07-23T19:36:54.8051155Z github.com/ava-labs/coreth/core/state_manager.go:120: InsertTrie 50.0% -2025-07-23T19:36:54.8051623Z github.com/ava-labs/coreth/core/state_manager.go:134: AcceptTrie 68.4% -2025-07-23T19:36:54.8052100Z github.com/ava-labs/coreth/core/state_manager.go:182: RejectTrie 100.0% -2025-07-23T19:36:54.8052693Z github.com/ava-labs/coreth/core/state_manager.go:187: Shutdown 100.0% -2025-07-23T19:36:54.8053210Z github.com/ava-labs/coreth/core/state_processor.go:55: NewStateProcessor 100.0% -2025-07-23T19:36:54.8053754Z github.com/ava-labs/coreth/core/state_processor.go:70: Process 90.9% -2025-07-23T19:36:54.8054269Z github.com/ava-labs/coreth/core/state_processor.go:120: applyTransaction 92.6% -2025-07-23T19:36:54.8054912Z github.com/ava-labs/coreth/core/state_processor.go:174: ApplyTransaction 83.3% -2025-07-23T19:36:54.8055479Z github.com/ava-labs/coreth/core/state_processor.go:187: ProcessBeaconBlockRoot 100.0% -2025-07-23T19:36:54.8056098Z github.com/ava-labs/coreth/core/state_processor_ext.go:24: ApplyPrecompileActivations 23.8% -2025-07-23T19:36:54.8056685Z github.com/ava-labs/coreth/core/state_processor_ext.go:77: ApplyUpgrades 100.0% -2025-07-23T19:36:54.8057234Z github.com/ava-labs/coreth/core/state_processor_ext.go:91: NewBlockContext 100.0% -2025-07-23T19:36:54.8057750Z github.com/ava-labs/coreth/core/state_processor_ext.go:98: Number 0.0% -2025-07-23T19:36:54.8058250Z github.com/ava-labs/coreth/core/state_processor_ext.go:99: Timestamp 100.0% -2025-07-23T19:36:54.8058743Z github.com/ava-labs/coreth/core/state_transition.go:56: Unwrap 0.0% -2025-07-23T19:36:54.8059214Z github.com/ava-labs/coreth/core/state_transition.go:61: Failed 100.0% -2025-07-23T19:36:54.8059687Z github.com/ava-labs/coreth/core/state_transition.go:65: Return 0.0% -2025-07-23T19:36:54.8060148Z github.com/ava-labs/coreth/core/state_transition.go:74: Revert 0.0% -2025-07-23T19:36:54.8060635Z github.com/ava-labs/coreth/core/state_transition.go:82: IntrinsicGas 88.2% -2025-07-23T19:36:54.8061147Z github.com/ava-labs/coreth/core/state_transition.go:139: accessListGas 91.3% -2025-07-23T19:36:54.8061657Z github.com/ava-labs/coreth/core/state_transition.go:179: toWordSize 66.7% -2025-07-23T19:36:54.8062195Z github.com/ava-labs/coreth/core/state_transition.go:210: TransactionToMessage 100.0% -2025-07-23T19:36:54.8062748Z github.com/ava-labs/coreth/core/state_transition.go:241: ApplyMessage 100.0% -2025-07-23T19:36:54.8063281Z github.com/ava-labs/coreth/core/state_transition.go:277: NewStateTransition 100.0% -2025-07-23T19:36:54.8063785Z github.com/ava-labs/coreth/core/state_transition.go:287: to 66.7% -2025-07-23T19:36:54.8064244Z github.com/ava-labs/coreth/core/state_transition.go:294: buyGas 77.8% -2025-07-23T19:36:54.8064719Z github.com/ava-labs/coreth/core/state_transition.go:333: preCheck 89.5% -2025-07-23T19:36:54.8065517Z github.com/ava-labs/coreth/core/state_transition.go:426: TransitionDb 88.2% -2025-07-23T19:36:54.8066217Z github.com/ava-labs/coreth/core/state_transition.go:514: refundGas 100.0% -2025-07-23T19:36:54.8066719Z github.com/ava-labs/coreth/core/state_transition.go:539: gasUsed 100.0% -2025-07-23T19:36:54.8067213Z github.com/ava-labs/coreth/core/state_transition.go:544: blobGasUsed 100.0% -2025-07-23T19:36:54.8067688Z github.com/ava-labs/coreth/core/txindexer.go:46: Done 0.0% -2025-07-23T19:36:54.8068142Z github.com/ava-labs/coreth/core/txindexer.go:68: newTxIndexer 90.9% -2025-07-23T19:36:54.8068592Z github.com/ava-labs/coreth/core/txindexer.go:97: run 90.9% -2025-07-23T19:36:54.8069011Z github.com/ava-labs/coreth/core/txindexer.go:124: loop 91.7% -2025-07-23T19:36:54.8069440Z github.com/ava-labs/coreth/core/txindexer.go:191: report 0.0% -2025-07-23T19:36:54.8069876Z github.com/ava-labs/coreth/core/txindexer.go:213: close 100.0% -2025-07-23T19:36:54.8070318Z github.com/ava-labs/coreth/core/txindexer.go:224: lockedRun 100.0% -2025-07-23T19:36:54.8070865Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:124: newBlobTxMeta 100.0% -2025-07-23T19:36:54.8071433Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:333: New 100.0% -2025-07-23T19:36:54.8071962Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:349: Filter 0.0% -2025-07-23T19:36:54.8072606Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:356: Init 78.8% -2025-07-23T19:36:54.8073138Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:458: Close 60.0% -2025-07-23T19:36:54.8073713Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:480: parseTransaction 88.0% -2025-07-23T19:36:54.8074298Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:528: recheck 90.9% -2025-07-23T19:36:54.8074988Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:779: offload 0.0% -2025-07-23T19:36:54.8075517Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:803: Reset 0.0% -2025-07-23T19:36:54.8076038Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:875: reorg 0.0% -2025-07-23T19:36:54.8076560Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1003: reinject 0.0% -2025-07-23T19:36:54.8077110Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1047: SetGasTip 97.2% -2025-07-23T19:36:54.8077681Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1112: validateTx 100.0% -2025-07-23T19:36:54.8078223Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1197: Has 0.0% -2025-07-23T19:36:54.8078741Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1205: HasLocal 0.0% -2025-07-23T19:36:54.8079261Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1211: Get 0.0% -2025-07-23T19:36:54.8079769Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1243: Add 0.0% -2025-07-23T19:36:54.8080277Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1263: add 89.3% -2025-07-23T19:36:54.8080795Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1430: drop 54.5% -2025-07-23T19:36:54.8081328Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1485: Pending 0.0% -2025-07-23T19:36:54.8081903Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1547: IteratePending 0.0% -2025-07-23T19:36:54.8082467Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1565: SetMinFee 0.0% -2025-07-23T19:36:54.8083072Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1569: updateStorageMetrics 100.0% -2025-07-23T19:36:54.8083723Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1616: updateLimboMetrics 100.0% -2025-07-23T19:36:54.8084367Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1644: SubscribeTransactions 0.0% -2025-07-23T19:36:54.8085045Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1654: Nonce 0.0% -2025-07-23T19:36:54.8085768Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1666: Stats 0.0% -2025-07-23T19:36:54.8086320Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1682: Content 0.0% -2025-07-23T19:36:54.8086873Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1691: ContentFrom 0.0% -2025-07-23T19:36:54.8087425Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1698: Locals 0.0% -2025-07-23T19:36:54.8087962Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1704: Status 0.0% -2025-07-23T19:36:54.8088522Z github.com/ava-labs/coreth/core/txpool/blobpool/config.go:50: sanitize 100.0% -2025-07-23T19:36:54.8089097Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:60: newPriceHeap 100.0% -2025-07-23T19:36:54.8089672Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:84: reinit 85.7% -2025-07-23T19:36:54.8090218Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:101: Len 100.0% -2025-07-23T19:36:54.8090762Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:107: Less 100.0% -2025-07-23T19:36:54.8091293Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:131: Swap 100.0% -2025-07-23T19:36:54.8091823Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:138: Push 100.0% -2025-07-23T19:36:54.8092472Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:148: Pop 100.0% -2025-07-23T19:36:54.8093039Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:62: newLimbo 50.0% -2025-07-23T19:36:54.8093559Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:93: Close 100.0% -2025-07-23T19:36:54.8094081Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:99: parseBlob 0.0% -2025-07-23T19:36:54.8094618Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:126: finalize 0.0% -2025-07-23T19:36:54.8095238Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:149: push 0.0% -2025-07-23T19:36:54.8095743Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:166: pull 0.0% -2025-07-23T19:36:54.8096243Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:190: update 0.0% -2025-07-23T19:36:54.8096762Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:221: getAndDrop 0.0% -2025-07-23T19:36:54.8097307Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:243: setAndIndex 0.0% -2025-07-23T19:36:54.8097896Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:45: evictionPriority 100.0% -2025-07-23T19:36:54.8098532Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:58: evictionPriority1D 100.0% -2025-07-23T19:36:54.8099156Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:77: dynamicFeeJumps 100.0% -2025-07-23T19:36:54.8099729Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:87: intLog2 50.0% -2025-07-23T19:36:54.8100282Z github.com/ava-labs/coreth/core/txpool/blobpool/slotter.go:39: newSlotter 100.0% -2025-07-23T19:36:54.8100832Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:52: Write 100.0% -2025-07-23T19:36:54.8101356Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:53: Close 0.0% -2025-07-23T19:36:54.8101912Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:63: newTxJournal 100.0% -2025-07-23T19:36:54.8102472Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:71: load 87.1% -2025-07-23T19:36:54.8103000Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:132: insert 60.0% -2025-07-23T19:36:54.8103537Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:144: rotate 76.9% -2025-07-23T19:36:54.8104089Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:189: close 100.0% -2025-07-23T19:36:54.8104668Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:186: sanitize 46.2% -2025-07-23T19:36:54.8105348Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:275: New 80.0% -2025-07-23T19:36:54.8106050Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:312: Filter 0.0% -2025-07-23T19:36:54.8106615Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:325: Init 81.0% -2025-07-23T19:36:54.8107170Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:371: loop 96.8% -2025-07-23T19:36:54.8107737Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:439: Close 100.0% -2025-07-23T19:36:54.8108294Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:455: Reset 0.0% -2025-07-23T19:36:54.8108915Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:462: SubscribeTransactions 0.0% -2025-07-23T19:36:54.8109567Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:472: SetGasTip 100.0% -2025-07-23T19:36:54.8110167Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:493: SetMinFee 0.0% -2025-07-23T19:36:54.8110747Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:502: Nonce 100.0% -2025-07-23T19:36:54.8111321Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:511: Stats 100.0% -2025-07-23T19:36:54.8111886Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:520: stats 100.0% -2025-07-23T19:36:54.8112565Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:534: Content 88.9% -2025-07-23T19:36:54.8113195Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:551: ContentFrom 0.0% -2025-07-23T19:36:54.8113791Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:571: Pending 0.0% -2025-07-23T19:36:54.8114399Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:631: IteratePending 0.0% -2025-07-23T19:36:54.8115088Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:646: Locals 0.0% -2025-07-23T19:36:54.8115656Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:656: local 100.0% -2025-07-23T19:36:54.8116266Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:673: validateTxBasics 100.0% -2025-07-23T19:36:54.8116904Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:694: validateTx 100.0% -2025-07-23T19:36:54.8117475Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:743: add 88.3% -2025-07-23T19:36:54.8118058Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:893: isGapped 100.0% -2025-07-23T19:36:54.8118656Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:919: enqueueTx 95.0% -2025-07-23T19:36:54.8119251Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:958: journalTx 75.0% -2025-07-23T19:36:54.8119834Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:972: promoteTx 58.8% -2025-07-23T19:36:54.8120430Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1009: addLocals 100.0% -2025-07-23T19:36:54.8121028Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1015: addLocal 100.0% -2025-07-23T19:36:54.8121633Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1024: addRemotes 100.0% -2025-07-23T19:36:54.8122237Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1030: addRemote 100.0% -2025-07-23T19:36:54.8122867Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1035: addRemotesSync 100.0% -2025-07-23T19:36:54.8123507Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1040: addRemoteSync 100.0% -2025-07-23T19:36:54.8124107Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1049: Add 100.0% -2025-07-23T19:36:54.8124710Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1104: addTxsLocked 100.0% -2025-07-23T19:36:54.8125415Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1120: Status 90.9% -2025-07-23T19:36:54.8125979Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1139: Get 0.0% -2025-07-23T19:36:54.8126681Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1148: get 100.0% -2025-07-23T19:36:54.8127235Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1154: Has 0.0% -2025-07-23T19:36:54.8127796Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1158: HasLocal 0.0% -2025-07-23T19:36:54.8128382Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1171: removeTx 93.3% -2025-07-23T19:36:54.8128985Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1236: requestReset 66.7% -2025-07-23T19:36:54.8129660Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1247: requestPromoteExecutables 66.7% -2025-07-23T19:36:54.8130333Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1257: queueTxEvent 100.0% -2025-07-23T19:36:54.8130977Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1267: scheduleReorgLoop 96.6% -2025-07-23T19:36:54.8131605Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1337: runReorg 84.1% -2025-07-23T19:36:54.8132213Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1420: reset 23.1% -2025-07-23T19:36:54.8132833Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1520: promoteExecutables 100.0% -2025-07-23T19:36:54.8133612Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1590: truncatePending 69.6% -2025-07-23T19:36:54.8134268Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1675: truncateQueue 100.0% -2025-07-23T19:36:54.8135024Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1726: demoteUnexecutables 96.9% -2025-07-23T19:36:54.8135710Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1781: startPeriodicFeeUpdate 85.7% -2025-07-23T19:36:54.8136407Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1797: periodicBaseFeeUpdate 100.0% -2025-07-23T19:36:54.8137067Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1820: updateBaseFee 80.0% -2025-07-23T19:36:54.8137709Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1831: updateBaseFeeAt 83.3% -2025-07-23T19:36:54.8138309Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1849: Len 100.0% -2025-07-23T19:36:54.8138876Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1850: Less 100.0% -2025-07-23T19:36:54.8139440Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1851: Swap 100.0% -2025-07-23T19:36:54.8140030Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1863: newAccountSet 100.0% -2025-07-23T19:36:54.8140642Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1875: contains 100.0% -2025-07-23T19:36:54.8141244Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1882: containsTx 66.7% -2025-07-23T19:36:54.8141820Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1890: add 100.0% -2025-07-23T19:36:54.8142389Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1896: addTx 100.0% -2025-07-23T19:36:54.8142974Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1904: flatten 100.0% -2025-07-23T19:36:54.8143559Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1916: merge 100.0% -2025-07-23T19:36:54.8144152Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1943: newLookup 100.0% -2025-07-23T19:36:54.8144740Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1953: Range 60.0% -2025-07-23T19:36:54.8145401Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1974: Get 80.0% -2025-07-23T19:36:54.8145969Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1985: GetLocal 0.0% -2025-07-23T19:36:54.8146548Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1993: GetRemote 100.0% -2025-07-23T19:36:54.8147131Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2001: Count 100.0% -2025-07-23T19:36:54.8147862Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2009: LocalCount 0.0% -2025-07-23T19:36:54.8148472Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2017: RemoteCount 100.0% -2025-07-23T19:36:54.8149070Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2025: Slots 100.0% -2025-07-23T19:36:54.8149633Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2033: Add 100.0% -2025-07-23T19:36:54.8150195Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2048: Remove 83.3% -2025-07-23T19:36:54.8150799Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2069: RemoteToLocals 66.7% -2025-07-23T19:36:54.8151444Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2085: RemotesBelowTip 100.0% -2025-07-23T19:36:54.8152065Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2097: numSlots 100.0% -2025-07-23T19:36:54.8152629Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:49: Len 100.0% -2025-07-23T19:36:54.8153159Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:50: Less 100.0% -2025-07-23T19:36:54.8153668Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:51: Swap 100.0% -2025-07-23T19:36:54.8154311Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:53: Push 100.0% -2025-07-23T19:36:54.8154959Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:57: Pop 100.0% -2025-07-23T19:36:54.8155503Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:76: newSortedMap 100.0% -2025-07-23T19:36:54.8156039Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:84: Get 100.0% -2025-07-23T19:36:54.8156543Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:90: Put 100.0% -2025-07-23T19:36:54.8157065Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:103: Forward 100.0% -2025-07-23T19:36:54.8157608Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:126: Filter 100.0% -2025-07-23T19:36:54.8158142Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:135: reheap 100.0% -2025-07-23T19:36:54.8158678Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:148: filter 100.0% -2025-07-23T19:36:54.8159205Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:168: Cap 92.3% -2025-07-23T19:36:54.8159714Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:195: Remove 100.0% -2025-07-23T19:36:54.8160244Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:223: Ready 100.0% -2025-07-23T19:36:54.8160762Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:243: Len 100.0% -2025-07-23T19:36:54.8161280Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:247: flatten 100.0% -2025-07-23T19:36:54.8161818Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:264: Flatten 100.0% -2025-07-23T19:36:54.8162375Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:274: LastElement 100.0% -2025-07-23T19:36:54.8162924Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:294: newList 100.0% -2025-07-23T19:36:54.8163454Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:305: Contains 100.0% -2025-07-23T19:36:54.8163977Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:314: Add 100.0% -2025-07-23T19:36:54.8164497Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:361: Forward 100.0% -2025-07-23T19:36:54.8165122Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:376: Filter 95.0% -2025-07-23T19:36:54.8165633Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:412: Cap 100.0% -2025-07-23T19:36:54.8166150Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:421: Remove 100.0% -2025-07-23T19:36:54.8166675Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:444: Ready 100.0% -2025-07-23T19:36:54.8167325Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:451: Len 100.0% -2025-07-23T19:36:54.8167837Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:456: Empty 100.0% -2025-07-23T19:36:54.8168363Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:463: Flatten 100.0% -2025-07-23T19:36:54.8168917Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:469: LastElement 100.0% -2025-07-23T19:36:54.8169472Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:475: subTotalCost 75.0% -2025-07-23T19:36:54.8170003Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:493: Len 100.0% -2025-07-23T19:36:54.8170515Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:494: Swap 100.0% -2025-07-23T19:36:54.8171031Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:496: Less 100.0% -2025-07-23T19:36:54.8171530Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:507: cmp 100.0% -2025-07-23T19:36:54.8172041Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:522: Push 100.0% -2025-07-23T19:36:54.8172550Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:527: Pop 100.0% -2025-07-23T19:36:54.8173090Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:563: newPricedList 100.0% -2025-07-23T19:36:54.8173755Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:570: Put 100.0% -2025-07-23T19:36:54.8174296Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:581: Removed 100.0% -2025-07-23T19:36:54.8174950Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:593: Underpriced 100.0% -2025-07-23T19:36:54.8175522Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:603: underpricedFor 70.0% -2025-07-23T19:36:54.8176082Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:628: Discard 61.9% -2025-07-23T19:36:54.8176615Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:667: Reheap 100.0% -2025-07-23T19:36:54.8177163Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:695: SetBaseFee 100.0% -2025-07-23T19:36:54.8177716Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:47: newNoncer 100.0% -2025-07-23T19:36:54.8178248Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:56: get 100.0% -2025-07-23T19:36:54.8178769Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:72: set 100.0% -2025-07-23T19:36:54.8179300Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:81: setIfLower 62.5% -2025-07-23T19:36:54.8179842Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:97: setAll 100.0% -2025-07-23T19:36:54.8180357Z github.com/ava-labs/coreth/core/txpool/subpool.go:65: Resolve 66.7% -2025-07-23T19:36:54.8180826Z github.com/ava-labs/coreth/core/txpool/txpool.go:103: New 76.9% -2025-07-23T19:36:54.8181284Z github.com/ava-labs/coreth/core/txpool/txpool.go:143: reserver 69.2% -2025-07-23T19:36:54.8181759Z github.com/ava-labs/coreth/core/txpool/txpool.go:186: Close 76.9% -2025-07-23T19:36:54.8182219Z github.com/ava-labs/coreth/core/txpool/txpool.go:215: loop 92.6% -2025-07-23T19:36:54.8182680Z github.com/ava-labs/coreth/core/txpool/txpool.go:308: GasTip 100.0% -2025-07-23T19:36:54.8183165Z github.com/ava-labs/coreth/core/txpool/txpool.go:314: SetGasTip 100.0% -2025-07-23T19:36:54.8183635Z github.com/ava-labs/coreth/core/txpool/txpool.go:323: MinFee 0.0% -2025-07-23T19:36:54.8184103Z github.com/ava-labs/coreth/core/txpool/txpool.go:329: SetMinFee 100.0% -2025-07-23T19:36:54.8184576Z github.com/ava-labs/coreth/core/txpool/txpool.go:339: Has 75.0% -2025-07-23T19:36:54.8185141Z github.com/ava-labs/coreth/core/txpool/txpool.go:350: HasLocal 0.0% -2025-07-23T19:36:54.8185609Z github.com/ava-labs/coreth/core/txpool/txpool.go:360: Get 0.0% -2025-07-23T19:36:54.8186054Z github.com/ava-labs/coreth/core/txpool/txpool.go:372: Add 90.0% -2025-07-23T19:36:54.8186669Z github.com/ava-labs/coreth/core/txpool/txpool.go:415: AddRemotesSync 100.0% -2025-07-23T19:36:54.8187180Z github.com/ava-labs/coreth/core/txpool/txpool.go:425: Pending 100.0% -2025-07-23T19:36:54.8187678Z github.com/ava-labs/coreth/core/txpool/txpool.go:439: PendingSize 100.0% -2025-07-23T19:36:54.8188198Z github.com/ava-labs/coreth/core/txpool/txpool.go:451: IteratePending 66.7% -2025-07-23T19:36:54.8188741Z github.com/ava-labs/coreth/core/txpool/txpool.go:461: SubscribeTransactions 85.7% -2025-07-23T19:36:54.8189317Z github.com/ava-labs/coreth/core/txpool/txpool.go:475: SubscribeNewReorgEvent 100.0% -2025-07-23T19:36:54.8189840Z github.com/ava-labs/coreth/core/txpool/txpool.go:481: Nonce 100.0% -2025-07-23T19:36:54.8190299Z github.com/ava-labs/coreth/core/txpool/txpool.go:496: Stats 0.0% -2025-07-23T19:36:54.8190762Z github.com/ava-labs/coreth/core/txpool/txpool.go:509: Content 0.0% -2025-07-23T19:36:54.8191247Z github.com/ava-labs/coreth/core/txpool/txpool.go:529: ContentFrom 0.0% -2025-07-23T19:36:54.8191717Z github.com/ava-labs/coreth/core/txpool/txpool.go:540: Locals 75.0% -2025-07-23T19:36:54.8192170Z github.com/ava-labs/coreth/core/txpool/txpool.go:558: Status 0.0% -2025-07-23T19:36:54.8192737Z github.com/ava-labs/coreth/core/txpool/txpool.go:574: Sync 75.0% -2025-07-23T19:36:54.8193261Z github.com/ava-labs/coreth/core/txpool/validation.go:67: ValidateTransaction 73.9% -2025-07-23T19:36:54.8193838Z github.com/ava-labs/coreth/core/txpool/validation.go:160: validateBlobSidecar 66.7% -2025-07-23T19:36:54.8194445Z github.com/ava-labs/coreth/core/txpool/validation.go:222: ValidateTransactionWithState 88.9% -2025-07-23T19:36:54.8195130Z github.com/ava-labs/coreth/core/vm/runtime/env.go:35: NewEnv 100.0% -2025-07-23T19:36:54.8195629Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:71: setDefaults 94.7% -2025-07-23T19:36:54.8196143Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:134: Execute 100.0% -2025-07-23T19:36:54.8196647Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:169: Create 77.8% -2025-07-23T19:36:54.8197136Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:203: Call 100.0% -2025-07-23T19:36:54.8197600Z github.com/ava-labs/coreth/eth/api.go:40: NewEthereumAPI 0.0% -2025-07-23T19:36:54.8198025Z github.com/ava-labs/coreth/eth/api.go:45: Etherbase 0.0% -2025-07-23T19:36:54.8198426Z github.com/ava-labs/coreth/eth/api.go:50: Coinbase 0.0% -2025-07-23T19:36:54.8198852Z github.com/ava-labs/coreth/eth/api_admin.go:50: NewAdminAPI 0.0% -2025-07-23T19:36:54.8199295Z github.com/ava-labs/coreth/eth/api_admin.go:56: ExportChain 0.0% -2025-07-23T19:36:54.8199750Z github.com/ava-labs/coreth/eth/api_admin.go:93: hasAllBlocks 0.0% -2025-07-23T19:36:54.8200198Z github.com/ava-labs/coreth/eth/api_admin.go:104: ImportChain 0.0% -2025-07-23T19:36:54.8200650Z github.com/ava-labs/coreth/eth/api_backend.go:72: ChainConfig 0.0% -2025-07-23T19:36:54.8201095Z github.com/ava-labs/coreth/eth/api_backend.go:77: IsArchive 0.0% -2025-07-23T19:36:54.8201597Z github.com/ava-labs/coreth/eth/api_backend.go:83: HistoricalProofQueryWindow 0.0% -2025-07-23T19:36:54.8202153Z github.com/ava-labs/coreth/eth/api_backend.go:87: IsAllowUnfinalizedQueries 0.0% -2025-07-23T19:36:54.8202694Z github.com/ava-labs/coreth/eth/api_backend.go:91: SetAllowUnfinalizedQueries 0.0% -2025-07-23T19:36:54.8203191Z github.com/ava-labs/coreth/eth/api_backend.go:95: CurrentBlock 0.0% -2025-07-23T19:36:54.8203672Z github.com/ava-labs/coreth/eth/api_backend.go:99: LastAcceptedBlock 0.0% -2025-07-23T19:36:54.8204160Z github.com/ava-labs/coreth/eth/api_backend.go:103: HeaderByNumber 0.0% -2025-07-23T19:36:54.8204631Z github.com/ava-labs/coreth/eth/api_backend.go:126: HeaderByHash 0.0% -2025-07-23T19:36:54.8205223Z github.com/ava-labs/coreth/eth/api_backend.go:149: HeaderByNumberOrHash 0.0% -2025-07-23T19:36:54.8205876Z github.com/ava-labs/coreth/eth/api_backend.go:166: BlockByNumber 0.0% -2025-07-23T19:36:54.8206344Z github.com/ava-labs/coreth/eth/api_backend.go:190: BlockByHash 0.0% -2025-07-23T19:36:54.8206792Z github.com/ava-labs/coreth/eth/api_backend.go:215: GetBody 0.0% -2025-07-23T19:36:54.8207288Z github.com/ava-labs/coreth/eth/api_backend.go:225: BlockByNumberOrHash 0.0% -2025-07-23T19:36:54.8207776Z github.com/ava-labs/coreth/eth/api_backend.go:245: BadBlocks 0.0% -2025-07-23T19:36:54.8208272Z github.com/ava-labs/coreth/eth/api_backend.go:249: StateAndHeaderByNumber 0.0% -2025-07-23T19:36:54.8208827Z github.com/ava-labs/coreth/eth/api_backend.go:265: StateAndHeaderByNumberOrHash 0.0% -2025-07-23T19:36:54.8209352Z github.com/ava-labs/coreth/eth/api_backend.go:289: GetReceipts 0.0% -2025-07-23T19:36:54.8209815Z github.com/ava-labs/coreth/eth/api_backend.go:296: GetLogs 0.0% -2025-07-23T19:36:54.8210261Z github.com/ava-labs/coreth/eth/api_backend.go:303: GetEVM 0.0% -2025-07-23T19:36:54.8210760Z github.com/ava-labs/coreth/eth/api_backend.go:317: SubscribeRemovedLogsEvent 0.0% -2025-07-23T19:36:54.8211309Z github.com/ava-labs/coreth/eth/api_backend.go:321: SubscribePendingLogsEvent 0.0% -2025-07-23T19:36:54.8211955Z github.com/ava-labs/coreth/eth/api_backend.go:325: SubscribeChainEvent 0.0% -2025-07-23T19:36:54.8212515Z github.com/ava-labs/coreth/eth/api_backend.go:329: SubscribeChainAcceptedEvent 0.0% -2025-07-23T19:36:54.8213067Z github.com/ava-labs/coreth/eth/api_backend.go:333: SubscribeChainHeadEvent 0.0% -2025-07-23T19:36:54.8213605Z github.com/ava-labs/coreth/eth/api_backend.go:337: SubscribeChainSideEvent 0.0% -2025-07-23T19:36:54.8214128Z github.com/ava-labs/coreth/eth/api_backend.go:341: SubscribeLogsEvent 0.0% -2025-07-23T19:36:54.8214656Z github.com/ava-labs/coreth/eth/api_backend.go:345: SubscribeAcceptedLogsEvent 0.0% -2025-07-23T19:36:54.8215349Z github.com/ava-labs/coreth/eth/api_backend.go:349: SubscribeAcceptedTransactionEvent 0.0% -2025-07-23T19:36:54.8215869Z github.com/ava-labs/coreth/eth/api_backend.go:353: SendTx 0.0% -2025-07-23T19:36:54.8216342Z github.com/ava-labs/coreth/eth/api_backend.go:367: GetPoolTransactions 0.0% -2025-07-23T19:36:54.8216856Z github.com/ava-labs/coreth/eth/api_backend.go:380: GetPoolTransaction 0.0% -2025-07-23T19:36:54.8217352Z github.com/ava-labs/coreth/eth/api_backend.go:384: GetTransaction 0.0% -2025-07-23T19:36:54.8217829Z github.com/ava-labs/coreth/eth/api_backend.go:407: GetPoolNonce 0.0% -2025-07-23T19:36:54.8218290Z github.com/ava-labs/coreth/eth/api_backend.go:411: Stats 0.0% -2025-07-23T19:36:54.8218760Z github.com/ava-labs/coreth/eth/api_backend.go:415: TxPoolContent 0.0% -2025-07-23T19:36:54.8219259Z github.com/ava-labs/coreth/eth/api_backend.go:419: TxPoolContentFrom 0.0% -2025-07-23T19:36:54.8219773Z github.com/ava-labs/coreth/eth/api_backend.go:423: SubscribeNewTxsEvent 0.0% -2025-07-23T19:36:54.8220291Z github.com/ava-labs/coreth/eth/api_backend.go:427: EstimateBaseFee 0.0% -2025-07-23T19:36:54.8220774Z github.com/ava-labs/coreth/eth/api_backend.go:431: SuggestPrice 0.0% -2025-07-23T19:36:54.8221258Z github.com/ava-labs/coreth/eth/api_backend.go:435: SuggestGasTipCap 0.0% -2025-07-23T19:36:54.8221741Z github.com/ava-labs/coreth/eth/api_backend.go:439: FeeHistory 0.0% -2025-07-23T19:36:54.8222202Z github.com/ava-labs/coreth/eth/api_backend.go:443: ChainDb 0.0% -2025-07-23T19:36:54.8222645Z github.com/ava-labs/coreth/eth/api_backend.go:447: EventMux 0.0% -2025-07-23T19:36:54.8223108Z github.com/ava-labs/coreth/eth/api_backend.go:451: AccountManager 0.0% -2025-07-23T19:36:54.8223578Z github.com/ava-labs/coreth/eth/api_backend.go:455: ExtRPCEnabled 0.0% -2025-07-23T19:36:54.8224073Z github.com/ava-labs/coreth/eth/api_backend.go:459: UnprotectedAllowed 75.0% -2025-07-23T19:36:54.8224698Z github.com/ava-labs/coreth/eth/api_backend.go:479: RPCGasCap 0.0% -2025-07-23T19:36:54.8225262Z github.com/ava-labs/coreth/eth/api_backend.go:483: RPCEVMTimeout 0.0% -2025-07-23T19:36:54.8225735Z github.com/ava-labs/coreth/eth/api_backend.go:487: RPCTxFeeCap 0.0% -2025-07-23T19:36:54.8226228Z github.com/ava-labs/coreth/eth/api_backend.go:491: PriceOptionsConfig 0.0% -2025-07-23T19:36:54.8226713Z github.com/ava-labs/coreth/eth/api_backend.go:495: BloomStatus 0.0% -2025-07-23T19:36:54.8227175Z github.com/ava-labs/coreth/eth/api_backend.go:500: ServiceFilter 0.0% -2025-07-23T19:36:54.8227631Z github.com/ava-labs/coreth/eth/api_backend.go:506: Engine 0.0% -2025-07-23T19:36:54.8228083Z github.com/ava-labs/coreth/eth/api_backend.go:510: CurrentHeader 0.0% -2025-07-23T19:36:54.8228585Z github.com/ava-labs/coreth/eth/api_backend.go:514: GetMaxBlocksPerRequest 0.0% -2025-07-23T19:36:54.8229084Z github.com/ava-labs/coreth/eth/api_backend.go:518: StateAtBlock 0.0% -2025-07-23T19:36:54.8229568Z github.com/ava-labs/coreth/eth/api_backend.go:522: StateAtNextBlock 0.0% -2025-07-23T19:36:54.8230064Z github.com/ava-labs/coreth/eth/api_backend.go:526: StateAtTransaction 0.0% -2025-07-23T19:36:54.8230553Z github.com/ava-labs/coreth/eth/api_backend.go:530: MinRequiredTip 0.0% -2025-07-23T19:36:54.8231180Z github.com/ava-labs/coreth/eth/api_backend.go:535: isLatestAndAllowed 0.0% -2025-07-23T19:36:54.8231673Z github.com/ava-labs/coreth/eth/api_debug.go:56: NewDebugAPI 0.0% -2025-07-23T19:36:54.8232157Z github.com/ava-labs/coreth/eth/api_debug.go:61: DumpBlock 0.0% -2025-07-23T19:36:54.8232586Z github.com/ava-labs/coreth/eth/api_debug.go:91: Preimage 0.0% -2025-07-23T19:36:54.8233034Z github.com/ava-labs/coreth/eth/api_debug.go:100: GetBadBlocks 0.0% -2025-07-23T19:36:54.8233489Z github.com/ava-labs/coreth/eth/api_debug.go:109: AccountRange 0.0% -2025-07-23T19:36:54.8233946Z github.com/ava-labs/coreth/eth/api_debug.go:175: StorageRangeAt 0.0% -2025-07-23T19:36:54.8234416Z github.com/ava-labs/coreth/eth/api_debug.go:194: storageRangeAt 84.0% -2025-07-23T19:36:54.8235078Z github.com/ava-labs/coreth/eth/api_debug.go:235: GetModifiedAccountsByNumber 0.0% -2025-07-23T19:36:54.8235627Z github.com/ava-labs/coreth/eth/api_debug.go:263: GetModifiedAccountsByHash 0.0% -2025-07-23T19:36:54.8236140Z github.com/ava-labs/coreth/eth/api_debug.go:285: getModifiedAccounts 0.0% -2025-07-23T19:36:54.8236636Z github.com/ava-labs/coreth/eth/api_debug.go:326: GetAccessibleState 0.0% -2025-07-23T19:36:54.8237117Z github.com/ava-labs/coreth/eth/backend.go:121: roundUpCacheSize 0.0% -2025-07-23T19:36:54.8237555Z github.com/ava-labs/coreth/eth/backend.go:128: New 0.0% -2025-07-23T19:36:54.8237957Z github.com/ava-labs/coreth/eth/backend.go:309: APIs 0.0% -2025-07-23T19:36:54.8238373Z github.com/ava-labs/coreth/eth/backend.go:349: Etherbase 0.0% -2025-07-23T19:36:54.8238816Z github.com/ava-labs/coreth/eth/backend.go:361: SetEtherbase 0.0% -2025-07-23T19:36:54.8239246Z github.com/ava-labs/coreth/eth/backend.go:369: Miner 0.0% -2025-07-23T19:36:54.8239686Z github.com/ava-labs/coreth/eth/backend.go:371: AccountManager 0.0% -2025-07-23T19:36:54.8240147Z github.com/ava-labs/coreth/eth/backend.go:372: BlockChain 0.0% -2025-07-23T19:36:54.8240576Z github.com/ava-labs/coreth/eth/backend.go:373: TxPool 0.0% -2025-07-23T19:36:54.8240989Z github.com/ava-labs/coreth/eth/backend.go:374: EventMux 0.0% -2025-07-23T19:36:54.8241403Z github.com/ava-labs/coreth/eth/backend.go:375: Engine 0.0% -2025-07-23T19:36:54.8241810Z github.com/ava-labs/coreth/eth/backend.go:376: ChainDb 0.0% -2025-07-23T19:36:54.8242228Z github.com/ava-labs/coreth/eth/backend.go:378: NetVersion 0.0% -2025-07-23T19:36:54.8242668Z github.com/ava-labs/coreth/eth/backend.go:379: ArchiveMode 0.0% -2025-07-23T19:36:54.8243328Z github.com/ava-labs/coreth/eth/backend.go:380: BloomIndexer 0.0% -2025-07-23T19:36:54.8243763Z github.com/ava-labs/coreth/eth/backend.go:384: Start 0.0% -2025-07-23T19:36:54.8244168Z github.com/ava-labs/coreth/eth/backend.go:395: Stop 0.0% -2025-07-23T19:36:54.8244613Z github.com/ava-labs/coreth/eth/backend.go:413: LastAcceptedBlock 0.0% -2025-07-23T19:36:54.8245249Z github.com/ava-labs/coreth/eth/backend.go:423: precheckPopulateMissingTries 0.0% -2025-07-23T19:36:54.8245786Z github.com/ava-labs/coreth/eth/backend.go:447: handleOfflinePruning 0.0% -2025-07-23T19:36:54.8246286Z github.com/ava-labs/coreth/eth/bloombits.go:57: startBloomHandlers 0.0% -2025-07-23T19:36:54.8246822Z github.com/ava-labs/coreth/eth/chain_with_final_block.go:20: CurrentFinalBlock 0.0% -2025-07-23T19:36:54.8247377Z github.com/ava-labs/coreth/eth/ethconfig/config.go:58: NewDefaultConfig 100.0% -2025-07-23T19:36:54.8247904Z github.com/ava-labs/coreth/eth/ethconfig/gen_config.go:18: MarshalTOML 0.0% -2025-07-23T19:36:54.8248434Z github.com/ava-labs/coreth/eth/ethconfig/gen_config.go:108: UnmarshalTOML 0.0% -2025-07-23T19:36:54.8248940Z github.com/ava-labs/coreth/eth/filters/api.go:87: NewFilterAPI 100.0% -2025-07-23T19:36:54.8249422Z github.com/ava-labs/coreth/eth/filters/api.go:101: timeoutLoop 100.0% -2025-07-23T19:36:54.8250193Z github.com/ava-labs/coreth/eth/filters/api.go:134: NewPendingTransactionFilter 100.0% -2025-07-23T19:36:54.8250772Z github.com/ava-labs/coreth/eth/filters/api.go:168: NewPendingTransactions 0.0% -2025-07-23T19:36:54.8251316Z github.com/ava-labs/coreth/eth/filters/api.go:211: NewAcceptedTransactions 0.0% -2025-07-23T19:36:54.8251834Z github.com/ava-labs/coreth/eth/filters/api.go:253: NewBlockFilter 0.0% -2025-07-23T19:36:54.8252299Z github.com/ava-labs/coreth/eth/filters/api.go:291: NewHeads 0.0% -2025-07-23T19:36:54.8252736Z github.com/ava-labs/coreth/eth/filters/api.go:328: Logs 0.0% -2025-07-23T19:36:54.8253179Z github.com/ava-labs/coreth/eth/filters/api.go:387: NewFilter 87.0% -2025-07-23T19:36:54.8253629Z github.com/ava-labs/coreth/eth/filters/api.go:432: GetLogs 90.0% -2025-07-23T19:36:54.8254107Z github.com/ava-labs/coreth/eth/filters/api.go:470: UninstallFilter 100.0% -2025-07-23T19:36:54.8254605Z github.com/ava-labs/coreth/eth/filters/api.go:486: GetFilterLogs 0.0% -2025-07-23T19:36:54.8255203Z github.com/ava-labs/coreth/eth/filters/api.go:528: GetFilterChanges 80.0% -2025-07-23T19:36:54.8255689Z github.com/ava-labs/coreth/eth/filters/api.go:581: returnHashes 0.0% -2025-07-23T19:36:54.8256155Z github.com/ava-labs/coreth/eth/filters/api.go:590: returnLogs 66.7% -2025-07-23T19:36:54.8256631Z github.com/ava-labs/coreth/eth/filters/api.go:598: UnmarshalJSON 75.5% -2025-07-23T19:36:54.8257108Z github.com/ava-labs/coreth/eth/filters/api.go:703: decodeAddress 75.0% -2025-07-23T19:36:54.8257578Z github.com/ava-labs/coreth/eth/filters/api.go:711: decodeTopic 75.0% -2025-07-23T19:36:54.8258079Z github.com/ava-labs/coreth/eth/filters/filter.go:58: NewRangeFilter 100.0% -2025-07-23T19:36:54.8258595Z github.com/ava-labs/coreth/eth/filters/filter.go:91: NewBlockFilter 100.0% -2025-07-23T19:36:54.8259093Z github.com/ava-labs/coreth/eth/filters/filter.go:100: newFilter 100.0% -2025-07-23T19:36:54.8259562Z github.com/ava-labs/coreth/eth/filters/filter.go:110: Logs 80.4% -2025-07-23T19:36:54.8260044Z github.com/ava-labs/coreth/eth/filters/filter.go:222: rangeLogsAsync 70.6% -2025-07-23T19:36:54.8260537Z github.com/ava-labs/coreth/eth/filters/filter.go:263: indexedLogs 0.0% -2025-07-23T19:36:54.8261027Z github.com/ava-labs/coreth/eth/filters/filter.go:309: unindexedLogs 81.8% -2025-07-23T19:36:54.8261517Z github.com/ava-labs/coreth/eth/filters/filter.go:331: blockLogs 100.0% -2025-07-23T19:36:54.8262005Z github.com/ava-labs/coreth/eth/filters/filter.go:340: checkMatches 82.4% -2025-07-23T19:36:54.8262628Z github.com/ava-labs/coreth/eth/filters/filter.go:370: includes 100.0% -2025-07-23T19:36:54.8263114Z github.com/ava-labs/coreth/eth/filters/filter.go:380: filterLogs 100.0% -2025-07-23T19:36:54.8263613Z github.com/ava-labs/coreth/eth/filters/filter.go:414: bloomFilter 100.0% -2025-07-23T19:36:54.8264135Z github.com/ava-labs/coreth/eth/filters/filter_system.go:55: withDefaults 100.0% -2025-07-23T19:36:54.8264693Z github.com/ava-labs/coreth/eth/filters/filter_system.go:101: NewFilterSystem 100.0% -2025-07-23T19:36:54.8265332Z github.com/ava-labs/coreth/eth/filters/filter_system.go:111: getLogs 66.7% -2025-07-23T19:36:54.8265863Z github.com/ava-labs/coreth/eth/filters/filter_system.go:209: NewEventSystem 92.3% -2025-07-23T19:36:54.8266387Z github.com/ava-labs/coreth/eth/filters/filter_system.go:253: Err 100.0% -2025-07-23T19:36:54.8266898Z github.com/ava-labs/coreth/eth/filters/filter_system.go:258: Unsubscribe 100.0% -2025-07-23T19:36:54.8267439Z github.com/ava-labs/coreth/eth/filters/filter_system.go:283: subscribe 100.0% -2025-07-23T19:36:54.8267982Z github.com/ava-labs/coreth/eth/filters/filter_system.go:292: SubscribeLogs 100.0% -2025-07-23T19:36:54.8268558Z github.com/ava-labs/coreth/eth/filters/filter_system.go:334: SubscribeAcceptedLogs 0.0% -2025-07-23T19:36:54.8269277Z github.com/ava-labs/coreth/eth/filters/filter_system.go:359: subscribeAcceptedLogs 0.0% -2025-07-23T19:36:54.8269911Z github.com/ava-labs/coreth/eth/filters/filter_system.go:376: subscribeMinedPendingLogs 100.0% -2025-07-23T19:36:54.8270509Z github.com/ava-labs/coreth/eth/filters/filter_system.go:393: subscribeLogs 100.0% -2025-07-23T19:36:54.8271082Z github.com/ava-labs/coreth/eth/filters/filter_system.go:410: subscribePendingLogs 100.0% -2025-07-23T19:36:54.8271678Z github.com/ava-labs/coreth/eth/filters/filter_system.go:427: SubscribeNewHeads 100.0% -2025-07-23T19:36:54.8272274Z github.com/ava-labs/coreth/eth/filters/filter_system.go:443: SubscribeAcceptedHeads 0.0% -2025-07-23T19:36:54.8272878Z github.com/ava-labs/coreth/eth/filters/filter_system.go:459: SubscribePendingTxs 100.0% -2025-07-23T19:36:54.8273465Z github.com/ava-labs/coreth/eth/filters/filter_system.go:475: SubscribeAcceptedTxs 0.0% -2025-07-23T19:36:54.8274032Z github.com/ava-labs/coreth/eth/filters/filter_system.go:491: handleLogs 83.3% -2025-07-23T19:36:54.8274589Z github.com/ava-labs/coreth/eth/filters/filter_system.go:503: handleAcceptedLogs 33.3% -2025-07-23T19:36:54.8275256Z github.com/ava-labs/coreth/eth/filters/filter_system.go:515: handlePendingLogs 83.3% -2025-07-23T19:36:54.8275817Z github.com/ava-labs/coreth/eth/filters/filter_system.go:527: handleTxsEvent 100.0% -2025-07-23T19:36:54.8276399Z github.com/ava-labs/coreth/eth/filters/filter_system.go:533: handleTxsAcceptedEvent 0.0% -2025-07-23T19:36:54.8276981Z github.com/ava-labs/coreth/eth/filters/filter_system.go:539: handleChainEvent 100.0% -2025-07-23T19:36:54.8277577Z github.com/ava-labs/coreth/eth/filters/filter_system.go:545: handleChainAcceptedEvent 0.0% -2025-07-23T19:36:54.8278150Z github.com/ava-labs/coreth/eth/filters/filter_system.go:552: eventLoop 53.8% -2025-07-23T19:36:54.8278694Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:63: Estimate 73.4% -2025-07-23T19:36:54.8279245Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:199: execute 88.9% -2025-07-23T19:36:54.8279775Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:218: run 91.7% -2025-07-23T19:36:54.8280343Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:63: newFeeInfoProvider 100.0% -2025-07-23T19:36:54.8280920Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:92: addHeader 100.0% -2025-07-23T19:36:54.8281452Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:125: get 100.0% -2025-07-23T19:36:54.8281997Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:136: populateCache 83.3% -2025-07-23T19:36:54.8282705Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:68: processBlock 84.6% -2025-07-23T19:36:54.8283270Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:89: processPercentiles 72.2% -2025-07-23T19:36:54.8283849Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:124: resolveBlockRange 100.0% -2025-07-23T19:36:54.8284412Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:177: FeeHistory 74.4% -2025-07-23T19:36:54.8285036Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:132: NewOracle 83.3% -2025-07-23T19:36:54.8285568Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:211: EstimateBaseFee 0.0% -2025-07-23T19:36:54.8286122Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:220: estimateNextBaseFee 57.1% -2025-07-23T19:36:54.8286669Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:239: SuggestPrice 60.0% -2025-07-23T19:36:54.8287198Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:266: SuggestTipCap 100.0% -2025-07-23T19:36:54.8287728Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:271: suggestTip 85.7% -2025-07-23T19:36:54.8288228Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:347: getFeeInfo 42.9% -2025-07-23T19:36:54.8288718Z github.com/ava-labs/coreth/eth/state_accessor.go:53: hashState 0.0% -2025-07-23T19:36:54.8289314Z github.com/ava-labs/coreth/eth/state_accessor.go:193: pathState 0.0% -2025-07-23T19:36:54.8289819Z github.com/ava-labs/coreth/eth/state_accessor.go:227: stateAtBlock 0.0% -2025-07-23T19:36:54.8290325Z github.com/ava-labs/coreth/eth/state_accessor.go:240: stateAtTransaction 0.0% -2025-07-23T19:36:54.8290849Z github.com/ava-labs/coreth/eth/state_accessor.go:287: StateAtNextBlock 0.0% -2025-07-23T19:36:54.8291337Z github.com/ava-labs/coreth/eth/tracers/api.go:115: NewAPI 100.0% -2025-07-23T19:36:54.8291816Z github.com/ava-labs/coreth/eth/tracers/api.go:127: NewFileTracerAPI 0.0% -2025-07-23T19:36:54.8292310Z github.com/ava-labs/coreth/eth/tracers/api.go:133: chainContext 100.0% -2025-07-23T19:36:54.8292793Z github.com/ava-labs/coreth/eth/tracers/api.go:139: blockByNumber 83.3% -2025-07-23T19:36:54.8293269Z github.com/ava-labs/coreth/eth/tracers/api.go:152: blockByHash 0.0% -2025-07-23T19:36:54.8293771Z github.com/ava-labs/coreth/eth/tracers/api.go:168: blockByNumberAndHash 66.7% -2025-07-23T19:36:54.8294258Z github.com/ava-labs/coreth/eth/tracers/api.go:213: String 0.0% -2025-07-23T19:36:54.8294710Z github.com/ava-labs/coreth/eth/tracers/api.go:243: TraceChain 0.0% -2025-07-23T19:36:54.8295267Z github.com/ava-labs/coreth/eth/tracers/api.go:276: traceChain 76.8% -2025-07-23T19:36:54.8295762Z github.com/ava-labs/coreth/eth/tracers/api.go:467: TraceBlockByNumber 100.0% -2025-07-23T19:36:54.8296272Z github.com/ava-labs/coreth/eth/tracers/api.go:477: TraceBlockByHash 0.0% -2025-07-23T19:36:54.8296751Z github.com/ava-labs/coreth/eth/tracers/api.go:487: TraceBlock 0.0% -2025-07-23T19:36:54.8297237Z github.com/ava-labs/coreth/eth/tracers/api.go:497: TraceBlockFromFile 0.0% -2025-07-23T19:36:54.8297734Z github.com/ava-labs/coreth/eth/tracers/api.go:508: TraceBadBlock 0.0% -2025-07-23T19:36:54.8298246Z github.com/ava-labs/coreth/eth/tracers/api.go:529: StandardTraceBlockToFile 0.0% -2025-07-23T19:36:54.8298778Z github.com/ava-labs/coreth/eth/tracers/api.go:539: IntermediateRoots 0.0% -2025-07-23T19:36:54.8299309Z github.com/ava-labs/coreth/eth/tracers/api.go:598: StandardTraceBadBlockToFile 0.0% -2025-07-23T19:36:54.8299824Z github.com/ava-labs/coreth/eth/tracers/api.go:619: traceBlock 76.0% -2025-07-23T19:36:54.8300313Z github.com/ava-labs/coreth/eth/tracers/api.go:679: traceBlockParallel 0.0% -2025-07-23T19:36:54.8300836Z github.com/ava-labs/coreth/eth/tracers/api.go:756: standardTraceBlockToFile 0.0% -2025-07-23T19:36:54.8301334Z github.com/ava-labs/coreth/eth/tracers/api.go:866: containsTx 0.0% -2025-07-23T19:36:54.8301987Z github.com/ava-labs/coreth/eth/tracers/api.go:877: TraceTransaction 73.7% -2025-07-23T19:36:54.8302467Z github.com/ava-labs/coreth/eth/tracers/api.go:920: TraceCall 80.6% -2025-07-23T19:36:54.8302912Z github.com/ava-labs/coreth/eth/tracers/api.go:996: traceTx 69.6% -2025-07-23T19:36:54.8303358Z github.com/ava-labs/coreth/eth/tracers/api.go:1042: APIs 0.0% -2025-07-23T19:36:54.8303821Z github.com/ava-labs/coreth/eth/tracers/api.go:1060: overrideConfig 0.0% -2025-07-23T19:36:54.8304338Z github.com/ava-labs/coreth/eth/tracers/tracker.go:49: newStateTracker 100.0% -2025-07-23T19:36:54.8304954Z github.com/ava-labs/coreth/eth/tracers/tracker.go:62: releaseState 100.0% -2025-07-23T19:36:54.8305458Z github.com/ava-labs/coreth/eth/tracers/tracker.go:95: callReleases 100.0% -2025-07-23T19:36:54.8305935Z github.com/ava-labs/coreth/eth/tracers/tracker.go:106: wait 87.5% -2025-07-23T19:36:54.8306444Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:53: New 0.0% -2025-07-23T19:36:54.8307049Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:59: CreateAccessList 0.0% -2025-07-23T19:36:54.8307673Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:92: GetProof 0.0% -2025-07-23T19:36:54.8308401Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:156: CallContract 0.0% -2025-07-23T19:36:54.8309027Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:166: GCStats 0.0% -2025-07-23T19:36:54.8309616Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:173: MemStats 0.0% -2025-07-23T19:36:54.8310286Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:180: SubscribePendingTransactions 0.0% -2025-07-23T19:36:54.8310962Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:184: toCallArg 0.0% -2025-07-23T19:36:54.8311576Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:219: toOverrideMap 0.0% -2025-07-23T19:36:54.8312125Z github.com/ava-labs/coreth/ethclient/ethclient.go:53: Dial 0.0% -2025-07-23T19:36:54.8312599Z github.com/ava-labs/coreth/ethclient/ethclient.go:58: DialContext 0.0% -2025-07-23T19:36:54.8313088Z github.com/ava-labs/coreth/ethclient/ethclient.go:67: NewClient 100.0% -2025-07-23T19:36:54.8313568Z github.com/ava-labs/coreth/ethclient/ethclient.go:72: Close 100.0% -2025-07-23T19:36:54.8314035Z github.com/ava-labs/coreth/ethclient/ethclient.go:77: Client 0.0% -2025-07-23T19:36:54.8314503Z github.com/ava-labs/coreth/ethclient/ethclient.go:84: ChainID 80.0% -2025-07-23T19:36:54.8315075Z github.com/ava-labs/coreth/ethclient/ethclient.go:97: BlockByHash 0.0% -2025-07-23T19:36:54.8315585Z github.com/ava-labs/coreth/ethclient/ethclient.go:106: BlockByNumber 100.0% -2025-07-23T19:36:54.8316106Z github.com/ava-labs/coreth/ethclient/ethclient.go:111: BlockNumber 100.0% -2025-07-23T19:36:54.8316623Z github.com/ava-labs/coreth/ethclient/ethclient.go:125: BlockReceipts 0.0% -2025-07-23T19:36:54.8317111Z github.com/ava-labs/coreth/ethclient/ethclient.go:141: getBlock 51.2% -2025-07-23T19:36:54.8317605Z github.com/ava-labs/coreth/ethclient/ethclient.go:221: HeaderByHash 80.0% -2025-07-23T19:36:54.8318124Z github.com/ava-labs/coreth/ethclient/ethclient.go:232: HeaderByNumber 80.0% -2025-07-23T19:36:54.8318647Z github.com/ava-labs/coreth/ethclient/ethclient.go:252: UnmarshalJSON 66.7% -2025-07-23T19:36:54.8319174Z github.com/ava-labs/coreth/ethclient/ethclient.go:260: TransactionByHash 0.0% -2025-07-23T19:36:54.8319708Z github.com/ava-labs/coreth/ethclient/ethclient.go:282: TransactionSender 0.0% -2025-07-23T19:36:54.8320239Z github.com/ava-labs/coreth/ethclient/ethclient.go:304: TransactionCount 0.0% -2025-07-23T19:36:54.8320768Z github.com/ava-labs/coreth/ethclient/ethclient.go:311: TransactionInBlock 0.0% -2025-07-23T19:36:54.8321454Z github.com/ava-labs/coreth/ethclient/ethclient.go:330: TransactionReceipt 80.0% -2025-07-23T19:36:54.8321990Z github.com/ava-labs/coreth/ethclient/ethclient.go:341: SyncProgress 0.0% -2025-07-23T19:36:54.8322515Z github.com/ava-labs/coreth/ethclient/ethclient.go:357: SubscribeNewHead 0.0% -2025-07-23T19:36:54.8323026Z github.com/ava-labs/coreth/ethclient/ethclient.go:371: NetworkID 0.0% -2025-07-23T19:36:54.8323514Z github.com/ava-labs/coreth/ethclient/ethclient.go:385: BalanceAt 0.0% -2025-07-23T19:36:54.8324013Z github.com/ava-labs/coreth/ethclient/ethclient.go:392: BalanceAtHash 0.0% -2025-07-23T19:36:54.8324504Z github.com/ava-labs/coreth/ethclient/ethclient.go:400: StorageAt 0.0% -2025-07-23T19:36:54.8325102Z github.com/ava-labs/coreth/ethclient/ethclient.go:407: StorageAtHash 0.0% -2025-07-23T19:36:54.8325593Z github.com/ava-labs/coreth/ethclient/ethclient.go:415: CodeAt 0.0% -2025-07-23T19:36:54.8326076Z github.com/ava-labs/coreth/ethclient/ethclient.go:422: CodeAtHash 0.0% -2025-07-23T19:36:54.8326562Z github.com/ava-labs/coreth/ethclient/ethclient.go:430: NonceAt 100.0% -2025-07-23T19:36:54.8327051Z github.com/ava-labs/coreth/ethclient/ethclient.go:437: NonceAtHash 0.0% -2025-07-23T19:36:54.8327539Z github.com/ava-labs/coreth/ethclient/ethclient.go:446: FilterLogs 0.0% -2025-07-23T19:36:54.8328179Z github.com/ava-labs/coreth/ethclient/ethclient.go:457: SubscribeFilterLogs 0.0% -2025-07-23T19:36:54.8328729Z github.com/ava-labs/coreth/ethclient/ethclient.go:472: toFilterArg 0.0% -2025-07-23T19:36:54.8329235Z github.com/ava-labs/coreth/ethclient/ethclient.go:539: CallContract 80.0% -2025-07-23T19:36:54.8329764Z github.com/ava-labs/coreth/ethclient/ethclient.go:550: CallContractAtHash 0.0% -2025-07-23T19:36:54.8330301Z github.com/ava-labs/coreth/ethclient/ethclient.go:572: SuggestGasPrice 0.0% -2025-07-23T19:36:54.8330834Z github.com/ava-labs/coreth/ethclient/ethclient.go:582: SuggestGasTipCap 0.0% -2025-07-23T19:36:54.8331348Z github.com/ava-labs/coreth/ethclient/ethclient.go:598: FeeHistory 0.0% -2025-07-23T19:36:54.8331866Z github.com/ava-labs/coreth/ethclient/ethclient.go:626: EstimateGas 0.0% -2025-07-23T19:36:54.8332549Z github.com/ava-labs/coreth/ethclient/ethclient.go:639: SendTransaction 75.0% -2025-07-23T19:36:54.8333080Z github.com/ava-labs/coreth/ethclient/ethclient.go:647: toBlockNumArg 85.7% -2025-07-23T19:36:54.8333580Z github.com/ava-labs/coreth/ethclient/ethclient.go:662: toCallArg 60.0% -2025-07-23T19:36:54.8334081Z github.com/ava-labs/coreth/ethclient/ethclient.go:722: toSyncProgress 0.0% -2025-07-23T19:36:54.8334612Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:44: NewClientWithHook 0.0% -2025-07-23T19:36:54.8335324Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:61: SubscribeNewAcceptedTransactions 0.0% -2025-07-23T19:36:54.8335975Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:73: SubscribeNewPendingTransactions 0.0% -2025-07-23T19:36:54.8336563Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:85: AcceptedCodeAt 0.0% -2025-07-23T19:36:54.8337100Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:91: AcceptedNonceAt 0.0% -2025-07-23T19:36:54.8337677Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:97: AcceptedCallContract 0.0% -2025-07-23T19:36:54.8338258Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:104: EstimateBaseFee 0.0% -2025-07-23T19:36:54.8338796Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:113: ToBlockNumArg 0.0% -2025-07-23T19:36:54.8339336Z github.com/ava-labs/coreth/ethclient/signer.go:48: setSenderFromServer 100.0% -2025-07-23T19:36:54.8339826Z github.com/ava-labs/coreth/ethclient/signer.go:53: Equal 0.0% -2025-07-23T19:36:54.8340270Z github.com/ava-labs/coreth/ethclient/signer.go:58: Sender 66.7% -2025-07-23T19:36:54.8340714Z github.com/ava-labs/coreth/ethclient/signer.go:65: ChainID 0.0% -2025-07-23T19:36:54.8341296Z github.com/ava-labs/coreth/ethclient/signer.go:68: Hash 0.0% -2025-07-23T19:36:54.8341758Z github.com/ava-labs/coreth/ethclient/signer.go:71: SignatureValues 0.0% -2025-07-23T19:36:54.8342261Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:48: Add 0.0% -2025-07-23T19:36:54.8342790Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:87: NewBackend 88.9% -2025-07-23T19:36:54.8343345Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:122: newWithNode 83.3% -2025-07-23T19:36:54.8343891Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:154: Close 100.0% -2025-07-23T19:36:54.8344419Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:163: Commit 75.0% -2025-07-23T19:36:54.8345063Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:171: buildBlock 73.3% -2025-07-23T19:36:54.8345642Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:196: acceptAncestors 83.3% -2025-07-23T19:36:54.8346220Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:219: Rollback 100.0% -2025-07-23T19:36:54.8346743Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:239: Fork 76.5% -2025-07-23T19:36:54.8347285Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:274: AdjustTime 100.0% -2025-07-23T19:36:54.8347951Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:280: Client 100.0% -2025-07-23T19:36:54.8348545Z github.com/ava-labs/coreth/ethclient/simulated/options.go:29: WithBlockGasLimit 100.0% -2025-07-23T19:36:54.8349147Z github.com/ava-labs/coreth/ethclient/simulated/options.go:37: WithCallGasLimit 100.0% -2025-07-23T19:36:54.8349717Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:51: NewHasher 100.0% -2025-07-23T19:36:54.8350253Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:56: Reset 100.0% -2025-07-23T19:36:54.8350771Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:61: Update 100.0% -2025-07-23T19:36:54.8351297Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:68: Hash 100.0% -2025-07-23T19:36:54.8351794Z github.com/ava-labs/coreth/internal/debug/api.go:70: Verbosity 0.0% -2025-07-23T19:36:54.8352427Z github.com/ava-labs/coreth/internal/debug/api.go:76: Vmodule 0.0% -2025-07-23T19:36:54.8352902Z github.com/ava-labs/coreth/internal/debug/api.go:81: MemStats 0.0% -2025-07-23T19:36:54.8353361Z github.com/ava-labs/coreth/internal/debug/api.go:88: GcStats 0.0% -2025-07-23T19:36:54.8353848Z github.com/ava-labs/coreth/internal/debug/api.go:96: CpuProfile 0.0% -2025-07-23T19:36:54.8354358Z github.com/ava-labs/coreth/internal/debug/api.go:106: StartCPUProfile 0.0% -2025-07-23T19:36:54.8354984Z github.com/ava-labs/coreth/internal/debug/api.go:127: StopCPUProfile 0.0% -2025-07-23T19:36:54.8355500Z github.com/ava-labs/coreth/internal/debug/api.go:143: GoTrace 0.0% -2025-07-23T19:36:54.8355993Z github.com/ava-labs/coreth/internal/debug/api.go:155: BlockProfile 0.0% -2025-07-23T19:36:54.8356520Z github.com/ava-labs/coreth/internal/debug/api.go:164: SetBlockProfileRate 0.0% -2025-07-23T19:36:54.8357061Z github.com/ava-labs/coreth/internal/debug/api.go:169: WriteBlockProfile 0.0% -2025-07-23T19:36:54.8357579Z github.com/ava-labs/coreth/internal/debug/api.go:176: MutexProfile 0.0% -2025-07-23T19:36:54.8358120Z github.com/ava-labs/coreth/internal/debug/api.go:184: SetMutexProfileFraction 0.0% -2025-07-23T19:36:54.8358670Z github.com/ava-labs/coreth/internal/debug/api.go:189: WriteMutexProfile 0.0% -2025-07-23T19:36:54.8359195Z github.com/ava-labs/coreth/internal/debug/api.go:196: WriteMemProfile 0.0% -2025-07-23T19:36:54.8359689Z github.com/ava-labs/coreth/internal/debug/api.go:203: Stacks 0.0% -2025-07-23T19:36:54.8360164Z github.com/ava-labs/coreth/internal/debug/api.go:242: FreeOSMemory 0.0% -2025-07-23T19:36:54.8360658Z github.com/ava-labs/coreth/internal/debug/api.go:248: SetGCPercent 0.0% -2025-07-23T19:36:54.8361307Z github.com/ava-labs/coreth/internal/debug/api.go:252: writeProfile 0.0% -2025-07-23T19:36:54.8361802Z github.com/ava-labs/coreth/internal/debug/api.go:265: expandHome 0.0% -2025-07-23T19:36:54.8362283Z github.com/ava-labs/coreth/internal/debug/flags.go:181: init 100.0% -2025-07-23T19:36:54.8362760Z github.com/ava-labs/coreth/internal/debug/flags.go:187: Setup 0.0% -2025-07-23T19:36:54.8363253Z github.com/ava-labs/coreth/internal/debug/flags.go:314: StartPProf 0.0% -2025-07-23T19:36:54.8363729Z github.com/ava-labs/coreth/internal/debug/flags.go:325: Exit 0.0% -2025-07-23T19:36:54.8364238Z github.com/ava-labs/coreth/internal/debug/flags.go:333: validateLogLocation 0.0% -2025-07-23T19:36:54.8364883Z github.com/ava-labs/coreth/internal/debug/loudpanic.go:33: LoudPanic 0.0% -2025-07-23T19:36:54.8365398Z github.com/ava-labs/coreth/internal/debug/trace.go:39: StartGoTrace 0.0% -2025-07-23T19:36:54.8365898Z github.com/ava-labs/coreth/internal/debug/trace.go:60: StopGoTrace 0.0% -2025-07-23T19:36:54.8366386Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:42: lock 0.0% -2025-07-23T19:36:54.8366874Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:57: LockAddr 0.0% -2025-07-23T19:36:54.8367503Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:62: UnlockAddr 0.0% -2025-07-23T19:36:54.8368092Z github.com/ava-labs/coreth/internal/ethapi/api.coreth.go:46: SuggestPriceOptions 86.7% -2025-07-23T19:36:54.8368708Z github.com/ava-labs/coreth/internal/ethapi/api.coreth.go:104: calculateFeeSpeeds 100.0% -2025-07-23T19:36:54.8369279Z github.com/ava-labs/coreth/internal/ethapi/api.go:76: NewEthereumAPI 100.0% -2025-07-23T19:36:54.8369782Z github.com/ava-labs/coreth/internal/ethapi/api.go:81: GasPrice 0.0% -2025-07-23T19:36:54.8370247Z github.com/ava-labs/coreth/internal/ethapi/api.go:91: BaseFee 0.0% -2025-07-23T19:36:54.8370766Z github.com/ava-labs/coreth/internal/ethapi/api.go:100: MaxPriorityFeePerGas 0.0% -2025-07-23T19:36:54.8371291Z github.com/ava-labs/coreth/internal/ethapi/api.go:116: FeeHistory 0.0% -2025-07-23T19:36:54.8371767Z github.com/ava-labs/coreth/internal/ethapi/api.go:148: Syncing 0.0% -2025-07-23T19:36:54.8372262Z github.com/ava-labs/coreth/internal/ethapi/api.go:158: NewTxPoolAPI 0.0% -2025-07-23T19:36:54.8372750Z github.com/ava-labs/coreth/internal/ethapi/api.go:163: Content 0.0% -2025-07-23T19:36:54.8373238Z github.com/ava-labs/coreth/internal/ethapi/api.go:191: ContentFrom 0.0% -2025-07-23T19:36:54.8373714Z github.com/ava-labs/coreth/internal/ethapi/api.go:215: Status 0.0% -2025-07-23T19:36:54.8374184Z github.com/ava-labs/coreth/internal/ethapi/api.go:225: Inspect 0.0% -2025-07-23T19:36:54.8374705Z github.com/ava-labs/coreth/internal/ethapi/api.go:265: NewEthereumAccountAPI 0.0% -2025-07-23T19:36:54.8375330Z github.com/ava-labs/coreth/internal/ethapi/api.go:270: Accounts 0.0% -2025-07-23T19:36:54.8375849Z github.com/ava-labs/coreth/internal/ethapi/api.go:284: NewPersonalAccountAPI 0.0% -2025-07-23T19:36:54.8376388Z github.com/ava-labs/coreth/internal/ethapi/api.go:293: ListAccounts 0.0% -2025-07-23T19:36:54.8376886Z github.com/ava-labs/coreth/internal/ethapi/api.go:307: ListWallets 0.0% -2025-07-23T19:36:54.8377375Z github.com/ava-labs/coreth/internal/ethapi/api.go:329: OpenWallet 0.0% -2025-07-23T19:36:54.8377877Z github.com/ava-labs/coreth/internal/ethapi/api.go:343: DeriveAccount 0.0% -2025-07-23T19:36:54.8378377Z github.com/ava-labs/coreth/internal/ethapi/api.go:359: NewAccount 0.0% -2025-07-23T19:36:54.8378872Z github.com/ava-labs/coreth/internal/ethapi/api.go:376: fetchKeystore 0.0% -2025-07-23T19:36:54.8379370Z github.com/ava-labs/coreth/internal/ethapi/api.go:385: ImportRawKey 0.0% -2025-07-23T19:36:54.8379596Z github.com/ava-labs/coreth/internal/ethapi/api.go:401: UnlockAccount 0.0% -2025-07-23T19:36:54.8379981Z github.com/ava-labs/coreth/internal/ethapi/api.go:430: LockAccount 0.0% -2025-07-23T19:36:54.8380218Z github.com/ava-labs/coreth/internal/ethapi/api.go:440: signTransaction 0.0% -2025-07-23T19:36:54.8380452Z github.com/ava-labs/coreth/internal/ethapi/api.go:460: SendTransaction 0.0% -2025-07-23T19:36:54.8380684Z github.com/ava-labs/coreth/internal/ethapi/api.go:482: SignTransaction 0.0% -2025-07-23T19:36:54.8380887Z github.com/ava-labs/coreth/internal/ethapi/api.go:526: Sign 0.0% -2025-07-23T19:36:54.8381098Z github.com/ava-labs/coreth/internal/ethapi/api.go:554: EcRecover 0.0% -2025-07-23T19:36:54.8381326Z github.com/ava-labs/coreth/internal/ethapi/api.go:571: InitializeWallet 0.0% -2025-07-23T19:36:54.8381529Z github.com/ava-labs/coreth/internal/ethapi/api.go:598: Unpair 0.0% -2025-07-23T19:36:54.8381769Z github.com/ava-labs/coreth/internal/ethapi/api.go:618: NewBlockChainAPI 100.0% -2025-07-23T19:36:54.8381980Z github.com/ava-labs/coreth/internal/ethapi/api.go:628: ChainId 0.0% -2025-07-23T19:36:54.8382193Z github.com/ava-labs/coreth/internal/ethapi/api.go:633: BlockNumber 0.0% -2025-07-23T19:36:54.8382399Z github.com/ava-labs/coreth/internal/ethapi/api.go:641: GetBalance 0.0% -2025-07-23T19:36:54.8382706Z github.com/ava-labs/coreth/internal/ethapi/api.go:671: Put 0.0% -2025-07-23T19:36:54.8382914Z github.com/ava-labs/coreth/internal/ethapi/api.go:676: Delete 0.0% -2025-07-23T19:36:54.8383117Z github.com/ava-labs/coreth/internal/ethapi/api.go:683: GetProof 0.0% -2025-07-23T19:36:54.8383332Z github.com/ava-labs/coreth/internal/ethapi/api.go:766: decodeHash 0.0% -2025-07-23T19:36:54.8383572Z github.com/ava-labs/coreth/internal/ethapi/api.go:788: GetHeaderByNumber 100.0% -2025-07-23T19:36:54.8383812Z github.com/ava-labs/coreth/internal/ethapi/api.go:805: GetHeaderByHash 100.0% -2025-07-23T19:36:54.8384045Z github.com/ava-labs/coreth/internal/ethapi/api.go:820: GetBlockByNumber 100.0% -2025-07-23T19:36:54.8384282Z github.com/ava-labs/coreth/internal/ethapi/api.go:838: GetBlockByHash 100.0% -2025-07-23T19:36:54.8384569Z github.com/ava-labs/coreth/internal/ethapi/api.go:847: GetUncleByBlockNumberAndIndex 0.0% -2025-07-23T19:36:54.8384986Z github.com/ava-labs/coreth/internal/ethapi/api.go:862: GetUncleByBlockHashAndIndex 0.0% -2025-07-23T19:36:54.8385263Z github.com/ava-labs/coreth/internal/ethapi/api.go:877: GetUncleCountByBlockNumber 0.0% -2025-07-23T19:36:54.8385524Z github.com/ava-labs/coreth/internal/ethapi/api.go:886: GetUncleCountByBlockHash 0.0% -2025-07-23T19:36:54.8385729Z github.com/ava-labs/coreth/internal/ethapi/api.go:895: GetCode 0.0% -2025-07-23T19:36:54.8385953Z github.com/ava-labs/coreth/internal/ethapi/api.go:907: GetStorageAt 0.0% -2025-07-23T19:36:54.8386189Z github.com/ava-labs/coreth/internal/ethapi/api.go:921: GetBlockReceipts 85.7% -2025-07-23T19:36:54.8386389Z github.com/ava-labs/coreth/internal/ethapi/api.go:966: Apply 84.2% -2025-07-23T19:36:54.8386602Z github.com/ava-labs/coreth/internal/ethapi/api.go:1017: Apply 56.2% -2025-07-23T19:36:54.8386840Z github.com/ava-labs/coreth/internal/ethapi/api.go:1058: NewChainContext 100.0% -2025-07-23T19:36:54.8387052Z github.com/ava-labs/coreth/internal/ethapi/api.go:1062: Engine 100.0% -2025-07-23T19:36:54.8387261Z github.com/ava-labs/coreth/internal/ethapi/api.go:1066: GetHeader 0.0% -2025-07-23T19:36:54.8387467Z github.com/ava-labs/coreth/internal/ethapi/api.go:1076: doCall 80.8% -2025-07-23T19:36:54.8387676Z github.com/ava-labs/coreth/internal/ethapi/api.go:1128: DoCall 43.8% -2025-07-23T19:36:54.8387871Z github.com/ava-labs/coreth/internal/ethapi/api.go:1163: Call 66.7% -2025-07-23T19:36:54.8388105Z github.com/ava-labs/coreth/internal/ethapi/api.go:1183: DoEstimateGas 77.8% -2025-07-23T19:36:54.8388329Z github.com/ava-labs/coreth/internal/ethapi/api.go:1227: EstimateGas 100.0% -2025-07-23T19:36:54.8388700Z github.com/ava-labs/coreth/internal/ethapi/api.go:1236: RPCMarshalHeader 80.0% -2025-07-23T19:36:54.8388943Z github.com/ava-labs/coreth/internal/ethapi/api.go:1281: RPCMarshalBlock 95.0% -2025-07-23T19:36:54.8389183Z github.com/ava-labs/coreth/internal/ethapi/api.go:1313: rpcMarshalHeader 100.0% -2025-07-23T19:36:54.8389428Z github.com/ava-labs/coreth/internal/ethapi/api.go:1323: rpcMarshalBlock 100.0% -2025-07-23T19:36:54.8389665Z github.com/ava-labs/coreth/internal/ethapi/api.go:1361: newRPCTransaction 94.9% -2025-07-23T19:36:54.8389898Z github.com/ava-labs/coreth/internal/ethapi/api.go:1438: effectiveGasPrice 0.0% -2025-07-23T19:36:54.8390138Z github.com/ava-labs/coreth/internal/ethapi/api.go:1450: NewRPCTransaction 0.0% -2025-07-23T19:36:54.8390434Z github.com/ava-labs/coreth/internal/ethapi/api.go:1463: newRPCTransactionFromBlockIndex 75.0% -2025-07-23T19:36:54.8390729Z github.com/ava-labs/coreth/internal/ethapi/api.go:1472: newRPCRawTransactionFromBlockIndex 0.0% -2025-07-23T19:36:54.8390977Z github.com/ava-labs/coreth/internal/ethapi/api.go:1492: CreateAccessList 0.0% -2025-07-23T19:36:54.8391187Z github.com/ava-labs/coreth/internal/ethapi/api.go:1511: AccessList 0.0% -2025-07-23T19:36:54.8391543Z github.com/ava-labs/coreth/internal/ethapi/api.go:1573: NewTransactionAPI 100.0% -2025-07-23T19:36:54.8391841Z github.com/ava-labs/coreth/internal/ethapi/api.go:1581: GetBlockTransactionCountByNumber 0.0% -2025-07-23T19:36:54.8392125Z github.com/ava-labs/coreth/internal/ethapi/api.go:1590: GetBlockTransactionCountByHash 0.0% -2025-07-23T19:36:54.8392429Z github.com/ava-labs/coreth/internal/ethapi/api.go:1599: GetTransactionByBlockNumberAndIndex 0.0% -2025-07-23T19:36:54.8392721Z github.com/ava-labs/coreth/internal/ethapi/api.go:1607: GetTransactionByBlockHashAndIndex 0.0% -2025-07-23T19:36:54.8393035Z github.com/ava-labs/coreth/internal/ethapi/api.go:1615: GetRawTransactionByBlockNumberAndIndex 0.0% -2025-07-23T19:36:54.8393351Z github.com/ava-labs/coreth/internal/ethapi/api.go:1623: GetRawTransactionByBlockHashAndIndex 0.0% -2025-07-23T19:36:54.8393606Z github.com/ava-labs/coreth/internal/ethapi/api.go:1631: GetTransactionCount 0.0% -2025-07-23T19:36:54.8393873Z github.com/ava-labs/coreth/internal/ethapi/api.go:1650: GetTransactionByHash 0.0% -2025-07-23T19:36:54.8394138Z github.com/ava-labs/coreth/internal/ethapi/api.go:1672: GetRawTransactionByHash 0.0% -2025-07-23T19:36:54.8394403Z github.com/ava-labs/coreth/internal/ethapi/api.go:1688: GetTransactionReceipt 75.0% -2025-07-23T19:36:54.8394636Z github.com/ava-labs/coreth/internal/ethapi/api.go:1715: marshalReceipt 84.6% -2025-07-23T19:36:54.8394955Z github.com/ava-labs/coreth/internal/ethapi/api.go:1757: sign 80.0% -2025-07-23T19:36:54.8395201Z github.com/ava-labs/coreth/internal/ethapi/api.go:1770: SubmitTransaction 0.0% -2025-07-23T19:36:54.8395435Z github.com/ava-labs/coreth/internal/ethapi/api.go:1802: SendTransaction 37.5% -2025-07-23T19:36:54.8395670Z github.com/ava-labs/coreth/internal/ethapi/api.go:1838: FillTransaction 87.5% -2025-07-23T19:36:54.8395917Z github.com/ava-labs/coreth/internal/ethapi/api.go:1856: SendRawTransaction 0.0% -2025-07-23T19:36:54.8396119Z github.com/ava-labs/coreth/internal/ethapi/api.go:1873: Sign 0.0% -2025-07-23T19:36:54.8396354Z github.com/ava-labs/coreth/internal/ethapi/api.go:1898: SignTransaction 65.0% -2025-07-23T19:36:54.8396601Z github.com/ava-labs/coreth/internal/ethapi/api.go:1932: PendingTransactions 0.0% -2025-07-23T19:36:54.8396807Z github.com/ava-labs/coreth/internal/ethapi/api.go:1957: Resend 0.0% -2025-07-23T19:36:54.8397034Z github.com/ava-labs/coreth/internal/ethapi/api.go:2014: NewDebugAPI 0.0% -2025-07-23T19:36:54.8397261Z github.com/ava-labs/coreth/internal/ethapi/api.go:2019: GetRawHeader 0.0% -2025-07-23T19:36:54.8397483Z github.com/ava-labs/coreth/internal/ethapi/api.go:2038: GetRawBlock 0.0% -2025-07-23T19:36:54.8397844Z github.com/ava-labs/coreth/internal/ethapi/api.go:2057: GetRawReceipts 0.0% -2025-07-23T19:36:54.8398078Z github.com/ava-labs/coreth/internal/ethapi/api.go:2084: GetRawTransaction 0.0% -2025-07-23T19:36:54.8398298Z github.com/ava-labs/coreth/internal/ethapi/api.go:2100: PrintBlock 0.0% -2025-07-23T19:36:54.8398513Z github.com/ava-labs/coreth/internal/ethapi/api.go:2114: NewNetAPI 0.0% -2025-07-23T19:36:54.8398725Z github.com/ava-labs/coreth/internal/ethapi/api.go:2119: Listening 0.0% -2025-07-23T19:36:54.8398932Z github.com/ava-labs/coreth/internal/ethapi/api.go:2124: PeerCount 0.0% -2025-07-23T19:36:54.8399144Z github.com/ava-labs/coreth/internal/ethapi/api.go:2129: Version 0.0% -2025-07-23T19:36:54.8399366Z github.com/ava-labs/coreth/internal/ethapi/api.go:2135: checkTxFee 28.6% -2025-07-23T19:36:54.8399606Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:20: GetChainConfig 0.0% -2025-07-23T19:36:54.8399849Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:32: CallDetailed 0.0% -2025-07-23T19:36:54.8400088Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:71: GetBadBlocks 0.0% -2025-07-23T19:36:54.8400383Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:103: stateQueryBlockNumberAllowed 90.5% -2025-07-23T19:36:54.8400719Z github.com/ava-labs/coreth/internal/ethapi/backend.go:115: GetAPIs 0.0% -2025-07-23T19:36:54.8400942Z github.com/ava-labs/coreth/internal/ethapi/errors.go:47: ErrorCode 0.0% -2025-07-23T19:36:54.8401156Z github.com/ava-labs/coreth/internal/ethapi/errors.go:52: ErrorData 0.0% -2025-07-23T19:36:54.8401394Z github.com/ava-labs/coreth/internal/ethapi/errors.go:57: newRevertError 0.0% -2025-07-23T19:36:54.8401636Z github.com/ava-labs/coreth/internal/ethapi/errors.go:75: NewTxIndexingError 0.0% -2025-07-23T19:36:54.8401843Z github.com/ava-labs/coreth/internal/ethapi/errors.go:78: Error 0.0% -2025-07-23T19:36:54.8402056Z github.com/ava-labs/coreth/internal/ethapi/errors.go:84: ErrorCode 0.0% -2025-07-23T19:36:54.8402266Z github.com/ava-labs/coreth/internal/ethapi/errors.go:89: ErrorData 0.0% -2025-07-23T19:36:54.8402508Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:91: from 100.0% -2025-07-23T19:36:54.8402750Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:99: data 100.0% -2025-07-23T19:36:54.8403018Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:110: setDefaults 61.9% -2025-07-23T19:36:54.8403304Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:203: setFeeDefaults 89.7% -2025-07-23T19:36:54.8403601Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:263: setCancunFeeDefaults 100.0% -2025-07-23T19:36:54.8403927Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:282: setApricotPhase3FeeDefault 90.9% -2025-07-23T19:36:54.8404215Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:310: setBlobTxSidecar 90.5% -2025-07-23T19:36:54.8404478Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:387: ToMessage 78.6% -2025-07-23T19:36:54.8404848Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:476: toTransaction 73.3% -2025-07-23T19:36:54.8405116Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:548: IsEIP4844 100.0% -2025-07-23T19:36:54.8405339Z github.com/ava-labs/coreth/internal/flags/categories.go:53: init 100.0% -2025-07-23T19:36:54.8405550Z github.com/ava-labs/coreth/internal/flags/helpers.go:47: NewApp 80.0% -2025-07-23T19:36:54.8405750Z github.com/ava-labs/coreth/internal/flags/helpers.go:62: Merge 0.0% -2025-07-23T19:36:54.8406000Z github.com/ava-labs/coreth/internal/flags/helpers.go:87: MigrateGlobalFlags 0.0% -2025-07-23T19:36:54.8406233Z github.com/ava-labs/coreth/internal/flags/helpers.go:114: doMigrateFlags 0.0% -2025-07-23T19:36:54.8406440Z github.com/ava-labs/coreth/internal/flags/helpers.go:149: init 50.0% -2025-07-23T19:36:54.8406796Z github.com/ava-labs/coreth/internal/flags/helpers.go:162: FlagString 0.0% -2025-07-23T19:36:54.8407006Z github.com/ava-labs/coreth/internal/flags/helpers.go:194: indent 0.0% -2025-07-23T19:36:54.8407225Z github.com/ava-labs/coreth/internal/flags/helpers.go:199: wordWrap 0.0% -2025-07-23T19:36:54.8407436Z github.com/ava-labs/coreth/internal/reexec/reexec.go:31: Register 0.0% -2025-07-23T19:36:54.8407636Z github.com/ava-labs/coreth/internal/reexec/reexec.go:40: Init 0.0% -2025-07-23T19:36:54.8407849Z github.com/ava-labs/coreth/internal/reexec/self_linux.go:23: Self 0.0% -2025-07-23T19:36:54.8408166Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:49: NewShutdownTracker 100.0% -2025-07-23T19:36:54.8408460Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:59: MarkStartup 71.4% -2025-07-23T19:36:54.8408729Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:75: Start 85.7% -2025-07-23T19:36:54.8408995Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:91: Stop 100.0% -2025-07-23T19:36:54.8409226Z github.com/ava-labs/coreth/internal/version/vcs.go:43: buildInfoVCS 36.4% -2025-07-23T19:36:54.8409561Z github.com/ava-labs/coreth/internal/version/version.go:54: VCS 83.3% -2025-07-23T19:36:54.8409799Z github.com/ava-labs/coreth/internal/version/version.go:69: ClientName 0.0% -2025-07-23T19:36:54.8410008Z github.com/ava-labs/coreth/internal/version/version.go:85: Info 42.9% -2025-07-23T19:36:54.8410243Z github.com/ava-labs/coreth/internal/version/version.go:112: versionInfo 50.0% -2025-07-23T19:36:54.8410476Z github.com/ava-labs/coreth/internal/version/version.go:142: findModule 50.0% -2025-07-23T19:36:54.8410652Z github.com/ava-labs/coreth/log/format.go:45: format 66.7% -2025-07-23T19:36:54.8410854Z github.com/ava-labs/coreth/log/format.go:103: formatAttributes 82.1% -2025-07-23T19:36:54.8411067Z github.com/ava-labs/coreth/log/format.go:150: FormatSlogValue 84.0% -2025-07-23T19:36:54.8411262Z github.com/ava-labs/coreth/log/format.go:206: appendInt64 100.0% -2025-07-23T19:36:54.8411459Z github.com/ava-labs/coreth/log/format.go:214: appendUint64 88.2% -2025-07-23T19:36:54.8411671Z github.com/ava-labs/coreth/log/format.go:249: FormatLogfmtUint64 0.0% -2025-07-23T19:36:54.8411862Z github.com/ava-labs/coreth/log/format.go:254: appendBigInt 12.5% -2025-07-23T19:36:54.8412056Z github.com/ava-labs/coreth/log/format.go:288: appendU256 50.0% -2025-07-23T19:36:54.8412270Z github.com/ava-labs/coreth/log/format.go:298: appendEscapeString 100.0% -2025-07-23T19:36:54.8412474Z github.com/ava-labs/coreth/log/format.go:331: escapeMessage 60.0% -2025-07-23T19:36:54.8412689Z github.com/ava-labs/coreth/log/format.go:352: writeTimeTermFormat 100.0% -2025-07-23T19:36:54.8412894Z github.com/ava-labs/coreth/log/format.go:372: writePosIntWidth 91.7% -2025-07-23T19:36:54.8413101Z github.com/ava-labs/coreth/log/handler.go:22: DiscardHandler 0.0% -2025-07-23T19:36:54.8413274Z github.com/ava-labs/coreth/log/handler.go:26: Handle 0.0% -2025-07-23T19:36:54.8413453Z github.com/ava-labs/coreth/log/handler.go:30: Enabled 0.0% -2025-07-23T19:36:54.8413646Z github.com/ava-labs/coreth/log/handler.go:34: WithGroup 0.0% -2025-07-23T19:36:54.8413822Z github.com/ava-labs/coreth/log/handler.go:38: WithAttrs 0.0% -2025-07-23T19:36:54.8414043Z github.com/ava-labs/coreth/log/handler.go:67: NewTerminalHandler 0.0% -2025-07-23T19:36:54.8414285Z github.com/ava-labs/coreth/log/handler.go:73: NewTerminalHandlerWithLevel 100.0% -2025-07-23T19:36:54.8414463Z github.com/ava-labs/coreth/log/handler.go:82: Handle 100.0% -2025-07-23T19:36:54.8414653Z github.com/ava-labs/coreth/log/handler.go:91: Enabled 100.0% -2025-07-23T19:36:54.8414931Z github.com/ava-labs/coreth/log/handler.go:95: WithGroup 0.0% -2025-07-23T19:36:54.8415255Z github.com/ava-labs/coreth/log/handler.go:99: WithAttrs 100.0% -2025-07-23T19:36:54.8415471Z github.com/ava-labs/coreth/log/handler.go:110: ResetFieldPadding 0.0% -2025-07-23T19:36:54.8415663Z github.com/ava-labs/coreth/log/handler.go:117: JSONHandler 0.0% -2025-07-23T19:36:54.8415899Z github.com/ava-labs/coreth/log/handler.go:123: JSONHandlerWithLevel 100.0% -2025-07-23T19:36:54.8416097Z github.com/ava-labs/coreth/log/handler.go:134: LogfmtHandler 0.0% -2025-07-23T19:36:54.8416326Z github.com/ava-labs/coreth/log/handler.go:142: LogfmtHandlerWithLevel 0.0% -2025-07-23T19:36:54.8416552Z github.com/ava-labs/coreth/log/handler.go:149: builtinReplaceLogfmt 0.0% -2025-07-23T19:36:54.8416766Z github.com/ava-labs/coreth/log/handler.go:153: builtinReplaceJSON 0.0% -2025-07-23T19:36:54.8416972Z github.com/ava-labs/coreth/log/handler.go:157: builtinReplace 0.0% -2025-07-23T19:36:54.8417257Z github.com/ava-labs/coreth/log/logger.go:46: LvlFromString 37.5% -2025-07-23T19:36:54.8417490Z github.com/ava-labs/coreth/log/logger.go:67: FromLegacyLevel 0.0% -2025-07-23T19:36:54.8417771Z github.com/ava-labs/coreth/log/logger.go:93: LevelAlignedString 37.5% -2025-07-23T19:36:54.8417993Z github.com/ava-labs/coreth/log/logger.go:113: LevelString 0.0% -2025-07-23T19:36:54.8418523Z github.com/ava-labs/coreth/log/logger.go:173: NewLogger 0.0% -2025-07-23T19:36:54.8418772Z github.com/ava-labs/coreth/log/logger.go:180: Write 0.0% -2025-07-23T19:36:54.8419024Z github.com/ava-labs/coreth/log/logger.go:196: Log 0.0% -2025-07-23T19:36:54.8419236Z github.com/ava-labs/coreth/log/logger.go:200: With 0.0% -2025-07-23T19:36:54.8419470Z github.com/ava-labs/coreth/log/logger.go:204: New 0.0% -2025-07-23T19:36:54.8419690Z github.com/ava-labs/coreth/log/logger.go:209: Enabled 0.0% -2025-07-23T19:36:54.8419952Z github.com/ava-labs/coreth/log/logger.go:213: Trace 0.0% -2025-07-23T19:36:54.8420212Z github.com/ava-labs/coreth/log/logger.go:217: Debug 0.0% -2025-07-23T19:36:54.8420409Z github.com/ava-labs/coreth/log/logger.go:221: Info 0.0% -2025-07-23T19:36:54.8420639Z github.com/ava-labs/coreth/log/logger.go:225: Warn 0.0% -2025-07-23T19:36:54.8420860Z github.com/ava-labs/coreth/log/logger.go:229: Error 0.0% -2025-07-23T19:36:54.8421038Z github.com/ava-labs/coreth/log/logger.go:233: Crit 0.0% -2025-07-23T19:36:54.8421439Z github.com/ava-labs/coreth/metrics/metricstest/metrics.go:15: WithMetrics 40.0% -2025-07-23T19:36:54.8421748Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:28: NewGatherer 100.0% -2025-07-23T19:36:54.8422027Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:36: Gather 100.0% -2025-07-23T19:36:54.8422341Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:64: ptrTo 100.0% -2025-07-23T19:36:54.8422652Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:66: metricFamily 94.1% -2025-07-23T19:36:54.8422923Z github.com/ava-labs/coreth/miner/miner.go:59: New 0.0% -2025-07-23T19:36:54.8423169Z github.com/ava-labs/coreth/miner/miner.go:65: SetEtherbase 0.0% -2025-07-23T19:36:54.8423401Z github.com/ava-labs/coreth/miner/miner.go:69: GenerateBlock 0.0% -2025-07-23T19:36:54.8423704Z github.com/ava-labs/coreth/miner/miner.go:75: SubscribePendingLogs 0.0% -2025-07-23T19:36:54.8423979Z github.com/ava-labs/coreth/miner/ordering.go:50: newTxWithMinerFee 100.0% -2025-07-23T19:36:54.8424208Z github.com/ava-labs/coreth/miner/ordering.go:72: Len 100.0% -2025-07-23T19:36:54.8424466Z github.com/ava-labs/coreth/miner/ordering.go:73: Less 100.0% -2025-07-23T19:36:54.8424702Z github.com/ava-labs/coreth/miner/ordering.go:82: Swap 100.0% -2025-07-23T19:36:54.8425264Z github.com/ava-labs/coreth/miner/ordering.go:84: Push 0.0% -2025-07-23T19:36:54.8425679Z github.com/ava-labs/coreth/miner/ordering.go:88: Pop 100.0% -2025-07-23T19:36:54.8425997Z github.com/ava-labs/coreth/miner/ordering.go:112: newTransactionsByPriceAndNonce 100.0% -2025-07-23T19:36:54.8426242Z github.com/ava-labs/coreth/miner/ordering.go:141: Peek 100.0% -2025-07-23T19:36:54.8426536Z github.com/ava-labs/coreth/miner/ordering.go:149: Shift 100.0% -2025-07-23T19:36:54.8426806Z github.com/ava-labs/coreth/miner/ordering.go:164: Pop 0.0% -2025-07-23T19:36:54.8427038Z github.com/ava-labs/coreth/miner/ordering.go:170: Empty 0.0% -2025-07-23T19:36:54.8427246Z github.com/ava-labs/coreth/miner/ordering.go:175: Clear 0.0% -2025-07-23T19:36:54.8427502Z github.com/ava-labs/coreth/miner/worker.go:116: newWorker 0.0% -2025-07-23T19:36:54.8427722Z github.com/ava-labs/coreth/miner/worker.go:133: setEtherbase 0.0% -2025-07-23T19:36:54.8428060Z github.com/ava-labs/coreth/miner/worker.go:140: commitNewWork 0.0% -2025-07-23T19:36:54.8428340Z github.com/ava-labs/coreth/miner/worker.go:264: createCurrentEnvironment 0.0% -2025-07-23T19:36:54.8428607Z github.com/ava-labs/coreth/miner/worker.go:313: commitTransaction 0.0% -2025-07-23T19:36:54.8428909Z github.com/ava-labs/coreth/miner/worker.go:327: commitBlobTransaction 0.0% -2025-07-23T19:36:54.8429271Z github.com/ava-labs/coreth/miner/worker.go:352: applyTransaction 0.0% -2025-07-23T19:36:54.8429605Z github.com/ava-labs/coreth/miner/worker.go:386: commitTransactions 0.0% -2025-07-23T19:36:54.8429854Z github.com/ava-labs/coreth/miner/worker.go:493: commit 0.0% -2025-07-23T19:36:54.8430087Z github.com/ava-labs/coreth/miner/worker.go:511: handleResult 0.0% -2025-07-23T19:36:54.8430356Z github.com/ava-labs/coreth/miner/worker.go:557: copyReceipts 0.0% -2025-07-23T19:36:54.8430573Z github.com/ava-labs/coreth/miner/worker.go:567: totalFees 0.0% -2025-07-23T19:36:54.8430895Z github.com/ava-labs/coreth/nativeasset/contract.go:36: PackNativeAssetBalanceInput 100.0% -2025-07-23T19:36:54.8431285Z github.com/ava-labs/coreth/nativeasset/contract.go:44: UnpackNativeAssetBalanceInput 100.0% -2025-07-23T19:36:54.8431548Z github.com/ava-labs/coreth/nativeasset/contract.go:55: Run 90.0% -2025-07-23T19:36:54.8431931Z github.com/ava-labs/coreth/nativeasset/contract.go:84: PackNativeAssetCallInput 100.0% -2025-07-23T19:36:54.8432248Z github.com/ava-labs/coreth/nativeasset/contract.go:94: UnpackNativeAssetCallInput 100.0% -2025-07-23T19:36:54.8432483Z github.com/ava-labs/coreth/nativeasset/contract.go:106: Run 100.0% -2025-07-23T19:36:54.8432735Z github.com/ava-labs/coreth/nativeasset/contract.go:123: run 81.0% -2025-07-23T19:36:54.8433017Z github.com/ava-labs/coreth/nativeasset/contract.go:168: Run 100.0% -2025-07-23T19:36:54.8433322Z github.com/ava-labs/coreth/network/network.go:125: NewNetwork 75.0% -2025-07-23T19:36:54.8433586Z github.com/ava-labs/coreth/network/network.go:155: SendAppRequestAny 90.0% -2025-07-23T19:36:54.8433841Z github.com/ava-labs/coreth/network/network.go:177: SendAppRequest 88.9% -2025-07-23T19:36:54.8434130Z github.com/ava-labs/coreth/network/network.go:204: sendAppRequest 70.0% -2025-07-23T19:36:54.8434346Z github.com/ava-labs/coreth/network/network.go:259: AppRequest 81.8% -2025-07-23T19:36:54.8434703Z github.com/ava-labs/coreth/network/network.go:304: AppResponse 100.0% -2025-07-23T19:36:54.8435089Z github.com/ava-labs/coreth/network/network.go:325: AppRequestFailed 71.4% -2025-07-23T19:36:54.8435389Z github.com/ava-labs/coreth/network/network.go:343: calculateTimeUntilDeadline 100.0% -2025-07-23T19:36:54.8435702Z github.com/ava-labs/coreth/network/network.go:365: markRequestFulfilled 100.0% -2025-07-23T19:36:54.8435934Z github.com/ava-labs/coreth/network/network.go:382: AppGossip 100.0% -2025-07-23T19:36:54.8436248Z github.com/ava-labs/coreth/network/network.go:387: Connected 87.5% -2025-07-23T19:36:54.8436656Z github.com/ava-labs/coreth/network/network.go:406: Disconnected 0.0% -2025-07-23T19:36:54.8436892Z github.com/ava-labs/coreth/network/network.go:424: Shutdown 100.0% -2025-07-23T19:36:54.8437194Z github.com/ava-labs/coreth/network/network.go:438: SetRequestHandler 100.0% -2025-07-23T19:36:54.8437415Z github.com/ava-labs/coreth/network/network.go:445: Size 100.0% -2025-07-23T19:36:54.8437680Z github.com/ava-labs/coreth/network/network.go:452: TrackBandwidth 0.0% -2025-07-23T19:36:54.8438046Z github.com/ava-labs/coreth/network/network.go:463: SendSyncedAppRequestAny 100.0% -2025-07-23T19:36:54.8450420Z github.com/ava-labs/coreth/network/network.go:475: SendSyncedAppRequest 75.0% -2025-07-23T19:36:54.8450701Z github.com/ava-labs/coreth/network/network.go:483: NewClient 0.0% -2025-07-23T19:36:54.8450933Z github.com/ava-labs/coreth/network/network.go:487: AddHandler 100.0% -2025-07-23T19:36:54.8451172Z github.com/ava-labs/coreth/network/network.go:492: P2PValidators 0.0% -2025-07-23T19:36:54.8451421Z github.com/ava-labs/coreth/network/network.go:501: nextRequestID 100.0% -2025-07-23T19:36:54.8451661Z github.com/ava-labs/coreth/network/network.go:511: IsNetworkRequest 100.0% -2025-07-23T19:36:54.8451910Z github.com/ava-labs/coreth/network/peer_tracker.go:55: NewPeerTracker 100.0% -2025-07-23T19:36:54.8452341Z github.com/ava-labs/coreth/network/peer_tracker.go:70: shouldTrackNewPeer 100.0% -2025-07-23T19:36:54.8452613Z github.com/ava-labs/coreth/network/peer_tracker.go:85: getResponsivePeer 75.0% -2025-07-23T19:36:54.8452843Z github.com/ava-labs/coreth/network/peer_tracker.go:98: GetAnyPeer 100.0% -2025-07-23T19:36:54.8453058Z github.com/ava-labs/coreth/network/peer_tracker.go:133: TrackPeer 100.0% -2025-07-23T19:36:54.8453292Z github.com/ava-labs/coreth/network/peer_tracker.go:138: TrackBandwidth 86.7% -2025-07-23T19:36:54.8453504Z github.com/ava-labs/coreth/network/peer_tracker.go:165: Connected 71.4% -2025-07-23T19:36:54.8453739Z github.com/ava-labs/coreth/network/peer_tracker.go:188: Disconnected 100.0% -2025-07-23T19:36:54.8453939Z github.com/ava-labs/coreth/network/peer_tracker.go:198: Size 100.0% -2025-07-23T19:36:54.8454227Z github.com/ava-labs/coreth/network/stats/stats.go:23: IncDeadlineDroppedRequest 100.0% -2025-07-23T19:36:54.8454516Z github.com/ava-labs/coreth/network/stats/stats.go:27: UpdateTimeUntilDeadline 100.0% -2025-07-23T19:36:54.8454915Z github.com/ava-labs/coreth/network/stats/stats.go:31: NewRequestHandlerStats 100.0% -2025-07-23T19:36:54.8455210Z github.com/ava-labs/coreth/network/waiting_handler.go:29: newWaitingResponseHandler 100.0% -2025-07-23T19:36:54.8455443Z github.com/ava-labs/coreth/network/waiting_handler.go:39: OnResponse 100.0% -2025-07-23T19:36:54.8455665Z github.com/ava-labs/coreth/network/waiting_handler.go:46: OnFailure 100.0% -2025-07-23T19:36:54.8455904Z github.com/ava-labs/coreth/network/waiting_handler.go:52: WaitForResult 100.0% -2025-07-23T19:36:54.8456077Z github.com/ava-labs/coreth/node/api.go:38: apis 100.0% -2025-07-23T19:36:54.8456266Z github.com/ava-labs/coreth/node/api.go:59: ClientVersion 0.0% -2025-07-23T19:36:54.8456428Z github.com/ava-labs/coreth/node/api.go:65: Sha3 0.0% -2025-07-23T19:36:54.8456643Z github.com/ava-labs/coreth/node/config.go:75: ExtRPCEnabled 100.0% -2025-07-23T19:36:54.8456843Z github.com/ava-labs/coreth/node/config.go:81: KeyDirConfig 60.0% -2025-07-23T19:36:54.8457044Z github.com/ava-labs/coreth/node/config.go:97: GetKeyStoreDir 75.0% -2025-07-23T19:36:54.8457264Z github.com/ava-labs/coreth/node/config.go:119: makeAccountManager 58.8% -2025-07-23T19:36:54.8457429Z github.com/ava-labs/coreth/node/node.go:42: New 87.5% -2025-07-23T19:36:54.8457602Z github.com/ava-labs/coreth/node/node.go:62: Config 100.0% -2025-07-23T19:36:54.8457799Z github.com/ava-labs/coreth/node/node.go:67: AccountManager 100.0% -2025-07-23T19:36:54.8458105Z github.com/ava-labs/coreth/node/node.go:72: APIs 100.0% -2025-07-23T19:36:54.8458343Z github.com/ava-labs/coreth/params/config_extra.go:34: SetEthUpgrades 79.3% -2025-07-23T19:36:54.8458551Z github.com/ava-labs/coreth/params/config_extra.go:91: GetExtra 60.0% -2025-07-23T19:36:54.8458745Z github.com/ava-labs/coreth/params/config_extra.go:100: Copy 0.0% -2025-07-23T19:36:54.8458959Z github.com/ava-labs/coreth/params/config_extra.go:107: WithExtra 100.0% -2025-07-23T19:36:54.8459170Z github.com/ava-labs/coreth/params/config_extra.go:122: MarshalJSON 0.0% -2025-07-23T19:36:54.8459390Z github.com/ava-labs/coreth/params/config_extra.go:152: UnmarshalJSON 0.0% -2025-07-23T19:36:54.8459631Z github.com/ava-labs/coreth/params/config_extra.go:174: ToWithUpgradesJSON 0.0% -2025-07-23T19:36:54.8459846Z github.com/ava-labs/coreth/params/config_libevm.go:18: libevmInit 100.0% -2025-07-23T19:36:54.8460090Z github.com/ava-labs/coreth/params/config_libevm.go:31: constructRulesExtra 53.3% -2025-07-23T19:36:54.8460317Z github.com/ava-labs/coreth/params/extras/config.go:96: copyAndSet 100.0% -2025-07-23T19:36:54.8460573Z github.com/ava-labs/coreth/params/extras/config.go:123: CheckConfigCompatible 0.0% -2025-07-23T19:36:54.8460897Z github.com/ava-labs/coreth/params/extras/config.go:145: Description 0.0% -2025-07-23T19:36:54.8461183Z github.com/ava-labs/coreth/params/extras/config.go:166: isForkTimestampIncompatible 0.0% -2025-07-23T19:36:54.8461427Z github.com/ava-labs/coreth/params/extras/config.go:172: isTimestampForked 100.0% -2025-07-23T19:36:54.8461679Z github.com/ava-labs/coreth/params/extras/config.go:179: configTimestampEqual 0.0% -2025-07-23T19:36:54.8461905Z github.com/ava-labs/coreth/params/extras/config.go:194: UnmarshalJSON 0.0% -2025-07-23T19:36:54.8462117Z github.com/ava-labs/coreth/params/extras/config.go:210: MarshalJSON 0.0% -2025-07-23T19:36:54.8462374Z github.com/ava-labs/coreth/params/extras/config.go:223: CheckConfigForkOrder 0.0% -2025-07-23T19:36:54.8462584Z github.com/ava-labs/coreth/params/extras/config.go:240: checkForks 0.0% -2025-07-23T19:36:54.8462788Z github.com/ava-labs/coreth/params/extras/config.go:281: Verify 0.0% -2025-07-23T19:36:54.8463037Z github.com/ava-labs/coreth/params/extras/config.go:291: IsPrecompileEnabled 0.0% -2025-07-23T19:36:54.8463274Z github.com/ava-labs/coreth/params/extras/config.go:303: IsForkTransition 100.0% -2025-07-23T19:36:54.8463502Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:61: Equal 0.0% -2025-07-23T19:36:54.8463822Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:65: checkNetworkUpgradesCompatible 0.0% -2025-07-23T19:36:54.8464067Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:112: forkOrder 0.0% -2025-07-23T19:36:54.8464335Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:133: IsApricotPhase1 0.0% -2025-07-23T19:36:54.8464595Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:139: IsApricotPhase2 0.0% -2025-07-23T19:36:54.8465108Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:145: IsApricotPhase3 0.0% -2025-07-23T19:36:54.8465462Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:151: IsApricotPhase4 0.0% -2025-07-23T19:36:54.8465739Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:157: IsApricotPhase5 0.0% -2025-07-23T19:36:54.8466018Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:163: IsApricotPhasePre6 0.0% -2025-07-23T19:36:54.8466275Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:169: IsApricotPhase6 0.0% -2025-07-23T19:36:54.8466557Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:175: IsApricotPhasePost6 0.0% -2025-07-23T19:36:54.8466796Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:181: IsBanff 0.0% -2025-07-23T19:36:54.8467034Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:187: IsCortina 0.0% -2025-07-23T19:36:54.8467452Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:193: IsDurango 0.0% -2025-07-23T19:36:54.8467700Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:199: IsEtna 0.0% -2025-07-23T19:36:54.8467962Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:205: IsFortuna 0.0% -2025-07-23T19:36:54.8468214Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:211: IsGranite 0.0% -2025-07-23T19:36:54.8468468Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:215: Description 0.0% -2025-07-23T19:36:54.8468756Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:234: GetNetworkUpgrades 0.0% -2025-07-23T19:36:54.8469038Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:264: GetAvalancheRules 0.0% -2025-07-23T19:36:54.8469296Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:283: ptrToString 0.0% -2025-07-23T19:36:54.8469574Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:32: UnmarshalJSON 0.0% -2025-07-23T19:36:54.8469831Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:59: MarshalJSON 0.0% -2025-07-23T19:36:54.8470143Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:71: verifyPrecompileUpgrades 0.0% -2025-07-23T19:36:54.8470596Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:137: GetActivePrecompileConfig 0.0% -2025-07-23T19:36:54.8470957Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:147: GetActivatingPrecompileConfigs 0.0% -2025-07-23T19:36:54.8471279Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:176: checkPrecompilesCompatible 0.0% -2025-07-23T19:36:54.8471588Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:192: checkPrecompileCompatible 0.0% -2025-07-23T19:36:54.8471903Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:230: EnabledStatefulPrecompiles 0.0% -2025-07-23T19:36:54.8472159Z github.com/ava-labs/coreth/params/extras/precompiles.go:18: UnmarshalJSON 0.0% -2025-07-23T19:36:54.8472391Z github.com/ava-labs/coreth/params/extras/rules.go:28: PredicatersExist 0.0% -2025-07-23T19:36:54.8472623Z github.com/ava-labs/coreth/params/extras/rules.go:32: PredicaterExists 0.0% -2025-07-23T19:36:54.8472870Z github.com/ava-labs/coreth/params/extras/rules.go:38: IsPrecompileEnabled 0.0% -2025-07-23T19:36:54.8473098Z github.com/ava-labs/coreth/params/hooks_libevm.go:28: GetRulesExtra 100.0% -2025-07-23T19:36:54.8473327Z github.com/ava-labs/coreth/params/hooks_libevm.go:33: CanCreateContract 0.0% -2025-07-23T19:36:54.8473582Z github.com/ava-labs/coreth/params/hooks_libevm.go:37: CanExecuteTransaction 0.0% -2025-07-23T19:36:54.8473830Z github.com/ava-labs/coreth/params/hooks_libevm.go:42: MinimumGasConsumption 0.0% -2025-07-23T19:36:54.8474059Z github.com/ava-labs/coreth/params/hooks_libevm.go:70: ActivePrecompiles 0.0% -2025-07-23T19:36:54.8474329Z github.com/ava-labs/coreth/params/hooks_libevm.go:92: precompileOverrideBuiltin 0.0% -2025-07-23T19:36:54.8474553Z github.com/ava-labs/coreth/params/hooks_libevm.go:113: makePrecompile 0.0% -2025-07-23T19:36:54.8474955Z github.com/ava-labs/coreth/params/hooks_libevm.go:140: PrecompileOverride 0.0% -2025-07-23T19:36:54.8475183Z github.com/ava-labs/coreth/params/hooks_libevm.go:160: GetStateDB 0.0% -2025-07-23T19:36:54.8475411Z github.com/ava-labs/coreth/params/hooks_libevm.go:172: GetBlockContext 0.0% -2025-07-23T19:36:54.8475636Z github.com/ava-labs/coreth/params/hooks_libevm.go:176: GetChainConfig 0.0% -2025-07-23T19:36:54.8475852Z github.com/ava-labs/coreth/params/hooks_libevm.go:180: GetSnowContext 0.0% -2025-07-23T19:36:54.8476077Z github.com/ava-labs/coreth/params/hooks_libevm.go:184: GetPrecompileEnv 0.0% -2025-07-23T19:36:54.8476284Z github.com/ava-labs/coreth/params/hooks_libevm.go:194: Number 0.0% -2025-07-23T19:36:54.8476624Z github.com/ava-labs/coreth/params/hooks_libevm.go:198: Timestamp 0.0% -2025-07-23T19:36:54.8476864Z github.com/ava-labs/coreth/params/hooks_libevm.go:202: GetPredicateResults 0.0% -2025-07-23T19:36:54.8477087Z github.com/ava-labs/coreth/params/version.go:53: VersionWithCommit 0.0% -2025-07-23T19:36:54.8477309Z github.com/ava-labs/coreth/plugin/evm/admin.go:22: NewAdminService 0.0% -2025-07-23T19:36:54.8477528Z github.com/ava-labs/coreth/plugin/evm/admin.go:30: StartCPUProfiler 0.0% -2025-07-23T19:36:54.8477741Z github.com/ava-labs/coreth/plugin/evm/admin.go:40: StopCPUProfiler 0.0% -2025-07-23T19:36:54.8477947Z github.com/ava-labs/coreth/plugin/evm/admin.go:50: MemoryProfile 0.0% -2025-07-23T19:36:54.8478154Z github.com/ava-labs/coreth/plugin/evm/admin.go:60: LockProfile 0.0% -2025-07-23T19:36:54.8478352Z github.com/ava-labs/coreth/plugin/evm/admin.go:69: SetLogLevel 0.0% -2025-07-23T19:36:54.8478554Z github.com/ava-labs/coreth/plugin/evm/admin.go:81: GetVMConfig 0.0% -2025-07-23T19:36:54.8478853Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/ops.go:12: ConvertToAtomicOps 75.0% -2025-07-23T19:36:54.8479242Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:26: AddItemsToBeRemovedToPeerChain 87.5% -2025-07-23T19:36:54.8479688Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:40: AssertOpsApplied 100.0% -2025-07-23T19:36:54.8480043Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:58: AssertOpsNotApplied 100.0% -2025-07-23T19:36:54.8480372Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:76: NewSharedMemories 100.0% -2025-07-23T19:36:54.8480699Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:85: TestSharedMemory 100.0% -2025-07-23T19:36:54.8480932Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:28: init 83.3% -2025-07-23T19:36:54.8481185Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:58: GasUsed 100.0% -2025-07-23T19:36:54.8481430Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:61: Verify 0.0% -2025-07-23T19:36:54.8481682Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:64: AtomicOps 100.0% -2025-07-23T19:36:54.8481936Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:69: Initialize 0.0% -2025-07-23T19:36:54.8482163Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:72: ID 100.0% -2025-07-23T19:36:54.8482406Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:75: Burned 100.0% -2025-07-23T19:36:54.8482635Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:78: Bytes 0.0% -2025-07-23T19:36:54.8482882Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:81: SignedBytes 0.0% -2025-07-23T19:36:54.8483145Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:84: InputUTXOs 100.0% -2025-07-23T19:36:54.8483377Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:87: Visit 0.0% -2025-07-23T19:36:54.8483657Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:92: EVMStateTransfer 0.0% -2025-07-23T19:36:54.8483975Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:98: GenerateTestImportTxWithGas 100.0% -2025-07-23T19:36:54.8484279Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:115: GenerateTestImportTx 100.0% -2025-07-23T19:36:54.8484577Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:130: GenerateTestExportTx 100.0% -2025-07-23T19:36:54.8484940Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:151: NewTestTx 80.0% -2025-07-23T19:36:54.8485206Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:163: NewTestTxs 100.0% -2025-07-23T19:36:54.8485414Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:25: init 85.7% -2025-07-23T19:36:54.8485652Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:57: ExtractAtomicTxs 0.0% -2025-07-23T19:36:54.8486089Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:76: ExtractAtomicTx 66.7% -2025-07-23T19:36:54.8486456Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:89: ExtractAtomicTxsBatch 0.0% -2025-07-23T19:36:54.8486783Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:60: InputUTXOs 0.0% -2025-07-23T19:36:54.8487051Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:75: Verify 0.0% -2025-07-23T19:36:54.8487330Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:134: GasUsed 0.0% -2025-07-23T19:36:54.8487572Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:156: Burned 0.0% -2025-07-23T19:36:54.8487795Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:182: Visit 0.0% -2025-07-23T19:36:54.8488031Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:185: AtomicOps 0.0% -2025-07-23T19:36:54.8488276Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:219: NewExportTx 0.0% -2025-07-23T19:36:54.8488539Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:313: EVMStateTransfer 0.0% -2025-07-23T19:36:54.8488808Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:352: getSpendableFunds 0.0% -2025-07-23T19:36:54.8489238Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:409: getSpendableAVAXWithFee 0.0% -2025-07-23T19:36:54.8489498Z github.com/ava-labs/coreth/plugin/evm/atomic/gossip.go:12: MarshalGossip 100.0% -2025-07-23T19:36:54.8489758Z github.com/ava-labs/coreth/plugin/evm/atomic/gossip.go:16: UnmarshalGossip 100.0% -2025-07-23T19:36:54.8489991Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:63: InputUTXOs 0.0% -2025-07-23T19:36:54.8490216Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:72: Verify 0.0% -2025-07-23T19:36:54.8490453Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:136: GasUsed 0.0% -2025-07-23T19:36:54.8490676Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:161: Burned 0.0% -2025-07-23T19:36:54.8490916Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:192: AtomicOps 0.0% -2025-07-23T19:36:54.8491155Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:202: NewImportTx 0.0% -2025-07-23T19:36:54.8491416Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:335: EVMStateTransfer 0.0% -2025-07-23T19:36:54.8491642Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:352: Visit 0.0% -2025-07-23T19:36:54.8491878Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:18: Initialize 100.0% -2025-07-23T19:36:54.8492098Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:25: ID 100.0% -2025-07-23T19:36:54.8492317Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:30: Bytes 0.0% -2025-07-23T19:36:54.8492555Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:35: SignedBytes 100.0% -2025-07-23T19:36:54.8492858Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:42: NewAtomicBackend 75.0% -2025-07-23T19:36:54.8493137Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:79: initialize 72.0% -2025-07-23T19:36:54.8493466Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:182: ApplyToSharedMemory 63.3% -2025-07-23T19:36:54.8493825Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:303: MarkApplyToSharedMemoryCursor 100.0% -2025-07-23T19:36:54.8494147Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:309: GetVerifiedAtomicState 0.0% -2025-07-23T19:36:54.8494444Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:320: getAtomicRootAt 0.0% -2025-07-23T19:36:54.8494734Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:332: SetLastAccepted 0.0% -2025-07-23T19:36:54.8495135Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:343: InsertTxs 0.0% -2025-07-23T19:36:54.8495541Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:393: IsBonus 0.0% -2025-07-23T19:36:54.8495824Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:400: AtomicTrie 100.0% -2025-07-23T19:36:54.8496118Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:406: mergeAtomicOps 91.7% -2025-07-23T19:36:54.8496440Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:428: mergeAtomicOpsToMap 100.0% -2025-07-23T19:36:54.8496727Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:438: AddBonusBlock 0.0% -2025-07-23T19:36:54.8497064Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:65: NewAtomicTxRepository 75.0% -2025-07-23T19:36:54.8497391Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:85: initializeHeightIndex 59.6% -2025-07-23T19:36:54.8497696Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:185: GetIndexHeight 0.0% -2025-07-23T19:36:54.8497983Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:201: GetByTxID 0.0% -2025-07-23T19:36:54.8498283Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:229: GetByHeight 100.0% -2025-07-23T19:36:54.8498604Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:236: getByHeightBytes 100.0% -2025-07-23T19:36:54.8498991Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:248: Write 100.0% -2025-07-23T19:36:54.8499291Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:254: WriteBonus 0.0% -2025-07-23T19:36:54.8499564Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:258: write 72.2% -2025-07-23T19:36:54.8499856Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:300: indexTxByID 80.0% -2025-07-23T19:36:54.8500170Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:320: indexTxsAtHeight 66.7% -2025-07-23T19:36:54.8500508Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:335: appendTxToHeightIndex 75.0% -2025-07-23T19:36:54.8500822Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:356: IterateByHeight 100.0% -2025-07-23T19:36:54.8501070Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:28: Root 0.0% -2025-07-23T19:36:54.8501332Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:35: Accept 0.0% -2025-07-23T19:36:54.8501589Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:78: Reject 0.0% -2025-07-23T19:36:54.8501868Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:52: newAtomicTrie 58.3% -2025-07-23T19:36:54.8502199Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:103: lastCommittedRootIfExists 72.7% -2025-07-23T19:36:54.8502504Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:126: nearestCommitHeight 100.0% -2025-07-23T19:36:54.8502771Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:130: OpenTrie 100.0% -2025-07-23T19:36:54.8503033Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:135: Commit 75.0% -2025-07-23T19:36:54.8503302Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:143: UpdateTrie 80.0% -2025-07-23T19:36:54.8503603Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:165: LastCommitted 100.0% -2025-07-23T19:36:54.8503903Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:171: updateLastCommitted 75.0% -2025-07-23T19:36:54.8504165Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:191: Iterator 75.0% -2025-07-23T19:36:54.8504421Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:205: TrieDB 0.0% -2025-07-23T19:36:54.8504667Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:212: Root 100.0% -2025-07-23T19:36:54.8505181Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:218: getRoot 62.5% -2025-07-23T19:36:54.8505636Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:237: LastAcceptedRoot 100.0% -2025-07-23T19:36:54.8505909Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:241: InsertTrie 55.6% -2025-07-23T19:36:54.8506184Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:263: AcceptTrie 83.3% -2025-07-23T19:36:54.8506446Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:293: RejectTrie 0.0% -2025-07-23T19:36:54.8506791Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:28: NewAtomicTrieIterator 100.0% -2025-07-23T19:36:54.8507078Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:33: Error 100.0% -2025-07-23T19:36:54.8507352Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:42: Next 81.0% -2025-07-23T19:36:54.8507657Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:81: resetFields 100.0% -2025-07-23T19:36:54.8507959Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:90: BlockNumber 100.0% -2025-07-23T19:36:54.8508263Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:95: BlockchainID 100.0% -2025-07-23T19:36:54.8508703Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:101: AtomicOps 100.0% -2025-07-23T19:36:54.8508993Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:107: Key 0.0% -2025-07-23T19:36:54.8509283Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:112: Value 0.0% -2025-07-23T19:36:54.8509518Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:29: MarshalJSON 0.0% -2025-07-23T19:36:54.8509753Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:37: UnmarshalJSON 0.0% -2025-07-23T19:36:54.8509968Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:58: Valid 0.0% -2025-07-23T19:36:54.8510185Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:67: String 0.0% -2025-07-23T19:36:54.8510439Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:29: Initialize 0.0% -2025-07-23T19:36:54.8510665Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:36: Sync 0.0% -2025-07-23T19:36:54.8510956Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:69: OnFinishBeforeCommit 0.0% -2025-07-23T19:36:54.8511241Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:81: OnFinishAfterCommit 0.0% -2025-07-23T19:36:54.8511513Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:28: OnLeafsRequest 0.0% -2025-07-23T19:36:54.8511790Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:38: NewLeafHandler 0.0% -2025-07-23T19:36:54.8512052Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:45: Initialize 0.0% -2025-07-23T19:36:54.8512298Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:32: NewSummary 80.0% -2025-07-23T19:36:54.8512541Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:57: Bytes 100.0% -2025-07-23T19:36:54.8512764Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:61: ID 100.0% -2025-07-23T19:36:54.8512997Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:65: String 0.0% -2025-07-23T19:36:54.8513236Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:69: Accept 66.7% -2025-07-23T19:36:54.8513537Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_parser.go:17: NewSummaryParser 100.0% -2025-07-23T19:36:54.8513801Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_parser.go:21: Parse 80.0% -2025-07-23T19:36:54.8514075Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_provider.go:25: Initialize 0.0% -2025-07-23T19:36:54.8514379Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_provider.go:30: StateSummaryAtBlock 0.0% -2025-07-23T19:36:54.8514713Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:88: Validate 100.0% -2025-07-23T19:36:54.8515133Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:162: addZeroes 100.0% -2025-07-23T19:36:54.8515383Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:170: newSyncer 86.7% -2025-07-23T19:36:54.8515618Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:211: Start 100.0% -2025-07-23T19:36:54.8515854Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:219: onLeafs 70.8% -2025-07-23T19:36:54.8516095Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:267: onFinish 58.3% -2025-07-23T19:36:54.8516354Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:293: onSyncFailure 100.0% -2025-07-23T19:36:54.8516588Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:300: Wait 100.0% -2025-07-23T19:36:54.8516816Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:318: Start 100.0% -2025-07-23T19:36:54.8517044Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:319: End 100.0% -2025-07-23T19:36:54.8517287Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:320: NodeType 100.0% -2025-07-23T19:36:54.8517523Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:321: OnFinish 100.0% -2025-07-23T19:36:54.8517882Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:322: OnStart 100.0% -2025-07-23T19:36:54.8518123Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:323: Root 100.0% -2025-07-23T19:36:54.8518358Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:324: Account 100.0% -2025-07-23T19:36:54.8518598Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:325: OnLeafs 100.0% -2025-07-23T19:36:54.8518805Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:70: Compare 0.0% -2025-07-23T19:36:54.8519012Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:86: Compare 0.0% -2025-07-23T19:36:54.8519224Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:95: Verify 0.0% -2025-07-23T19:36:54.8519422Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:108: Verify 0.0% -2025-07-23T19:36:54.8519633Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:183: Compare 0.0% -2025-07-23T19:36:54.8519836Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:197: Sign 82.4% -2025-07-23T19:36:54.8520086Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:231: BlockFeeContribution 0.0% -2025-07-23T19:36:54.8520305Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:261: GossipID 100.0% -2025-07-23T19:36:54.8520507Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:271: Less 0.0% -2025-07-23T19:36:54.8520702Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:279: Len 0.0% -2025-07-23T19:36:54.8520903Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:281: Swap 0.0% -2025-07-23T19:36:54.8521166Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:287: SortEVMInputsAndSigners 0.0% -2025-07-23T19:36:54.8521420Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:293: CalculateDynamicFee 0.0% -2025-07-23T19:36:54.8521646Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:309: calcBytesCost 0.0% -2025-07-23T19:36:54.8521936Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:48: newMempoolMetrics 100.0% -2025-07-23T19:36:54.8522196Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:89: Initialize 93.3% -2025-07-23T19:36:54.8522453Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:114: PendingLen 0.0% -2025-07-23T19:36:54.8522690Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:119: Len 0.0% -2025-07-23T19:36:54.8522938Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:127: length 100.0% -2025-07-23T19:36:54.8523219Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:133: atomicTxGasPrice 77.8% -2025-07-23T19:36:54.8523594Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:148: Add 100.0% -2025-07-23T19:36:54.8523865Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:157: AddRemoteTx 100.0% -2025-07-23T19:36:54.8524126Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:180: AddLocalTx 0.0% -2025-07-23T19:36:54.8524385Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:193: ForceAddTx 0.0% -2025-07-23T19:36:54.8524663Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:203: checkConflictTx 26.7% -2025-07-23T19:36:54.8525018Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:234: addTx 64.6% -2025-07-23T19:36:54.8525273Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:352: Iterate 100.0% -2025-07-23T19:36:54.8525523Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:363: GetFilter 0.0% -2025-07-23T19:36:54.8525775Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:371: NextTx 88.9% -2025-07-23T19:36:54.8526046Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:391: GetPendingTx 0.0% -2025-07-23T19:36:54.8526292Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:401: GetTx 72.7% -2025-07-23T19:36:54.8526643Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:422: Has 100.0% -2025-07-23T19:36:54.8526929Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:428: IssueCurrentTxs 88.9% -2025-07-23T19:36:54.8527215Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:451: CancelCurrentTx 0.0% -2025-07-23T19:36:54.8527489Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:464: CancelCurrentTxs 0.0% -2025-07-23T19:36:54.8527737Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:484: cancelTx 0.0% -2025-07-23T19:36:54.8528011Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:505: DiscardCurrentTx 0.0% -2025-07-23T19:36:54.8528291Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:515: DiscardCurrentTxs 0.0% -2025-07-23T19:36:54.8528566Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:526: discardCurrentTx 0.0% -2025-07-23T19:36:54.8528815Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:540: removeTx 91.7% -2025-07-23T19:36:54.8529095Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:565: removeSpenders 50.0% -2025-07-23T19:36:54.8529340Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:573: RemoveTx 0.0% -2025-07-23T19:36:54.8529605Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:581: addPending 100.0% -2025-07-23T19:36:54.8529900Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:590: SubscribePendingTxs 0.0% -2025-07-23T19:36:54.8530181Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:29: newInternalTxHeap 100.0% -2025-07-23T19:36:54.8530417Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:37: Len 100.0% -2025-07-23T19:36:54.8530662Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:39: Less 100.0% -2025-07-23T19:36:54.8530895Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:46: Swap 100.0% -2025-07-23T19:36:54.8531135Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:52: Push 80.0% -2025-07-23T19:36:54.8531366Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:61: Pop 100.0% -2025-07-23T19:36:54.8531591Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:70: Get 100.0% -2025-07-23T19:36:54.8531856Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:78: Has 100.0% -2025-07-23T19:36:54.8532111Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:88: newTxHeap 100.0% -2025-07-23T19:36:54.8532350Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:95: Push 100.0% -2025-07-23T19:36:54.8532594Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:113: PeekMax 0.0% -2025-07-23T19:36:54.8532971Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:119: PeekMin 100.0% -2025-07-23T19:36:54.8533230Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:125: PopMax 100.0% -2025-07-23T19:36:54.8533483Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:130: PopMin 100.0% -2025-07-23T19:36:54.8533729Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:134: Remove 75.0% -2025-07-23T19:36:54.8533965Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:150: Len 100.0% -2025-07-23T19:36:54.8534197Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:154: Get 100.0% -2025-07-23T19:36:54.8534435Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:162: Has 100.0% -2025-07-23T19:36:54.8534655Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:43: Version 0.0% -2025-07-23T19:36:54.8534977Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:53: GetUTXOs 0.0% -2025-07-23T19:36:54.8535204Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:141: IssueTx 0.0% -2025-07-23T19:36:54.8535452Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:170: GetAtomicTxStatus 0.0% -2025-07-23T19:36:54.8535795Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:205: GetAtomicTx 0.0% -2025-07-23T19:36:54.8536099Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:48: newBlockExtender 100.0% -2025-07-23T19:36:54.8536388Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:61: NewBlockExtension 75.0% -2025-07-23T19:36:54.8536680Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:82: SyntacticVerify 66.7% -2025-07-23T19:36:54.8536967Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:172: SemanticVerify 100.0% -2025-07-23T19:36:54.8537235Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:193: Accept 85.7% -2025-07-23T19:36:54.8537500Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:213: Reject 77.8% -2025-07-23T19:36:54.8537795Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:231: CleanupVerified 100.0% -2025-07-23T19:36:54.8538079Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:239: AtomicTxs 100.0% -2025-07-23T19:36:54.8538379Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:245: verifyUTXOsPresent 92.9% -2025-07-23T19:36:54.8538674Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/bonus_blocks.go:9: readMainnetBonusBlocks 0.0% -2025-07-23T19:36:54.8538919Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/ext_data_hashes.go:23: init 66.7% -2025-07-23T19:36:54.8539206Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:18: ParseServiceAddress 0.0% -2025-07-23T19:36:54.8539489Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:27: ParseLocalAddress 0.0% -2025-07-23T19:36:54.8539766Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:40: FormatLocalAddress 0.0% -2025-07-23T19:36:54.8540029Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:51: ParseAddress 0.0% -2025-07-23T19:36:54.8540340Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:50: NewVerifierBackend 100.0% -2025-07-23T19:36:54.8540635Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:62: SemanticVerify 100.0% -2025-07-23T19:36:54.8540909Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:80: ImportTx 95.7% -2025-07-23T19:36:54.8541184Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:167: conflicts 88.2% -2025-07-23T19:36:54.8541458Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:205: ExportTx 86.8% -2025-07-23T19:36:54.8541683Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:108: WrapVM 100.0% -2025-07-23T19:36:54.8542057Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:113: Initialize 74.4% -2025-07-23T19:36:54.8542281Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:231: SetState 57.1% -2025-07-23T19:36:54.8542545Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:248: onBootstrapStarted 100.0% -2025-07-23T19:36:54.8542828Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:253: onNormalOperationsStarted 83.9% -2025-07-23T19:36:54.8543050Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:342: Shutdown 75.0% -2025-07-23T19:36:54.8543289Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:356: CreateHandlers 0.0% -2025-07-23T19:36:54.8543540Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:371: verifyTxAtTip 77.3% -2025-07-23T19:36:54.8543755Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:414: verifyTx 85.7% -2025-07-23T19:36:54.8543974Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:428: verifyTxs 88.2% -2025-07-23T19:36:54.8544223Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:464: CodecRegistry 100.0% -2025-07-23T19:36:54.8544435Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:467: Clock 100.0% -2025-07-23T19:36:54.8544650Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:470: Logger 100.0% -2025-07-23T19:36:54.8545136Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:472: createConsensusCallbacks 100.0% -2025-07-23T19:36:54.8545436Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:479: preBatchOnFinalizeAndAssemble 84.0% -2025-07-23T19:36:54.8545733Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:526: postBatchOnFinalizeAndAssemble 84.1% -2025-07-23T19:36:54.8545997Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:636: onFinalizeAndAssemble 100.0% -2025-07-23T19:36:54.8546247Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:648: onExtraStateChange 83.9% -2025-07-23T19:36:54.8546480Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:721: BuildBlock 100.0% -2025-07-23T19:36:54.8546749Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:725: BuildBlockWithContext 50.0% -2025-07-23T19:36:54.8547002Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:744: chainConfigExtra 100.0% -2025-07-23T19:36:54.8547214Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:748: rules 100.0% -2025-07-23T19:36:54.8547454Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:754: CurrentRules 100.0% -2025-07-23T19:36:54.8547688Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:763: GetAtomicTx 22.2% -2025-07-23T19:36:54.8547913Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:780: NewImportTx 85.7% -2025-07-23T19:36:54.8548141Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:800: NewExportTx 71.4% -2025-07-23T19:36:54.8548385Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:49: NewBlockBuilder 100.0% -2025-07-23T19:36:54.8548654Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:62: handleGenerateBlock 100.0% -2025-07-23T19:36:54.8548893Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:70: needToBuild 100.0% -2025-07-23T19:36:54.8549131Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:78: signalCanBuild 100.0% -2025-07-23T19:36:54.8549388Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:87: awaitSubmittedTxs 100.0% -2025-07-23T19:36:54.8549619Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:119: waitForEvent 91.7% -2025-07-23T19:36:54.8549874Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:145: waitForNeedToBuild 100.0% -2025-07-23T19:36:54.8550097Z github.com/ava-labs/coreth/plugin/evm/client/client.go:49: NewClient 0.0% -2025-07-23T19:36:54.8550338Z github.com/ava-labs/coreth/plugin/evm/client/client.go:57: NewCChainClient 0.0% -2025-07-23T19:36:54.8550557Z github.com/ava-labs/coreth/plugin/evm/client/client.go:62: IssueTx 0.0% -2025-07-23T19:36:54.8550801Z github.com/ava-labs/coreth/plugin/evm/client/client.go:82: GetAtomicTxStatus 0.0% -2025-07-23T19:36:54.8551152Z github.com/ava-labs/coreth/plugin/evm/client/client.go:91: GetAtomicTx 0.0% -2025-07-23T19:36:54.8551399Z github.com/ava-labs/coreth/plugin/evm/client/client.go:106: GetAtomicUTXOs 0.0% -2025-07-23T19:36:54.8551649Z github.com/ava-labs/coreth/plugin/evm/client/client.go:138: StartCPUProfiler 0.0% -2025-07-23T19:36:54.8551893Z github.com/ava-labs/coreth/plugin/evm/client/client.go:142: StopCPUProfiler 0.0% -2025-07-23T19:36:54.8552131Z github.com/ava-labs/coreth/plugin/evm/client/client.go:146: MemoryProfile 0.0% -2025-07-23T19:36:54.8552355Z github.com/ava-labs/coreth/plugin/evm/client/client.go:150: LockProfile 0.0% -2025-07-23T19:36:54.8552586Z github.com/ava-labs/coreth/plugin/evm/client/client.go:159: SetLogLevel 0.0% -2025-07-23T19:36:54.8552811Z github.com/ava-labs/coreth/plugin/evm/client/client.go:170: GetVMConfig 0.0% -2025-07-23T19:36:54.8553052Z github.com/ava-labs/coreth/plugin/evm/client/utils.go:8: ParseEthAddress 0.0% -2025-07-23T19:36:54.8553274Z github.com/ava-labs/coreth/plugin/evm/config/config.go:265: EthAPIs 0.0% -2025-07-23T19:36:54.8553505Z github.com/ava-labs/coreth/plugin/evm/config/config.go:269: SetDefaults 0.0% -2025-07-23T19:36:54.8553826Z github.com/ava-labs/coreth/plugin/evm/config/config.go:327: UnmarshalJSON 80.0% -2025-07-23T19:36:54.8554041Z github.com/ava-labs/coreth/plugin/evm/config/config.go:337: String 0.0% -2025-07-23T19:36:54.8554266Z github.com/ava-labs/coreth/plugin/evm/config/config.go:342: MarshalJSON 0.0% -2025-07-23T19:36:54.8554487Z github.com/ava-labs/coreth/plugin/evm/config/config.go:347: Validate 0.0% -2025-07-23T19:36:54.8554710Z github.com/ava-labs/coreth/plugin/evm/config/config.go:382: Deprecate 57.1% -2025-07-23T19:36:54.8555062Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:28: New 0.0% -2025-07-23T19:36:54.8555317Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:35: Dial 0.0% -2025-07-23T19:36:54.8555603Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:40: DialContext 0.0% -2025-07-23T19:36:54.8555895Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:60: OnBlockDecoded 0.0% -2025-07-23T19:36:54.8556149Z github.com/ava-labs/coreth/plugin/evm/customlogs/log_ext.go:8: FlattenLogs 100.0% -2025-07-23T19:36:54.8556499Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:16: writeCurrentTimeMarker 0.0% -2025-07-23T19:36:54.8556817Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:25: readTimeMarker 0.0% -2025-07-23T19:36:54.8557149Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:44: WriteOfflinePruning 0.0% -2025-07-23T19:36:54.8557483Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:50: ReadOfflinePruning 0.0% -2025-07-23T19:36:54.8557824Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:55: DeleteOfflinePruning 0.0% -2025-07-23T19:36:54.8558179Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:61: WritePopulateMissingTries 0.0% -2025-07-23T19:36:54.8558532Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:67: ReadPopulateMissingTries 0.0% -2025-07-23T19:36:54.8558893Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:73: DeletePopulateMissingTries 0.0% -2025-07-23T19:36:54.8559234Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:79: WritePruningDisabled 0.0% -2025-07-23T19:36:54.8559558Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:85: HasPruningDisabled 0.0% -2025-07-23T19:36:54.8559878Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:90: WriteAcceptorTip 0.0% -2025-07-23T19:36:54.8560200Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:97: ReadAcceptorTip 0.0% -2025-07-23T19:36:54.8560666Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:15: ReadSnapshotBlockHash 0.0% -2025-07-23T19:36:54.8561018Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:25: WriteSnapshotBlockHash 50.0% -2025-07-23T19:36:54.8561365Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:35: DeleteSnapshotBlockHash 0.0% -2025-07-23T19:36:54.8561711Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:42: IterateAccountSnapshots 0.0% -2025-07-23T19:36:54.8562017Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:18: ReadSyncRoot 0.0% -2025-07-23T19:36:54.8562323Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:31: WriteSyncRoot 0.0% -2025-07-23T19:36:54.8562639Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:36: AddCodeToFetch 50.0% -2025-07-23T19:36:54.8562958Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:43: DeleteCodeToFetch 0.0% -2025-07-23T19:36:54.8563291Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:52: NewCodeToFetchIterator 0.0% -2025-07-23T19:36:54.8563722Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:59: codeToFetchKey 100.0% -2025-07-23T19:36:54.8564068Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:69: NewSyncSegmentsIterator 0.0% -2025-07-23T19:36:54.8564387Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:81: WriteSyncSegment 100.0% -2025-07-23T19:36:54.8564696Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:86: ClearSyncSegments 0.0% -2025-07-23T19:36:54.8565321Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:94: ClearAllSyncSegments 100.0% -2025-07-23T19:36:54.8565670Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:100: UnpackSyncSegmentKey 0.0% -2025-07-23T19:36:54.8566013Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:108: packSyncSegmentKey 100.0% -2025-07-23T19:36:54.8566380Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:119: NewSyncStorageTriesIterator 0.0% -2025-07-23T19:36:54.8566728Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:124: WriteSyncStorageTrie 100.0% -2025-07-23T19:36:54.8567055Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:130: ClearSyncStorageTrie 0.0% -2025-07-23T19:36:54.8567403Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:138: ClearAllSyncStorageTries 0.0% -2025-07-23T19:36:54.8567745Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:144: UnpackSyncStorageTrieKey 0.0% -2025-07-23T19:36:54.8568096Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:152: packSyncStorageTrieKey 100.0% -2025-07-23T19:36:54.8568428Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:161: WriteSyncPerformed 100.0% -2025-07-23T19:36:54.8568768Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:171: NewSyncPerformedIterator 0.0% -2025-07-23T19:36:54.8569112Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:177: UnpackSyncPerformedKey 0.0% -2025-07-23T19:36:54.8569447Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:182: GetLatestSyncPerformed 0.0% -2025-07-23T19:36:54.8569755Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:198: clearPrefix 68.8% -2025-07-23T19:36:54.8570054Z github.com/ava-labs/coreth/plugin/evm/customrawdb/database_ext.go:17: InspectDatabase 100.0% -2025-07-23T19:36:54.8570358Z github.com/ava-labs/coreth/plugin/evm/customrawdb/database_ext.go:67: ParseStateSchemeExt 0.0% -2025-07-23T19:36:54.8570638Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:16: SetBlockExtra 100.0% -2025-07-23T19:36:54.8571018Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:33: Copy 100.0% -2025-07-23T19:36:54.8571334Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:48: BodyRLPFieldsForEncoding 100.0% -2025-07-23T19:36:54.8571669Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:61: BodyRLPFieldPointersForDecoding 100.0% -2025-07-23T19:36:54.8571982Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:78: BlockRLPFieldsForEncoding 100.0% -2025-07-23T19:36:54.8572320Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:92: BlockRLPFieldPointersForDecoding 100.0% -2025-07-23T19:36:54.8572592Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:104: BlockExtData 100.0% -2025-07-23T19:36:54.8572865Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:111: BlockVersion 100.0% -2025-07-23T19:36:54.8573158Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:115: BlockExtDataGasUsed 100.0% -2025-07-23T19:36:54.8573430Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:123: BlockGasCost 100.0% -2025-07-23T19:36:54.8573713Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:131: CalcExtDataHash 66.7% -2025-07-23T19:36:54.8574106Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:138: NewBlockWithExtData 100.0% -2025-07-23T19:36:54.8574445Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_json.go:18: MarshalJSON 100.0% -2025-07-23T19:36:54.8574882Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_json.go:72: UnmarshalJSON 76.2% -2025-07-23T19:36:54.8575192Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_rlp.go:8: EncodeRLP 85.9% -2025-07-23T19:36:54.8575491Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:17: GetHeaderExtra 100.0% -2025-07-23T19:36:54.8575774Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:22: SetHeaderExtra 100.0% -2025-07-23T19:36:54.8576066Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:28: WithHeaderExtra 100.0% -2025-07-23T19:36:54.8576336Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:45: EncodeRLP 100.0% -2025-07-23T19:36:54.8576600Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:56: DecodeRLP 100.0% -2025-07-23T19:36:54.8576869Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:70: EncodeJSON 100.0% -2025-07-23T19:36:54.8577124Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:81: DecodeJSON 83.3% -2025-07-23T19:36:54.8577382Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:93: PostCopy 100.0% -2025-07-23T19:36:54.8577663Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:106: updateFromEth 100.0% -2025-07-23T19:36:54.8577933Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:128: updateToEth 100.0% -2025-07-23T19:36:54.8578230Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:150: updateFromExtras 100.0% -2025-07-23T19:36:54.8578511Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:156: updateToExtras 100.0% -2025-07-23T19:36:54.8578763Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:233: Hash 100.0% -2025-07-23T19:36:54.8579052Z github.com/ava-labs/coreth/plugin/evm/customtypes/state_account_ext.go:14: IsMultiCoin 0.0% -2025-07-23T19:36:54.8579330Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:22: WrapDatabase 100.0% -2025-07-23T19:36:54.8579578Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:25: Stat 0.0% -2025-07-23T19:36:54.8579848Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:28: NewBatch 100.0% -2025-07-23T19:36:54.8580134Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:32: NewBatchWithSize 0.0% -2025-07-23T19:36:54.8580559Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:36: NewSnapshot 0.0% -2025-07-23T19:36:54.8580836Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:44: NewIterator 100.0% -2025-07-23T19:36:54.8581144Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:57: NewIteratorWithStart 0.0% -2025-07-23T19:36:54.8581415Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:65: ValueSize 100.0% -2025-07-23T19:36:54.8581679Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:68: Replay 100.0% -2025-07-23T19:36:54.8581936Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:38: NewGossipEthTxPool 75.0% -2025-07-23T19:36:54.8582169Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:70: IsSubscribed 100.0% -2025-07-23T19:36:54.8582389Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:74: Subscribe 85.2% -2025-07-23T19:36:54.8582606Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:119: Add 100.0% -2025-07-23T19:36:54.8582815Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:125: Has 100.0% -2025-07-23T19:36:54.8583039Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:129: Iterate 100.0% -2025-07-23T19:36:54.8583255Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:135: GetFilter 0.0% -2025-07-23T19:36:54.8583607Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:144: MarshalGossip 100.0% -2025-07-23T19:36:54.8583873Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:148: UnmarshalGossip 100.0% -2025-07-23T19:36:54.8584094Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:160: GossipID 100.0% -2025-07-23T19:36:54.8584303Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:170: Add 75.0% -2025-07-23T19:36:54.8584541Z github.com/ava-labs/coreth/plugin/evm/extension/config.go:161: Validate 55.6% -2025-07-23T19:36:54.8584914Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:19: NewTxGossipHandler 100.0% -2025-07-23T19:36:54.8585169Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:61: AppGossip 100.0% -2025-07-23T19:36:54.8585402Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:65: AppRequest 100.0% -2025-07-23T19:36:54.8585630Z github.com/ava-labs/coreth/plugin/evm/header/base_fee.go:21: BaseFee 100.0% -2025-07-23T19:36:54.8585914Z github.com/ava-labs/coreth/plugin/evm/header/base_fee.go:50: EstimateNextBaseFee 100.0% -2025-07-23T19:36:54.8586182Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:28: BlockGasCost 100.0% -2025-07-23T19:36:54.8586481Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:60: BlockGasCostWithStep 100.0% -2025-07-23T19:36:54.8586766Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:88: EstimateRequiredTip 100.0% -2025-07-23T19:36:54.8587064Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_state.go:19: feeStateBeforeBlock 100.0% -2025-07-23T19:36:54.8587360Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_state.go:51: feeStateAfterBlock 100.0% -2025-07-23T19:36:54.8587651Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:40: baseFeeFromWindow 97.4% -2025-07-23T19:36:54.8587931Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:148: feeWindow 100.0% -2025-07-23T19:36:54.8588256Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:221: selectBigWithinBounds 100.0% -2025-07-23T19:36:54.8588486Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:29: ExtraPrefix 100.0% -2025-07-23T19:36:54.8588739Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:61: VerifyExtraPrefix 100.0% -2025-07-23T19:36:54.8588969Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:116: VerifyExtra 100.0% -2025-07-23T19:36:54.8589248Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:169: PredicateBytesFromExtra 100.0% -2025-07-23T19:36:54.8589520Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:187: SetPredicateBytesInExtra 100.0% -2025-07-23T19:36:54.8589878Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:28: GasLimit 100.0% -2025-07-23T19:36:54.8590136Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:61: VerifyGasUsed 100.0% -2025-07-23T19:36:54.8590395Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:97: VerifyGasLimit 100.0% -2025-07-23T19:36:54.8590644Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:159: GasCapacity 100.0% -2025-07-23T19:36:54.8590941Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:179: RemainingAtomicGasCapacity 100.0% -2025-07-23T19:36:54.8591152Z github.com/ava-labs/coreth/plugin/evm/health.go:11: HealthCheck 0.0% -2025-07-23T19:36:54.8591366Z github.com/ava-labs/coreth/plugin/evm/log/log.go:26: InitLogger 55.0% -2025-07-23T19:36:54.8591584Z github.com/ava-labs/coreth/plugin/evm/log/log.go:62: SetLogLevel 100.0% -2025-07-23T19:36:54.8591800Z github.com/ava-labs/coreth/plugin/evm/log/log.go:77: trimPrefixes 88.9% -2025-07-23T19:36:54.8592008Z github.com/ava-labs/coreth/plugin/evm/log/log.go:92: getSource 0.0% -2025-07-23T19:36:54.8592207Z github.com/ava-labs/coreth/plugin/evm/log/log.go:104: Handle 0.0% -2025-07-23T19:36:54.8592559Z github.com/ava-labs/coreth/plugin/evm/message/block_request.go:24: String 0.0% -2025-07-23T19:36:54.8592808Z github.com/ava-labs/coreth/plugin/evm/message/block_request.go:31: Handle 0.0% -2025-07-23T19:36:54.8593110Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:31: NewBlockSyncSummary 80.0% -2025-07-23T19:36:54.8593400Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:53: GetBlockHash 100.0% -2025-07-23T19:36:54.8593681Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:57: GetBlockRoot 100.0% -2025-07-23T19:36:54.8593947Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:61: Bytes 100.0% -2025-07-23T19:36:54.8594215Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:65: Height 100.0% -2025-07-23T19:36:54.8594456Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:69: ID 0.0% -2025-07-23T19:36:54.8594717Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:73: String 0.0% -2025-07-23T19:36:54.8595082Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:77: Accept 66.7% -2025-07-23T19:36:54.8595445Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_parser.go:14: NewBlockSyncSummaryParser 100.0% -2025-07-23T19:36:54.8595727Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_parser.go:18: Parse 80.0% -2025-07-23T19:36:54.8596056Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_provider.go:14: StateSummaryAtBlock 0.0% -2025-07-23T19:36:54.8596296Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:23: String 0.0% -2025-07-23T19:36:54.8596536Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:31: Handle 0.0% -2025-07-23T19:36:54.8596796Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:35: NewCodeRequest 0.0% -2025-07-23T19:36:54.8597010Z github.com/ava-labs/coreth/plugin/evm/message/codec.go:20: init 88.9% -2025-07-23T19:36:54.8597278Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:35: HandleLeafsRequest 0.0% -2025-07-23T19:36:54.8597540Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:39: HandleBlockRequest 0.0% -2025-07-23T19:36:54.8597793Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:43: HandleCodeRequest 0.0% -2025-07-23T19:36:54.8598029Z github.com/ava-labs/coreth/plugin/evm/message/leafs_request.go:40: String 0.0% -2025-07-23T19:36:54.8598271Z github.com/ava-labs/coreth/plugin/evm/message/leafs_request.go:47: Handle 0.0% -2025-07-23T19:36:54.8598517Z github.com/ava-labs/coreth/plugin/evm/message/request.go:25: RequestToBytes 0.0% -2025-07-23T19:36:54.8598910Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:39: newNetworkHandler 100.0% -2025-07-23T19:36:54.8599167Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:54: HandleLeafsRequest 60.0% -2025-07-23T19:36:54.8599429Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:63: HandleBlockRequest 100.0% -2025-07-23T19:36:54.8599695Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:67: HandleCodeRequest 0.0% -2025-07-23T19:36:54.8599915Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:99: NewClient 100.0% -2025-07-23T19:36:54.8600164Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:127: StateSyncEnabled 100.0% -2025-07-23T19:36:54.8600437Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:134: GetOngoingSyncStateSummary 0.0% -2025-07-23T19:36:54.8600688Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:153: ClearOngoingSummary 60.0% -2025-07-23T19:36:54.8600942Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:165: ParseStateSummary 100.0% -2025-07-23T19:36:54.8601164Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:171: stateSync 71.4% -2025-07-23T19:36:54.8601404Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:189: acceptSyncSummary 92.0% -2025-07-23T19:36:54.8601738Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:257: syncBlocks 89.3% -2025-07-23T19:36:54.8601981Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:304: syncStateTrie 77.8% -2025-07-23T19:36:54.8602203Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:326: Shutdown 100.0% -2025-07-23T19:36:54.8602424Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:336: finishSync 66.7% -2025-07-23T19:36:54.8602664Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:405: commitVMMarkers 66.7% -2025-07-23T19:36:54.8602879Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:420: Error 100.0% -2025-07-23T19:36:54.8603095Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:36: NewServer 100.0% -2025-07-23T19:36:54.8603353Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:48: GetLastStateSummary 75.0% -2025-07-23T19:36:54.8603586Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:64: GetStateSummary 66.7% -2025-07-23T19:36:54.8603838Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:82: stateSummaryAtHeight 62.5% -2025-07-23T19:36:54.8604107Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:53: ParseState 100.0% -2025-07-23T19:36:54.8604351Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:74: Target 100.0% -2025-07-23T19:36:54.8604617Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:83: MaxCapacity 100.0% -2025-07-23T19:36:54.8604963Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:91: GasPrice 100.0% -2025-07-23T19:36:54.8605223Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:99: AdvanceTime 100.0% -2025-07-23T19:36:54.8605491Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:114: ConsumeGas 100.0% -2025-07-23T19:36:54.8605786Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:144: UpdateTargetExcess 100.0% -2025-07-23T19:36:54.8606026Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:160: Bytes 100.0% -2025-07-23T19:36:54.8606337Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:170: DesiredTargetExcess 100.0% -2025-07-23T19:36:54.8606607Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:184: targetExcess 100.0% -2025-07-23T19:36:54.8606876Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:195: scaleExcess 100.0% -2025-07-23T19:36:54.8607162Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:214: mulWithUpperBound 100.0% -2025-07-23T19:36:54.8607416Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:67: ParseWindow 100.0% -2025-07-23T19:36:54.8607651Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:87: Add 100.0% -2025-07-23T19:36:54.8608010Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:94: Shift 100.0% -2025-07-23T19:36:54.8608240Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:108: Sum 100.0% -2025-07-23T19:36:54.8608472Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:112: Bytes 100.0% -2025-07-23T19:36:54.8608699Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:121: add 100.0% -2025-07-23T19:36:54.8608948Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap4/cost.go:53: BlockGasCost 93.3% -2025-07-23T19:36:54.8609141Z github.com/ava-labs/coreth/plugin/evm/version.go:15: init 50.0% -2025-07-23T19:36:54.8609326Z github.com/ava-labs/coreth/plugin/evm/vm.go:175: init 100.0% -2025-07-23T19:36:54.8609522Z github.com/ava-labs/coreth/plugin/evm/vm.go:271: Initialize 80.3% -2025-07-23T19:36:54.8609725Z github.com/ava-labs/coreth/plugin/evm/vm.go:500: parseGenesis 76.9% -2025-07-23T19:36:54.8609952Z github.com/ava-labs/coreth/plugin/evm/vm.go:530: initializeMetrics 54.5% -2025-07-23T19:36:54.8610161Z github.com/ava-labs/coreth/plugin/evm/vm.go:549: initializeChain 84.2% -2025-07-23T19:36:54.8610381Z github.com/ava-labs/coreth/plugin/evm/vm.go:604: initializeStateSync 76.7% -2025-07-23T19:36:54.8610719Z github.com/ava-labs/coreth/plugin/evm/vm.go:704: initChainState 75.0% -2025-07-23T19:36:54.8610918Z github.com/ava-labs/coreth/plugin/evm/vm.go:737: SetState 83.3% -2025-07-23T19:36:54.8611148Z github.com/ava-labs/coreth/plugin/evm/vm.go:752: onBootstrapStarted 71.4% -2025-07-23T19:36:54.8611389Z github.com/ava-labs/coreth/plugin/evm/vm.go:768: onNormalOperationsStarted 75.0% -2025-07-23T19:36:54.8611605Z github.com/ava-labs/coreth/plugin/evm/vm.go:779: initBlockBuilding 91.3% -2025-07-23T19:36:54.8611807Z github.com/ava-labs/coreth/plugin/evm/vm.go:886: WaitForEvent 77.8% -2025-07-23T19:36:54.8611994Z github.com/ava-labs/coreth/plugin/evm/vm.go:907: Shutdown 76.9% -2025-07-23T19:36:54.8612198Z github.com/ava-labs/coreth/plugin/evm/vm.go:929: buildBlock 100.0% -2025-07-23T19:36:54.8612429Z github.com/ava-labs/coreth/plugin/evm/vm.go:933: buildBlockWithContext 86.7% -2025-07-23T19:36:54.8612621Z github.com/ava-labs/coreth/plugin/evm/vm.go:978: parseBlock 77.8% -2025-07-23T19:36:54.8612836Z github.com/ava-labs/coreth/plugin/evm/vm.go:997: ParseEthBlock 75.0% -2025-07-23T19:36:54.8613026Z github.com/ava-labs/coreth/plugin/evm/vm.go:1008: getBlock 100.0% -2025-07-23T19:36:54.8613247Z github.com/ava-labs/coreth/plugin/evm/vm.go:1021: GetAcceptedBlock 90.0% -2025-07-23T19:36:54.8613457Z github.com/ava-labs/coreth/plugin/evm/vm.go:1041: SetPreference 75.0% -2025-07-23T19:36:54.8613677Z github.com/ava-labs/coreth/plugin/evm/vm.go:1057: GetBlockIDAtHeight 85.7% -2025-07-23T19:36:54.8613862Z github.com/ava-labs/coreth/plugin/evm/vm.go:1070: Version 0.0% -2025-07-23T19:36:54.8614066Z github.com/ava-labs/coreth/plugin/evm/vm.go:1075: CreateHandlers 0.0% -2025-07-23T19:36:54.8614269Z github.com/ava-labs/coreth/plugin/evm/vm.go:1122: NewHTTPHandler 0.0% -2025-07-23T19:36:54.8614492Z github.com/ava-labs/coreth/plugin/evm/vm.go:1126: chainConfigExtra 100.0% -2025-07-23T19:36:54.8614675Z github.com/ava-labs/coreth/plugin/evm/vm.go:1130: rules 100.0% -2025-07-23T19:36:54.8614980Z github.com/ava-labs/coreth/plugin/evm/vm.go:1136: currentRules 100.0% -2025-07-23T19:36:54.8615232Z github.com/ava-labs/coreth/plugin/evm/vm.go:1144: requirePrimaryNetworkSigners 0.0% -2025-07-23T19:36:54.8615470Z github.com/ava-labs/coreth/plugin/evm/vm.go:1153: startContinuousProfiler 91.7% -2025-07-23T19:36:54.8615686Z github.com/ava-labs/coreth/plugin/evm/vm.go:1183: ReadLastAccepted 70.0% -2025-07-23T19:36:54.8615895Z github.com/ava-labs/coreth/plugin/evm/vm.go:1207: attachEthService 0.0% -2025-07-23T19:36:54.8616111Z github.com/ava-labs/coreth/plugin/evm/vm.go:1242: stateSyncEnabled 100.0% -2025-07-23T19:36:54.8616466Z github.com/ava-labs/coreth/plugin/evm/vm.go:1252: PutLastAcceptedID 100.0% -2025-07-23T19:36:54.8616697Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:20: initializeDBs 100.0% -2025-07-23T19:36:54.8616933Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:35: inspectDatabases 0.0% -2025-07-23T19:36:54.8617147Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:54: inspectDB 0.0% -2025-07-23T19:36:54.8617398Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:28: SetExtensionConfig 66.7% -2025-07-23T19:36:54.8617642Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:41: GetExtendedBlock 75.0% -2025-07-23T19:36:54.8617919Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:53: LastAcceptedExtendedBlock 75.0% -2025-07-23T19:36:54.8618152Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:64: ChainConfig 100.0% -2025-07-23T19:36:54.8618377Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:68: Blockchain 100.0% -2025-07-23T19:36:54.8618597Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:72: Config 100.0% -2025-07-23T19:36:54.8618837Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:76: MetricRegistry 100.0% -2025-07-23T19:36:54.8619163Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:80: Validators 0.0% -2025-07-23T19:36:54.8619393Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:84: VersionDB 100.0% -2025-07-23T19:36:54.8619625Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:88: SyncerClient 0.0% -2025-07-23T19:36:54.8619845Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:58: wrapBlock 85.7% -2025-07-23T19:36:54.8620052Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:75: ID 100.0% -2025-07-23T19:36:54.8620267Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:78: Accept 76.5% -2025-07-23T19:36:54.8620543Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:125: handlePrecompileAccept 78.6% -2025-07-23T19:36:54.8620766Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:159: Reject 83.3% -2025-07-23T19:36:54.8620981Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:176: Parent 100.0% -2025-07-23T19:36:54.8621201Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:181: Height 100.0% -2025-07-23T19:36:54.8621432Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:186: Timestamp 100.0% -2025-07-23T19:36:54.8621648Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:191: Verify 100.0% -2025-07-23T19:36:54.8621930Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:199: ShouldVerifyWithContext 72.7% -2025-07-23T19:36:54.8622186Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:223: VerifyWithContext 100.0% -2025-07-23T19:36:54.8622399Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:233: verify 100.0% -2025-07-23T19:36:54.8622649Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:279: semanticVerify 100.0% -2025-07-23T19:36:54.8622897Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:295: syntacticVerify 71.0% -2025-07-23T19:36:54.8623145Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:434: verifyPredicates 85.0% -2025-07-23T19:36:54.8623362Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:468: Bytes 75.0% -2025-07-23T19:36:54.8623572Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:476: String 0.0% -2025-07-23T19:36:54.8623812Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:478: GetEthBlock 100.0% -2025-07-23T19:36:54.8624066Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:482: GetBlockExtension 100.0% -2025-07-23T19:36:54.8624272Z github.com/ava-labs/coreth/plugin/factory/factory.go:25: New 0.0% -2025-07-23T19:36:54.8624492Z github.com/ava-labs/coreth/plugin/factory/factory.go:29: NewPluginVM 0.0% -2025-07-23T19:36:54.8624665Z github.com/ava-labs/coreth/plugin/main.go:19: main 0.0% -2025-07-23T19:36:54.8625064Z github.com/ava-labs/coreth/plugin/params.go:13: corethFlagSet 0.0% -2025-07-23T19:36:54.8625254Z github.com/ava-labs/coreth/plugin/params.go:22: getViper 0.0% -2025-07-23T19:36:54.8625459Z github.com/ava-labs/coreth/plugin/params.go:35: PrintVersion 0.0% -2025-07-23T19:36:54.8625712Z github.com/ava-labs/coreth/precompile/contract/contract.go:32: IsActivated 0.0% -2025-07-23T19:36:54.8626030Z github.com/ava-labs/coreth/precompile/contract/contract.go:40: NewStatefulPrecompileFunction 0.0% -2025-07-23T19:36:54.8626394Z github.com/ava-labs/coreth/precompile/contract/contract.go:47: NewStatefulPrecompileFunctionWithActivator 0.0% -2025-07-23T19:36:54.8626703Z github.com/ava-labs/coreth/precompile/contract/contract.go:65: NewStatefulPrecompileContract 0.0% -2025-07-23T19:36:54.8626924Z github.com/ava-labs/coreth/precompile/contract/contract.go:84: Run 0.0% -2025-07-23T19:36:54.8627173Z github.com/ava-labs/coreth/precompile/contract/mocks.go:38: NewMockStateDB 0.0% -2025-07-23T19:36:54.8627395Z github.com/ava-labs/coreth/precompile/contract/mocks.go:45: EXPECT 0.0% -2025-07-23T19:36:54.8627633Z github.com/ava-labs/coreth/precompile/contract/mocks.go:50: AddBalance 0.0% -2025-07-23T19:36:54.8627859Z github.com/ava-labs/coreth/precompile/contract/mocks.go:56: AddBalance 0.0% -2025-07-23T19:36:54.8628235Z github.com/ava-labs/coreth/precompile/contract/mocks.go:62: AddBalanceMultiCoin 0.0% -2025-07-23T19:36:54.8628508Z github.com/ava-labs/coreth/precompile/contract/mocks.go:68: AddBalanceMultiCoin 0.0% -2025-07-23T19:36:54.8628723Z github.com/ava-labs/coreth/precompile/contract/mocks.go:74: AddLog 0.0% -2025-07-23T19:36:54.8628942Z github.com/ava-labs/coreth/precompile/contract/mocks.go:80: AddLog 0.0% -2025-07-23T19:36:54.8629181Z github.com/ava-labs/coreth/precompile/contract/mocks.go:86: CreateAccount 0.0% -2025-07-23T19:36:54.8629419Z github.com/ava-labs/coreth/precompile/contract/mocks.go:92: CreateAccount 0.0% -2025-07-23T19:36:54.8629641Z github.com/ava-labs/coreth/precompile/contract/mocks.go:98: Exist 0.0% -2025-07-23T19:36:54.8629855Z github.com/ava-labs/coreth/precompile/contract/mocks.go:106: Exist 0.0% -2025-07-23T19:36:54.8630087Z github.com/ava-labs/coreth/precompile/contract/mocks.go:112: GetBalance 0.0% -2025-07-23T19:36:54.8630327Z github.com/ava-labs/coreth/precompile/contract/mocks.go:120: GetBalance 0.0% -2025-07-23T19:36:54.8630593Z github.com/ava-labs/coreth/precompile/contract/mocks.go:126: GetBalanceMultiCoin 0.0% -2025-07-23T19:36:54.8630862Z github.com/ava-labs/coreth/precompile/contract/mocks.go:134: GetBalanceMultiCoin 0.0% -2025-07-23T19:36:54.8631087Z github.com/ava-labs/coreth/precompile/contract/mocks.go:140: GetNonce 0.0% -2025-07-23T19:36:54.8631309Z github.com/ava-labs/coreth/precompile/contract/mocks.go:148: GetNonce 0.0% -2025-07-23T19:36:54.8631598Z github.com/ava-labs/coreth/precompile/contract/mocks.go:154: GetPredicateStorageSlots 0.0% -2025-07-23T19:36:54.8631916Z github.com/ava-labs/coreth/precompile/contract/mocks.go:163: GetPredicateStorageSlots 0.0% -2025-07-23T19:36:54.8632146Z github.com/ava-labs/coreth/precompile/contract/mocks.go:169: GetState 0.0% -2025-07-23T19:36:54.8632372Z github.com/ava-labs/coreth/precompile/contract/mocks.go:177: GetState 0.0% -2025-07-23T19:36:54.8632596Z github.com/ava-labs/coreth/precompile/contract/mocks.go:183: GetTxHash 0.0% -2025-07-23T19:36:54.8632823Z github.com/ava-labs/coreth/precompile/contract/mocks.go:191: GetTxHash 0.0% -2025-07-23T19:36:54.8633035Z github.com/ava-labs/coreth/precompile/contract/mocks.go:197: Logs 0.0% -2025-07-23T19:36:54.8633255Z github.com/ava-labs/coreth/precompile/contract/mocks.go:205: Logs 0.0% -2025-07-23T19:36:54.8633511Z github.com/ava-labs/coreth/precompile/contract/mocks.go:211: RevertToSnapshot 0.0% -2025-07-23T19:36:54.8633764Z github.com/ava-labs/coreth/precompile/contract/mocks.go:217: RevertToSnapshot 0.0% -2025-07-23T19:36:54.8634126Z github.com/ava-labs/coreth/precompile/contract/mocks.go:223: SetNonce 0.0% -2025-07-23T19:36:54.8634347Z github.com/ava-labs/coreth/precompile/contract/mocks.go:229: SetNonce 0.0% -2025-07-23T19:36:54.8634569Z github.com/ava-labs/coreth/precompile/contract/mocks.go:235: SetState 0.0% -2025-07-23T19:36:54.8634886Z github.com/ava-labs/coreth/precompile/contract/mocks.go:241: SetState 0.0% -2025-07-23T19:36:54.8635109Z github.com/ava-labs/coreth/precompile/contract/mocks.go:247: Snapshot 0.0% -2025-07-23T19:36:54.8635336Z github.com/ava-labs/coreth/precompile/contract/mocks.go:255: Snapshot 0.0% -2025-07-23T19:36:54.8635601Z github.com/ava-labs/coreth/precompile/contract/mocks.go:261: SubBalanceMultiCoin 0.0% -2025-07-23T19:36:54.8635866Z github.com/ava-labs/coreth/precompile/contract/mocks.go:267: SubBalanceMultiCoin 0.0% -2025-07-23T19:36:54.8636151Z github.com/ava-labs/coreth/precompile/contract/mocks.go:285: NewMockAccessibleState 0.0% -2025-07-23T19:36:54.8636377Z github.com/ava-labs/coreth/precompile/contract/mocks.go:292: EXPECT 0.0% -2025-07-23T19:36:54.8636630Z github.com/ava-labs/coreth/precompile/contract/mocks.go:297: GetBlockContext 0.0% -2025-07-23T19:36:54.8636994Z github.com/ava-labs/coreth/precompile/contract/mocks.go:305: GetBlockContext 0.0% -2025-07-23T19:36:54.8637248Z github.com/ava-labs/coreth/precompile/contract/mocks.go:311: GetChainConfig 0.0% -2025-07-23T19:36:54.8637497Z github.com/ava-labs/coreth/precompile/contract/mocks.go:319: GetChainConfig 0.0% -2025-07-23T19:36:54.8637747Z github.com/ava-labs/coreth/precompile/contract/mocks.go:325: GetPrecompileEnv 0.0% -2025-07-23T19:36:54.8637997Z github.com/ava-labs/coreth/precompile/contract/mocks.go:333: GetPrecompileEnv 0.0% -2025-07-23T19:36:54.8638242Z github.com/ava-labs/coreth/precompile/contract/mocks.go:339: GetSnowContext 0.0% -2025-07-23T19:36:54.8638491Z github.com/ava-labs/coreth/precompile/contract/mocks.go:347: GetSnowContext 0.0% -2025-07-23T19:36:54.8638726Z github.com/ava-labs/coreth/precompile/contract/mocks.go:353: GetStateDB 0.0% -2025-07-23T19:36:54.8638956Z github.com/ava-labs/coreth/precompile/contract/mocks.go:361: GetStateDB 0.0% -2025-07-23T19:36:54.8639225Z github.com/ava-labs/coreth/precompile/contract/mocks.go:379: NewMockBlockContext 0.0% -2025-07-23T19:36:54.8639450Z github.com/ava-labs/coreth/precompile/contract/mocks.go:386: EXPECT 0.0% -2025-07-23T19:36:54.8639716Z github.com/ava-labs/coreth/precompile/contract/mocks.go:391: GetPredicateResults 0.0% -2025-07-23T19:36:54.8639982Z github.com/ava-labs/coreth/precompile/contract/mocks.go:399: GetPredicateResults 0.0% -2025-07-23T19:36:54.8640202Z github.com/ava-labs/coreth/precompile/contract/mocks.go:405: Number 0.0% -2025-07-23T19:36:54.8640419Z github.com/ava-labs/coreth/precompile/contract/mocks.go:413: Number 0.0% -2025-07-23T19:36:54.8640657Z github.com/ava-labs/coreth/precompile/contract/mocks.go:419: Timestamp 0.0% -2025-07-23T19:36:54.8640883Z github.com/ava-labs/coreth/precompile/contract/mocks.go:427: Timestamp 0.0% -2025-07-23T19:36:54.8641173Z github.com/ava-labs/coreth/precompile/contract/utils.go:35: CalculateFunctionSelector 0.0% -2025-07-23T19:36:54.8641399Z github.com/ava-labs/coreth/precompile/contract/utils.go:44: DeductGas 0.0% -2025-07-23T19:36:54.8641618Z github.com/ava-labs/coreth/precompile/contract/utils.go:53: ParseABI 0.0% -2025-07-23T19:36:54.8641883Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:57: NewConfig 100.0% -2025-07-23T19:36:54.8642164Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:67: NewDefaultConfig 100.0% -2025-07-23T19:36:54.8642443Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:73: NewDisableConfig 0.0% -2025-07-23T19:36:54.8642677Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:84: Key 0.0% -2025-07-23T19:36:54.8643074Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:87: Verify 100.0% -2025-07-23T19:36:54.8643325Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:107: Equal 100.0% -2025-07-23T19:36:54.8643569Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:117: Accept 0.0% -2025-07-23T19:36:54.8643843Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:145: PredicateGas 84.6% -2025-07-23T19:36:54.8644128Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:186: VerifyPredicate 80.0% -2025-07-23T19:36:54.8644440Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:85: PackGetBlockchainID 100.0% -2025-07-23T19:36:54.8644873Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:91: PackGetBlockchainIDOutput 100.0% -2025-07-23T19:36:54.8645164Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:96: getBlockchainID 83.3% -2025-07-23T19:36:54.8645530Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:111: UnpackGetVerifiedWarpBlockHashInput 0.0% -2025-07-23T19:36:54.8645876Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:125: PackGetVerifiedWarpBlockHash 100.0% -2025-07-23T19:36:54.8646376Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:131: PackGetVerifiedWarpBlockHashOutput 100.0% -2025-07-23T19:36:54.8646753Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:140: UnpackGetVerifiedWarpBlockHashOutput 0.0% -2025-07-23T19:36:54.8647081Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:147: getVerifiedWarpBlockHash 100.0% -2025-07-23T19:36:54.8647444Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:153: UnpackGetVerifiedWarpMessageInput 100.0% -2025-07-23T19:36:54.8647788Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:167: PackGetVerifiedWarpMessage 100.0% -2025-07-23T19:36:54.8648135Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:173: PackGetVerifiedWarpMessageOutput 100.0% -2025-07-23T19:36:54.8648498Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:182: UnpackGetVerifiedWarpMessageOutput 0.0% -2025-07-23T19:36:54.8648819Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:191: getVerifiedWarpMessage 100.0% -2025-07-23T19:36:54.8649157Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:197: UnpackSendWarpMessageInput 100.0% -2025-07-23T19:36:54.8649475Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:209: PackSendWarpMessage 100.0% -2025-07-23T19:36:54.8649807Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:215: PackSendWarpMessageOutput 100.0% -2025-07-23T19:36:54.8650139Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:221: UnpackSendWarpMessageOutput 0.0% -2025-07-23T19:36:54.8650434Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:232: sendWarpMessage 81.5% -2025-07-23T19:36:54.8650762Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:301: PackSendWarpMessageEvent 100.0% -2025-07-23T19:36:54.8651118Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:306: UnpackSendWarpEventDataToMessage 80.0% -2025-07-23T19:36:54.8651429Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:316: createWarpPrecompile 81.8% -2025-07-23T19:36:54.8651725Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:29: init 75.0% -2025-07-23T19:36:54.8652057Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:48: handleWarpMessage 96.7% -2025-07-23T19:36:54.8652372Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:98: packFailed 100.0% -2025-07-23T19:36:54.8652703Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:102: handleMessage 100.0% -2025-07-23T19:36:54.8653020Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:119: packFailed 100.0% -2025-07-23T19:36:54.8653485Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:123: handleMessage 100.0% -2025-07-23T19:36:54.8653734Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:35: init 50.0% -2025-07-23T19:36:54.8653996Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:45: MakeConfig 0.0% -2025-07-23T19:36:54.8654251Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:50: Configure 0.0% -2025-07-23T19:36:54.8654467Z github.com/ava-labs/coreth/precompile/modules/module.go:27: Len 100.0% -2025-07-23T19:36:54.8654690Z github.com/ava-labs/coreth/precompile/modules/module.go:31: Swap 100.0% -2025-07-23T19:36:54.8655007Z github.com/ava-labs/coreth/precompile/modules/module.go:35: Less 100.0% -2025-07-23T19:36:54.8655283Z github.com/ava-labs/coreth/precompile/modules/registerer.go:37: ReservedAddress 75.0% -2025-07-23T19:36:54.8655559Z github.com/ava-labs/coreth/precompile/modules/registerer.go:48: RegisterModule 46.2% -2025-07-23T19:36:54.8655874Z github.com/ava-labs/coreth/precompile/modules/registerer.go:72: GetPrecompileModuleByAddress 0.0% -2025-07-23T19:36:54.8656160Z github.com/ava-labs/coreth/precompile/modules/registerer.go:81: GetPrecompileModule 0.0% -2025-07-23T19:36:54.8656548Z github.com/ava-labs/coreth/precompile/modules/registerer.go:90: RegisteredModules 0.0% -2025-07-23T19:36:54.8656860Z github.com/ava-labs/coreth/precompile/modules/registerer.go:94: insertSortedByAddress 100.0% -2025-07-23T19:36:54.8657159Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:32: NewMockPredicater 0.0% -2025-07-23T19:36:54.8657410Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:39: EXPECT 0.0% -2025-07-23T19:36:54.8657684Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:44: PredicateGas 0.0% -2025-07-23T19:36:54.8657957Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:53: PredicateGas 0.0% -2025-07-23T19:36:54.8658241Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:59: VerifyPredicate 0.0% -2025-07-23T19:36:54.8658529Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:67: VerifyPredicate 0.0% -2025-07-23T19:36:54.8658804Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:85: NewMockConfig 0.0% -2025-07-23T19:36:54.8659051Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:92: EXPECT 0.0% -2025-07-23T19:36:54.8659299Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:97: Equal 0.0% -2025-07-23T19:36:54.8659543Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:105: Equal 0.0% -2025-07-23T19:36:54.8659811Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:111: IsDisabled 0.0% -2025-07-23T19:36:54.8660076Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:119: IsDisabled 0.0% -2025-07-23T19:36:54.8660320Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:125: Key 0.0% -2025-07-23T19:36:54.8660562Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:133: Key 0.0% -2025-07-23T19:36:54.8660821Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:139: Timestamp 0.0% -2025-07-23T19:36:54.8661085Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:147: Timestamp 0.0% -2025-07-23T19:36:54.8661342Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:153: Verify 0.0% -2025-07-23T19:36:54.8661589Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:161: Verify 0.0% -2025-07-23T19:36:54.8661888Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:179: NewMockChainConfig 0.0% -2025-07-23T19:36:54.8662133Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:186: EXPECT 0.0% -2025-07-23T19:36:54.8662390Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:191: IsDurango 0.0% -2025-07-23T19:36:54.8662772Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:199: IsDurango 0.0% -2025-07-23T19:36:54.8663058Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:217: NewMockAccepter 0.0% -2025-07-23T19:36:54.8663309Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:224: EXPECT 0.0% -2025-07-23T19:36:54.8663562Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:229: Accept 0.0% -2025-07-23T19:36:54.8663817Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:237: Accept 0.0% -2025-07-23T19:36:54.8664102Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:17: Timestamp 0.0% -2025-07-23T19:36:54.8664383Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:22: IsDisabled 0.0% -2025-07-23T19:36:54.8664653Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:28: Equal 0.0% -2025-07-23T19:36:54.8665062Z github.com/ava-labs/coreth/precompile/precompiletest/test_config.go:28: RunVerifyTests 100.0% -2025-07-23T19:36:54.8665361Z github.com/ava-labs/coreth/precompile/precompiletest/test_config.go:51: RunEqualTests 100.0% -2025-07-23T19:36:54.8665634Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:66: Run 100.0% -2025-07-23T19:36:54.8666018Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:88: setup 96.0% -2025-07-23T19:36:54.8666365Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:135: RunPrecompileTests 100.0% -2025-07-23T19:36:54.8666682Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:153: newTestStateDB 100.0% -2025-07-23T19:36:54.8667037Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:163: GetPredicateStorageSlots 100.0% -2025-07-23T19:36:54.8667311Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:26: Run 100.0% -2025-07-23T19:36:54.8667631Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:43: RunPredicateTests 100.0% -2025-07-23T19:36:54.8667922Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:53: RunBenchmark 0.0% -2025-07-23T19:36:54.8668258Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:73: RunPredicateBenchmarks 0.0% -2025-07-23T19:36:54.8668508Z github.com/ava-labs/coreth/predicate/predicate_bytes.go:28: PackPredicate 100.0% -2025-07-23T19:36:54.8668762Z github.com/ava-labs/coreth/predicate/predicate_bytes.go:36: UnpackPredicate 87.5% -2025-07-23T19:36:54.8668981Z github.com/ava-labs/coreth/predicate/predicate_results.go:24: init 83.3% -2025-07-23T19:36:54.8669245Z github.com/ava-labs/coreth/predicate/predicate_results.go:47: GetPredicateResults 0.0% -2025-07-23T19:36:54.8669488Z github.com/ava-labs/coreth/predicate/predicate_results.go:56: NewResults 100.0% -2025-07-23T19:36:54.8669751Z github.com/ava-labs/coreth/predicate/predicate_results.go:62: NewResultsFromMap 100.0% -2025-07-23T19:36:54.8670002Z github.com/ava-labs/coreth/predicate/predicate_results.go:69: ParseResults 71.4% -2025-07-23T19:36:54.8670239Z github.com/ava-labs/coreth/predicate/predicate_results.go:82: GetResults 100.0% -2025-07-23T19:36:54.8670488Z github.com/ava-labs/coreth/predicate/predicate_results.go:91: SetTxResults 100.0% -2025-07-23T19:36:54.8670752Z github.com/ava-labs/coreth/predicate/predicate_results.go:101: DeleteTxResults 100.0% -2025-07-23T19:36:54.8670981Z github.com/ava-labs/coreth/predicate/predicate_results.go:106: Bytes 100.0% -2025-07-23T19:36:54.8671211Z github.com/ava-labs/coreth/predicate/predicate_results.go:110: String 0.0% -2025-07-23T19:36:54.8671505Z github.com/ava-labs/coreth/predicate/predicate_slots.go:20: PreparePredicateStorageSlots 0.0% -2025-07-23T19:36:54.8671736Z github.com/ava-labs/coreth/predicate/predicate_tx.go:16: NewPredicateTx 0.0% -2025-07-23T19:36:54.8672072Z github.com/ava-labs/coreth/rpc/client.go:128: newClientConn 100.0% -2025-07-23T19:36:54.8672251Z github.com/ava-labs/coreth/rpc/client.go:141: close 100.0% -2025-07-23T19:36:54.8672424Z github.com/ava-labs/coreth/rpc/client.go:161: wait 100.0% -2025-07-23T19:36:54.8672595Z github.com/ava-labs/coreth/rpc/client.go:189: Dial 100.0% -2025-07-23T19:36:54.8672794Z github.com/ava-labs/coreth/rpc/client.go:197: DialContext 100.0% -2025-07-23T19:36:54.8672995Z github.com/ava-labs/coreth/rpc/client.go:208: DialOptions 80.0% -2025-07-23T19:36:54.8673213Z github.com/ava-labs/coreth/rpc/client.go:242: ClientFromContext 100.0% -2025-07-23T19:36:54.8673401Z github.com/ava-labs/coreth/rpc/client.go:247: newClient 100.0% -2025-07-23T19:36:54.8673593Z github.com/ava-labs/coreth/rpc/client.go:257: initClient 100.0% -2025-07-23T19:36:54.8673779Z github.com/ava-labs/coreth/rpc/client.go:293: RegisterName 0.0% -2025-07-23T19:36:54.8673961Z github.com/ava-labs/coreth/rpc/client.go:297: nextID 100.0% -2025-07-23T19:36:54.8674174Z github.com/ava-labs/coreth/rpc/client.go:304: SupportedModules 100.0% -2025-07-23T19:36:54.8674347Z github.com/ava-labs/coreth/rpc/client.go:313: Close 100.0% -2025-07-23T19:36:54.8674534Z github.com/ava-labs/coreth/rpc/client.go:327: SetHeader 83.3% -2025-07-23T19:36:54.8674881Z github.com/ava-labs/coreth/rpc/client.go:342: Call 100.0% -2025-07-23T19:36:54.8675077Z github.com/ava-labs/coreth/rpc/client.go:352: CallContext 95.2% -2025-07-23T19:36:54.8675267Z github.com/ava-labs/coreth/rpc/client.go:400: BatchCall 100.0% -2025-07-23T19:36:54.8675470Z github.com/ava-labs/coreth/rpc/client.go:414: BatchCallContext 85.7% -2025-07-23T19:36:54.8675648Z github.com/ava-labs/coreth/rpc/client.go:485: Notify 75.0% -2025-07-23T19:36:54.8675843Z github.com/ava-labs/coreth/rpc/client.go:500: EthSubscribe 100.0% -2025-07-23T19:36:54.8676040Z github.com/ava-labs/coreth/rpc/client.go:506: ShhSubscribe 0.0% -2025-07-23T19:36:54.8676257Z github.com/ava-labs/coreth/rpc/client.go:522: Subscribe 81.2% -2025-07-23T19:36:54.8676478Z github.com/ava-labs/coreth/rpc/client.go:559: SupportsSubscriptions 0.0% -2025-07-23T19:36:54.8676660Z github.com/ava-labs/coreth/rpc/client.go:563: newMessage 83.3% -2025-07-23T19:36:54.8676836Z github.com/ava-labs/coreth/rpc/client.go:576: send 100.0% -2025-07-23T19:36:54.8677005Z github.com/ava-labs/coreth/rpc/client.go:591: write 100.0% -2025-07-23T19:36:54.8677186Z github.com/ava-labs/coreth/rpc/client.go:608: reconnect 93.3% -2025-07-23T19:36:54.8677361Z github.com/ava-labs/coreth/rpc/client.go:636: dispatch 94.1% -2025-07-23T19:36:54.8677545Z github.com/ava-labs/coreth/rpc/client.go:717: drainRead 100.0% -2025-07-23T19:36:54.8677717Z github.com/ava-labs/coreth/rpc/client.go:728: read 100.0% -2025-07-23T19:36:54.8677919Z github.com/ava-labs/coreth/rpc/client_opt.go:57: initHeaders 100.0% -2025-07-23T19:36:54.8678120Z github.com/ava-labs/coreth/rpc/client_opt.go:63: setHeader 100.0% -2025-07-23T19:36:54.8678320Z github.com/ava-labs/coreth/rpc/client_opt.go:70: applyOption 100.0% -2025-07-23T19:36:54.8678539Z github.com/ava-labs/coreth/rpc/client_opt.go:75: WithWebsocketDialer 0.0% -2025-07-23T19:36:54.8678805Z github.com/ava-labs/coreth/rpc/client_opt.go:83: WithWebsocketMessageSizeLimit 100.0% -2025-07-23T19:36:54.8679000Z github.com/ava-labs/coreth/rpc/client_opt.go:91: WithHeader 0.0% -2025-07-23T19:36:54.8679194Z github.com/ava-labs/coreth/rpc/client_opt.go:100: WithHeaders 0.0% -2025-07-23T19:36:54.8679405Z github.com/ava-labs/coreth/rpc/client_opt.go:110: WithHTTPClient 0.0% -2025-07-23T19:36:54.8679603Z github.com/ava-labs/coreth/rpc/client_opt.go:119: WithHTTPAuth 0.0% -2025-07-23T19:36:54.8679824Z github.com/ava-labs/coreth/rpc/client_opt.go:139: WithBatchItemLimit 0.0% -2025-07-23T19:36:54.8680225Z github.com/ava-labs/coreth/rpc/client_opt.go:151: WithBatchResponseSizeLimit 0.0% -2025-07-23T19:36:54.8680480Z github.com/ava-labs/coreth/rpc/context_headers.go:39: NewContextWithHeaders 87.5% -2025-07-23T19:36:54.8680731Z github.com/ava-labs/coreth/rpc/context_headers.go:56: headersFromContext 100.0% -2025-07-23T19:36:54.8680951Z github.com/ava-labs/coreth/rpc/context_headers.go:62: setHeaders 100.0% -2025-07-23T19:36:54.8681127Z github.com/ava-labs/coreth/rpc/errors.go:40: Error 66.7% -2025-07-23T19:36:54.8681309Z github.com/ava-labs/coreth/rpc/errors.go:89: ErrorCode 100.0% -2025-07-23T19:36:54.8681478Z github.com/ava-labs/coreth/rpc/errors.go:91: Error 100.0% -2025-07-23T19:36:54.8681650Z github.com/ava-labs/coreth/rpc/errors.go:97: Error 0.0% -2025-07-23T19:36:54.8681828Z github.com/ava-labs/coreth/rpc/errors.go:101: ErrorCode 0.0% -2025-07-23T19:36:54.8681989Z github.com/ava-labs/coreth/rpc/errors.go:111: Is 0.0% -2025-07-23T19:36:54.8682188Z github.com/ava-labs/coreth/rpc/errors.go:125: ErrorCode 100.0% -2025-07-23T19:36:54.8682362Z github.com/ava-labs/coreth/rpc/errors.go:127: Error 100.0% -2025-07-23T19:36:54.8682549Z github.com/ava-labs/coreth/rpc/errors.go:134: ErrorCode 100.0% -2025-07-23T19:36:54.8682719Z github.com/ava-labs/coreth/rpc/errors.go:136: Error 100.0% -2025-07-23T19:36:54.8683031Z github.com/ava-labs/coreth/rpc/errors.go:141: ErrorCode 100.0% -2025-07-23T19:36:54.8683212Z github.com/ava-labs/coreth/rpc/errors.go:143: Error 100.0% -2025-07-23T19:36:54.8683390Z github.com/ava-labs/coreth/rpc/errors.go:148: ErrorCode 0.0% -2025-07-23T19:36:54.8683556Z github.com/ava-labs/coreth/rpc/errors.go:150: Error 0.0% -2025-07-23T19:36:54.8683745Z github.com/ava-labs/coreth/rpc/errors.go:155: ErrorCode 100.0% -2025-07-23T19:36:54.8683914Z github.com/ava-labs/coreth/rpc/errors.go:157: Error 100.0% -2025-07-23T19:36:54.8684096Z github.com/ava-labs/coreth/rpc/errors.go:165: ErrorCode 100.0% -2025-07-23T19:36:54.8684269Z github.com/ava-labs/coreth/rpc/errors.go:167: Error 100.0% -2025-07-23T19:36:54.8684460Z github.com/ava-labs/coreth/rpc/handler.go:96: newHandler 100.0% -2025-07-23T19:36:54.8684644Z github.com/ava-labs/coreth/rpc/handler.go:130: nextCall 100.0% -2025-07-23T19:36:54.8684949Z github.com/ava-labs/coreth/rpc/handler.go:144: pushResponse 100.0% -2025-07-23T19:36:54.8685126Z github.com/ava-labs/coreth/rpc/handler.go:155: write 100.0% -2025-07-23T19:36:54.8685346Z github.com/ava-labs/coreth/rpc/handler.go:164: respondWithError 100.0% -2025-07-23T19:36:54.8685525Z github.com/ava-labs/coreth/rpc/handler.go:178: doWrite 100.0% -2025-07-23T19:36:54.8685718Z github.com/ava-labs/coreth/rpc/handler.go:193: addLimiter 66.7% -2025-07-23T19:36:54.8685908Z github.com/ava-labs/coreth/rpc/handler.go:201: handleBatch 84.1% -2025-07-23T19:36:54.8686145Z github.com/ava-labs/coreth/rpc/handler.go:283: respondWithBatchTooLarge 100.0% -2025-07-23T19:36:54.8686338Z github.com/ava-labs/coreth/rpc/handler.go:298: handleMsg 100.0% -2025-07-23T19:36:54.8686553Z github.com/ava-labs/coreth/rpc/handler.go:307: handleNonBatchCall 66.7% -2025-07-23T19:36:54.8686731Z github.com/ava-labs/coreth/rpc/handler.go:346: close 100.0% -2025-07-23T19:36:54.8686930Z github.com/ava-labs/coreth/rpc/handler.go:354: addRequestOp 100.0% -2025-07-23T19:36:54.8687141Z github.com/ava-labs/coreth/rpc/handler.go:361: removeRequestOp 100.0% -2025-07-23T19:36:54.8687360Z github.com/ava-labs/coreth/rpc/handler.go:368: cancelAllRequests 100.0% -2025-07-23T19:36:54.8687571Z github.com/ava-labs/coreth/rpc/handler.go:390: addSubscriptions 100.0% -2025-07-23T19:36:54.8687809Z github.com/ava-labs/coreth/rpc/handler.go:402: cancelServerSubscriptions 100.0% -2025-07-23T19:36:54.8688003Z github.com/ava-labs/coreth/rpc/handler.go:415: awaitLimit 22.2% -2025-07-23T19:36:54.8688327Z github.com/ava-labs/coreth/rpc/handler.go:435: consumeLimit 28.6% -2025-07-23T19:36:54.8688529Z github.com/ava-labs/coreth/rpc/handler.go:450: startCallProc 87.5% -2025-07-23T19:36:54.8688738Z github.com/ava-labs/coreth/rpc/handler.go:484: handleResponses 93.3% -2025-07-23T19:36:54.8688978Z github.com/ava-labs/coreth/rpc/handler.go:541: handleSubscriptionResult 66.7% -2025-07-23T19:36:54.8689194Z github.com/ava-labs/coreth/rpc/handler.go:553: handleCallMsg 100.0% -2025-07-23T19:36:54.8689379Z github.com/ava-labs/coreth/rpc/handler.go:595: handleCall 95.5% -2025-07-23T19:36:54.8689590Z github.com/ava-labs/coreth/rpc/handler.go:635: handleSubscribe 83.3% -2025-07-23T19:36:54.8689779Z github.com/ava-labs/coreth/rpc/handler.go:668: runMethod 100.0% -2025-07-23T19:36:54.8689970Z github.com/ava-labs/coreth/rpc/handler.go:677: unsubscribe 87.5% -2025-07-23T19:36:54.8690148Z github.com/ava-labs/coreth/rpc/handler.go:692: String 0.0% -2025-07-23T19:36:54.8690324Z github.com/ava-labs/coreth/rpc/handler.go:706: Write 66.7% -2025-07-23T19:36:54.8690526Z github.com/ava-labs/coreth/rpc/handler.go:716: formatErrorData 66.7% -2025-07-23T19:36:54.8690703Z github.com/ava-labs/coreth/rpc/http.go:68: writeJSON 0.0% -2025-07-23T19:36:54.8691021Z github.com/ava-labs/coreth/rpc/http.go:72: writeJSONSkipDeadline 0.0% -2025-07-23T19:36:54.8691200Z github.com/ava-labs/coreth/rpc/http.go:76: peerInfo 0.0% -2025-07-23T19:36:54.8691373Z github.com/ava-labs/coreth/rpc/http.go:80: remoteAddr 0.0% -2025-07-23T19:36:54.8691539Z github.com/ava-labs/coreth/rpc/http.go:84: readBatch 0.0% -2025-07-23T19:36:54.8691704Z github.com/ava-labs/coreth/rpc/http.go:89: close 0.0% -2025-07-23T19:36:54.8691870Z github.com/ava-labs/coreth/rpc/http.go:93: closed 0.0% -2025-07-23T19:36:54.8692047Z github.com/ava-labs/coreth/rpc/http.go:139: DialHTTP 100.0% -2025-07-23T19:36:54.8692261Z github.com/ava-labs/coreth/rpc/http.go:147: DialHTTPWithClient 85.7% -2025-07-23T19:36:54.8692480Z github.com/ava-labs/coreth/rpc/http.go:160: newClientTransportHTTP 90.9% -2025-07-23T19:36:54.8692656Z github.com/ava-labs/coreth/rpc/http.go:186: sendHTTP 90.9% -2025-07-23T19:36:54.8692849Z github.com/ava-labs/coreth/rpc/http.go:203: sendBatchHTTP 80.0% -2025-07-23T19:36:54.8693018Z github.com/ava-labs/coreth/rpc/http.go:219: doRequest 81.5% -2025-07-23T19:36:54.8693223Z github.com/ava-labs/coreth/rpc/http.go:271: newHTTPServerConn 47.1% -2025-07-23T19:36:54.8693389Z github.com/ava-labs/coreth/rpc/http.go:313: Close 100.0% -2025-07-23T19:36:54.8693574Z github.com/ava-labs/coreth/rpc/http.go:316: RemoteAddr 100.0% -2025-07-23T19:36:54.8693773Z github.com/ava-labs/coreth/rpc/http.go:321: SetWriteDeadline 100.0% -2025-07-23T19:36:54.8693947Z github.com/ava-labs/coreth/rpc/http.go:324: ServeHTTP 100.0% -2025-07-23T19:36:54.8694151Z github.com/ava-labs/coreth/rpc/http.go:355: validateRequest 92.3% -2025-07-23T19:36:54.8694365Z github.com/ava-labs/coreth/rpc/http.go:381: ContextRequestTimeout 50.0% -2025-07-23T19:36:54.8694553Z github.com/ava-labs/coreth/rpc/inproc.go:36: DialInProc 100.0% -2025-07-23T19:36:54.8694747Z github.com/ava-labs/coreth/rpc/json.go:82: isNotification 100.0% -2025-07-23T19:36:54.8695015Z github.com/ava-labs/coreth/rpc/json.go:86: isCall 100.0% -2025-07-23T19:36:54.8695197Z github.com/ava-labs/coreth/rpc/json.go:90: isResponse 100.0% -2025-07-23T19:36:54.8695369Z github.com/ava-labs/coreth/rpc/json.go:94: hasValidID 100.0% -2025-07-23T19:36:54.8695563Z github.com/ava-labs/coreth/rpc/json.go:98: hasValidVersion 100.0% -2025-07-23T19:36:54.8695749Z github.com/ava-labs/coreth/rpc/json.go:102: isSubscribe 100.0% -2025-07-23T19:36:54.8695941Z github.com/ava-labs/coreth/rpc/json.go:106: isUnsubscribe 100.0% -2025-07-23T19:36:54.8696244Z github.com/ava-labs/coreth/rpc/json.go:110: namespace 100.0% -2025-07-23T19:36:54.8696417Z github.com/ava-labs/coreth/rpc/json.go:115: String 0.0% -2025-07-23T19:36:54.8696607Z github.com/ava-labs/coreth/rpc/json.go:120: errorResponse 100.0% -2025-07-23T19:36:54.8696787Z github.com/ava-labs/coreth/rpc/json.go:126: response 100.0% -2025-07-23T19:36:54.8696978Z github.com/ava-labs/coreth/rpc/json.go:134: errorMessage 100.0% -2025-07-23T19:36:54.8697142Z github.com/ava-labs/coreth/rpc/json.go:156: Error 66.7% -2025-07-23T19:36:54.8697320Z github.com/ava-labs/coreth/rpc/json.go:163: ErrorCode 100.0% -2025-07-23T19:36:54.8697491Z github.com/ava-labs/coreth/rpc/json.go:167: ErrorData 100.0% -2025-07-23T19:36:54.8697681Z github.com/ava-labs/coreth/rpc/json.go:208: NewFuncCodec 100.0% -2025-07-23T19:36:54.8697853Z github.com/ava-labs/coreth/rpc/json.go:223: NewCodec 100.0% -2025-07-23T19:36:54.8698025Z github.com/ava-labs/coreth/rpc/json.go:234: peerInfo 100.0% -2025-07-23T19:36:54.8698216Z github.com/ava-labs/coreth/rpc/json.go:239: remoteAddr 100.0% -2025-07-23T19:36:54.8698388Z github.com/ava-labs/coreth/rpc/json.go:243: readBatch 100.0% -2025-07-23T19:36:54.8698558Z github.com/ava-labs/coreth/rpc/json.go:261: writeJSON 100.0% -2025-07-23T19:36:54.8698886Z github.com/ava-labs/coreth/rpc/json.go:265: writeJSONSkipDeadline 100.0% -2025-07-23T19:36:54.8699059Z github.com/ava-labs/coreth/rpc/json.go:280: close 100.0% -2025-07-23T19:36:54.8699234Z github.com/ava-labs/coreth/rpc/json.go:288: closed 100.0% -2025-07-23T19:36:54.8699423Z github.com/ava-labs/coreth/rpc/json.go:296: parseMessage 100.0% -2025-07-23T19:36:54.8699589Z github.com/ava-labs/coreth/rpc/json.go:313: isBatch 60.0% -2025-07-23T19:36:54.8699829Z github.com/ava-labs/coreth/rpc/json.go:327: parsePositionalArguments 84.6% -2025-07-23T19:36:54.8700037Z github.com/ava-labs/coreth/rpc/json.go:355: parseArgumentArray 75.0% -2025-07-23T19:36:54.8700258Z github.com/ava-labs/coreth/rpc/json.go:376: parseSubscriptionName 75.0% -2025-07-23T19:36:54.8700495Z github.com/ava-labs/coreth/rpc/metrics.go:58: updateServeTimeHistogram 0.0% -2025-07-23T19:36:54.8700675Z github.com/ava-labs/coreth/rpc/server.go:74: NewServer 100.0% -2025-07-23T19:36:54.8700886Z github.com/ava-labs/coreth/rpc/server.go:95: SetBatchLimits 100.0% -2025-07-23T19:36:54.8701088Z github.com/ava-labs/coreth/rpc/server.go:103: SetHTTPBodyLimit 0.0% -2025-07-23T19:36:54.8701281Z github.com/ava-labs/coreth/rpc/server.go:111: RegisterName 100.0% -2025-07-23T19:36:54.8701470Z github.com/ava-labs/coreth/rpc/server.go:120: ServeCodec 87.5% -2025-07-23T19:36:54.8701652Z github.com/ava-labs/coreth/rpc/server.go:138: trackCodec 83.3% -2025-07-23T19:36:54.8701851Z github.com/ava-labs/coreth/rpc/server.go:149: untrackCodec 100.0% -2025-07-23T19:36:54.8702061Z github.com/ava-labs/coreth/rpc/server.go:159: serveSingleRequest 60.0% -2025-07-23T19:36:54.8702237Z github.com/ava-labs/coreth/rpc/server.go:188: Stop 100.0% -2025-07-23T19:36:54.8702419Z github.com/ava-labs/coreth/rpc/server.go:207: Modules 100.0% -2025-07-23T19:36:54.8702636Z github.com/ava-labs/coreth/rpc/server.go:248: PeerInfoFromContext 100.0% -2025-07-23T19:36:54.8702834Z github.com/ava-labs/coreth/rpc/service.go:71: registerName 89.5% -2025-07-23T19:36:54.8703018Z github.com/ava-labs/coreth/rpc/service.go:106: callback 83.3% -2025-07-23T19:36:54.8703217Z github.com/ava-labs/coreth/rpc/service.go:117: subscription 100.0% -2025-07-23T19:36:54.8703431Z github.com/ava-labs/coreth/rpc/service.go:126: suitableCallbacks 91.7% -2025-07-23T19:36:54.8703625Z github.com/ava-labs/coreth/rpc/service.go:146: newCallback 100.0% -2025-07-23T19:36:54.8703821Z github.com/ava-labs/coreth/rpc/service.go:175: makeArgTypes 100.0% -2025-07-23T19:36:54.8703998Z github.com/ava-labs/coreth/rpc/service.go:194: call 100.0% -2025-07-23T19:36:54.8704289Z github.com/ava-labs/coreth/rpc/service.go:229: isErrorType 100.0% -2025-07-23T19:36:54.8704506Z github.com/ava-labs/coreth/rpc/service.go:234: isSubscriptionType 100.0% -2025-07-23T19:36:54.8704695Z github.com/ava-labs/coreth/rpc/service.go:243: isPubSub 100.0% -2025-07-23T19:36:54.8704990Z github.com/ava-labs/coreth/rpc/service.go:254: formatName 100.0% -2025-07-23T19:36:54.8705189Z github.com/ava-labs/coreth/rpc/subscription.go:67: NewID 100.0% -2025-07-23T19:36:54.8705416Z github.com/ava-labs/coreth/rpc/subscription.go:72: randomIDGenerator 91.7% -2025-07-23T19:36:54.8705608Z github.com/ava-labs/coreth/rpc/subscription.go:94: encodeID 80.0% -2025-07-23T19:36:54.8705855Z github.com/ava-labs/coreth/rpc/subscription.go:106: NotifierFromContext 100.0% -2025-07-23T19:36:54.8706089Z github.com/ava-labs/coreth/rpc/subscription.go:128: CreateSubscription 75.0% -2025-07-23T19:36:54.8706290Z github.com/ava-labs/coreth/rpc/subscription.go:143: Notify 80.0% -2025-07-23T19:36:54.8706485Z github.com/ava-labs/coreth/rpc/subscription.go:161: Closed 100.0% -2025-07-23T19:36:54.8706713Z github.com/ava-labs/coreth/rpc/subscription.go:167: takeSubscription 100.0% -2025-07-23T19:36:54.8707032Z github.com/ava-labs/coreth/rpc/subscription.go:177: activate 100.0% -2025-07-23T19:36:54.8707232Z github.com/ava-labs/coreth/rpc/subscription.go:190: send 100.0% -2025-07-23T19:36:54.8707418Z github.com/ava-labs/coreth/rpc/subscription.go:211: Err 100.0% -2025-07-23T19:36:54.8707637Z github.com/ava-labs/coreth/rpc/subscription.go:216: MarshalJSON 100.0% -2025-07-23T19:36:54.8707888Z github.com/ava-labs/coreth/rpc/subscription.go:248: newClientSubscription 100.0% -2025-07-23T19:36:54.8708079Z github.com/ava-labs/coreth/rpc/subscription.go:271: Err 100.0% -2025-07-23T19:36:54.8708289Z github.com/ava-labs/coreth/rpc/subscription.go:277: Unsubscribe 100.0% -2025-07-23T19:36:54.8708493Z github.com/ava-labs/coreth/rpc/subscription.go:289: deliver 100.0% -2025-07-23T19:36:54.8708686Z github.com/ava-labs/coreth/rpc/subscription.go:299: close 100.0% -2025-07-23T19:36:54.8708869Z github.com/ava-labs/coreth/rpc/subscription.go:308: run 100.0% -2025-07-23T19:36:54.8709074Z github.com/ava-labs/coreth/rpc/subscription.go:335: forward 95.7% -2025-07-23T19:36:54.8709278Z github.com/ava-labs/coreth/rpc/subscription.go:383: unmarshal 100.0% -2025-07-23T19:36:54.8709516Z github.com/ava-labs/coreth/rpc/subscription.go:389: requestUnsubscribe 100.0% -2025-07-23T19:36:54.8709711Z github.com/ava-labs/coreth/rpc/types.go:90: UnmarshalJSON 81.0% -2025-07-23T19:36:54.8709878Z github.com/ava-labs/coreth/rpc/types.go:127: Int64 0.0% -2025-07-23T19:36:54.8710066Z github.com/ava-labs/coreth/rpc/types.go:134: MarshalText 100.0% -2025-07-23T19:36:54.8710241Z github.com/ava-labs/coreth/rpc/types.go:138: String 66.7% -2025-07-23T19:36:54.8710426Z github.com/ava-labs/coreth/rpc/types.go:159: IsAccepted 0.0% -2025-07-23T19:36:54.8710605Z github.com/ava-labs/coreth/rpc/types.go:163: IsLatest 0.0% -2025-07-23T19:36:54.8710799Z github.com/ava-labs/coreth/rpc/types.go:173: UnmarshalJSON 84.4% -2025-07-23T19:36:54.8710977Z github.com/ava-labs/coreth/rpc/types.go:237: Number 100.0% -2025-07-23T19:36:54.8711148Z github.com/ava-labs/coreth/rpc/types.go:244: String 80.0% -2025-07-23T19:36:54.8711312Z github.com/ava-labs/coreth/rpc/types.go:254: Hash 100.0% -2025-07-23T19:36:54.8711548Z github.com/ava-labs/coreth/rpc/types.go:261: BlockNumberOrHashWithNumber 100.0% -2025-07-23T19:36:54.8711784Z github.com/ava-labs/coreth/rpc/types.go:269: BlockNumberOrHashWithHash 100.0% -2025-07-23T19:36:54.8712005Z github.com/ava-labs/coreth/rpc/websocket.go:61: WebsocketHandler 100.0% -2025-07-23T19:36:54.8712267Z github.com/ava-labs/coreth/rpc/websocket.go:65: WebsocketHandlerWithDuration 100.0% -2025-07-23T19:36:54.8712649Z github.com/ava-labs/coreth/rpc/websocket.go:86: wsHandshakeValidator 100.0% -2025-07-23T19:36:54.8712827Z github.com/ava-labs/coreth/rpc/websocket.go:132: Error 0.0% -2025-07-23T19:36:54.8713049Z github.com/ava-labs/coreth/rpc/websocket.go:140: originIsAllowed 100.0% -2025-07-23T19:36:54.8713262Z github.com/ava-labs/coreth/rpc/websocket.go:150: ruleAllowsOrigin 62.5% -2025-07-23T19:36:54.8713474Z github.com/ava-labs/coreth/rpc/websocket.go:178: parseOriginURL 92.9% -2025-07-23T19:36:54.8713705Z github.com/ava-labs/coreth/rpc/websocket.go:205: DialWebsocketWithDialer 0.0% -2025-07-23T19:36:54.8713908Z github.com/ava-labs/coreth/rpc/websocket.go:223: DialWebsocket 85.7% -2025-07-23T19:36:54.8714137Z github.com/ava-labs/coreth/rpc/websocket.go:235: newClientTransportWS 87.5% -2025-07-23T19:36:54.8714344Z github.com/ava-labs/coreth/rpc/websocket.go:278: wsClientHeaders 90.9% -2025-07-23T19:36:54.8714563Z github.com/ava-labs/coreth/rpc/websocket.go:305: newWebsocketCodec 84.6% -2025-07-23T19:36:54.8714750Z github.com/ava-labs/coreth/rpc/websocket.go:337: close 100.0% -2025-07-23T19:36:54.8715038Z github.com/ava-labs/coreth/rpc/websocket.go:342: peerInfo 100.0% -2025-07-23T19:36:54.8715346Z github.com/ava-labs/coreth/rpc/websocket.go:346: writeJSON 100.0% -2025-07-23T19:36:54.8715593Z github.com/ava-labs/coreth/rpc/websocket.go:350: writeJSONSkipDeadline 100.0% -2025-07-23T19:36:54.8715782Z github.com/ava-labs/coreth/rpc/websocket.go:363: pingLoop 50.0% -2025-07-23T19:36:54.8716004Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:55: Crit 0.0% -2025-07-23T19:36:54.8716218Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:58: Warn 0.0% -2025-07-23T19:36:54.8716432Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:61: Info 0.0% -2025-07-23T19:36:54.8716668Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:66: GetWarnings 0.0% -2025-07-23T19:36:54.8716895Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:103: String 0.0% -2025-07-23T19:36:54.8717145Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:112: ToTransaction 0.0% -2025-07-23T19:36:54.8717352Z github.com/ava-labs/coreth/sync/client/client.go:99: NewClient 100.0% -2025-07-23T19:36:54.8717561Z github.com/ava-labs/coreth/sync/client/client.go:114: GetLeafs 100.0% -2025-07-23T19:36:54.8717809Z github.com/ava-labs/coreth/sync/client/client.go:132: parseLeafsResponse 88.5% -2025-07-23T19:36:54.8718014Z github.com/ava-labs/coreth/sync/client/client.go:188: GetBlocks 100.0% -2025-07-23T19:36:54.8718236Z github.com/ava-labs/coreth/sync/client/client.go:207: parseBlocks 100.0% -2025-07-23T19:36:54.8718438Z github.com/ava-labs/coreth/sync/client/client.go:243: GetCode 100.0% -2025-07-23T19:36:54.8718641Z github.com/ava-labs/coreth/sync/client/client.go:257: parseCode 93.3% -2025-07-23T19:36:54.8718837Z github.com/ava-labs/coreth/sync/client/client.go:289: get 72.1% -2025-07-23T19:36:54.8719096Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:51: NewCallbackLeafSyncer 0.0% -2025-07-23T19:36:54.8719317Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:62: workerLoop 0.0% -2025-07-23T19:36:54.8719526Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:80: syncTask 0.0% -2025-07-23T19:36:54.8719730Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:149: Start 0.0% -2025-07-23T19:36:54.8719934Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:171: Done 0.0% -2025-07-23T19:36:54.8720177Z github.com/ava-labs/coreth/sync/client/stats/stats.go:42: NewMessageMetric 100.0% -2025-07-23T19:36:54.8720407Z github.com/ava-labs/coreth/sync/client/stats/stats.go:53: IncRequested 100.0% -2025-07-23T19:36:54.8720640Z github.com/ava-labs/coreth/sync/client/stats/stats.go:57: IncSucceeded 100.0% -2025-07-23T19:36:54.8720987Z github.com/ava-labs/coreth/sync/client/stats/stats.go:61: IncFailed 100.0% -2025-07-23T19:36:54.8721237Z github.com/ava-labs/coreth/sync/client/stats/stats.go:65: IncInvalidResponse 0.0% -2025-07-23T19:36:54.8721466Z github.com/ava-labs/coreth/sync/client/stats/stats.go:69: IncReceived 100.0% -2025-07-23T19:36:54.8721738Z github.com/ava-labs/coreth/sync/client/stats/stats.go:73: UpdateRequestLatency 100.0% -2025-07-23T19:36:54.8722004Z github.com/ava-labs/coreth/sync/client/stats/stats.go:84: NewClientSyncerStats 100.0% -2025-07-23T19:36:54.8722222Z github.com/ava-labs/coreth/sync/client/stats/stats.go:97: GetMetric 62.5% -2025-07-23T19:36:54.8722453Z github.com/ava-labs/coreth/sync/client/stats/stats.go:121: IncRequested 0.0% -2025-07-23T19:36:54.8722679Z github.com/ava-labs/coreth/sync/client/stats/stats.go:122: IncSucceeded 0.0% -2025-07-23T19:36:54.8722894Z github.com/ava-labs/coreth/sync/client/stats/stats.go:123: IncFailed 0.0% -2025-07-23T19:36:54.8723157Z github.com/ava-labs/coreth/sync/client/stats/stats.go:124: IncInvalidResponse 0.0% -2025-07-23T19:36:54.8723381Z github.com/ava-labs/coreth/sync/client/stats/stats.go:125: IncReceived 0.0% -2025-07-23T19:36:54.8723643Z github.com/ava-labs/coreth/sync/client/stats/stats.go:126: UpdateRequestLatency 0.0% -2025-07-23T19:36:54.8723962Z github.com/ava-labs/coreth/sync/client/stats/stats.go:128: NewNoOpStats 100.0% -2025-07-23T19:36:54.8724184Z github.com/ava-labs/coreth/sync/client/stats/stats.go:132: GetMetric 100.0% -2025-07-23T19:36:54.8724426Z github.com/ava-labs/coreth/sync/client/test_client.go:44: NewTestClient 0.0% -2025-07-23T19:36:54.8724643Z github.com/ava-labs/coreth/sync/client/test_client.go:58: GetLeafs 0.0% -2025-07-23T19:36:54.8724974Z github.com/ava-labs/coreth/sync/client/test_client.go:77: LeavesReceived 0.0% -2025-07-23T19:36:54.8725191Z github.com/ava-labs/coreth/sync/client/test_client.go:81: GetCode 0.0% -2025-07-23T19:36:54.8725420Z github.com/ava-labs/coreth/sync/client/test_client.go:105: CodeReceived 0.0% -2025-07-23T19:36:54.8725640Z github.com/ava-labs/coreth/sync/client/test_client.go:109: GetBlocks 0.0% -2025-07-23T19:36:54.8725874Z github.com/ava-labs/coreth/sync/client/test_client.go:136: BlocksReceived 0.0% -2025-07-23T19:36:54.8726134Z github.com/ava-labs/coreth/sync/client/test_client.go:142: newTestBlockParser 100.0% -2025-07-23T19:36:54.8726378Z github.com/ava-labs/coreth/sync/client/test_client.go:146: ParseEthBlock 100.0% -2025-07-23T19:36:54.8726655Z github.com/ava-labs/coreth/sync/client/test_network.go:31: SendSyncedAppRequestAny 80.0% -2025-07-23T19:36:54.8726923Z github.com/ava-labs/coreth/sync/client/test_network.go:42: SendSyncedAppRequest 75.0% -2025-07-23T19:36:54.8727148Z github.com/ava-labs/coreth/sync/client/test_network.go:52: processTest 84.6% -2025-07-23T19:36:54.8727356Z github.com/ava-labs/coreth/sync/client/test_network.go:76: Gossip 0.0% -2025-07-23T19:36:54.8727596Z github.com/ava-labs/coreth/sync/client/test_network.go:80: testResponse 100.0% -2025-07-23T19:36:54.8727829Z github.com/ava-labs/coreth/sync/client/test_network.go:89: testResponses 100.0% -2025-07-23T19:36:54.8728058Z github.com/ava-labs/coreth/sync/client/test_network.go:95: TrackBandwidth 0.0% -2025-07-23T19:36:54.8728359Z github.com/ava-labs/coreth/sync/handlers/block_request.go:36: NewBlockRequestHandler 100.0% -2025-07-23T19:36:54.8728609Z github.com/ava-labs/coreth/sync/handlers/block_request.go:49: OnBlockRequest 87.8% -2025-07-23T19:36:54.8728892Z github.com/ava-labs/coreth/sync/handlers/code_request.go:29: NewCodeRequestHandler 100.0% -2025-07-23T19:36:54.8729133Z github.com/ava-labs/coreth/sync/handlers/code_request.go:43: OnCodeRequest 82.1% -2025-07-23T19:36:54.8729355Z github.com/ava-labs/coreth/sync/handlers/code_request.go:85: isUnique 100.0% -2025-07-23T19:36:54.8729645Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:58: NewLeafsRequestHandler 100.0% -2025-07-23T19:36:54.8730033Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:81: OnLeafsRequest 89.8% -2025-07-23T19:36:54.8730287Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:186: handleRequest 73.9% -2025-07-23T19:36:54.8730549Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:230: fillFromSnapshot 69.5% -2025-07-23T19:36:54.8730819Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:333: generateRangeProof 73.3% -2025-07-23T19:36:54.8731084Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:360: verifyRangeProof 100.0% -2025-07-23T19:36:54.8731323Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:372: iterateVals 87.5% -2025-07-23T19:36:54.8731575Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:393: isRangeValid 88.9% -2025-07-23T19:36:54.8731805Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:410: nextKey 100.0% -2025-07-23T19:36:54.8732088Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:424: fillFromTrie 94.4% -2025-07-23T19:36:54.8732373Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:459: readLeafsFromSnapshot 92.3% -2025-07-23T19:36:54.8732632Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:88: IncBlockRequest 100.0% -2025-07-23T19:36:54.8733003Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:92: IncMissingBlockHash 0.0% -2025-07-23T19:36:54.8733290Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:96: UpdateBlocksReturned 100.0% -2025-07-23T19:36:54.8733608Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:100: UpdateBlockRequestProcessingTime 100.0% -2025-07-23T19:36:54.8733856Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:104: IncCodeRequest 0.0% -2025-07-23T19:36:54.8734111Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:108: IncMissingCodeHash 0.0% -2025-07-23T19:36:54.8734394Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:112: IncTooManyHashesRequested 0.0% -2025-07-23T19:36:54.8734702Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:116: IncDuplicateHashesRequested 0.0% -2025-07-23T19:36:54.8735060Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:120: UpdateCodeReadTime 0.0% -2025-07-23T19:36:54.8735352Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:124: UpdateCodeBytesReturned 0.0% -2025-07-23T19:36:54.8735606Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:128: IncLeafsRequest 100.0% -2025-07-23T19:36:54.8735884Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:132: IncInvalidLeafsRequest 0.0% -2025-07-23T19:36:54.8736203Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:136: UpdateLeafsRequestProcessingTime 100.0% -2025-07-23T19:36:54.8736471Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:140: UpdateLeafsReturned 100.0% -2025-07-23T19:36:54.8736743Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:144: UpdateReadLeafsTime 100.0% -2025-07-23T19:36:54.8737026Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:148: UpdateSnapshotReadTime 100.0% -2025-07-23T19:36:54.8737326Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:152: UpdateGenerateRangeProofTime 100.0% -2025-07-23T19:36:54.8737632Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:156: UpdateRangeProofValsReturned 100.0% -2025-07-23T19:36:54.8737875Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:160: IncMissingRoot 0.0% -2025-07-23T19:36:54.8738120Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:161: IncTrieError 0.0% -2025-07-23T19:36:54.8738360Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:162: IncProofError 0.0% -2025-07-23T19:36:54.8738625Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:163: IncSnapshotReadError 0.0% -2025-07-23T19:36:54.8738911Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:164: IncSnapshotReadAttempt 100.0% -2025-07-23T19:36:54.8739324Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:165: IncSnapshotReadSuccess 0.0% -2025-07-23T19:36:54.8739613Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:166: IncSnapshotSegmentValid 0.0% -2025-07-23T19:36:54.8739903Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:167: IncSnapshotSegmentInvalid 100.0% -2025-07-23T19:36:54.8740193Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:172: GetOrRegisterHandlerStats 66.7% -2025-07-23T19:36:54.8740467Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:214: NewNoopHandlerStats 100.0% -2025-07-23T19:36:54.8740715Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:219: IncBlockRequest 0.0% -2025-07-23T19:36:54.8740976Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:220: IncMissingBlockHash 0.0% -2025-07-23T19:36:54.8741246Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:221: UpdateBlocksReturned 0.0% -2025-07-23T19:36:54.8741562Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:222: UpdateBlockRequestProcessingTime 0.0% -2025-07-23T19:36:54.8741809Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:223: IncCodeRequest 0.0% -2025-07-23T19:36:54.8742063Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:224: IncMissingCodeHash 0.0% -2025-07-23T19:36:54.8742473Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:225: IncTooManyHashesRequested 0.0% -2025-07-23T19:36:54.8742780Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:226: IncDuplicateHashesRequested 0.0% -2025-07-23T19:36:54.8743039Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:227: UpdateCodeReadTime 0.0% -2025-07-23T19:36:54.8743323Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:228: UpdateCodeBytesReturned 0.0% -2025-07-23T19:36:54.8743573Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:229: IncLeafsRequest 0.0% -2025-07-23T19:36:54.8743847Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:230: IncInvalidLeafsRequest 0.0% -2025-07-23T19:36:54.8744168Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:231: UpdateLeafsRequestProcessingTime 0.0% -2025-07-23T19:36:54.8744435Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:232: UpdateLeafsReturned 0.0% -2025-07-23T19:36:54.8744705Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:233: UpdateReadLeafsTime 0.0% -2025-07-23T19:36:54.8745081Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:234: UpdateSnapshotReadTime 0.0% -2025-07-23T19:36:54.8745382Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:235: UpdateGenerateRangeProofTime 0.0% -2025-07-23T19:36:54.8745680Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:236: UpdateRangeProofValsReturned 0.0% -2025-07-23T19:36:54.8745924Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:237: IncMissingRoot 0.0% -2025-07-23T19:36:54.8746168Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:238: IncTrieError 0.0% -2025-07-23T19:36:54.8746411Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:239: IncProofError 0.0% -2025-07-23T19:36:54.8746678Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:240: IncSnapshotReadError 0.0% -2025-07-23T19:36:54.8746956Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:241: IncSnapshotReadAttempt 0.0% -2025-07-23T19:36:54.8747236Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:242: IncSnapshotReadSuccess 0.0% -2025-07-23T19:36:54.8747519Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:243: IncSnapshotSegmentValid 0.0% -2025-07-23T19:36:54.8747800Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:244: IncSnapshotSegmentInvalid 0.0% -2025-07-23T19:36:54.8748077Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:49: Reset 100.0% -2025-07-23T19:36:54.8748387Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:80: IncBlockRequest 100.0% -2025-07-23T19:36:54.8748833Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:86: IncMissingBlockHash 100.0% -2025-07-23T19:36:54.8749161Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:92: UpdateBlocksReturned 100.0% -2025-07-23T19:36:54.8749537Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:98: UpdateBlockRequestProcessingTime 100.0% -2025-07-23T19:36:54.8749842Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:104: IncCodeRequest 100.0% -2025-07-23T19:36:54.8750159Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:110: IncMissingCodeHash 0.0% -2025-07-23T19:36:54.8750507Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:116: IncTooManyHashesRequested 100.0% -2025-07-23T19:36:54.8750858Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:122: IncDuplicateHashesRequested 100.0% -2025-07-23T19:36:54.8751184Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:128: UpdateCodeReadTime 100.0% -2025-07-23T19:36:54.8751531Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:134: UpdateCodeBytesReturned 100.0% -2025-07-23T19:36:54.8751843Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:140: IncLeafsRequest 100.0% -2025-07-23T19:36:54.8752289Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:146: IncInvalidLeafsRequest 100.0% -2025-07-23T19:36:54.8752669Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:152: UpdateLeafsReturned 100.0% -2025-07-23T19:36:54.8753050Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:158: UpdateLeafsRequestProcessingTime 100.0% -2025-07-23T19:36:54.8753371Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:164: UpdateReadLeafsTime 100.0% -2025-07-23T19:36:54.8753733Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:170: UpdateGenerateRangeProofTime 100.0% -2025-07-23T19:36:54.8754076Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:176: UpdateSnapshotReadTime 100.0% -2025-07-23T19:36:54.8754426Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:182: UpdateRangeProofValsReturned 100.0% -2025-07-23T19:36:54.8754742Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:188: IncMissingRoot 100.0% -2025-07-23T19:36:54.8755150Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:194: IncTrieError 100.0% -2025-07-23T19:36:54.8755453Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:200: IncProofError 0.0% -2025-07-23T19:36:54.8755773Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:206: IncSnapshotReadError 0.0% -2025-07-23T19:36:54.8756109Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:212: IncSnapshotReadAttempt 100.0% -2025-07-23T19:36:54.8756448Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:218: IncSnapshotReadSuccess 100.0% -2025-07-23T19:36:54.8756794Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:224: IncSnapshotSegmentValid 100.0% -2025-07-23T19:36:54.8757145Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:230: IncSnapshotSegmentInvalid 100.0% -2025-07-23T19:36:54.8757390Z github.com/ava-labs/coreth/sync/handlers/test_providers.go:21: GetBlock 100.0% -2025-07-23T19:36:54.8757630Z github.com/ava-labs/coreth/sync/handlers/test_providers.go:29: Snapshots 100.0% -2025-07-23T19:36:54.8757883Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:63: newCodeSyncer 100.0% -2025-07-23T19:36:54.8758103Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:75: start 93.3% -2025-07-23T19:36:54.8758399Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:107: addCodeToFetchFromDBToQueue 55.0% -2025-07-23T19:36:54.8758621Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:143: work 100.0% -2025-07-23T19:36:54.8759008Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:180: fulfillCodeRequest 92.3% -2025-07-23T19:36:54.8759239Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:204: addCode 91.7% -2025-07-23T19:36:54.8759531Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:230: notifyAccountTrieCompleted 100.0% -2025-07-23T19:36:54.8759794Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:236: addHashesToQueue 100.0% -2025-07-23T19:36:54.8760025Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:249: setError 100.0% -2025-07-23T19:36:54.8760243Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:257: Done 100.0% -2025-07-23T19:36:54.8760501Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:65: NewStateSyncer 84.6% -2025-07-23T19:36:54.8760780Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:113: onStorageTrieFinished 80.0% -2025-07-23T19:36:54.8761048Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:136: onMainTrieFinished 87.5% -2025-07-23T19:36:54.8761308Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:156: onSyncComplete 100.0% -2025-07-23T19:36:54.8761577Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:165: storageTrieProducer 87.0% -2025-07-23T19:36:54.8761915Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:220: Start 100.0% -2025-07-23T19:36:54.8762152Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:247: Done 100.0% -2025-07-23T19:36:54.8762424Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:250: addTrieInProgress 100.0% -2025-07-23T19:36:54.8762707Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:259: removeTrieInProgress 85.7% -2025-07-23T19:36:54.8762959Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:274: onSyncFailure 85.7% -2025-07-23T19:36:54.8763338Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_sync.go:21: FillAccountsWithOverlappingStorage 100.0% -2025-07-23T19:36:54.8763628Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:29: GenerateTrie 66.7% -2025-07-23T19:36:54.8763895Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:39: FillTrie 95.7% -2025-07-23T19:36:54.8764230Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:78: AssertTrieConsistency 81.5% -2025-07-23T19:36:54.8764510Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:118: CorruptTrie 71.4% -2025-07-23T19:36:54.8764902Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:146: FillAccounts 77.3% -2025-07-23T19:36:54.8765184Z github.com/ava-labs/coreth/sync/statesync/sync_helpers.go:16: writeAccountSnapshot 100.0% -2025-07-23T19:36:54.8765501Z github.com/ava-labs/coreth/sync/statesync/sync_helpers.go:23: writeAccountStorageSnapshotFromTrie 0.0% -2025-07-23T19:36:54.8765745Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:20: NewTrieQueue 100.0% -2025-07-23T19:36:54.8766023Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:28: clearIfRootDoesNotMatch 66.7% -2025-07-23T19:36:54.8766288Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:50: RegisterStorageTrie 100.0% -2025-07-23T19:36:54.8766539Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:56: StorageTrieDone 100.0% -2025-07-23T19:36:54.8766776Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:65: getNextTrie 100.0% -2025-07-23T19:36:54.8767010Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:97: countTries 100.0% -2025-07-23T19:36:54.8767260Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:66: NewTrieToSync 100.0% -2025-07-23T19:36:54.8767505Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:86: loadSegments 76.0% -2025-07-23T19:36:54.8767760Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:142: startSyncing 100.0% -2025-07-23T19:36:54.8768129Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:152: addSegment 100.0% -2025-07-23T19:36:54.8768392Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:166: segmentFinished 74.4% -2025-07-23T19:36:54.8768680Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:245: createSegmentsIfNeeded 66.7% -2025-07-23T19:36:54.8768934Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:254: shouldSegment 83.3% -2025-07-23T19:36:54.8769190Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:277: createSegments 0.0% -2025-07-23T19:36:54.8769418Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:336: String 0.0% -2025-07-23T19:36:54.8769644Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:346: Root 100.0% -2025-07-23T19:36:54.8769880Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:347: Account 100.0% -2025-07-23T19:36:54.8770104Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:348: End 100.0% -2025-07-23T19:36:54.8770353Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:349: NodeType 100.0% -2025-07-23T19:36:54.8770585Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:350: OnStart 100.0% -2025-07-23T19:36:54.8770824Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:351: OnFinish 100.0% -2025-07-23T19:36:54.8771162Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:353: Start 100.0% -2025-07-23T19:36:54.8771403Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:360: OnLeafs 92.9% -2025-07-23T19:36:54.8771656Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:391: estimateSize 83.3% -2025-07-23T19:36:54.8771891Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:415: addPadding 0.0% -2025-07-23T19:36:54.8772157Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:45: newTrieSyncStats 100.0% -2025-07-23T19:36:54.8772423Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:59: incTriesSegmented 0.0% -2025-07-23T19:36:54.8772658Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:65: incLeafs 72.7% -2025-07-23T19:36:54.8772976Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:84: estimateSegmentsInProgressTime 25.0% -2025-07-23T19:36:54.8773223Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:101: trieDone 100.0% -2025-07-23T19:36:54.8773463Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:118: updateETA 76.9% -2025-07-23T19:36:54.8773735Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:145: setTriesRemaining 100.0% -2025-07-23T19:36:54.8773967Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:155: roundETA 80.0% -2025-07-23T19:36:54.8774234Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:41: NewMainTrieTask 100.0% -2025-07-23T19:36:54.8774484Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:47: IterateLeafs 100.0% -2025-07-23T19:36:54.8774719Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:53: OnStart 100.0% -2025-07-23T19:36:54.8775052Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:57: OnFinish 100.0% -2025-07-23T19:36:54.8775286Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:61: OnLeafs 92.3% -2025-07-23T19:36:54.8775563Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:97: NewStorageTrieTask 100.0% -2025-07-23T19:36:54.8775819Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:105: IterateLeafs 100.0% -2025-07-23T19:36:54.8776050Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:111: OnStart 54.5% -2025-07-23T19:36:54.8776293Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:138: OnFinish 100.0% -2025-07-23T19:36:54.8776528Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:142: OnLeafs 100.0% -2025-07-23T19:36:54.8776746Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:25: Next 85.7% -2025-07-23T19:36:54.8777077Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:37: Key 66.7% -2025-07-23T19:36:54.8777291Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:44: Value 66.7% -2025-07-23T19:36:54.8777507Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:51: Error 66.7% -2025-07-23T19:36:54.8777720Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:63: Key 100.0% -2025-07-23T19:36:54.8777937Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:67: Value 100.0% -2025-07-23T19:36:54.8778204Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:38: NewAccountTrie 100.0% -2025-07-23T19:36:54.8778441Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:53: GetAccount 87.5% -2025-07-23T19:36:54.8778684Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:87: GetStorage 72.2% -2025-07-23T19:36:54.8778942Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:123: UpdateAccount 88.9% -2025-07-23T19:36:54.8779202Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:138: UpdateStorage 92.3% -2025-07-23T19:36:54.8779465Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:159: DeleteAccount 100.0% -2025-07-23T19:36:54.8779719Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:170: DeleteStorage 100.0% -2025-07-23T19:36:54.8780076Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:186: Hash 60.0% -2025-07-23T19:36:54.8780308Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:195: hash 85.7% -2025-07-23T19:36:54.8780538Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:209: Commit 85.7% -2025-07-23T19:36:54.8780819Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:229: UpdateContractCode 100.0% -2025-07-23T19:36:54.8781046Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:234: GetKey 0.0% -2025-07-23T19:36:54.8781295Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:239: NodeIterator 0.0% -2025-07-23T19:36:54.8781529Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:244: Prove 0.0% -2025-07-23T19:36:54.8781751Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:248: Copy 57.1% -2025-07-23T19:36:54.8782018Z github.com/ava-labs/coreth/triedb/firewood/database.go:79: BackendConstructor 100.0% -2025-07-23T19:36:54.8782227Z github.com/ava-labs/coreth/triedb/firewood/database.go:97: New 66.7% -2025-07-23T19:36:54.8782463Z github.com/ava-labs/coreth/triedb/firewood/database.go:126: validatePath 50.0% -2025-07-23T19:36:54.8782689Z github.com/ava-labs/coreth/triedb/firewood/database.go:163: Scheme 100.0% -2025-07-23T19:36:54.8782919Z github.com/ava-labs/coreth/triedb/firewood/database.go:168: Initialized 66.7% -2025-07-23T19:36:54.8783145Z github.com/ava-labs/coreth/triedb/firewood/database.go:182: Update 93.8% -2025-07-23T19:36:54.8783367Z github.com/ava-labs/coreth/triedb/firewood/database.go:226: propose 82.6% -2025-07-23T19:36:54.8783588Z github.com/ava-labs/coreth/triedb/firewood/database.go:291: Commit 82.8% -2025-07-23T19:36:54.8783809Z github.com/ava-labs/coreth/triedb/firewood/database.go:353: Size 100.0% -2025-07-23T19:36:54.8784037Z github.com/ava-labs/coreth/triedb/firewood/database.go:358: Reference 0.0% -2025-07-23T19:36:54.8784276Z github.com/ava-labs/coreth/triedb/firewood/database.go:370: Dereference 0.0% -2025-07-23T19:36:54.8784480Z github.com/ava-labs/coreth/triedb/firewood/database.go:374: Cap 0.0% -2025-07-23T19:36:54.8784694Z github.com/ava-labs/coreth/triedb/firewood/database.go:378: Close 100.0% -2025-07-23T19:36:54.8785045Z github.com/ava-labs/coreth/triedb/firewood/database.go:392: createProposal 66.7% -2025-07-23T19:36:54.8785335Z github.com/ava-labs/coreth/triedb/firewood/database.go:432: cleanupCommittedProposal 100.0% -2025-07-23T19:36:54.8785567Z github.com/ava-labs/coreth/triedb/firewood/database.go:452: dereference 85.7% -2025-07-23T19:36:54.8785984Z github.com/ava-labs/coreth/triedb/firewood/database.go:471: removeProposalFromMap 100.0% -2025-07-23T19:36:54.8786205Z github.com/ava-labs/coreth/triedb/firewood/database.go:490: Reader 100.0% -2025-07-23T19:36:54.8786419Z github.com/ava-labs/coreth/triedb/firewood/database.go:505: Node 66.7% -2025-07-23T19:36:54.8786671Z github.com/ava-labs/coreth/triedb/firewood/database.go:519: getProposalHash 81.8% -2025-07-23T19:36:54.8786943Z github.com/ava-labs/coreth/triedb/firewood/database.go:563: arrangeKeyValuePairs 100.0% -2025-07-23T19:36:54.8787212Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:18: NewStorageTrie 100.0% -2025-07-23T19:36:54.8787440Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:28: Commit 100.0% -2025-07-23T19:36:54.8787667Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:33: Hash 100.0% -2025-07-23T19:36:54.8787882Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:39: Copy 0.0% -2025-07-23T19:36:54.8788142Z github.com/ava-labs/coreth/triedb/hashdb/database.go:119: BackendConstructor 100.0% -2025-07-23T19:36:54.8788373Z github.com/ava-labs/coreth/triedb/hashdb/database.go:181: forChildren 100.0% -2025-07-23T19:36:54.8788575Z github.com/ava-labs/coreth/triedb/hashdb/database.go:189: New 83.3% -2025-07-23T19:36:54.8788974Z github.com/ava-labs/coreth/triedb/hashdb/database.go:209: insert 100.0% -2025-07-23T19:36:54.8789187Z github.com/ava-labs/coreth/triedb/hashdb/database.go:239: node 89.3% -2025-07-23T19:36:54.8789404Z github.com/ava-labs/coreth/triedb/hashdb/database.go:295: Reference 100.0% -2025-07-23T19:36:54.8789627Z github.com/ava-labs/coreth/triedb/hashdb/database.go:303: reference 100.0% -2025-07-23T19:36:54.8789848Z github.com/ava-labs/coreth/triedb/hashdb/database.go:328: Dereference 88.2% -2025-07-23T19:36:54.8790071Z github.com/ava-labs/coreth/triedb/hashdb/database.go:357: dereference 100.0% -2025-07-23T19:36:54.8790320Z github.com/ava-labs/coreth/triedb/hashdb/database.go:410: writeFlushItems 71.4% -2025-07-23T19:36:54.8790521Z github.com/ava-labs/coreth/triedb/hashdb/database.go:438: Cap 0.0% -2025-07-23T19:36:54.8790735Z github.com/ava-labs/coreth/triedb/hashdb/database.go:518: Commit 87.9% -2025-07-23T19:36:54.8790947Z github.com/ava-labs/coreth/triedb/hashdb/database.go:576: commit 90.9% -2025-07-23T19:36:54.8791197Z github.com/ava-labs/coreth/triedb/hashdb/database.go:607: removeFromDirties 100.0% -2025-07-23T19:36:54.8791423Z github.com/ava-labs/coreth/triedb/hashdb/database.go:646: Initialized 100.0% -2025-07-23T19:36:54.8791630Z github.com/ava-labs/coreth/triedb/hashdb/database.go:654: Update 80.0% -2025-07-23T19:36:54.8791835Z github.com/ava-labs/coreth/triedb/hashdb/database.go:674: update 95.2% -2025-07-23T19:36:54.8792041Z github.com/ava-labs/coreth/triedb/hashdb/database.go:721: Size 100.0% -2025-07-23T19:36:54.8792248Z github.com/ava-labs/coreth/triedb/hashdb/database.go:733: Close 100.0% -2025-07-23T19:36:54.8792467Z github.com/ava-labs/coreth/triedb/hashdb/database.go:741: Scheme 100.0% -2025-07-23T19:36:54.8792677Z github.com/ava-labs/coreth/triedb/hashdb/database.go:747: Reader 100.0% -2025-07-23T19:36:54.8792882Z github.com/ava-labs/coreth/triedb/hashdb/database.go:761: Node 100.0% -2025-07-23T19:36:54.8793137Z github.com/ava-labs/coreth/triedb/pathdb/database.go:108: BackendConstructor 0.0% -2025-07-23T19:36:54.8793351Z github.com/ava-labs/coreth/triedb/pathdb/database.go:114: sanitize 60.0% -2025-07-23T19:36:54.8793556Z github.com/ava-labs/coreth/triedb/pathdb/database.go:163: New 100.0% -2025-07-23T19:36:54.8793769Z github.com/ava-labs/coreth/triedb/pathdb/database.go:231: Reader 100.0% -2025-07-23T19:36:54.8793977Z github.com/ava-labs/coreth/triedb/pathdb/database.go:246: Update 71.4% -2025-07-23T19:36:54.8794189Z github.com/ava-labs/coreth/triedb/pathdb/database.go:269: Commit 80.0% -2025-07-23T19:36:54.8794487Z github.com/ava-labs/coreth/triedb/pathdb/database.go:284: Disable 72.7% -2025-07-23T19:36:54.8794693Z github.com/ava-labs/coreth/triedb/pathdb/database.go:310: Enable 88.2% -2025-07-23T19:36:54.8795015Z github.com/ava-labs/coreth/triedb/pathdb/database.go:356: Recover 100.0% -2025-07-23T19:36:54.8795247Z github.com/ava-labs/coreth/triedb/pathdb/database.go:362: Recoverable 100.0% -2025-07-23T19:36:54.8795457Z github.com/ava-labs/coreth/triedb/pathdb/database.go:394: Close 100.0% -2025-07-23T19:36:54.8795658Z github.com/ava-labs/coreth/triedb/pathdb/database.go:416: Size 0.0% -2025-07-23T19:36:54.8795881Z github.com/ava-labs/coreth/triedb/pathdb/database.go:430: Initialized 0.0% -2025-07-23T19:36:54.8796114Z github.com/ava-labs/coreth/triedb/pathdb/database.go:445: SetBufferSize 0.0% -2025-07-23T19:36:54.8796317Z github.com/ava-labs/coreth/triedb/pathdb/database.go:458: Scheme 0.0% -2025-07-23T19:36:54.8796557Z github.com/ava-labs/coreth/triedb/pathdb/database.go:464: modifyAllowed 60.0% -2025-07-23T19:36:54.8796789Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:59: newDiffLayer 100.0% -2025-07-23T19:36:54.8797008Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:91: rootHash 100.0% -2025-07-23T19:36:54.8797341Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:96: stateID 100.0% -2025-07-23T19:36:54.8797578Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:102: parentLayer 100.0% -2025-07-23T19:36:54.8797783Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:112: node 82.4% -2025-07-23T19:36:54.8797994Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:146: Node 100.0% -2025-07-23T19:36:54.8798210Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:152: update 100.0% -2025-07-23T19:36:54.8798430Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:157: persist 77.8% -2025-07-23T19:36:54.8798659Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:179: diffToDisk 75.0% -2025-07-23T19:36:54.8798890Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:57: newDiskLayer 100.0% -2025-07-23T19:36:54.8799109Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:74: rootHash 100.0% -2025-07-23T19:36:54.8799327Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:79: stateID 100.0% -2025-07-23T19:36:54.8799558Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:85: parentLayer 100.0% -2025-07-23T19:36:54.8799772Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:91: isStale 100.0% -2025-07-23T19:36:54.8799988Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:99: markStale 80.0% -2025-07-23T19:36:54.8800197Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:111: Node 73.0% -2025-07-23T19:36:54.8800411Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:175: update 100.0% -2025-07-23T19:36:54.8800624Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:182: commit 85.7% -2025-07-23T19:36:54.8800841Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:252: revert 0.0% -2025-07-23T19:36:54.8801073Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:300: setBufferSize 0.0% -2025-07-23T19:36:54.8801279Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:311: size 0.0% -2025-07-23T19:36:54.8801509Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:322: resetCache 83.3% -2025-07-23T19:36:54.8801731Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:342: newHasher 100.0% -2025-07-23T19:36:54.8801941Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:346: hash 100.0% -2025-07-23T19:36:54.8802160Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:350: release 100.0% -2025-07-23T19:36:54.8802425Z github.com/ava-labs/coreth/triedb/pathdb/errors.go:67: newUnexpectedNodeError 0.0% -2025-07-23T19:36:54.8802638Z github.com/ava-labs/coreth/triedb/pathdb/history.go:158: encode 100.0% -2025-07-23T19:36:54.8802965Z github.com/ava-labs/coreth/triedb/pathdb/history.go:169: decode 100.0% -2025-07-23T19:36:54.8803176Z github.com/ava-labs/coreth/triedb/pathdb/history.go:185: encode 100.0% -2025-07-23T19:36:54.8803384Z github.com/ava-labs/coreth/triedb/pathdb/history.go:194: decode 100.0% -2025-07-23T19:36:54.8803594Z github.com/ava-labs/coreth/triedb/pathdb/history.go:210: encode 87.5% -2025-07-23T19:36:54.8803801Z github.com/ava-labs/coreth/triedb/pathdb/history.go:223: decode 62.5% -2025-07-23T19:36:54.8804018Z github.com/ava-labs/coreth/triedb/pathdb/history.go:263: newHistory 92.9% -2025-07-23T19:36:54.8804227Z github.com/ava-labs/coreth/triedb/pathdb/history.go:304: encode 100.0% -2025-07-23T19:36:54.8804431Z github.com/ava-labs/coreth/triedb/pathdb/history.go:365: verify 60.0% -2025-07-23T19:36:54.8804650Z github.com/ava-labs/coreth/triedb/pathdb/history.go:376: readAccount 75.0% -2025-07-23T19:36:54.8804996Z github.com/ava-labs/coreth/triedb/pathdb/history.go:409: readStorage 76.2% -2025-07-23T19:36:54.8805203Z github.com/ava-labs/coreth/triedb/pathdb/history.go:456: decode 85.0% -2025-07-23T19:36:54.8805428Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:85: loadJournal 77.3% -2025-07-23T19:36:54.8805759Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:127: loadLayers 100.0% -2025-07-23T19:36:54.8806002Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:149: loadDiskLayer 54.5% -2025-07-23T19:36:54.8806239Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:190: loadDiffLayer 83.3% -2025-07-23T19:36:54.8806449Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:257: journal 77.8% -2025-07-23T19:36:54.8806662Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:291: journal 80.0% -2025-07-23T19:36:54.8806868Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:350: Journal 76.0% -2025-07-23T19:36:54.8807099Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:52: newLayerTree 100.0% -2025-07-23T19:36:54.8807318Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:60: reset 100.0% -2025-07-23T19:36:54.8807518Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:73: get 100.0% -2025-07-23T19:36:54.8807726Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:82: forEach 0.0% -2025-07-23T19:36:54.8807938Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:92: len 100.0% -2025-07-23T19:36:54.8808138Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:100: add 81.8% -2025-07-23T19:36:54.8808344Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:125: cap 79.0% -2025-07-23T19:36:54.8808557Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:236: bottom 90.9% -2025-07-23T19:36:54.8808800Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:54: newNodeBuffer 71.4% -2025-07-23T19:36:54.8809010Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:73: node 27.3% -2025-07-23T19:36:54.8809228Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:94: commit 100.0% -2025-07-23T19:36:54.8809448Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:139: revert 0.0% -2025-07-23T19:36:54.8809675Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:189: updateSize 57.1% -2025-07-23T19:36:54.8809895Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:201: reset 100.0% -2025-07-23T19:36:54.8810109Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:209: empty 0.0% -2025-07-23T19:36:54.8810325Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:215: setSize 0.0% -2025-07-23T19:36:54.8810534Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:222: flush 88.2% -2025-07-23T19:36:54.8810773Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:254: writeNodes 100.0% -2025-07-23T19:36:54.8811002Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:283: cacheKey 100.0% -2025-07-23T19:36:54.8811380Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:55: newTestHasher 80.0% -2025-07-23T19:36:54.8811582Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:71: Get 0.0% -2025-07-23T19:36:54.8811798Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:81: Update 100.0% -2025-07-23T19:36:54.8812024Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:87: Delete 100.0% -2025-07-23T19:36:54.8812235Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:94: Commit 93.8% -2025-07-23T19:36:54.8812446Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:126: hash 100.0% -2025-07-23T19:36:54.8812690Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:152: newHashLoader 100.0% -2025-07-23T19:36:54.8812901Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:160: OpenTrie 0.0% -2025-07-23T19:36:54.8813149Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:165: OpenStorageTrie 0.0% -2025-07-23T19:36:54.8813348Z github.com/ava-labs/coreth/utils/address_range.go:20: Contains 0.0% -2025-07-23T19:36:54.8813588Z github.com/ava-labs/coreth/utils/bounded_workers.go:22: NewBoundedWorkers 0.0% -2025-07-23T19:36:54.8813808Z github.com/ava-labs/coreth/utils/bounded_workers.go:31: startWorker 0.0% -2025-07-23T19:36:54.8814009Z github.com/ava-labs/coreth/utils/bounded_workers.go:51: Execute 0.0% -2025-07-23T19:36:54.8814288Z github.com/ava-labs/coreth/utils/bounded_workers.go:75: Wait 0.0% -2025-07-23T19:36:54.8814472Z github.com/ava-labs/coreth/utils/bytes.go:9: IncrOne 100.0% -2025-07-23T19:36:54.8814680Z github.com/ava-labs/coreth/utils/bytes.go:23: HashSliceToBytes 100.0% -2025-07-23T19:36:54.8814987Z github.com/ava-labs/coreth/utils/bytes.go:33: BytesToHashSlice 100.0% -2025-07-23T19:36:54.8815214Z github.com/ava-labs/coreth/utils/metered_cache.go:37: NewMeteredCache 0.0% -2025-07-23T19:36:54.8815456Z github.com/ava-labs/coreth/utils/metered_cache.go:60: updateStatsIfNeeded 0.0% -2025-07-23T19:36:54.8815646Z github.com/ava-labs/coreth/utils/metered_cache.go:81: Del 0.0% -2025-07-23T19:36:54.8815832Z github.com/ava-labs/coreth/utils/metered_cache.go:86: Get 0.0% -2025-07-23T19:36:54.8816034Z github.com/ava-labs/coreth/utils/metered_cache.go:91: GetBig 0.0% -2025-07-23T19:36:54.8816220Z github.com/ava-labs/coreth/utils/metered_cache.go:96: Has 0.0% -2025-07-23T19:36:54.8816416Z github.com/ava-labs/coreth/utils/metered_cache.go:101: HasGet 0.0% -2025-07-23T19:36:54.8816610Z github.com/ava-labs/coreth/utils/metered_cache.go:106: Set 0.0% -2025-07-23T19:36:54.8816801Z github.com/ava-labs/coreth/utils/metered_cache.go:111: SetBig 0.0% -2025-07-23T19:36:54.8816987Z github.com/ava-labs/coreth/utils/numbers.go:11: NewUint64 0.0% -2025-07-23T19:36:54.8817190Z github.com/ava-labs/coreth/utils/numbers.go:13: TimeToNewUint64 0.0% -2025-07-23T19:36:54.8817382Z github.com/ava-labs/coreth/utils/numbers.go:18: Uint64ToTime 0.0% -2025-07-23T19:36:54.8817590Z github.com/ava-labs/coreth/utils/numbers.go:25: Uint64PtrEqual 0.0% -2025-07-23T19:36:54.8817780Z github.com/ava-labs/coreth/utils/numbers.go:34: BigEqual 100.0% -2025-07-23T19:36:54.8817987Z github.com/ava-labs/coreth/utils/numbers.go:43: BigEqualUint64 100.0% -2025-07-23T19:36:54.8818222Z github.com/ava-labs/coreth/utils/numbers.go:51: BigLessOrEqualUint64 100.0% -2025-07-23T19:36:54.8818421Z github.com/ava-labs/coreth/utils/rpc/handler.go:16: NewHandler 0.0% -2025-07-23T19:36:54.8818641Z github.com/ava-labs/coreth/utils/snow.go:17: NewTestValidatorState 0.0% -2025-07-23T19:36:54.8818842Z github.com/ava-labs/coreth/utils/utilstest/key.go:24: NewKey 100.0% -2025-07-23T19:36:54.8819036Z github.com/ava-labs/coreth/warp/backend.go:65: NewBackend 100.0% -2025-07-23T19:36:54.8819262Z github.com/ava-labs/coreth/warp/backend.go:88: initOffChainMessages 76.9% -2025-07-23T19:36:54.8819451Z github.com/ava-labs/coreth/warp/backend.go:113: AddMessage 71.4% -2025-07-23T19:36:54.8819813Z github.com/ava-labs/coreth/warp/backend.go:130: GetMessageSignature 100.0% -2025-07-23T19:36:54.8820035Z github.com/ava-labs/coreth/warp/backend.go:144: GetBlockSignature 73.3% -2025-07-23T19:36:54.8820225Z github.com/ava-labs/coreth/warp/backend.go:172: GetMessage 83.3% -2025-07-23T19:36:54.8820426Z github.com/ava-labs/coreth/warp/backend.go:194: signMessage 80.0% -2025-07-23T19:36:54.8820607Z github.com/ava-labs/coreth/warp/client.go:31: NewClient 0.0% -2025-07-23T19:36:54.8820794Z github.com/ava-labs/coreth/warp/client.go:41: GetMessage 0.0% -2025-07-23T19:36:54.8821012Z github.com/ava-labs/coreth/warp/client.go:49: GetMessageSignature 0.0% -2025-07-23T19:36:54.8821253Z github.com/ava-labs/coreth/warp/client.go:57: GetMessageAggregateSignature 0.0% -2025-07-23T19:36:54.8821461Z github.com/ava-labs/coreth/warp/client.go:65: GetBlockSignature 0.0% -2025-07-23T19:36:54.8821698Z github.com/ava-labs/coreth/warp/client.go:73: GetBlockAggregateSignature 0.0% -2025-07-23T19:36:54.8821878Z github.com/ava-labs/coreth/warp/service.go:32: NewAPI 0.0% -2025-07-23T19:36:54.8822069Z github.com/ava-labs/coreth/warp/service.go:42: GetMessage 0.0% -2025-07-23T19:36:54.8822390Z github.com/ava-labs/coreth/warp/service.go:51: GetMessageSignature 0.0% -2025-07-23T19:36:54.8822609Z github.com/ava-labs/coreth/warp/service.go:64: GetBlockSignature 0.0% -2025-07-23T19:36:54.8822855Z github.com/ava-labs/coreth/warp/service.go:73: GetMessageAggregateSignature 0.0% -2025-07-23T19:36:54.8823093Z github.com/ava-labs/coreth/warp/service.go:82: GetBlockAggregateSignature 0.0% -2025-07-23T19:36:54.8823312Z github.com/ava-labs/coreth/warp/service.go:95: aggregateSignatures 0.0% -2025-07-23T19:36:54.8823526Z github.com/ava-labs/coreth/warp/validators/state.go:31: NewState 100.0% -2025-07-23T19:36:54.8823768Z github.com/ava-labs/coreth/warp/validators/state.go:40: GetValidatorSet 100.0% -2025-07-23T19:36:54.8823985Z github.com/ava-labs/coreth/warp/verifier_backend.go:23: Verify 76.9% -2025-07-23T19:36:54.8824234Z github.com/ava-labs/coreth/warp/verifier_backend.go:58: verifyBlockMessage 100.0% -2025-07-23T19:36:54.8824468Z github.com/ava-labs/coreth/warp/verifier_stats.go:14: newVerifierStats 100.0% -2025-07-23T19:36:54.8824724Z github.com/ava-labs/coreth/warp/verifier_stats.go:21: IncBlockValidationFail 100.0% -2025-07-23T19:36:54.8825063Z github.com/ava-labs/coreth/warp/verifier_stats.go:25: IncMessageParseFail 100.0% -2025-07-23T19:36:54.8825324Z github.com/ava-labs/coreth/warp/warptest/block_client.go:23: GetAcceptedBlock 100.0% -2025-07-23T19:36:54.8825575Z github.com/ava-labs/coreth/warp/warptest/block_client.go:30: MakeBlockClient 100.0% -2025-07-23T19:36:54.8825685Z total: (statements) 60.0% -2025-07-23T19:36:54.8883080Z Post job cleanup. -2025-07-23T19:36:55.0547277Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:36:55.0585562Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:36:55.0609720Z /home/runner/go/pkg/mod -2025-07-23T19:36:55.0640446Z /home/runner/.cache/go-build -2025-07-23T19:36:55.0646868Z Cache hit occurred on the primary key setup-go-Linux-x64-ubuntu22-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d, not saving cache. -2025-07-23T19:36:55.0786007Z Post job cleanup. -2025-07-23T19:36:55.1769229Z [command]/usr/bin/git version -2025-07-23T19:36:55.1814134Z git version 2.50.1 -2025-07-23T19:36:55.1857237Z Temporarily overriding HOME='/home/runner/work/_temp/789b75b4-8f13-4019-92ec-fa3e46783192' before making global git config changes -2025-07-23T19:36:55.1857790Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:36:55.1862478Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:36:55.1897602Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:36:55.1930041Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:36:55.2163989Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:36:55.2186106Z http.https://github.com/.extraheader -2025-07-23T19:36:55.2198906Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader -2025-07-23T19:36:55.2229962Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:36:55.2559535Z Cleaning up orphan processes diff --git a/logs_42241282643/4_Golang Unit Tests (macos-latest).txt b/logs_42241282643/4_Golang Unit Tests (macos-latest).txt deleted file mode 100644 index f57af94188..0000000000 --- a/logs_42241282643/4_Golang Unit Tests (macos-latest).txt +++ /dev/null @@ -1,258 +0,0 @@ -2025-07-23T19:28:55.6470340Z Current runner version: '2.326.0' -2025-07-23T19:28:55.6485630Z ##[group]Operating System -2025-07-23T19:28:55.6486070Z macOS -2025-07-23T19:28:55.6486460Z 14.7.6 -2025-07-23T19:28:55.6486750Z 23H626 -2025-07-23T19:28:55.6487130Z ##[endgroup] -2025-07-23T19:28:55.6487440Z ##[group]Runner Image -2025-07-23T19:28:55.6487780Z Image: macos-14-arm64 -2025-07-23T19:28:55.6488090Z Version: 20250715.1663 -2025-07-23T19:28:55.6488820Z Included Software: https://github.com/actions/runner-images/blob/macos-14-arm64/20250715.1663/images/macos/macos-14-arm64-Readme.md -2025-07-23T19:28:55.6489730Z Image Release: https://github.com/actions/runner-images/releases/tag/macos-14-arm64%2F20250715.1663 -2025-07-23T19:28:55.6490290Z ##[endgroup] -2025-07-23T19:28:55.6490610Z ##[group]Runner Image Provisioner -2025-07-23T19:28:55.6490980Z 2.0.449.1+6d46f4794670abc677653e70ad733fc4b7478209 -2025-07-23T19:28:55.6491360Z ##[endgroup] -2025-07-23T19:28:55.6492780Z ##[group]GITHUB_TOKEN Permissions -2025-07-23T19:28:55.6493760Z Actions: write -2025-07-23T19:28:55.6494080Z Attestations: write -2025-07-23T19:28:55.6494420Z Checks: write -2025-07-23T19:28:55.6494710Z Contents: write -2025-07-23T19:28:55.6495050Z Deployments: write -2025-07-23T19:28:55.6495400Z Discussions: write -2025-07-23T19:28:55.6495700Z Issues: write -2025-07-23T19:28:55.6495980Z Metadata: read -2025-07-23T19:28:55.6496280Z Models: read -2025-07-23T19:28:55.6496560Z Packages: write -2025-07-23T19:28:55.6496860Z Pages: write -2025-07-23T19:28:55.6497140Z PullRequests: write -2025-07-23T19:28:55.6497460Z RepositoryProjects: write -2025-07-23T19:28:55.6497770Z SecurityEvents: write -2025-07-23T19:28:55.6498080Z Statuses: write -2025-07-23T19:28:55.6498380Z ##[endgroup] -2025-07-23T19:28:55.6499520Z Secret source: Actions -2025-07-23T19:28:55.6499910Z Prepare workflow directory -2025-07-23T19:28:55.6698660Z Prepare all required actions -2025-07-23T19:28:55.6723800Z Getting action download info -2025-07-23T19:28:55.9826810Z ##[group]Download immutable action package 'actions/checkout@v4' -2025-07-23T19:28:55.9827450Z Version: 4.2.2 -2025-07-23T19:28:55.9828020Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 -2025-07-23T19:28:55.9828770Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 -2025-07-23T19:28:55.9829220Z ##[endgroup] -2025-07-23T19:28:56.3134410Z ##[group]Download immutable action package 'actions/setup-go@v5' -2025-07-23T19:28:56.3135570Z Version: 5.5.0 -2025-07-23T19:28:56.3136070Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb -2025-07-23T19:28:56.3136680Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 -2025-07-23T19:28:56.3137140Z ##[endgroup] -2025-07-23T19:28:57.0638010Z Complete job name: Golang Unit Tests (macos-latest) -2025-07-23T19:28:57.0964790Z ##[group]Run actions/checkout@v4 -2025-07-23T19:28:57.0965290Z with: -2025-07-23T19:28:57.0965580Z repository: ava-labs/coreth -2025-07-23T19:28:57.0966020Z token: *** -2025-07-23T19:28:57.0966290Z ssh-strict: true -2025-07-23T19:28:57.0966580Z ssh-user: git -2025-07-23T19:28:57.0966890Z persist-credentials: true -2025-07-23T19:28:57.0967210Z clean: true -2025-07-23T19:28:57.0967500Z sparse-checkout-cone-mode: true -2025-07-23T19:28:57.0967850Z fetch-depth: 1 -2025-07-23T19:28:57.0968130Z fetch-tags: false -2025-07-23T19:28:57.0968500Z show-progress: true -2025-07-23T19:28:57.0968800Z lfs: false -2025-07-23T19:28:57.0969090Z submodules: false -2025-07-23T19:28:57.0969390Z set-safe-directory: true -2025-07-23T19:28:57.0969810Z ##[endgroup] -2025-07-23T19:28:57.3790940Z Syncing repository: ava-labs/coreth -2025-07-23T19:28:57.3792280Z ##[group]Getting Git version info -2025-07-23T19:28:57.3792780Z Working directory is '/Users/runner/work/coreth/coreth' -2025-07-23T19:28:57.3814620Z [command]/opt/homebrew/bin/git version -2025-07-23T19:28:57.4339280Z git version 2.50.1 -2025-07-23T19:28:57.4362650Z ##[endgroup] -2025-07-23T19:28:57.4368270Z Copying '/Users/runner/.gitconfig' to '/Users/runner/work/_temp/8fdf0996-2c77-4556-aa33-ff5ddfd5426f/.gitconfig' -2025-07-23T19:28:57.4374250Z Temporarily overriding HOME='/Users/runner/work/_temp/8fdf0996-2c77-4556-aa33-ff5ddfd5426f' before making global git config changes -2025-07-23T19:28:57.4375240Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:28:57.4377810Z [command]/opt/homebrew/bin/git config --global --add safe.directory /Users/runner/work/coreth/coreth -2025-07-23T19:28:57.4445260Z Deleting the contents of '/Users/runner/work/coreth/coreth' -2025-07-23T19:28:57.4447090Z ##[group]Initializing the repository -2025-07-23T19:28:57.4450960Z [command]/opt/homebrew/bin/git init /Users/runner/work/coreth/coreth -2025-07-23T19:28:57.4585280Z hint: Using 'master' as the name for the initial branch. This default branch name -2025-07-23T19:28:57.4586570Z hint: is subject to change. To configure the initial branch name to use in all -2025-07-23T19:28:57.4587450Z hint: of your new repositories, which will suppress this warning, call: -2025-07-23T19:28:57.4587960Z hint: -2025-07-23T19:28:57.4588360Z hint: git config --global init.defaultBranch -2025-07-23T19:28:57.4588900Z hint: -2025-07-23T19:28:57.4589330Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and -2025-07-23T19:28:57.4589990Z hint: 'development'. The just-created branch can be renamed via this command: -2025-07-23T19:28:57.4590510Z hint: -2025-07-23T19:28:57.4590800Z hint: git branch -m -2025-07-23T19:28:57.4591140Z hint: -2025-07-23T19:28:57.4591590Z hint: Disable this message with "git config set advice.defaultBranchName false" -2025-07-23T19:28:57.4592290Z Initialized empty Git repository in /Users/runner/work/coreth/coreth/.git/ -2025-07-23T19:28:57.4593630Z [command]/opt/homebrew/bin/git remote add origin https://github.com/ava-labs/coreth -2025-07-23T19:28:57.4643800Z ##[endgroup] -2025-07-23T19:28:57.4644350Z ##[group]Disabling automatic garbage collection -2025-07-23T19:28:57.4646250Z [command]/opt/homebrew/bin/git config --local gc.auto 0 -2025-07-23T19:28:57.4688340Z ##[endgroup] -2025-07-23T19:28:57.4689010Z ##[group]Setting up auth -2025-07-23T19:28:57.4691930Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:28:57.4729820Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:28:57.5272210Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:28:57.5307000Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:28:57.6710350Z [command]/opt/homebrew/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** -2025-07-23T19:28:57.6712320Z ##[endgroup] -2025-07-23T19:28:57.6713550Z ##[group]Fetching the repository -2025-07-23T19:28:57.6714730Z [command]/opt/homebrew/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge -2025-07-23T19:28:58.8014950Z From https://github.com/ava-labs/coreth -2025-07-23T19:28:58.8015860Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge -2025-07-23T19:28:58.8062960Z ##[endgroup] -2025-07-23T19:28:58.8063600Z ##[group]Determining the checkout info -2025-07-23T19:28:58.8064360Z ##[endgroup] -2025-07-23T19:28:58.8067150Z [command]/opt/homebrew/bin/git sparse-checkout disable -2025-07-23T19:28:58.8121830Z [command]/opt/homebrew/bin/git config --local --unset-all extensions.worktreeConfig -2025-07-23T19:28:58.8161700Z ##[group]Checking out the ref -2025-07-23T19:28:58.8163660Z [command]/opt/homebrew/bin/git checkout --progress --force refs/remotes/pull/1065/merge -2025-07-23T19:28:58.9380840Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 -2025-07-23T19:28:58.9628740Z ##[endgroup] -2025-07-23T19:28:58.9933290Z [command]/opt/homebrew/bin/git log -1 --format=%H -2025-07-23T19:28:58.9996220Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -2025-07-23T19:28:59.0333830Z ##[group]Run actions/setup-go@v5 -2025-07-23T19:28:59.0335510Z with: -2025-07-23T19:28:59.0336150Z go-version-file: go.mod -2025-07-23T19:28:59.0336850Z check-latest: false -2025-07-23T19:28:59.0337670Z token: *** -2025-07-23T19:28:59.0338220Z cache: true -2025-07-23T19:28:59.0338780Z ##[endgroup] -2025-07-23T19:28:59.1634480Z Setup go version spec 1.23.9 -2025-07-23T19:28:59.1662470Z Attempting to download 1.23.9... -2025-07-23T19:29:00.0309900Z matching 1.23.9... -2025-07-23T19:29:00.1350510Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-darwin-arm64.tar.gz -2025-07-23T19:29:00.9474720Z Extracting Go... -2025-07-23T19:29:00.9555940Z [command]/usr/bin/tar xz -C /Users/runner/work/_temp/aabfc34d-b18f-416a-b458-a6f7e344f159 -f /Users/runner/work/_temp/5cbcbaac-4a4d-4d9b-a417-f79fb5e4419b -2025-07-23T19:29:03.3391660Z Successfully extracted go to /Users/runner/work/_temp/aabfc34d-b18f-416a-b458-a6f7e344f159 -2025-07-23T19:29:03.3392280Z Adding to the cache ... -2025-07-23T19:29:07.9882230Z Successfully cached go to /Users/runner/hostedtoolcache/go/1.23.9/arm64 -2025-07-23T19:29:07.9889230Z Added go to the path -2025-07-23T19:29:07.9919180Z Successfully set up Go version 1.23.9 -2025-07-23T19:29:08.1129950Z [command]/Users/runner/hostedtoolcache/go/1.23.9/arm64/bin/go env GOMODCACHE -2025-07-23T19:29:08.1167110Z [command]/Users/runner/hostedtoolcache/go/1.23.9/arm64/bin/go env GOCACHE -2025-07-23T19:29:08.1167740Z /Users/runner/go/pkg/mod -2025-07-23T19:29:08.1170200Z /Users/runner/Library/Caches/go-build -2025-07-23T19:29:08.2655670Z Cache hit for: setup-go-macOS-arm64-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:09.4201510Z Received 71303168 of 665833561 (10.7%), 67.9 MBs/sec -2025-07-23T19:29:10.4306320Z Received 192937984 of 665833561 (29.0%), 91.4 MBs/sec -2025-07-23T19:29:11.4349000Z Received 301989888 of 665833561 (45.4%), 95.6 MBs/sec -2025-07-23T19:29:12.4427060Z Received 406847488 of 665833561 (61.1%), 96.6 MBs/sec -2025-07-23T19:29:13.4343860Z Received 536870912 of 665833561 (80.6%), 102.0 MBs/sec -2025-07-23T19:29:14.4293890Z Received 665833561 of 665833561 (100.0%), 105.6 MBs/sec -2025-07-23T19:29:14.4299370Z Cache Size: ~635 MB (665833561 B) -2025-07-23T19:29:14.4342660Z [command]/opt/homebrew/bin/gtar -xf /Users/runner/work/_temp/d7820235-272a-4fb0-a9c1-f98db5fee222/cache.tzst -P -C /Users/runner/work/coreth/coreth --delay-directory-restore --use-compress-program unzstd -2025-07-23T19:29:24.0727310Z Cache restored successfully -2025-07-23T19:29:24.0932060Z Cache restored from key: setup-go-macOS-arm64-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:24.1086730Z go version go1.23.9 darwin/arm64 -2025-07-23T19:29:24.1086910Z -2025-07-23T19:29:24.1087310Z ##[group]go env -2025-07-23T19:29:25.8943950Z GO111MODULE='' -2025-07-23T19:29:25.9045130Z GOARCH='arm64' -2025-07-23T19:29:25.9102410Z GOBIN='' -2025-07-23T19:29:25.9103560Z GOCACHE='/Users/runner/Library/Caches/go-build' -2025-07-23T19:29:25.9105790Z GOENV='/Users/runner/Library/Application Support/go/env' -2025-07-23T19:29:25.9107070Z GOEXE='' -2025-07-23T19:29:25.9108760Z GOEXPERIMENT='' -2025-07-23T19:29:25.9110050Z GOFLAGS='' -2025-07-23T19:29:25.9111460Z GOHOSTARCH='arm64' -2025-07-23T19:29:25.9112010Z GOHOSTOS='darwin' -2025-07-23T19:29:25.9112480Z GOINSECURE='' -2025-07-23T19:29:25.9113120Z GOMODCACHE='/Users/runner/go/pkg/mod' -2025-07-23T19:29:25.9114010Z GONOPROXY='' -2025-07-23T19:29:25.9116100Z GONOSUMDB='' -2025-07-23T19:29:25.9118510Z GOOS='darwin' -2025-07-23T19:29:25.9119090Z GOPATH='/Users/runner/go' -2025-07-23T19:29:25.9120780Z GOPRIVATE='' -2025-07-23T19:29:25.9122040Z GOPROXY='https://proxy.golang.org,direct' -2025-07-23T19:29:25.9122520Z GOROOT='/Users/runner/hostedtoolcache/go/1.23.9/arm64' -2025-07-23T19:29:25.9128930Z GOSUMDB='sum.golang.org' -2025-07-23T19:29:25.9129500Z GOTMPDIR='' -2025-07-23T19:29:25.9129720Z GOTOOLCHAIN='auto' -2025-07-23T19:29:25.9131490Z GOTOOLDIR='/Users/runner/hostedtoolcache/go/1.23.9/arm64/pkg/tool/darwin_arm64' -2025-07-23T19:29:25.9131960Z GOVCS='' -2025-07-23T19:29:25.9132170Z GOVERSION='go1.23.9' -2025-07-23T19:29:25.9132500Z GODEBUG='' -2025-07-23T19:29:25.9132740Z GOTELEMETRY='local' -2025-07-23T19:29:25.9133210Z GOTELEMETRYDIR='/Users/runner/Library/Application Support/go/telemetry' -2025-07-23T19:29:25.9133620Z GCCGO='gccgo' -2025-07-23T19:29:25.9133860Z GOARM64='v8.0' -2025-07-23T19:29:25.9134090Z AR='ar' -2025-07-23T19:29:25.9134330Z CC='clang' -2025-07-23T19:29:25.9134610Z CXX='clang++' -2025-07-23T19:29:25.9134830Z CGO_ENABLED='1' -2025-07-23T19:29:25.9135120Z GOMOD='/Users/runner/work/coreth/coreth/go.mod' -2025-07-23T19:29:25.9135510Z GOWORK='' -2025-07-23T19:29:25.9135700Z CGO_CFLAGS='-O2 -g' -2025-07-23T19:29:25.9135930Z CGO_CPPFLAGS='' -2025-07-23T19:29:25.9136250Z CGO_CXXFLAGS='-O2 -g' -2025-07-23T19:29:25.9136470Z CGO_FFLAGS='-O2 -g' -2025-07-23T19:29:25.9136740Z CGO_LDFLAGS='-O2 -g' -2025-07-23T19:29:25.9137050Z PKG_CONFIG='pkg-config' -2025-07-23T19:29:25.9138210Z GOGCCFLAGS='-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -ffile-prefix-map=/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/go-build963083595=/tmp/go-build -gno-record-gcc-switches -fno-common' -2025-07-23T19:29:25.9139180Z -2025-07-23T19:29:25.9139570Z ##[endgroup] -2025-07-23T19:29:25.9246510Z ##[group]Run go mod download -2025-07-23T19:29:25.9246870Z go mod download -2025-07-23T19:29:25.9424270Z shell: /bin/bash -e {0} -2025-07-23T19:29:25.9424590Z ##[endgroup] -2025-07-23T19:29:26.1558910Z ##[group]Run ./scripts/run_task.sh check-generate-codec -2025-07-23T19:29:26.1559260Z ./scripts/run_task.sh check-generate-codec -2025-07-23T19:29:26.1636050Z shell: /bin/bash -e {0} -2025-07-23T19:29:26.1636290Z ##[endgroup] -2025-07-23T19:29:28.1177170Z task: [generate-codec] grep -lr -E '^// Code generated by github\.com\/fjl\/gencodec\. DO NOT EDIT\.$' . | xargs -r rm -2025-07-23T19:29:28.3630580Z task: [generate-codec] go generate -run "github.com/fjl/gencodec" ./... -2025-07-23T19:29:35.3968720Z task: [check-clean-branch] git add --all -2025-07-23T19:29:35.5080100Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null -2025-07-23T19:29:35.5157530Z task: [check-clean-branch] git status --short -2025-07-23T19:29:35.5286080Z task: [check-clean-branch] git diff-index --quiet HEAD -2025-07-23T19:29:35.5411710Z ##[group]Run ./scripts/run_task.sh check-generate-mocks -2025-07-23T19:29:35.5412010Z ./scripts/run_task.sh check-generate-mocks -2025-07-23T19:29:35.5538810Z shell: /bin/bash -e {0} -2025-07-23T19:29:35.5539020Z ##[endgroup] -2025-07-23T19:29:36.1478950Z task: [generate-mocks] grep -lr -E '^// Code generated by MockGen\. DO NOT EDIT\.$' . | xargs -r rm -2025-07-23T19:29:36.2869140Z task: [generate-mocks] go generate -run "go.uber.org/mock/mockgen" ./... -2025-07-23T19:29:41.7072290Z task: [check-clean-branch] git add --all -2025-07-23T19:29:41.7167960Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null -2025-07-23T19:29:41.7225630Z task: [check-clean-branch] git status --short -2025-07-23T19:29:41.7322640Z task: [check-clean-branch] git diff-index --quiet HEAD -2025-07-23T19:29:41.7437820Z ##[group]Run ./scripts/run_task.sh build -2025-07-23T19:29:41.7438070Z ./scripts/run_task.sh build -2025-07-23T19:29:41.7487200Z shell: /bin/bash -e {0} -2025-07-23T19:29:41.7487370Z ##[endgroup] -2025-07-23T19:29:42.3282050Z task: [build] ./scripts/build.sh -2025-07-23T19:29:42.3605910Z Using branch: d85ec03 -2025-07-23T19:29:42.3639410Z Building Coreth @ GitCommit: d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 at /Users/runner/.avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy -2025-07-23T19:29:51.2280740Z ##[group]Run ./scripts/run_task.sh build-test -2025-07-23T19:29:51.2281090Z ./scripts/run_task.sh build-test -2025-07-23T19:29:51.2415480Z shell: /bin/bash -e {0} -2025-07-23T19:29:51.2415670Z env: -2025-07-23T19:29:51.2415810Z TIMEOUT: -2025-07-23T19:29:51.2415930Z ##[endgroup] -2025-07-23T19:29:51.8737390Z task: [build-test] ./scripts/build_test.sh -2025-07-23T19:29:51.9016950Z Using branch: d85ec03 -2025-07-23T19:29:52.2501440Z Test run 1 of 4 -2025-07-23T19:29:52.2501760Z Getting expected test list... -2025-07-23T19:29:58.6019690Z Expected tests: 1 tests -2025-07-23T19:29:58.6019970Z Running tests... -2025-07-23T19:35:29.6858720Z jq: parse error: Invalid numeric literal at line 1, column 2 -2025-07-23T19:35:29.6980820Z task: Failed to run task "build-test": exit status 5 -2025-07-23T19:35:29.7011060Z exit status 201 -2025-07-23T19:35:29.7081710Z ##[error]Process completed with exit code 1. -2025-07-23T19:35:29.7511690Z Post job cleanup. -2025-07-23T19:35:30.1818930Z [command]/opt/homebrew/bin/git version -2025-07-23T19:35:30.2110990Z git version 2.50.1 -2025-07-23T19:35:30.2156310Z Copying '/Users/runner/.gitconfig' to '/Users/runner/work/_temp/804fb9a9-4f08-41b4-aae6-898a7bc2f756/.gitconfig' -2025-07-23T19:35:30.2168330Z Temporarily overriding HOME='/Users/runner/work/_temp/804fb9a9-4f08-41b4-aae6-898a7bc2f756' before making global git config changes -2025-07-23T19:35:30.2170480Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:35:30.2171800Z [command]/opt/homebrew/bin/git config --global --add safe.directory /Users/runner/work/coreth/coreth -2025-07-23T19:35:30.2281180Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:35:30.2346150Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:35:30.3922370Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:35:30.3957350Z http.https://github.com/.extraheader -2025-07-23T19:35:30.3989780Z [command]/opt/homebrew/bin/git config --local --unset-all http.https://github.com/.extraheader -2025-07-23T19:35:30.4115700Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:35:30.5740940Z Cleaning up orphan processes diff --git a/logs_42241282643/5_Golang Unit Tests (ubuntu-latest).txt b/logs_42241282643/5_Golang Unit Tests (ubuntu-latest).txt deleted file mode 100644 index 01915b7fbb..0000000000 --- a/logs_42241282643/5_Golang Unit Tests (ubuntu-latest).txt +++ /dev/null @@ -1,3206 +0,0 @@ -2025-07-23T19:28:54.5253315Z Current runner version: '2.326.0' -2025-07-23T19:28:54.5275807Z ##[group]Runner Image Provisioner -2025-07-23T19:28:54.5277180Z Hosted Compute Agent -2025-07-23T19:28:54.5277948Z Version: 20250711.363 -2025-07-23T19:28:54.5279050Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c -2025-07-23T19:28:54.5280213Z Build Date: 2025-07-11T20:04:25Z -2025-07-23T19:28:54.5281150Z ##[endgroup] -2025-07-23T19:28:54.5281895Z ##[group]Operating System -2025-07-23T19:28:54.5282825Z Ubuntu -2025-07-23T19:28:54.5283588Z 24.04.2 -2025-07-23T19:28:54.5284242Z LTS -2025-07-23T19:28:54.5285101Z ##[endgroup] -2025-07-23T19:28:54.5285868Z ##[group]Runner Image -2025-07-23T19:28:54.5286701Z Image: ubuntu-24.04 -2025-07-23T19:28:54.5287399Z Version: 20250720.1.0 -2025-07-23T19:28:54.5289402Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md -2025-07-23T19:28:54.5291981Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 -2025-07-23T19:28:54.5293818Z ##[endgroup] -2025-07-23T19:28:54.5297995Z ##[group]GITHUB_TOKEN Permissions -2025-07-23T19:28:54.5301381Z Actions: write -2025-07-23T19:28:54.5302142Z Attestations: write -2025-07-23T19:28:54.5303027Z Checks: write -2025-07-23T19:28:54.5303879Z Contents: write -2025-07-23T19:28:54.5304737Z Deployments: write -2025-07-23T19:28:54.5305560Z Discussions: write -2025-07-23T19:28:54.5306537Z Issues: write -2025-07-23T19:28:54.5307359Z Metadata: read -2025-07-23T19:28:54.5308425Z Models: read -2025-07-23T19:28:54.5309517Z Packages: write -2025-07-23T19:28:54.5310358Z Pages: write -2025-07-23T19:28:54.5311221Z PullRequests: write -2025-07-23T19:28:54.5312239Z RepositoryProjects: write -2025-07-23T19:28:54.5313222Z SecurityEvents: write -2025-07-23T19:28:54.5314227Z Statuses: write -2025-07-23T19:28:54.5315275Z ##[endgroup] -2025-07-23T19:28:54.5318293Z Secret source: Actions -2025-07-23T19:28:54.5319352Z Prepare workflow directory -2025-07-23T19:28:54.5782198Z Prepare all required actions -2025-07-23T19:28:54.5837140Z Getting action download info -2025-07-23T19:28:54.8949236Z ##[group]Download immutable action package 'actions/checkout@v4' -2025-07-23T19:28:54.8950366Z Version: 4.2.2 -2025-07-23T19:28:54.8951367Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 -2025-07-23T19:28:54.8952532Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 -2025-07-23T19:28:54.8953291Z ##[endgroup] -2025-07-23T19:28:54.9874301Z ##[group]Download immutable action package 'actions/setup-go@v5' -2025-07-23T19:28:54.9875047Z Version: 5.5.0 -2025-07-23T19:28:54.9875777Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb -2025-07-23T19:28:54.9876771Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 -2025-07-23T19:28:54.9877477Z ##[endgroup] -2025-07-23T19:28:55.3208645Z Complete job name: Golang Unit Tests (ubuntu-latest) -2025-07-23T19:28:55.3815760Z ##[group]Run actions/checkout@v4 -2025-07-23T19:28:55.3816649Z with: -2025-07-23T19:28:55.3817045Z repository: ava-labs/coreth -2025-07-23T19:28:55.3817684Z token: *** -2025-07-23T19:28:55.3818071Z ssh-strict: true -2025-07-23T19:28:55.3818637Z ssh-user: git -2025-07-23T19:28:55.3819114Z persist-credentials: true -2025-07-23T19:28:55.3819554Z clean: true -2025-07-23T19:28:55.3819945Z sparse-checkout-cone-mode: true -2025-07-23T19:28:55.3820408Z fetch-depth: 1 -2025-07-23T19:28:55.3820793Z fetch-tags: false -2025-07-23T19:28:55.3821193Z show-progress: true -2025-07-23T19:28:55.3821600Z lfs: false -2025-07-23T19:28:55.3821966Z submodules: false -2025-07-23T19:28:55.3822374Z set-safe-directory: true -2025-07-23T19:28:55.3823073Z ##[endgroup] -2025-07-23T19:28:55.4877703Z Syncing repository: ava-labs/coreth -2025-07-23T19:28:55.4879732Z ##[group]Getting Git version info -2025-07-23T19:28:55.4880407Z Working directory is '/home/runner/work/coreth/coreth' -2025-07-23T19:28:55.4881364Z [command]/usr/bin/git version -2025-07-23T19:28:55.4927701Z git version 2.50.1 -2025-07-23T19:28:55.4960825Z ##[endgroup] -2025-07-23T19:28:55.4971467Z Temporarily overriding HOME='/home/runner/work/_temp/befb0eca-fb3f-4a02-a4de-d1960c4d6cff' before making global git config changes -2025-07-23T19:28:55.4974327Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:28:55.4976318Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:28:55.5010672Z Deleting the contents of '/home/runner/work/coreth/coreth' -2025-07-23T19:28:55.5014201Z ##[group]Initializing the repository -2025-07-23T19:28:55.5017783Z [command]/usr/bin/git init /home/runner/work/coreth/coreth -2025-07-23T19:28:55.5077762Z hint: Using 'master' as the name for the initial branch. This default branch name -2025-07-23T19:28:55.5079568Z hint: is subject to change. To configure the initial branch name to use in all -2025-07-23T19:28:55.5081032Z hint: of your new repositories, which will suppress this warning, call: -2025-07-23T19:28:55.5082106Z hint: -2025-07-23T19:28:55.5082633Z hint: git config --global init.defaultBranch -2025-07-23T19:28:55.5083216Z hint: -2025-07-23T19:28:55.5083746Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and -2025-07-23T19:28:55.5084625Z hint: 'development'. The just-created branch can be renamed via this command: -2025-07-23T19:28:55.5085301Z hint: -2025-07-23T19:28:55.5085753Z hint: git branch -m -2025-07-23T19:28:55.5086456Z hint: -2025-07-23T19:28:55.5087137Z hint: Disable this message with "git config set advice.defaultBranchName false" -2025-07-23T19:28:55.5088055Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ -2025-07-23T19:28:55.5091700Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth -2025-07-23T19:28:55.5122145Z ##[endgroup] -2025-07-23T19:28:55.5123364Z ##[group]Disabling automatic garbage collection -2025-07-23T19:28:55.5125782Z [command]/usr/bin/git config --local gc.auto 0 -2025-07-23T19:28:55.5156349Z ##[endgroup] -2025-07-23T19:28:55.5157505Z ##[group]Setting up auth -2025-07-23T19:28:55.5163557Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:28:55.5194699Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:28:55.5476802Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:28:55.5508068Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:28:55.5751500Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** -2025-07-23T19:28:55.5797134Z ##[endgroup] -2025-07-23T19:28:55.5798428Z ##[group]Fetching the repository -2025-07-23T19:28:55.5807814Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge -2025-07-23T19:28:56.1034441Z From https://github.com/ava-labs/coreth -2025-07-23T19:28:56.1036216Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge -2025-07-23T19:28:56.1061375Z ##[endgroup] -2025-07-23T19:28:56.1062665Z ##[group]Determining the checkout info -2025-07-23T19:28:56.1064165Z ##[endgroup] -2025-07-23T19:28:56.1069065Z [command]/usr/bin/git sparse-checkout disable -2025-07-23T19:28:56.1107321Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig -2025-07-23T19:28:56.1136125Z ##[group]Checking out the ref -2025-07-23T19:28:56.1140633Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge -2025-07-23T19:28:56.2232988Z Note: switching to 'refs/remotes/pull/1065/merge'. -2025-07-23T19:28:56.2234404Z -2025-07-23T19:28:56.2235239Z You are in 'detached HEAD' state. You can look around, make experimental -2025-07-23T19:28:56.2237323Z changes and commit them, and you can discard any commits you make in this -2025-07-23T19:28:56.2239506Z state without impacting any branches by switching back to a branch. -2025-07-23T19:28:56.2240224Z -2025-07-23T19:28:56.2240759Z If you want to create a new branch to retain commits you create, you may -2025-07-23T19:28:56.2242117Z do so (now or later) by using -c with the switch command. Example: -2025-07-23T19:28:56.2243016Z -2025-07-23T19:28:56.2243321Z git switch -c -2025-07-23T19:28:56.2243766Z -2025-07-23T19:28:56.2244075Z Or undo this operation with: -2025-07-23T19:28:56.2244518Z -2025-07-23T19:28:56.2244779Z git switch - -2025-07-23T19:28:56.2245164Z -2025-07-23T19:28:56.2245741Z Turn off this advice by setting config variable advice.detachedHead to false -2025-07-23T19:28:56.2246739Z -2025-07-23T19:28:56.2247809Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 -2025-07-23T19:28:56.2251133Z ##[endgroup] -2025-07-23T19:28:56.2281515Z [command]/usr/bin/git log -1 --format=%H -2025-07-23T19:28:56.2303799Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -2025-07-23T19:28:56.2600398Z ##[group]Run actions/setup-go@v5 -2025-07-23T19:28:56.2601458Z with: -2025-07-23T19:28:56.2602263Z go-version-file: go.mod -2025-07-23T19:28:56.2603208Z check-latest: false -2025-07-23T19:28:56.2604372Z token: *** -2025-07-23T19:28:56.2605181Z cache: true -2025-07-23T19:28:56.2605991Z ##[endgroup] -2025-07-23T19:28:56.4204742Z Setup go version spec 1.23.9 -2025-07-23T19:28:56.4215898Z Attempting to download 1.23.9... -2025-07-23T19:28:56.7474914Z matching 1.23.9... -2025-07-23T19:28:56.7515887Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz -2025-07-23T19:28:57.2963261Z Extracting Go... -2025-07-23T19:28:57.3063045Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/2608b46e-5bc4-41b4-861d-ee2edbf1ffd4 -f /home/runner/work/_temp/f2203187-69d5-475d-85d1-f2452dbefc33 -2025-07-23T19:28:58.9504010Z Successfully extracted go to /home/runner/work/_temp/2608b46e-5bc4-41b4-861d-ee2edbf1ffd4 -2025-07-23T19:28:58.9504826Z Adding to the cache ... -2025-07-23T19:29:03.1923301Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 -2025-07-23T19:29:03.1924873Z Added go to the path -2025-07-23T19:29:03.1927787Z Successfully set up Go version 1.23.9 -2025-07-23T19:29:03.2123181Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:29:03.2149939Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:29:03.2178000Z /home/runner/go/pkg/mod -2025-07-23T19:29:03.2193316Z /home/runner/.cache/go-build -2025-07-23T19:29:03.3457896Z Cache hit for: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:04.3870363Z Received 192937984 of 743127682 (26.0%), 182.5 MBs/sec -2025-07-23T19:29:05.3882761Z Received 402653184 of 743127682 (54.2%), 191.0 MBs/sec -2025-07-23T19:29:06.3884947Z Received 658505728 of 743127682 (88.6%), 208.6 MBs/sec -2025-07-23T19:29:06.8440674Z Received 743127682 of 743127682 (100.0%), 204.5 MBs/sec -2025-07-23T19:29:06.8442574Z Cache Size: ~709 MB (743127682 B) -2025-07-23T19:29:06.8564849Z [command]/usr/bin/tar -xf /home/runner/work/_temp/ec881acd-ae8f-4528-804a-8272d685508f/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd -2025-07-23T19:29:14.1899879Z Cache restored successfully -2025-07-23T19:29:14.3280131Z Cache restored from key: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:14.3303709Z go version go1.23.9 linux/amd64 -2025-07-23T19:29:14.3304005Z -2025-07-23T19:29:14.3304400Z ##[group]go env -2025-07-23T19:29:14.4781906Z GO111MODULE='' -2025-07-23T19:29:14.4782310Z GOARCH='amd64' -2025-07-23T19:29:14.4782715Z GOBIN='' -2025-07-23T19:29:14.4783063Z GOCACHE='/home/runner/.cache/go-build' -2025-07-23T19:29:14.4783541Z GOENV='/home/runner/.config/go/env' -2025-07-23T19:29:14.4784535Z GOEXE='' -2025-07-23T19:29:14.4784810Z GOEXPERIMENT='' -2025-07-23T19:29:14.4785111Z GOFLAGS='' -2025-07-23T19:29:14.4785452Z GOHOSTARCH='amd64' -2025-07-23T19:29:14.4785747Z GOHOSTOS='linux' -2025-07-23T19:29:14.4786041Z GOINSECURE='' -2025-07-23T19:29:14.4786372Z GOMODCACHE='/home/runner/go/pkg/mod' -2025-07-23T19:29:14.4786763Z GONOPROXY='' -2025-07-23T19:29:14.4787046Z GONOSUMDB='' -2025-07-23T19:29:14.4787747Z GOOS='linux' -2025-07-23T19:29:14.4788055Z GOPATH='/home/runner/go' -2025-07-23T19:29:14.4788852Z GOPRIVATE='' -2025-07-23T19:29:14.4789378Z GOPROXY='https://proxy.golang.org,direct' -2025-07-23T19:29:14.4789871Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' -2025-07-23T19:29:14.4790309Z GOSUMDB='sum.golang.org' -2025-07-23T19:29:14.4790637Z GOTMPDIR='' -2025-07-23T19:29:14.4790914Z GOTOOLCHAIN='auto' -2025-07-23T19:29:14.4791409Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' -2025-07-23T19:29:14.4791939Z GOVCS='' -2025-07-23T19:29:14.4792216Z GOVERSION='go1.23.9' -2025-07-23T19:29:14.4792526Z GODEBUG='' -2025-07-23T19:29:14.4792807Z GOTELEMETRY='local' -2025-07-23T19:29:14.4793728Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' -2025-07-23T19:29:14.4794239Z GCCGO='gccgo' -2025-07-23T19:29:14.4794531Z GOAMD64='v1' -2025-07-23T19:29:14.4794803Z AR='ar' -2025-07-23T19:29:14.4795052Z CC='gcc' -2025-07-23T19:29:14.4795302Z CXX='g++' -2025-07-23T19:29:14.4795568Z CGO_ENABLED='1' -2025-07-23T19:29:14.4795925Z GOMOD='/home/runner/work/coreth/coreth/go.mod' -2025-07-23T19:29:14.4796332Z GOWORK='' -2025-07-23T19:29:14.4796630Z CGO_CFLAGS='-O2 -g' -2025-07-23T19:29:14.4796925Z CGO_CPPFLAGS='' -2025-07-23T19:29:14.4797231Z CGO_CXXFLAGS='-O2 -g' -2025-07-23T19:29:14.4797566Z CGO_FFLAGS='-O2 -g' -2025-07-23T19:29:14.4797885Z CGO_LDFLAGS='-O2 -g' -2025-07-23T19:29:14.4798404Z PKG_CONFIG='pkg-config' -2025-07-23T19:29:14.4799408Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build2181527828=/tmp/go-build -gno-record-gcc-switches' -2025-07-23T19:29:14.4800242Z -2025-07-23T19:29:14.4800688Z ##[endgroup] -2025-07-23T19:29:14.4963412Z ##[group]Run go mod download -2025-07-23T19:29:14.4963737Z go mod download -2025-07-23T19:29:14.4997129Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:14.4997392Z ##[endgroup] -2025-07-23T19:29:14.5786106Z ##[group]Run ./scripts/run_task.sh check-generate-codec -2025-07-23T19:29:14.5786604Z ./scripts/run_task.sh check-generate-codec -2025-07-23T19:29:14.5815194Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:14.5815488Z ##[endgroup] -2025-07-23T19:29:15.5306193Z task: [generate-codec] grep -lr -E '^// Code generated by github\.com\/fjl\/gencodec\. DO NOT EDIT\.$' . | xargs -r rm -2025-07-23T19:29:15.5465334Z task: [generate-codec] go generate -run "github.com/fjl/gencodec" ./... -2025-07-23T19:29:22.5040222Z task: [check-clean-branch] git add --all -2025-07-23T19:29:22.5624823Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null -2025-07-23T19:29:22.5675815Z task: [check-clean-branch] git status --short -2025-07-23T19:29:22.5744426Z task: [check-clean-branch] git diff-index --quiet HEAD -2025-07-23T19:29:22.5877803Z ##[group]Run ./scripts/run_task.sh check-generate-mocks -2025-07-23T19:29:22.5878916Z ./scripts/run_task.sh check-generate-mocks -2025-07-23T19:29:22.5907658Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:22.5907897Z ##[endgroup] -2025-07-23T19:29:23.0134018Z task: [generate-mocks] grep -lr -E '^// Code generated by MockGen\. DO NOT EDIT\.$' . | xargs -r rm -2025-07-23T19:29:23.0278741Z task: [generate-mocks] go generate -run "go.uber.org/mock/mockgen" ./... -2025-07-23T19:29:29.6979971Z task: [check-clean-branch] git add --all -2025-07-23T19:29:29.7052595Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null -2025-07-23T19:29:29.7094214Z task: [check-clean-branch] git status --short -2025-07-23T19:29:29.7166319Z task: [check-clean-branch] git diff-index --quiet HEAD -2025-07-23T19:29:29.7295412Z ##[group]Run ./scripts/run_task.sh build -2025-07-23T19:29:29.7295750Z ./scripts/run_task.sh build -2025-07-23T19:29:29.7324580Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:29.7324812Z ##[endgroup] -2025-07-23T19:29:30.1577584Z task: [build] ./scripts/build.sh -2025-07-23T19:29:30.1786104Z Using branch: d85ec03 -2025-07-23T19:29:30.1802864Z Building Coreth @ GitCommit: d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 at /home/runner/.avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy -2025-07-23T19:29:58.0660332Z ##[group]Run ./scripts/run_task.sh build-test -2025-07-23T19:29:58.0660673Z ./scripts/run_task.sh build-test -2025-07-23T19:29:58.0687872Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:58.0688318Z env: -2025-07-23T19:29:58.0688536Z TIMEOUT: -2025-07-23T19:29:58.0688704Z ##[endgroup] -2025-07-23T19:29:58.4778625Z task: [build-test] ./scripts/build_test.sh -2025-07-23T19:29:58.4899334Z Using branch: d85ec03 -2025-07-23T19:29:58.8779073Z Test run 1 of 4 -2025-07-23T19:29:58.8779460Z Getting expected test list... -2025-07-23T19:30:07.3925272Z Expected tests: 1 tests -2025-07-23T19:30:07.3925741Z Running tests... -2025-07-23T19:39:13.6360052Z All tests passed! -2025-07-23T19:39:13.6480554Z ##[group]Run ./scripts/run_task.sh coverage -2025-07-23T19:39:13.6480882Z ./scripts/run_task.sh coverage -2025-07-23T19:39:13.6530840Z shell: /usr/bin/bash -e {0} -2025-07-23T19:39:13.6531065Z ##[endgroup] -2025-07-23T19:39:14.4956661Z task: [coverage] ./scripts/coverage.sh -2025-07-23T19:39:14.9509400Z Current test coverage : 0.0 -2025-07-23T19:39:14.9510022Z 60.0 % -2025-07-23T19:39:14.9510751Z ======================================== -2025-07-23T19:39:15.3914591Z github.com/ava-labs/coreth/accounts/abi/abi.go:59: JSON 100.0% -2025-07-23T19:39:15.3915393Z github.com/ava-labs/coreth/accounts/abi/abi.go:74: Pack 91.7% -2025-07-23T19:39:15.3916224Z github.com/ava-labs/coreth/accounts/abi/abi.go:103: PackEvent 81.8% -2025-07-23T19:39:15.3917076Z github.com/ava-labs/coreth/accounts/abi/abi.go:147: PackOutput 71.4% -2025-07-23T19:39:15.3917981Z github.com/ava-labs/coreth/accounts/abi/abi.go:162: getInputs 80.0% -2025-07-23T19:39:15.3918921Z github.com/ava-labs/coreth/accounts/abi/abi.go:182: getArguments 90.0% -2025-07-23T19:39:15.3919433Z github.com/ava-labs/coreth/accounts/abi/abi.go:205: UnpackInput 0.0% -2025-07-23T19:39:15.3920146Z github.com/ava-labs/coreth/accounts/abi/abi.go:214: Unpack 75.0% -2025-07-23T19:39:15.3921105Z github.com/ava-labs/coreth/accounts/abi/abi.go:228: UnpackInputIntoInterface 85.7% -2025-07-23T19:39:15.3922203Z github.com/ava-labs/coreth/accounts/abi/abi.go:243: UnpackIntoInterface 85.7% -2025-07-23T19:39:15.3923165Z github.com/ava-labs/coreth/accounts/abi/abi.go:256: UnpackIntoMap 100.0% -2025-07-23T19:39:15.3924122Z github.com/ava-labs/coreth/accounts/abi/abi.go:265: UnmarshalJSON 85.7% -2025-07-23T19:39:15.3925014Z github.com/ava-labs/coreth/accounts/abi/abi.go:330: MethodById 100.0% -2025-07-23T19:39:15.3925881Z github.com/ava-labs/coreth/accounts/abi/abi.go:344: EventByID 100.0% -2025-07-23T19:39:15.3926748Z github.com/ava-labs/coreth/accounts/abi/abi.go:355: ErrorByID 100.0% -2025-07-23T19:39:15.3927599Z github.com/ava-labs/coreth/accounts/abi/abi.go:365: HasFallback 100.0% -2025-07-23T19:39:15.3928630Z github.com/ava-labs/coreth/accounts/abi/abi.go:370: HasReceive 100.0% -2025-07-23T19:39:15.3929483Z github.com/ava-labs/coreth/accounts/abi/abi.go:402: UnpackRevert 81.8% -2025-07-23T19:39:15.3930957Z github.com/ava-labs/coreth/accounts/abi/argument.go:57: UnmarshalJSON 90.0% -2025-07-23T19:39:15.3931899Z github.com/ava-labs/coreth/accounts/abi/argument.go:75: NonIndexed 100.0% -2025-07-23T19:39:15.3932757Z github.com/ava-labs/coreth/accounts/abi/argument.go:86: isTuple 100.0% -2025-07-23T19:39:15.3933576Z github.com/ava-labs/coreth/accounts/abi/argument.go:91: Unpack 100.0% -2025-07-23T19:39:15.3934456Z github.com/ava-labs/coreth/accounts/abi/argument.go:102: UnpackIntoMap 58.3% -2025-07-23T19:39:15.3935352Z github.com/ava-labs/coreth/accounts/abi/argument.go:124: Copy 77.8% -2025-07-23T19:39:15.3936643Z github.com/ava-labs/coreth/accounts/abi/argument.go:142: copyAtomic 100.0% -2025-07-23T19:39:15.3937506Z github.com/ava-labs/coreth/accounts/abi/argument.go:153: copyTuple 95.7% -2025-07-23T19:39:15.3938604Z github.com/ava-labs/coreth/accounts/abi/argument.go:195: UnpackValues 100.0% -2025-07-23T19:39:15.3939528Z github.com/ava-labs/coreth/accounts/abi/argument.go:228: PackValues 0.0% -2025-07-23T19:39:15.3940338Z github.com/ava-labs/coreth/accounts/abi/argument.go:233: Pack 100.0% -2025-07-23T19:39:15.3941243Z github.com/ava-labs/coreth/accounts/abi/argument.go:276: ToCamelCase 100.0% -2025-07-23T19:39:15.3942101Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:56: NewTransactor 0.0% -2025-07-23T19:39:15.3943064Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:73: NewKeyStoreTransactor 0.0% -2025-07-23T19:39:15.3944124Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:96: NewKeyedTransactor 0.0% -2025-07-23T19:39:15.3945508Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:118: NewTransactorWithChainID 0.0% -2025-07-23T19:39:15.3946765Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:132: NewKeyStoreTransactorWithChainID 0.0% -2025-07-23T19:39:15.3947987Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:155: NewKeyedTransactorWithChainID 72.7% -2025-07-23T19:39:15.3949251Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:179: NewClefTransactor 0.0% -2025-07-23T19:39:15.3950327Z github.com/ava-labs/coreth/accounts/abi/bind/backends/simulated.go:67: Fork 0.0% -2025-07-23T19:39:15.3951407Z github.com/ava-labs/coreth/accounts/abi/bind/backends/simulated.go:78: NewSimulatedBackend 0.0% -2025-07-23T19:39:15.3951995Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:128: GetAbi 0.0% -2025-07-23T19:39:15.3952523Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:155: NewBoundContract 100.0% -2025-07-23T19:39:15.3953086Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:167: DeployContract 77.8% -2025-07-23T19:39:15.3953599Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:187: Call 100.0% -2025-07-23T19:39:15.3954098Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:265: Transact 75.0% -2025-07-23T19:39:15.3954597Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:278: RawTransact 0.0% -2025-07-23T19:39:15.3955111Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:286: Transfer 0.0% -2025-07-23T19:39:15.3955650Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:294: wrapNativeAssetCall 83.3% -2025-07-23T19:39:15.3956214Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:324: createDynamicTx 84.0% -2025-07-23T19:39:15.3956772Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:376: createLegacyTx 81.8% -2025-07-23T19:39:15.3957311Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:419: estimateGasLimit 71.4% -2025-07-23T19:39:15.3957845Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:440: getNonce 75.0% -2025-07-23T19:39:15.3958693Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:451: transact 66.7% -2025-07-23T19:39:15.3959614Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:502: FilterLogs 0.0% -2025-07-23T19:39:15.3960516Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:551: WatchLogs 0.0% -2025-07-23T19:39:15.3961392Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:581: UnpackLog 0.0% -2025-07-23T19:39:15.3962305Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:604: UnpackLogIntoMap 83.3% -2025-07-23T19:39:15.3963021Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:628: ensureContext 100.0% -2025-07-23T19:39:15.3963543Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:54: isKeyWord 100.0% -2025-07-23T19:39:15.3964026Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:95: Bind 92.2% -2025-07-23T19:39:15.3964544Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:323: bindBasicTypeGo 100.0% -2025-07-23T19:39:15.3965269Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:349: bindTypeGo 100.0% -2025-07-23T19:39:15.3966168Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:370: bindTopicTypeGo 100.0% -2025-07-23T19:39:15.3967452Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:394: bindStructTypeGo 100.0% -2025-07-23T19:39:15.3968023Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:445: alias 100.0% -2025-07-23T19:39:15.3968935Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:462: decapitalise 75.0% -2025-07-23T19:39:15.3969545Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:473: structured 100.0% -2025-07-23T19:39:15.3970089Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:496: hasStruct 100.0% -2025-07-23T19:39:15.3970588Z github.com/ava-labs/coreth/accounts/abi/bind/util.go:43: WaitMined 91.7% -2025-07-23T19:39:15.3971092Z github.com/ava-labs/coreth/accounts/abi/bind/util.go:71: WaitDeployed 90.9% -2025-07-23T19:39:15.3971766Z github.com/ava-labs/coreth/accounts/abi/error.go:54: NewError 92.9% -2025-07-23T19:39:15.3972235Z github.com/ava-labs/coreth/accounts/abi/error.go:91: String 100.0% -2025-07-23T19:39:15.3972695Z github.com/ava-labs/coreth/accounts/abi/error.go:95: Unpack 0.0% -2025-07-23T19:39:15.3973222Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:50: formatSliceString 66.7% -2025-07-23T19:39:15.3973802Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:59: sliceTypeCheck 90.0% -2025-07-23T19:39:15.3974346Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:82: typeCheck 100.0% -2025-07-23T19:39:15.3974876Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:98: typeErr 100.0% -2025-07-23T19:39:15.3975376Z github.com/ava-labs/coreth/accounts/abi/event.go:73: NewEvent 100.0% -2025-07-23T19:39:15.3975851Z github.com/ava-labs/coreth/accounts/abi/event.go:112: String 100.0% -2025-07-23T19:39:15.3976335Z github.com/ava-labs/coreth/accounts/abi/method.go:105: NewMethod 100.0% -2025-07-23T19:39:15.3976960Z github.com/ava-labs/coreth/accounts/abi/method.go:164: String 100.0% -2025-07-23T19:39:15.3977491Z github.com/ava-labs/coreth/accounts/abi/method.go:169: IsConstant 0.0% -2025-07-23T19:39:15.3978056Z github.com/ava-labs/coreth/accounts/abi/method.go:175: IsPayable 0.0% -2025-07-23T19:39:15.3978800Z github.com/ava-labs/coreth/accounts/abi/pack.go:42: packBytesSlice 100.0% -2025-07-23T19:39:15.3979406Z github.com/ava-labs/coreth/accounts/abi/pack.go:49: packElement 83.3% -2025-07-23T19:39:15.3979970Z github.com/ava-labs/coreth/accounts/abi/pack.go:85: packNum 80.0% -2025-07-23T19:39:15.3980480Z github.com/ava-labs/coreth/accounts/abi/reflect.go:52: ConvertType 83.3% -2025-07-23T19:39:15.3981076Z github.com/ava-labs/coreth/accounts/abi/reflect.go:66: indirect 100.0% -2025-07-23T19:39:15.3981696Z github.com/ava-labs/coreth/accounts/abi/reflect.go:75: reflectIntType 100.0% -2025-07-23T19:39:15.3982298Z github.com/ava-labs/coreth/accounts/abi/reflect.go:103: mustArrayToByteSlice 100.0% -2025-07-23T19:39:15.3982882Z github.com/ava-labs/coreth/accounts/abi/reflect.go:113: set 100.0% -2025-07-23T19:39:15.3983450Z github.com/ava-labs/coreth/accounts/abi/reflect.go:137: setSlice 75.0% -2025-07-23T19:39:15.3984021Z github.com/ava-labs/coreth/accounts/abi/reflect.go:151: setArray 84.6% -2025-07-23T19:39:15.3984504Z github.com/ava-labs/coreth/accounts/abi/reflect.go:172: setStruct 75.0% -2025-07-23T19:39:15.3985156Z github.com/ava-labs/coreth/accounts/abi/reflect.go:195: mapArgNamesToStructFields 100.0% -2025-07-23T19:39:15.3985795Z github.com/ava-labs/coreth/accounts/abi/topics.go:45: packTopic 96.4% -2025-07-23T19:39:15.3986334Z github.com/ava-labs/coreth/accounts/abi/topics.go:111: PackTopics 85.7% -2025-07-23T19:39:15.3986868Z github.com/ava-labs/coreth/accounts/abi/topics.go:125: MakeTopics 87.5% -2025-07-23T19:39:15.3987638Z github.com/ava-labs/coreth/accounts/abi/topics.go:139: genIntType 100.0% -2025-07-23T19:39:15.3988471Z github.com/ava-labs/coreth/accounts/abi/topics.go:153: ParseTopics 100.0% -2025-07-23T19:39:15.3989117Z github.com/ava-labs/coreth/accounts/abi/topics.go:162: ParseTopicsIntoMap 100.0% -2025-07-23T19:39:15.3989792Z github.com/ava-labs/coreth/accounts/abi/topics.go:174: parseTopicWithSetter 95.0% -2025-07-23T19:39:15.3990339Z github.com/ava-labs/coreth/accounts/abi/type.go:81: NewType 93.1% -2025-07-23T19:39:15.3990879Z github.com/ava-labs/coreth/accounts/abi/type.go:239: GetType 80.0% -2025-07-23T19:39:15.3991431Z github.com/ava-labs/coreth/accounts/abi/type.go:275: String 100.0% -2025-07-23T19:39:15.3991894Z github.com/ava-labs/coreth/accounts/abi/type.go:279: pack 90.9% -2025-07-23T19:39:15.3992501Z github.com/ava-labs/coreth/accounts/abi/type.go:362: requiresLengthPrefix 100.0% -2025-07-23T19:39:15.3993287Z github.com/ava-labs/coreth/accounts/abi/type.go:373: isDynamicType 100.0% -2025-07-23T19:39:15.3993910Z github.com/ava-labs/coreth/accounts/abi/type.go:393: getTypeSize 100.0% -2025-07-23T19:39:15.3994449Z github.com/ava-labs/coreth/accounts/abi/type.go:412: isLetter 100.0% -2025-07-23T19:39:15.3995005Z github.com/ava-labs/coreth/accounts/abi/type.go:423: isValidFieldName 66.7% -2025-07-23T19:39:15.3995613Z github.com/ava-labs/coreth/accounts/abi/unpack.go:49: ReadInteger 100.0% -2025-07-23T19:39:15.3996208Z github.com/ava-labs/coreth/accounts/abi/unpack.go:119: readBool 100.0% -2025-07-23T19:39:15.3996723Z github.com/ava-labs/coreth/accounts/abi/unpack.go:138: readFunctionType 66.7% -2025-07-23T19:39:15.3997359Z github.com/ava-labs/coreth/accounts/abi/unpack.go:151: ReadFixedBytes 80.0% -2025-07-23T19:39:15.3997965Z github.com/ava-labs/coreth/accounts/abi/unpack.go:163: forEachUnpack 81.2% -2025-07-23T19:39:15.3998771Z github.com/ava-labs/coreth/accounts/abi/unpack.go:203: forTupleUnpack 83.3% -2025-07-23T19:39:15.3999375Z github.com/ava-labs/coreth/accounts/abi/unpack.go:235: toGoType 83.9% -2025-07-23T19:39:15.4000019Z github.com/ava-labs/coreth/accounts/abi/unpack.go:299: lengthPrefixPointsTo 94.1% -2025-07-23T19:39:15.4000572Z github.com/ava-labs/coreth/accounts/abi/unpack.go:329: tuplePointsTo 71.4% -2025-07-23T19:39:15.4001218Z github.com/ava-labs/coreth/accounts/abi/utils.go:43: ResolveNameConflict 100.0% -2025-07-23T19:39:15.4001822Z github.com/ava-labs/coreth/cmd/abigen/main.go:90: init 100.0% -2025-07-23T19:39:15.4002299Z github.com/ava-labs/coreth/cmd/abigen/main.go:106: abigen 0.0% -2025-07-23T19:39:15.4002787Z github.com/ava-labs/coreth/cmd/abigen/main.go:245: main 0.0% -2025-07-23T19:39:15.4003374Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:24: newNameFilter 100.0% -2025-07-23T19:39:15.4004233Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:38: add 100.0% -2025-07-23T19:39:15.4005077Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:57: Matches 100.0% -2025-07-23T19:39:15.4006019Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:53: BuildConfig 0.0% -2025-07-23T19:39:15.4007003Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:86: BuildViper 0.0% -2025-07-23T19:39:15.4007995Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:109: BuildFlagSet 0.0% -2025-07-23T19:39:15.4009583Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:115: addSimulatorFlags 0.0% -2025-07-23T19:39:15.4010549Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:22: CreateKey 0.0% -2025-07-23T19:39:15.4011350Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:27: Load 0.0% -2025-07-23T19:39:15.4012152Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:36: LoadAll 0.0% -2025-07-23T19:39:15.4012942Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:73: Save 0.0% -2025-07-23T19:39:15.4013922Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:79: Generate 0.0% -2025-07-23T19:39:15.4014868Z github.com/ava-labs/coreth/cmd/simulator/load/funder.go:25: DistributeFunds 0.0% -2025-07-23T19:39:15.4015800Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:46: New 0.0% -2025-07-23T19:39:15.4016681Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:60: Execute 0.0% -2025-07-23T19:39:15.4017626Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:89: ConfirmReachedTip 0.0% -2025-07-23T19:39:15.4018703Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:125: ExecuteLoader 0.0% -2025-07-23T19:39:15.4019703Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:30: NewSingleAddressTxWorker 0.0% -2025-07-23T19:39:15.4020664Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:50: NewTxReceiptWorker 0.0% -2025-07-23T19:39:15.4021587Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:67: IssueTx 0.0% -2025-07-23T19:39:15.4022543Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:71: ConfirmTx 0.0% -2025-07-23T19:39:15.4023099Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:78: confirmTxByNonce 0.0% -2025-07-23T19:39:15.4023677Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:103: confirmTxByReceipt 0.0% -2025-07-23T19:39:15.4024246Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:120: LatestHeight 0.0% -2025-07-23T19:39:15.4024958Z github.com/ava-labs/coreth/cmd/simulator/main/main.go:19: main 0.0% -2025-07-23T19:39:15.4025932Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:29: NewDefaultMetrics 0.0% -2025-07-23T19:39:15.4026969Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:35: NewMetrics 0.0% -2025-07-23T19:39:15.4027947Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:68: Serve 0.0% -2025-07-23T19:39:15.4028990Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:106: Shutdown 0.0% -2025-07-23T19:39:15.4029549Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:111: Print 0.0% -2025-07-23T19:39:15.4030088Z github.com/ava-labs/coreth/cmd/simulator/txs/agent.go:51: NewIssueNAgent 0.0% -2025-07-23T19:39:15.4030603Z github.com/ava-labs/coreth/cmd/simulator/txs/agent.go:61: Execute 0.0% -2025-07-23T19:39:15.4031152Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:20: GenerateTxSequence 0.0% -2025-07-23T19:39:15.4031764Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:43: GenerateTxSequences 0.0% -2025-07-23T19:39:15.4032334Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:55: addTxs 0.0% -2025-07-23T19:39:15.4032936Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:76: ConvertTxSliceToSequence 0.0% -2025-07-23T19:39:15.4033521Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:88: Chan 0.0% -2025-07-23T19:39:15.4033997Z github.com/ava-labs/coreth/cmd/utils/cmd.go:33: Fatalf 0.0% -2025-07-23T19:39:15.4034466Z github.com/ava-labs/coreth/cmd/utils/flags.go:33: CheckExclusive 0.0% -2025-07-23T19:39:15.4034988Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:81: NewDummyEngine 0.0% -2025-07-23T19:39:15.4035527Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:95: NewETHFaker 0.0% -2025-07-23T19:39:15.4036054Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:102: NewFaker 100.0% -2025-07-23T19:39:15.4036609Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:108: NewFakerWithClock 0.0% -2025-07-23T19:39:15.4037208Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:115: NewFakerWithCallbacks 0.0% -2025-07-23T19:39:15.4037791Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:122: NewFakerWithMode 0.0% -2025-07-23T19:39:15.4038621Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:130: NewFakerWithModeAndClock 0.0% -2025-07-23T19:39:15.4039225Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:137: NewCoinbaseFaker 0.0% -2025-07-23T19:39:15.4039953Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:144: NewFullFaker 0.0% -2025-07-23T19:39:15.4040523Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:151: verifyHeaderGasFields 0.0% -2025-07-23T19:39:15.4041100Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:203: verifyHeader 0.0% -2025-07-23T19:39:15.4041626Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:263: Author 0.0% -2025-07-23T19:39:15.4042143Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:267: VerifyHeader 0.0% -2025-07-23T19:39:15.4042673Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:285: VerifyUncles 0.0% -2025-07-23T19:39:15.4043200Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:292: Prepare 0.0% -2025-07-23T19:39:15.4043741Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:297: verifyBlockFee 81.0% -2025-07-23T19:39:15.4044383Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:367: Finalize 0.0% -2025-07-23T19:39:15.4044943Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:419: FinalizeAndAssemble 0.0% -2025-07-23T19:39:15.4045524Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:477: CalcDifficulty 0.0% -2025-07-23T19:39:15.4046054Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:481: Close 0.0% -2025-07-23T19:39:15.4046611Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:47: VerifyEIP4844Header 0.0% -2025-07-23T19:39:15.4047220Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:81: CalcExcessBlobGas 100.0% -2025-07-23T19:39:15.4047806Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:90: CalcBlobFee 100.0% -2025-07-23T19:39:15.4048729Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:96: fakeExponential 100.0% -2025-07-23T19:39:15.4049308Z github.com/ava-labs/coreth/core/block_validator.go:53: NewBlockValidator 100.0% -2025-07-23T19:39:15.4049838Z github.com/ava-labs/coreth/core/block_validator.go:65: ValidateBody 62.5% -2025-07-23T19:39:15.4050355Z github.com/ava-labs/coreth/core/block_validator.go:122: ValidateState 66.7% -2025-07-23T19:39:15.4050862Z github.com/ava-labs/coreth/core/block_validator.go:150: CalcGasLimit 85.7% -2025-07-23T19:39:15.4051353Z github.com/ava-labs/coreth/core/blockchain.go:210: triedbConfig 90.0% -2025-07-23T19:39:15.4051893Z github.com/ava-labs/coreth/core/blockchain.go:260: DefaultCacheConfigWithScheme 100.0% -2025-07-23T19:39:15.4052429Z github.com/ava-labs/coreth/core/blockchain.go:385: NewBlockChain 81.8% -2025-07-23T19:39:15.4052993Z github.com/ava-labs/coreth/core/blockchain.go:507: writeBlockAcceptedIndices 66.7% -2025-07-23T19:39:15.4053556Z github.com/ava-labs/coreth/core/blockchain.go:518: batchBlockAcceptedIndices 80.0% -2025-07-23T19:39:15.4054085Z github.com/ava-labs/coreth/core/blockchain.go:529: flattenSnapshot 87.5% -2025-07-23T19:39:15.4054605Z github.com/ava-labs/coreth/core/blockchain.go:558: warmAcceptedCaches 84.2% -2025-07-23T19:39:15.4055106Z github.com/ava-labs/coreth/core/blockchain.go:595: startAcceptor 92.0% -2025-07-23T19:39:15.4055604Z github.com/ava-labs/coreth/core/blockchain.go:646: addAcceptorQueue 100.0% -2025-07-23T19:39:15.4056108Z github.com/ava-labs/coreth/core/blockchain.go:663: DrainAcceptorQueue 80.0% -2025-07-23T19:39:15.4056609Z github.com/ava-labs/coreth/core/blockchain.go:677: stopAcceptor 100.0% -2025-07-23T19:39:15.4057115Z github.com/ava-labs/coreth/core/blockchain.go:699: InitializeSnapshots 0.0% -2025-07-23T19:39:15.4057608Z github.com/ava-labs/coreth/core/blockchain.go:708: SenderCacher 0.0% -2025-07-23T19:39:15.4058263Z github.com/ava-labs/coreth/core/blockchain.go:714: loadLastState 81.8% -2025-07-23T19:39:15.4058778Z github.com/ava-labs/coreth/core/blockchain.go:762: loadGenesisState 90.0% -2025-07-23T19:39:15.4059399Z github.com/ava-labs/coreth/core/blockchain.go:780: Export 0.0% -2025-07-23T19:39:15.4059858Z github.com/ava-labs/coreth/core/blockchain.go:785: ExportN 0.0% -2025-07-23T19:39:15.4060328Z github.com/ava-labs/coreth/core/blockchain.go:792: ExportCallback 0.0% -2025-07-23T19:39:15.4060819Z github.com/ava-labs/coreth/core/blockchain.go:828: writeHeadBlock 87.5% -2025-07-23T19:39:15.4061340Z github.com/ava-labs/coreth/core/blockchain.go:847: ValidateCanonicalChain 66.7% -2025-07-23T19:39:15.4061867Z github.com/ava-labs/coreth/core/blockchain.go:956: stopWithoutSaving 100.0% -2025-07-23T19:39:15.4062344Z github.com/ava-labs/coreth/core/blockchain.go:988: Stop 100.0% -2025-07-23T19:39:15.4062813Z github.com/ava-labs/coreth/core/blockchain.go:1022: SetPreference 100.0% -2025-07-23T19:39:15.4063300Z github.com/ava-labs/coreth/core/blockchain.go:1034: setPreference 87.5% -2025-07-23T19:39:15.4063843Z github.com/ava-labs/coreth/core/blockchain.go:1060: LastConsensusAcceptedBlock 100.0% -2025-07-23T19:39:15.4064517Z github.com/ava-labs/coreth/core/blockchain.go:1071: LastAcceptedBlock 100.0% -2025-07-23T19:39:15.4065016Z github.com/ava-labs/coreth/core/blockchain.go:1083: Accept 84.6% -2025-07-23T19:39:15.4065466Z github.com/ava-labs/coreth/core/blockchain.go:1132: Reject 76.9% -2025-07-23T19:39:15.4065951Z github.com/ava-labs/coreth/core/blockchain.go:1162: writeKnownBlock 83.3% -2025-07-23T19:39:15.4066503Z github.com/ava-labs/coreth/core/blockchain.go:1175: writeCanonicalBlockWithLogs 100.0% -2025-07-23T19:39:15.4067033Z github.com/ava-labs/coreth/core/blockchain.go:1186: newTip 100.0% -2025-07-23T19:39:15.4067527Z github.com/ava-labs/coreth/core/blockchain.go:1195: writeBlockAndSetHead 83.3% -2025-07-23T19:39:15.4068067Z github.com/ava-labs/coreth/core/blockchain.go:1213: writeBlockWithState 61.1% -2025-07-23T19:39:15.4069010Z github.com/ava-labs/coreth/core/blockchain.go:1260: InsertChain 86.7% -2025-07-23T19:39:15.4069507Z github.com/ava-labs/coreth/core/blockchain.go:1296: InsertBlock 100.0% -2025-07-23T19:39:15.4070018Z github.com/ava-labs/coreth/core/blockchain.go:1300: InsertBlockManual 100.0% -2025-07-23T19:39:15.4070513Z github.com/ava-labs/coreth/core/blockchain.go:1311: insertBlock 88.7% -2025-07-23T19:39:15.4071027Z github.com/ava-labs/coreth/core/blockchain.go:1448: collectUnflattenedLogs 81.2% -2025-07-23T19:39:15.4071543Z github.com/ava-labs/coreth/core/blockchain.go:1477: collectLogs 100.0% -2025-07-23T19:39:15.4072007Z github.com/ava-labs/coreth/core/blockchain.go:1485: reorg 67.2% -2025-07-23T19:39:15.4072457Z github.com/ava-labs/coreth/core/blockchain.go:1642: String 75.0% -2025-07-23T19:39:15.4072912Z github.com/ava-labs/coreth/core/blockchain.go:1668: BadBlocks 0.0% -2025-07-23T19:39:15.4073376Z github.com/ava-labs/coreth/core/blockchain.go:1681: addBadBlock 100.0% -2025-07-23T19:39:15.4073856Z github.com/ava-labs/coreth/core/blockchain.go:1689: reportBlock 100.0% -2025-07-23T19:39:15.4074353Z github.com/ava-labs/coreth/core/blockchain.go:1705: reprocessBlock 77.8% -2025-07-23T19:39:15.4074850Z github.com/ava-labs/coreth/core/blockchain.go:1747: commitWithSnap 75.0% -2025-07-23T19:39:15.4075343Z github.com/ava-labs/coreth/core/blockchain.go:1783: initSnapshot 90.0% -2025-07-23T19:39:15.4075831Z github.com/ava-labs/coreth/core/blockchain.go:1814: reprocessState 83.1% -2025-07-23T19:39:15.4076334Z github.com/ava-labs/coreth/core/blockchain.go:1956: protectTrieIndex 60.0% -2025-07-23T19:39:15.4076858Z github.com/ava-labs/coreth/core/blockchain.go:1978: populateMissingTries 74.3% -2025-07-23T19:39:15.4077442Z github.com/ava-labs/coreth/core/blockchain.go:2059: CleanBlockRootsAboveLastAccepted 85.7% -2025-07-23T19:39:15.4078060Z github.com/ava-labs/coreth/core/blockchain.go:2102: gatherBlockRootsAboveLastAccepted 90.9% -2025-07-23T19:39:15.4078858Z github.com/ava-labs/coreth/core/blockchain.go:2132: ResetToStateSyncedBlock 0.0% -2025-07-23T19:39:15.4079524Z github.com/ava-labs/coreth/core/blockchain.go:2187: CacheConfig 100.0% -2025-07-23T19:39:15.4080032Z github.com/ava-labs/coreth/core/blockchain.go:2191: repairTxIndexTail 100.0% -2025-07-23T19:39:15.4080693Z github.com/ava-labs/coreth/core/blockchain_ext.go:15: getOrOverrideAsRegisteredCounter 83.3% -2025-07-23T19:39:15.4081297Z github.com/ava-labs/coreth/core/blockchain_iterator.go:60: newBlockChainIterator 85.0% -2025-07-23T19:39:15.4081873Z github.com/ava-labs/coreth/core/blockchain_iterator.go:120: populateReaders 88.9% -2025-07-23T19:39:15.4082394Z github.com/ava-labs/coreth/core/blockchain_iterator.go:139: Next 75.0% -2025-07-23T19:39:15.4082884Z github.com/ava-labs/coreth/core/blockchain_iterator.go:180: Stop 100.0% -2025-07-23T19:39:15.4083388Z github.com/ava-labs/coreth/core/blockchain_reader.go:45: CurrentHeader 100.0% -2025-07-23T19:39:15.4083906Z github.com/ava-labs/coreth/core/blockchain_reader.go:51: CurrentBlock 100.0% -2025-07-23T19:39:15.4084549Z github.com/ava-labs/coreth/core/blockchain_reader.go:57: HasHeader 100.0% -2025-07-23T19:39:15.4085050Z github.com/ava-labs/coreth/core/blockchain_reader.go:63: GetHeader 100.0% -2025-07-23T19:39:15.4085559Z github.com/ava-labs/coreth/core/blockchain_reader.go:69: GetHeaderByHash 100.0% -2025-07-23T19:39:15.4086101Z github.com/ava-labs/coreth/core/blockchain_reader.go:75: GetHeaderByNumber 100.0% -2025-07-23T19:39:15.4086611Z github.com/ava-labs/coreth/core/blockchain_reader.go:81: GetBody 0.0% -2025-07-23T19:39:15.4087089Z github.com/ava-labs/coreth/core/blockchain_reader.go:100: HasBlock 60.0% -2025-07-23T19:39:15.4087589Z github.com/ava-labs/coreth/core/blockchain_reader.go:111: HasFastBlock 0.0% -2025-07-23T19:39:15.4088089Z github.com/ava-labs/coreth/core/blockchain_reader.go:123: GetBlock 100.0% -2025-07-23T19:39:15.4088802Z github.com/ava-labs/coreth/core/blockchain_reader.go:138: GetBlockByHash 75.0% -2025-07-23T19:39:15.4089341Z github.com/ava-labs/coreth/core/blockchain_reader.go:148: GetBlockByNumber 100.0% -2025-07-23T19:39:15.4089888Z github.com/ava-labs/coreth/core/blockchain_reader.go:158: GetBlocksFromHash 0.0% -2025-07-23T19:39:15.4090429Z github.com/ava-labs/coreth/core/blockchain_reader.go:176: GetReceiptsByHash 76.9% -2025-07-23T19:39:15.4090967Z github.com/ava-labs/coreth/core/blockchain_reader.go:197: GetCanonicalHash 100.0% -2025-07-23T19:39:15.4091530Z github.com/ava-labs/coreth/core/blockchain_reader.go:211: GetTransactionLookup 87.5% -2025-07-23T19:39:15.4092075Z github.com/ava-labs/coreth/core/blockchain_reader.go:235: HasState 100.0% -2025-07-23T19:39:15.4092598Z github.com/ava-labs/coreth/core/blockchain_reader.go:242: HasBlockAndState 100.0% -2025-07-23T19:39:15.4093117Z github.com/ava-labs/coreth/core/blockchain_reader.go:252: State 100.0% -2025-07-23T19:39:15.4093612Z github.com/ava-labs/coreth/core/blockchain_reader.go:257: StateAt 100.0% -2025-07-23T19:39:15.4094111Z github.com/ava-labs/coreth/core/blockchain_reader.go:262: Config 100.0% -2025-07-23T19:39:15.4094600Z github.com/ava-labs/coreth/core/blockchain_reader.go:265: Engine 100.0% -2025-07-23T19:39:15.4095085Z github.com/ava-labs/coreth/core/blockchain_reader.go:268: Snapshots 0.0% -2025-07-23T19:39:15.4095571Z github.com/ava-labs/coreth/core/blockchain_reader.go:273: Validator 0.0% -2025-07-23T19:39:15.4096068Z github.com/ava-labs/coreth/core/blockchain_reader.go:278: Processor 0.0% -2025-07-23T19:39:15.4096562Z github.com/ava-labs/coreth/core/blockchain_reader.go:283: StateCache 0.0% -2025-07-23T19:39:15.4097045Z github.com/ava-labs/coreth/core/blockchain_reader.go:288: GasLimit 0.0% -2025-07-23T19:39:15.4097532Z github.com/ava-labs/coreth/core/blockchain_reader.go:293: Genesis 100.0% -2025-07-23T19:39:15.4098033Z github.com/ava-labs/coreth/core/blockchain_reader.go:298: GetVMConfig 0.0% -2025-07-23T19:39:15.4098933Z github.com/ava-labs/coreth/core/blockchain_reader.go:303: TrieDB 100.0% -2025-07-23T19:39:15.4099437Z github.com/ava-labs/coreth/core/blockchain_reader.go:308: HeaderChain 0.0% -2025-07-23T19:39:15.4100001Z github.com/ava-labs/coreth/core/blockchain_reader.go:313: SubscribeRemovedLogsEvent 0.0% -2025-07-23T19:39:15.4100588Z github.com/ava-labs/coreth/core/blockchain_reader.go:318: SubscribeChainEvent 0.0% -2025-07-23T19:39:15.4101171Z github.com/ava-labs/coreth/core/blockchain_reader.go:323: SubscribeChainHeadEvent 0.0% -2025-07-23T19:39:15.4101763Z github.com/ava-labs/coreth/core/blockchain_reader.go:328: SubscribeChainSideEvent 0.0% -2025-07-23T19:39:15.4102332Z github.com/ava-labs/coreth/core/blockchain_reader.go:333: SubscribeLogsEvent 0.0% -2025-07-23T19:39:15.4102937Z github.com/ava-labs/coreth/core/blockchain_reader.go:339: SubscribeBlockProcessingEvent 0.0% -2025-07-23T19:39:15.4103555Z github.com/ava-labs/coreth/core/blockchain_reader.go:344: SubscribeChainAcceptedEvent 100.0% -2025-07-23T19:39:15.4104289Z github.com/ava-labs/coreth/core/blockchain_reader.go:349: SubscribeAcceptedLogsEvent 100.0% -2025-07-23T19:39:15.4104931Z github.com/ava-labs/coreth/core/blockchain_reader.go:354: SubscribeAcceptedTransactionEvent 0.0% -2025-07-23T19:39:15.4105502Z github.com/ava-labs/coreth/core/blockchain_reader.go:359: GetLogs 0.0% -2025-07-23T19:39:15.4106002Z github.com/ava-labs/coreth/core/bloom_indexer.go:60: NewBloomIndexer 0.0% -2025-07-23T19:39:15.4106481Z github.com/ava-labs/coreth/core/bloom_indexer.go:72: Reset 0.0% -2025-07-23T19:39:15.4106941Z github.com/ava-labs/coreth/core/bloom_indexer.go:80: Process 0.0% -2025-07-23T19:39:15.4107405Z github.com/ava-labs/coreth/core/bloom_indexer.go:88: Commit 0.0% -2025-07-23T19:39:15.4107849Z github.com/ava-labs/coreth/core/bloom_indexer.go:101: Prune 0.0% -2025-07-23T19:39:15.4108510Z github.com/ava-labs/coreth/core/bloombits/generator.go:56: NewGenerator 83.3% -2025-07-23T19:39:15.4109052Z github.com/ava-labs/coreth/core/bloombits/generator.go:69: AddBloom 90.5% -2025-07-23T19:39:15.4109554Z github.com/ava-labs/coreth/core/bloombits/generator.go:101: Bitset 60.0% -2025-07-23T19:39:15.4110092Z github.com/ava-labs/coreth/core/bloombits/matcher.go:49: calcBloomIndexes 100.0% -2025-07-23T19:39:15.4110632Z github.com/ava-labs/coreth/core/bloombits/matcher.go:103: NewMatcher 100.0% -2025-07-23T19:39:15.4111145Z github.com/ava-labs/coreth/core/bloombits/matcher.go:148: addScheduler 100.0% -2025-07-23T19:39:15.4111648Z github.com/ava-labs/coreth/core/bloombits/matcher.go:158: Start 97.0% -2025-07-23T19:39:15.4112129Z github.com/ava-labs/coreth/core/bloombits/matcher.go:235: run 100.0% -2025-07-23T19:39:15.4112615Z github.com/ava-labs/coreth/core/bloombits/matcher.go:270: subMatch 98.3% -2025-07-23T19:39:15.4113119Z github.com/ava-labs/coreth/core/bloombits/matcher.go:392: distributor 100.0% -2025-07-23T19:39:15.4113634Z github.com/ava-labs/coreth/core/bloombits/matcher.go:534: Close 100.0% -2025-07-23T19:39:15.4114114Z github.com/ava-labs/coreth/core/bloombits/matcher.go:543: Error 0.0% -2025-07-23T19:39:15.4114641Z github.com/ava-labs/coreth/core/bloombits/matcher.go:553: allocateRetrieval 100.0% -2025-07-23T19:39:15.4115201Z github.com/ava-labs/coreth/core/bloombits/matcher.go:567: pendingSections 100.0% -2025-07-23T19:39:15.4115761Z github.com/ava-labs/coreth/core/bloombits/matcher.go:581: allocateSections 100.0% -2025-07-23T19:39:15.4116308Z github.com/ava-labs/coreth/core/bloombits/matcher.go:599: deliverSections 100.0% -2025-07-23T19:39:15.4116832Z github.com/ava-labs/coreth/core/bloombits/matcher.go:609: Multiplex 81.8% -2025-07-23T19:39:15.4117355Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:60: newScheduler 100.0% -2025-07-23T19:39:15.4117866Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:70: run 100.0% -2025-07-23T19:39:15.4118676Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:84: reset 100.0% -2025-07-23T19:39:15.4119203Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:98: scheduleRequests 100.0% -2025-07-23T19:39:15.4119787Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:145: scheduleDeliveries 100.0% -2025-07-23T19:39:15.4120344Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:182: deliver 100.0% -2025-07-23T19:39:15.4120870Z github.com/ava-labs/coreth/core/bounded_buffer.go:21: NewBoundedBuffer 100.0% -2025-07-23T19:39:15.4121390Z github.com/ava-labs/coreth/core/bounded_buffer.go:32: Insert 90.0% -2025-07-23T19:39:15.4121847Z github.com/ava-labs/coreth/core/bounded_buffer.go:55: Last 100.0% -2025-07-23T19:39:15.4122333Z github.com/ava-labs/coreth/core/chain_indexer.go:115: NewChainIndexer 100.0% -2025-07-23T19:39:15.4122835Z github.com/ava-labs/coreth/core/chain_indexer.go:142: AddCheckpoint 0.0% -2025-07-23T19:39:15.4123430Z github.com/ava-labs/coreth/core/chain_indexer.go:160: Start 0.0% -2025-07-23T19:39:15.4123884Z github.com/ava-labs/coreth/core/chain_indexer.go:169: Close 58.8% -2025-07-23T19:39:15.4124343Z github.com/ava-labs/coreth/core/chain_indexer.go:209: eventLoop 0.0% -2025-07-23T19:39:15.4124807Z github.com/ava-labs/coreth/core/chain_indexer.go:255: newHead 78.1% -2025-07-23T19:39:15.4125276Z github.com/ava-labs/coreth/core/chain_indexer.go:316: updateLoop 95.2% -2025-07-23T19:39:15.4125775Z github.com/ava-labs/coreth/core/chain_indexer.go:400: processSection 68.4% -2025-07-23T19:39:15.4126281Z github.com/ava-labs/coreth/core/chain_indexer.go:434: verifyLastHead 75.0% -2025-07-23T19:39:15.4126764Z github.com/ava-labs/coreth/core/chain_indexer.go:446: Sections 100.0% -2025-07-23T19:39:15.4127256Z github.com/ava-labs/coreth/core/chain_indexer.go:455: AddChildIndexer 70.0% -2025-07-23T19:39:15.4127736Z github.com/ava-labs/coreth/core/chain_indexer.go:477: Prune 0.0% -2025-07-23T19:39:15.4128447Z github.com/ava-labs/coreth/core/chain_indexer.go:483: loadValidSections 66.7% -2025-07-23T19:39:15.4128985Z github.com/ava-labs/coreth/core/chain_indexer.go:491: setValidSections 100.0% -2025-07-23T19:39:15.4129492Z github.com/ava-labs/coreth/core/chain_indexer.go:507: SectionHead 100.0% -2025-07-23T19:39:15.4130004Z github.com/ava-labs/coreth/core/chain_indexer.go:520: setSectionHead 100.0% -2025-07-23T19:39:15.4130519Z github.com/ava-labs/coreth/core/chain_indexer.go:529: removeSectionHead 100.0% -2025-07-23T19:39:15.4131019Z github.com/ava-labs/coreth/core/chain_makers.go:68: SetCoinbase 50.0% -2025-07-23T19:39:15.4131481Z github.com/ava-labs/coreth/core/chain_makers.go:80: SetExtra 0.0% -2025-07-23T19:39:15.4131939Z github.com/ava-labs/coreth/core/chain_makers.go:85: AppendExtra 0.0% -2025-07-23T19:39:15.4132388Z github.com/ava-labs/coreth/core/chain_makers.go:90: SetNonce 0.0% -2025-07-23T19:39:15.4132864Z github.com/ava-labs/coreth/core/chain_makers.go:97: SetDifficulty 100.0% -2025-07-23T19:39:15.4133344Z github.com/ava-labs/coreth/core/chain_makers.go:102: Difficulty 0.0% -2025-07-23T19:39:15.4133847Z github.com/ava-labs/coreth/core/chain_makers.go:108: SetParentBeaconRoot 0.0% -2025-07-23T19:39:15.4134470Z github.com/ava-labs/coreth/core/chain_makers.go:124: addTx 90.9% -2025-07-23T19:39:15.4135012Z github.com/ava-labs/coreth/core/chain_makers.go:149: AddTx 100.0% -2025-07-23T19:39:15.4135737Z github.com/ava-labs/coreth/core/chain_makers.go:160: AddTxWithChain 0.0% -2025-07-23T19:39:15.4136378Z github.com/ava-labs/coreth/core/chain_makers.go:167: AddTxWithVMConfig 100.0% -2025-07-23T19:39:15.4137019Z github.com/ava-labs/coreth/core/chain_makers.go:172: GetBalance 0.0% -2025-07-23T19:39:15.4137611Z github.com/ava-labs/coreth/core/chain_makers.go:180: AddUncheckedTx 0.0% -2025-07-23T19:39:15.4138400Z github.com/ava-labs/coreth/core/chain_makers.go:185: Number 0.0% -2025-07-23T19:39:15.4139139Z github.com/ava-labs/coreth/core/chain_makers.go:190: Timestamp 100.0% -2025-07-23T19:39:15.4139783Z github.com/ava-labs/coreth/core/chain_makers.go:195: BaseFee 100.0% -2025-07-23T19:39:15.4140334Z github.com/ava-labs/coreth/core/chain_makers.go:200: Gas 0.0% -2025-07-23T19:39:15.4140868Z github.com/ava-labs/coreth/core/chain_makers.go:205: Signer 0.0% -2025-07-23T19:39:15.4141512Z github.com/ava-labs/coreth/core/chain_makers.go:214: AddUncheckedReceipt 0.0% -2025-07-23T19:39:15.4157438Z github.com/ava-labs/coreth/core/chain_makers.go:220: TxNonce 66.7% -2025-07-23T19:39:15.4158038Z github.com/ava-labs/coreth/core/chain_makers.go:228: AddUncle 100.0% -2025-07-23T19:39:15.4158804Z github.com/ava-labs/coreth/core/chain_makers.go:235: PrevBlock 60.0% -2025-07-23T19:39:15.4159317Z github.com/ava-labs/coreth/core/chain_makers.go:248: OffsetTime 0.0% -2025-07-23T19:39:15.4160038Z github.com/ava-labs/coreth/core/chain_makers.go:257: SetOnBlockGenerated 0.0% -2025-07-23T19:39:15.4160576Z github.com/ava-labs/coreth/core/chain_makers.go:273: GenerateChain 79.2% -2025-07-23T19:39:15.4161110Z github.com/ava-labs/coreth/core/chain_makers.go:362: GenerateChainWithGenesis 87.5% -2025-07-23T19:39:15.4161640Z github.com/ava-labs/coreth/core/chain_makers.go:374: makeHeader 89.5% -2025-07-23T19:39:15.4162138Z github.com/ava-labs/coreth/core/chain_makers.go:425: newChainMaker 100.0% -2025-07-23T19:39:15.4162611Z github.com/ava-labs/coreth/core/chain_makers.go:434: add 100.0% -2025-07-23T19:39:15.4163078Z github.com/ava-labs/coreth/core/chain_makers.go:440: blockByNumber 0.0% -2025-07-23T19:39:15.4163562Z github.com/ava-labs/coreth/core/chain_makers.go:455: Config 100.0% -2025-07-23T19:39:15.4164021Z github.com/ava-labs/coreth/core/chain_makers.go:460: Engine 0.0% -2025-07-23T19:39:15.4164493Z github.com/ava-labs/coreth/core/chain_makers.go:464: CurrentHeader 0.0% -2025-07-23T19:39:15.4164998Z github.com/ava-labs/coreth/core/chain_makers.go:471: GetHeaderByNumber 0.0% -2025-07-23T19:39:15.4165505Z github.com/ava-labs/coreth/core/chain_makers.go:479: GetHeaderByHash 0.0% -2025-07-23T19:39:15.4165983Z github.com/ava-labs/coreth/core/chain_makers.go:487: GetHeader 0.0% -2025-07-23T19:39:15.4166437Z github.com/ava-labs/coreth/core/chain_makers.go:491: GetBlock 0.0% -2025-07-23T19:39:15.4166954Z github.com/ava-labs/coreth/core/coretest/test_indices.go:21: CheckTxIndices 100.0% -2025-07-23T19:39:15.4167440Z github.com/ava-labs/coreth/core/evm.go:47: init 100.0% -2025-07-23T19:39:15.4167877Z github.com/ava-labs/coreth/core/evm.go:61: OverrideNewEVMArgs 100.0% -2025-07-23T19:39:15.4168586Z github.com/ava-labs/coreth/core/evm.go:74: OverrideEVMResetArgs 100.0% -2025-07-23T19:39:15.4169058Z github.com/ava-labs/coreth/core/evm.go:79: wrapStateDB 100.0% -2025-07-23T19:39:15.4169519Z github.com/ava-labs/coreth/core/evm.go:90: GetCommittedState 100.0% -2025-07-23T19:39:15.4169998Z github.com/ava-labs/coreth/core/evm.go:106: NewEVMBlockContext 100.0% -2025-07-23T19:39:15.4170538Z github.com/ava-labs/coreth/core/evm.go:147: NewEVMBlockContextWithPredicateResults 0.0% -2025-07-23T19:39:15.4171086Z github.com/ava-labs/coreth/core/evm.go:160: NewEVMTxContext 100.0% -2025-07-23T19:39:15.4171773Z github.com/ava-labs/coreth/core/evm.go:173: GetHashFn 10.0% -2025-07-23T19:39:15.4172354Z github.com/ava-labs/coreth/core/evm.go:213: CanTransfer 100.0% -2025-07-23T19:39:15.4172786Z github.com/ava-labs/coreth/core/evm.go:218: Transfer 100.0% -2025-07-23T19:39:15.4173248Z github.com/ava-labs/coreth/core/extstate/statedb.go:38: New 100.0% -2025-07-23T19:39:15.4173752Z github.com/ava-labs/coreth/core/extstate/statedb.go:45: Prepare 100.0% -2025-07-23T19:39:15.4174314Z github.com/ava-labs/coreth/core/extstate/statedb.go:61: GetPredicateStorageSlots 75.0% -2025-07-23T19:39:15.4175029Z github.com/ava-labs/coreth/core/fifo_cache.go:24: NewFIFOCache 100.0% -2025-07-23T19:39:15.4175487Z github.com/ava-labs/coreth/core/fifo_cache.go:43: Put 100.0% -2025-07-23T19:39:15.4175906Z github.com/ava-labs/coreth/core/fifo_cache.go:51: Get 100.0% -2025-07-23T19:39:15.4176323Z github.com/ava-labs/coreth/core/fifo_cache.go:61: remove 0.0% -2025-07-23T19:39:15.4176742Z github.com/ava-labs/coreth/core/fifo_cache.go:68: Put 0.0% -2025-07-23T19:39:15.4177152Z github.com/ava-labs/coreth/core/fifo_cache.go:69: Get 100.0% -2025-07-23T19:39:15.4177567Z github.com/ava-labs/coreth/core/gaspool.go:40: AddGas 75.0% -2025-07-23T19:39:15.4177986Z github.com/ava-labs/coreth/core/gaspool.go:50: SubGas 100.0% -2025-07-23T19:39:15.4178637Z github.com/ava-labs/coreth/core/gaspool.go:59: Gas 0.0% -2025-07-23T19:39:15.4179050Z github.com/ava-labs/coreth/core/gaspool.go:64: SetGas 0.0% -2025-07-23T19:39:15.4179591Z github.com/ava-labs/coreth/core/gaspool.go:68: String 0.0% -2025-07-23T19:39:15.4180061Z github.com/ava-labs/coreth/core/gen_genesis.go:20: MarshalJSON 0.0% -2025-07-23T19:39:15.4180542Z github.com/ava-labs/coreth/core/gen_genesis.go:63: UnmarshalJSON 0.0% -2025-07-23T19:39:15.4180990Z github.com/ava-labs/coreth/core/genesis.go:109: Error 0.0% -2025-07-23T19:39:15.4181459Z github.com/ava-labs/coreth/core/genesis.go:128: SetupGenesisBlock 77.8% -2025-07-23T19:39:15.4181946Z github.com/ava-labs/coreth/core/genesis.go:212: IsVerkle 100.0% -2025-07-23T19:39:15.4182398Z github.com/ava-labs/coreth/core/genesis.go:217: ToBlock 100.0% -2025-07-23T19:39:15.4182846Z github.com/ava-labs/coreth/core/genesis.go:222: trieConfig 100.0% -2025-07-23T19:39:15.4183302Z github.com/ava-labs/coreth/core/genesis.go:233: toBlock 90.5% -2025-07-23T19:39:15.4183741Z github.com/ava-labs/coreth/core/genesis.go:321: Commit 80.0% -2025-07-23T19:39:15.4184184Z github.com/ava-labs/coreth/core/genesis.go:344: MustCommit 75.0% -2025-07-23T19:39:15.4184690Z github.com/ava-labs/coreth/core/genesis.go:353: GenesisBlockForTesting 100.0% -2025-07-23T19:39:15.4185211Z github.com/ava-labs/coreth/core/genesis.go:363: ReadBlockByHash 75.0% -2025-07-23T19:39:15.4185714Z github.com/ava-labs/coreth/core/headerchain.go:84: NewHeaderChain 85.7% -2025-07-23T19:39:15.4186220Z github.com/ava-labs/coreth/core/headerchain.go:121: GetBlockNumber 100.0% -2025-07-23T19:39:15.4186715Z github.com/ava-labs/coreth/core/headerchain.go:134: GetHeader 100.0% -2025-07-23T19:39:15.4187210Z github.com/ava-labs/coreth/core/headerchain.go:150: GetHeaderByHash 75.0% -2025-07-23T19:39:15.4187701Z github.com/ava-labs/coreth/core/headerchain.go:161: HasHeader 66.7% -2025-07-23T19:39:15.4188310Z github.com/ava-labs/coreth/core/headerchain.go:170: GetHeaderByNumber 100.0% -2025-07-23T19:39:15.4188846Z github.com/ava-labs/coreth/core/headerchain.go:181: GetCanonicalHash 100.0% -2025-07-23T19:39:15.4189359Z github.com/ava-labs/coreth/core/headerchain.go:187: CurrentHeader 100.0% -2025-07-23T19:39:15.4189869Z github.com/ava-labs/coreth/core/headerchain.go:193: SetCurrentHeader 100.0% -2025-07-23T19:39:15.4190365Z github.com/ava-labs/coreth/core/headerchain.go:199: SetGenesis 100.0% -2025-07-23T19:39:15.4190828Z github.com/ava-labs/coreth/core/headerchain.go:204: Config 0.0% -2025-07-23T19:39:15.4191275Z github.com/ava-labs/coreth/core/headerchain.go:207: Engine 0.0% -2025-07-23T19:39:15.4191723Z github.com/ava-labs/coreth/core/headerchain.go:211: GetBlock 0.0% -2025-07-23T19:39:15.4192227Z github.com/ava-labs/coreth/core/predicate_check.go:22: CheckPredicates 100.0% -2025-07-23T19:39:15.4192766Z github.com/ava-labs/coreth/core/sender_cacher.go:61: NewTxSenderCacher 100.0% -2025-07-23T19:39:15.4193264Z github.com/ava-labs/coreth/core/sender_cacher.go:78: cache 100.0% -2025-07-23T19:39:15.4193849Z github.com/ava-labs/coreth/core/sender_cacher.go:89: Recover 90.9% -2025-07-23T19:39:15.4194318Z github.com/ava-labs/coreth/core/sender_cacher.go:119: Shutdown 100.0% -2025-07-23T19:39:15.4194812Z github.com/ava-labs/coreth/core/state/database.go:42: NewDatabase 100.0% -2025-07-23T19:39:15.4195347Z github.com/ava-labs/coreth/core/state/database.go:46: NewDatabaseWithConfig 100.0% -2025-07-23T19:39:15.4195913Z github.com/ava-labs/coreth/core/state/database.go:51: NewDatabaseWithNodeDB 0.0% -2025-07-23T19:39:15.4196457Z github.com/ava-labs/coreth/core/state/database.go:55: wrapIfFirewood 100.0% -2025-07-23T19:39:15.4196990Z github.com/ava-labs/coreth/core/state/firewood_database.go:25: OpenTrie 100.0% -2025-07-23T19:39:15.4197548Z github.com/ava-labs/coreth/core/state/firewood_database.go:30: OpenStorageTrie 75.0% -2025-07-23T19:39:15.4198309Z github.com/ava-labs/coreth/core/state/firewood_database.go:40: CopyTrie 0.0% -2025-07-23T19:39:15.4199020Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:42: stateBloomHash 100.0% -2025-07-23T19:39:15.4199606Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:69: newStateBloomWithSize 80.0% -2025-07-23T19:39:15.4200203Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:80: NewStateBloomFromDisk 0.0% -2025-07-23T19:39:15.4200745Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:90: Commit 63.6% -2025-07-23T19:39:15.4201232Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:112: Put 37.5% -2025-07-23T19:39:15.4201712Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:128: Delete 0.0% -2025-07-23T19:39:15.4202214Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:134: Contain 100.0% -2025-07-23T19:39:15.4202726Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:96: NewPruner 66.7% -2025-07-23T19:39:15.4203231Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:136: prune 38.2% -2025-07-23T19:39:15.4203733Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:261: Prune 66.7% -2025-07-23T19:39:15.4204339Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:315: RecoverPruning 26.7% -2025-07-23T19:39:15.4204895Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:344: extractGenesis 48.6% -2025-07-23T19:39:15.4205461Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:403: bloomFilterName 100.0% -2025-07-23T19:39:15.4206017Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:407: isBloomFilter 0.0% -2025-07-23T19:39:15.4206576Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:415: findBloomFilter 50.0% -2025-07-23T19:39:15.4207114Z github.com/ava-labs/coreth/core/state/snapshot/context.go:55: Info 100.0% -2025-07-23T19:39:15.4207622Z github.com/ava-labs/coreth/core/state/snapshot/context.go:61: Debug 100.0% -2025-07-23T19:39:15.4208240Z github.com/ava-labs/coreth/core/state/snapshot/context.go:67: log 45.0% -2025-07-23T19:39:15.4208837Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:65: GenerateAccountTrieRoot 0.0% -2025-07-23T19:39:15.4209494Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:70: GenerateStorageTrieRoot 0.0% -2025-07-23T19:39:15.4210102Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:77: GenerateTrie 0.0% -2025-07-23T19:39:15.4210708Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:134: newGenerateStats 100.0% -2025-07-23T19:39:15.4211321Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:143: progressAccounts 0.0% -2025-07-23T19:39:15.4211929Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:152: finishAccounts 100.0% -2025-07-23T19:39:15.4212530Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:160: progressContract 0.0% -2025-07-23T19:39:15.4213129Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:172: finishContract 100.0% -2025-07-23T19:39:15.4213831Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:182: report 42.9% -2025-07-23T19:39:15.4214394Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:222: reportDone 100.0% -2025-07-23T19:39:15.4214957Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:236: runReport 100.0% -2025-07-23T19:39:15.4215541Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:257: generateTrieRoot 79.4% -2025-07-23T19:39:15.4216149Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:375: stackTrieGenerate 75.0% -2025-07-23T19:39:15.4216715Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:92: init 80.0% -2025-07-23T19:39:15.4217284Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:140: destructBloomHash 100.0% -2025-07-23T19:39:15.4217890Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:145: accountBloomHash 100.0% -2025-07-23T19:39:15.4218706Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:150: storageBloomHash 100.0% -2025-07-23T19:39:15.4219487Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:157: newDiffLayer 83.3% -2025-07-23T19:39:15.4220064Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:201: rebloom 100.0% -2025-07-23T19:39:15.4220610Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:242: Root 100.0% -2025-07-23T19:39:15.4221156Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:247: BlockHash 100.0% -2025-07-23T19:39:15.4221738Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:252: Parent 100.0% -2025-07-23T19:39:15.4222289Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:261: Stale 100.0% -2025-07-23T19:39:15.4222834Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:267: Account 88.9% -2025-07-23T19:39:15.4223384Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:286: AccountRLP 86.7% -2025-07-23T19:39:15.4223934Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:318: accountRLP 95.0% -2025-07-23T19:39:15.4224489Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:357: Storage 60.0% -2025-07-23T19:39:15.4225028Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:389: storage 69.6% -2025-07-23T19:39:15.4225560Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:431: Update 100.0% -2025-07-23T19:39:15.4226093Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:438: flatten 95.5% -2025-07-23T19:39:15.4226646Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:497: AccountList 100.0% -2025-07-23T19:39:15.4227215Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:533: StorageList 100.0% -2025-07-23T19:39:15.4227762Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:70: Release 0.0% -2025-07-23T19:39:15.4228404Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:78: Root 100.0% -2025-07-23T19:39:15.4228950Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:83: BlockHash 100.0% -2025-07-23T19:39:15.4229504Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:88: Parent 100.0% -2025-07-23T19:39:15.4230035Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:94: Stale 100.0% -2025-07-23T19:39:15.4230575Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:103: Account 88.9% -2025-07-23T19:39:15.4231127Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:120: AccountRLP 100.0% -2025-07-23T19:39:15.4231674Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:158: Storage 100.0% -2025-07-23T19:39:15.4232214Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:199: Update 100.0% -2025-07-23T19:39:15.4232784Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:55: generateSnapshot 91.7% -2025-07-23T19:39:15.4233377Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:90: journalProgress 88.2% -2025-07-23T19:39:15.4234091Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:127: checkAndFlush 50.0% -2025-07-23T19:39:15.4234651Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:178: generate 68.9% -2025-07-23T19:39:15.4235257Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:335: newMeteredSnapshotCache 100.0% -2025-07-23T19:39:15.4235893Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:69: AccountIterator 100.0% -2025-07-23T19:39:15.4236443Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:83: Next 70.0% -2025-07-23T19:39:15.4236972Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:108: Error 100.0% -2025-07-23T19:39:15.4237501Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:113: Hash 100.0% -2025-07-23T19:39:15.4238030Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:125: Account 81.8% -2025-07-23T19:39:15.4238790Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:143: Release 0.0% -2025-07-23T19:39:15.4239493Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:153: AccountIterator 100.0% -2025-07-23T19:39:15.4240064Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:162: Next 90.0% -2025-07-23T19:39:15.4240594Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:186: Error 100.0% -2025-07-23T19:39:15.4241125Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:194: Hash 100.0% -2025-07-23T19:39:15.4241662Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:199: Account 100.0% -2025-07-23T19:39:15.4242201Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:204: Release 33.3% -2025-07-23T19:39:15.4242765Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:233: StorageIterator 100.0% -2025-07-23T19:39:15.4243322Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:250: Next 70.0% -2025-07-23T19:39:15.4243846Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:275: Error 100.0% -2025-07-23T19:39:15.4244377Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:280: Hash 100.0% -2025-07-23T19:39:15.4244886Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:292: Slot 72.7% -2025-07-23T19:39:15.4245407Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:311: Release 0.0% -2025-07-23T19:39:15.4245977Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:325: StorageIterator 100.0% -2025-07-23T19:39:15.4246528Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:341: Next 90.0% -2025-07-23T19:39:15.4247050Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:365: Error 100.0% -2025-07-23T19:39:15.4247570Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:373: Hash 100.0% -2025-07-23T19:39:15.4248317Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:378: Slot 100.0% -2025-07-23T19:39:15.4248880Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:383: Release 33.3% -2025-07-23T19:39:15.4249523Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:53: initBinaryAccountIterator 100.0% -2025-07-23T19:39:15.4250235Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:78: initBinaryStorageIterator 82.6% -2025-07-23T19:39:15.4250869Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:130: Next 100.0% -2025-07-23T19:39:15.4251441Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:162: Error 100.0% -2025-07-23T19:39:15.4252012Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:167: Hash 100.0% -2025-07-23T19:39:15.4252592Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:176: Account 57.1% -2025-07-23T19:39:15.4253170Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:194: Slot 57.1% -2025-07-23T19:39:15.4253738Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:207: Release 0.0% -2025-07-23T19:39:15.4254514Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:214: newBinaryAccountIterator 100.0% -2025-07-23T19:39:15.4255216Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:221: newBinaryStorageIterator 100.0% -2025-07-23T19:39:15.4255832Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:47: Cmp 50.0% -2025-07-23T19:39:15.4256422Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:86: newFastIterator 92.9% -2025-07-23T19:39:15.4257007Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:124: init 87.5% -2025-07-23T19:39:15.4257549Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:179: Next 83.3% -2025-07-23T19:39:15.4258242Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:235: next 100.0% -2025-07-23T19:39:15.4258860Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:296: move 100.0% -2025-07-23T19:39:15.4259424Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:304: Error 100.0% -2025-07-23T19:39:15.4260106Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:309: Hash 100.0% -2025-07-23T19:39:15.4260670Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:315: Account 100.0% -2025-07-23T19:39:15.4261233Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:321: Slot 100.0% -2025-07-23T19:39:15.4261794Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:327: Release 100.0% -2025-07-23T19:39:15.4262353Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:335: Debug 0.0% -2025-07-23T19:39:15.4262969Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:345: newFastAccountIterator 100.0% -2025-07-23T19:39:15.4263651Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:352: newFastStorageIterator 100.0% -2025-07-23T19:39:15.4264271Z github.com/ava-labs/coreth/core/state/snapshot/journal.go:61: loadSnapshot 0.0% -2025-07-23T19:39:15.4264883Z github.com/ava-labs/coreth/core/state/snapshot/journal.go:143: ResetSnapshotGeneration 0.0% -2025-07-23T19:39:15.4265459Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:205: New 0.0% -2025-07-23T19:39:15.4266000Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:254: insertSnap 100.0% -2025-07-23T19:39:15.4266554Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:266: Snapshot 100.0% -2025-07-23T19:39:15.4267112Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:272: getSnapshot 85.7% -2025-07-23T19:39:15.4267655Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:288: Snapshots 0.0% -2025-07-23T19:39:15.4268329Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:323: WithBlockHashes 0.0% -2025-07-23T19:39:15.4268898Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:329: Update 0.0% -2025-07-23T19:39:15.4269489Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:350: UpdateWithBlockHashes 81.8% -2025-07-23T19:39:15.4270125Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:386: verifyIntegrity 57.1% -2025-07-23T19:39:15.4270682Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:413: Cap 0.0% -2025-07-23T19:39:15.4271209Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:433: Flatten 83.1% -2025-07-23T19:39:15.4271775Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:533: NumStateLayers 100.0% -2025-07-23T19:39:15.4272367Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:540: NumBlockLayers 100.0% -2025-07-23T19:39:15.4272950Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:548: Discard 100.0% -2025-07-23T19:39:15.4273505Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:560: discard 78.6% -2025-07-23T19:39:15.4274073Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:592: AbortGeneration 0.0% -2025-07-23T19:39:15.4274807Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:603: abortGeneration 63.6% -2025-07-23T19:39:15.4275390Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:631: diffToDisk 75.4% -2025-07-23T19:39:15.4275937Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:779: Release 0.0% -2025-07-23T19:39:15.4276475Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:788: Rebuild 0.0% -2025-07-23T19:39:15.4277048Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:842: AccountIterator 71.4% -2025-07-23T19:39:15.4277651Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:859: StorageIterator 100.0% -2025-07-23T19:39:15.4278518Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:863: StorageIteratorWithForce 71.4% -2025-07-23T19:39:15.4279127Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:878: Verify 0.0% -2025-07-23T19:39:15.4279662Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:886: verify 66.7% -2025-07-23T19:39:15.4280336Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:918: disklayer 83.3% -2025-07-23T19:39:15.4280879Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:941: diskRoot 0.0% -2025-07-23T19:39:15.4281425Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:951: generating 87.5% -2025-07-23T19:39:15.4281968Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:965: DiskRoot 0.0% -2025-07-23T19:39:15.4282491Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:977: Size 0.0% -2025-07-23T19:39:15.4283068Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:14: DiskAccountIterator 0.0% -2025-07-23T19:39:15.4283701Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:21: DiskStorageIterator 0.0% -2025-07-23T19:39:15.4284307Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:41: NewDiskLayer 0.0% -2025-07-23T19:39:15.4284895Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:53: NewTestTree 100.0% -2025-07-23T19:39:15.4285501Z github.com/ava-labs/coreth/core/state/snapshot/utils.go:43: CheckDanglingStorage 50.0% -2025-07-23T19:39:15.4286125Z github.com/ava-labs/coreth/core/state/snapshot/utils.go:53: checkDanglingDiskStorage 76.5% -2025-07-23T19:39:15.4286710Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:45: WipeSnapshot 80.0% -2025-07-23T19:39:15.4287243Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:68: wipeContent 60.0% -2025-07-23T19:39:15.4287777Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:84: wipeKeyRange 59.4% -2025-07-23T19:39:15.4288372Z github.com/ava-labs/coreth/core/state/statedb.go:65: New 75.0% -2025-07-23T19:39:15.4288825Z github.com/ava-labs/coreth/core/state/statedb.go:81: Done 0.0% -2025-07-23T19:39:15.4289316Z github.com/ava-labs/coreth/core/state/statedb.go:87: WithConcurrentWorkers 0.0% -2025-07-23T19:39:15.4289866Z github.com/ava-labs/coreth/core/state/statedb.go:95: GetBalanceMultiCoin 100.0% -2025-07-23T19:39:15.4290395Z github.com/ava-labs/coreth/core/state/statedb.go:101: GetState 100.0% -2025-07-23T19:39:15.4290905Z github.com/ava-labs/coreth/core/state/statedb.go:107: AddBalanceMultiCoin 75.0% -2025-07-23T19:39:15.4291452Z github.com/ava-labs/coreth/core/state/statedb.go:121: SubBalanceMultiCoin 71.4% -2025-07-23T19:39:15.4291965Z github.com/ava-labs/coreth/core/state/statedb.go:136: SetState 100.0% -2025-07-23T19:39:15.4292453Z github.com/ava-labs/coreth/core/state/statedb.go:144: SetTxContext 0.0% -2025-07-23T19:39:15.4292937Z github.com/ava-labs/coreth/core/state/statedb.go:151: GetTxHash 0.0% -2025-07-23T19:39:15.4293407Z github.com/ava-labs/coreth/core/state/statedb.go:155: Copy 0.0% -2025-07-23T19:39:15.4293900Z github.com/ava-labs/coreth/core/state/statedb.go:169: NormalizeCoinID 100.0% -2025-07-23T19:39:15.4294435Z github.com/ava-labs/coreth/core/state/statedb.go:177: NormalizeStateKey 100.0% -2025-07-23T19:39:15.4295058Z github.com/ava-labs/coreth/core/state_manager.go:41: init 100.0% -2025-07-23T19:39:15.4295538Z github.com/ava-labs/coreth/core/state_manager.go:67: NewTrieWriter 100.0% -2025-07-23T19:39:15.4296036Z github.com/ava-labs/coreth/core/state_manager.go:91: InsertTrie 100.0% -2025-07-23T19:39:15.4296516Z github.com/ava-labs/coreth/core/state_manager.go:97: AcceptTrie 100.0% -2025-07-23T19:39:15.4297006Z github.com/ava-labs/coreth/core/state_manager.go:103: RejectTrie 100.0% -2025-07-23T19:39:15.4297486Z github.com/ava-labs/coreth/core/state_manager.go:107: Shutdown 100.0% -2025-07-23T19:39:15.4297966Z github.com/ava-labs/coreth/core/state_manager.go:120: InsertTrie 50.0% -2025-07-23T19:39:15.4298638Z github.com/ava-labs/coreth/core/state_manager.go:134: AcceptTrie 68.4% -2025-07-23T19:39:15.4299122Z github.com/ava-labs/coreth/core/state_manager.go:182: RejectTrie 100.0% -2025-07-23T19:39:15.4299728Z github.com/ava-labs/coreth/core/state_manager.go:187: Shutdown 100.0% -2025-07-23T19:39:15.4300243Z github.com/ava-labs/coreth/core/state_processor.go:55: NewStateProcessor 100.0% -2025-07-23T19:39:15.4300748Z github.com/ava-labs/coreth/core/state_processor.go:70: Process 90.9% -2025-07-23T19:39:15.4301259Z github.com/ava-labs/coreth/core/state_processor.go:120: applyTransaction 92.6% -2025-07-23T19:39:15.4301790Z github.com/ava-labs/coreth/core/state_processor.go:174: ApplyTransaction 83.3% -2025-07-23T19:39:15.4302345Z github.com/ava-labs/coreth/core/state_processor.go:187: ProcessBeaconBlockRoot 100.0% -2025-07-23T19:39:15.4302952Z github.com/ava-labs/coreth/core/state_processor_ext.go:24: ApplyPrecompileActivations 23.8% -2025-07-23T19:39:15.4303525Z github.com/ava-labs/coreth/core/state_processor_ext.go:77: ApplyUpgrades 100.0% -2025-07-23T19:39:15.4304069Z github.com/ava-labs/coreth/core/state_processor_ext.go:91: NewBlockContext 100.0% -2025-07-23T19:39:15.4304589Z github.com/ava-labs/coreth/core/state_processor_ext.go:98: Number 0.0% -2025-07-23T19:39:15.4305085Z github.com/ava-labs/coreth/core/state_processor_ext.go:99: Timestamp 100.0% -2025-07-23T19:39:15.4305578Z github.com/ava-labs/coreth/core/state_transition.go:56: Unwrap 0.0% -2025-07-23T19:39:15.4306057Z github.com/ava-labs/coreth/core/state_transition.go:61: Failed 100.0% -2025-07-23T19:39:15.4306526Z github.com/ava-labs/coreth/core/state_transition.go:65: Return 0.0% -2025-07-23T19:39:15.4306995Z github.com/ava-labs/coreth/core/state_transition.go:74: Revert 0.0% -2025-07-23T19:39:15.4307485Z github.com/ava-labs/coreth/core/state_transition.go:82: IntrinsicGas 88.2% -2025-07-23T19:39:15.4307995Z github.com/ava-labs/coreth/core/state_transition.go:139: accessListGas 91.3% -2025-07-23T19:39:15.4308612Z github.com/ava-labs/coreth/core/state_transition.go:179: toWordSize 66.7% -2025-07-23T19:39:15.4309157Z github.com/ava-labs/coreth/core/state_transition.go:210: TransactionToMessage 100.0% -2025-07-23T19:39:15.4309710Z github.com/ava-labs/coreth/core/state_transition.go:241: ApplyMessage 100.0% -2025-07-23T19:39:15.4310250Z github.com/ava-labs/coreth/core/state_transition.go:277: NewStateTransition 100.0% -2025-07-23T19:39:15.4310756Z github.com/ava-labs/coreth/core/state_transition.go:287: to 66.7% -2025-07-23T19:39:15.4311226Z github.com/ava-labs/coreth/core/state_transition.go:294: buyGas 77.8% -2025-07-23T19:39:15.4311712Z github.com/ava-labs/coreth/core/state_transition.go:333: preCheck 89.5% -2025-07-23T19:39:15.4312207Z github.com/ava-labs/coreth/core/state_transition.go:426: TransitionDb 88.2% -2025-07-23T19:39:15.4312711Z github.com/ava-labs/coreth/core/state_transition.go:514: refundGas 100.0% -2025-07-23T19:39:15.4313203Z github.com/ava-labs/coreth/core/state_transition.go:539: gasUsed 100.0% -2025-07-23T19:39:15.4313694Z github.com/ava-labs/coreth/core/state_transition.go:544: blobGasUsed 100.0% -2025-07-23T19:39:15.4314285Z github.com/ava-labs/coreth/core/txindexer.go:46: Done 0.0% -2025-07-23T19:39:15.4314737Z github.com/ava-labs/coreth/core/txindexer.go:68: newTxIndexer 90.9% -2025-07-23T19:39:15.4315180Z github.com/ava-labs/coreth/core/txindexer.go:97: run 90.9% -2025-07-23T19:39:15.4315592Z github.com/ava-labs/coreth/core/txindexer.go:124: loop 91.7% -2025-07-23T19:39:15.4316033Z github.com/ava-labs/coreth/core/txindexer.go:191: report 0.0% -2025-07-23T19:39:15.4316468Z github.com/ava-labs/coreth/core/txindexer.go:213: close 100.0% -2025-07-23T19:39:15.4316916Z github.com/ava-labs/coreth/core/txindexer.go:224: lockedRun 100.0% -2025-07-23T19:39:15.4317453Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:124: newBlobTxMeta 100.0% -2025-07-23T19:39:15.4318017Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:333: New 100.0% -2025-07-23T19:39:15.4318780Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:349: Filter 0.0% -2025-07-23T19:39:15.4319441Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:356: Init 78.8% -2025-07-23T19:39:15.4319979Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:458: Close 60.0% -2025-07-23T19:39:15.4320561Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:480: parseTransaction 88.0% -2025-07-23T19:39:15.4321142Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:528: recheck 90.9% -2025-07-23T19:39:15.4321713Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:779: offload 0.0% -2025-07-23T19:39:15.4322245Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:803: Reset 0.0% -2025-07-23T19:39:15.4322763Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:875: reorg 0.0% -2025-07-23T19:39:15.4323291Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1003: reinject 0.0% -2025-07-23T19:39:15.4323847Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1047: SetGasTip 97.2% -2025-07-23T19:39:15.4324435Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1112: validateTx 100.0% -2025-07-23T19:39:15.4324984Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1197: Has 0.0% -2025-07-23T19:39:15.4325508Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1205: HasLocal 0.0% -2025-07-23T19:39:15.4326039Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1211: Get 0.0% -2025-07-23T19:39:15.4326552Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1243: Add 0.0% -2025-07-23T19:39:15.4327066Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1263: add 89.3% -2025-07-23T19:39:15.4327585Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1430: drop 54.5% -2025-07-23T19:39:15.4328287Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1485: Pending 0.0% -2025-07-23T19:39:15.4328901Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1547: IteratePending 0.0% -2025-07-23T19:39:15.4329477Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1565: SetMinFee 0.0% -2025-07-23T19:39:15.4330500Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1569: updateStorageMetrics 100.0% -2025-07-23T19:39:15.4331169Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1616: updateLimboMetrics 100.0% -2025-07-23T19:39:15.4331810Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1644: SubscribeTransactions 0.0% -2025-07-23T19:39:15.4332392Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1654: Nonce 0.0% -2025-07-23T19:39:15.4332918Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1666: Stats 0.0% -2025-07-23T19:39:15.4333454Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1682: Content 0.0% -2025-07-23T19:39:15.4334012Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1691: ContentFrom 0.0% -2025-07-23T19:39:15.4334705Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1698: Locals 0.0% -2025-07-23T19:39:15.4335243Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1704: Status 0.0% -2025-07-23T19:39:15.4335778Z github.com/ava-labs/coreth/core/txpool/blobpool/config.go:50: sanitize 100.0% -2025-07-23T19:39:15.4336340Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:60: newPriceHeap 100.0% -2025-07-23T19:39:15.4336906Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:84: reinit 85.7% -2025-07-23T19:39:15.4337441Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:101: Len 100.0% -2025-07-23T19:39:15.4337972Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:107: Less 100.0% -2025-07-23T19:39:15.4338712Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:131: Swap 100.0% -2025-07-23T19:39:15.4339251Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:138: Push 100.0% -2025-07-23T19:39:15.4339905Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:148: Pop 100.0% -2025-07-23T19:39:15.4340444Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:62: newLimbo 50.0% -2025-07-23T19:39:15.4340953Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:93: Close 100.0% -2025-07-23T19:39:15.4341470Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:99: parseBlob 0.0% -2025-07-23T19:39:15.4341986Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:126: finalize 0.0% -2025-07-23T19:39:15.4342503Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:149: push 0.0% -2025-07-23T19:39:15.4343005Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:166: pull 0.0% -2025-07-23T19:39:15.4343509Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:190: update 0.0% -2025-07-23T19:39:15.4344031Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:221: getAndDrop 0.0% -2025-07-23T19:39:15.4344573Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:243: setAndIndex 0.0% -2025-07-23T19:39:15.4345162Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:45: evictionPriority 100.0% -2025-07-23T19:39:15.4345796Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:58: evictionPriority1D 100.0% -2025-07-23T19:39:15.4346423Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:77: dynamicFeeJumps 100.0% -2025-07-23T19:39:15.4346991Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:87: intLog2 50.0% -2025-07-23T19:39:15.4347542Z github.com/ava-labs/coreth/core/txpool/blobpool/slotter.go:39: newSlotter 100.0% -2025-07-23T19:39:15.4348191Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:52: Write 100.0% -2025-07-23T19:39:15.4348724Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:53: Close 0.0% -2025-07-23T19:39:15.4349278Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:63: newTxJournal 100.0% -2025-07-23T19:39:15.4349838Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:71: load 87.1% -2025-07-23T19:39:15.4350370Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:132: insert 60.0% -2025-07-23T19:39:15.4350911Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:144: rotate 76.9% -2025-07-23T19:39:15.4351442Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:189: close 100.0% -2025-07-23T19:39:15.4352001Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:186: sanitize 46.2% -2025-07-23T19:39:15.4352568Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:275: New 80.0% -2025-07-23T19:39:15.4353120Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:312: Filter 0.0% -2025-07-23T19:39:15.4353675Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:325: Init 81.0% -2025-07-23T19:39:15.4354231Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:371: loop 96.8% -2025-07-23T19:39:15.4354917Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:439: Close 100.0% -2025-07-23T19:39:15.4355471Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:455: Reset 0.0% -2025-07-23T19:39:15.4356092Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:462: SubscribeTransactions 0.0% -2025-07-23T19:39:15.4356734Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:472: SetGasTip 100.0% -2025-07-23T19:39:15.4357324Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:493: SetMinFee 0.0% -2025-07-23T19:39:15.4357893Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:502: Nonce 100.0% -2025-07-23T19:39:15.4358558Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:511: Stats 100.0% -2025-07-23T19:39:15.4359124Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:520: stats 100.0% -2025-07-23T19:39:15.4359806Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:534: Content 88.9% -2025-07-23T19:39:15.4360403Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:551: ContentFrom 0.0% -2025-07-23T19:39:15.4360988Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:571: Pending 0.0% -2025-07-23T19:39:15.4361585Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:631: IteratePending 0.0% -2025-07-23T19:39:15.4362175Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:646: Locals 0.0% -2025-07-23T19:39:15.4362740Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:656: local 100.0% -2025-07-23T19:39:15.4363345Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:673: validateTxBasics 100.0% -2025-07-23T19:39:15.4363976Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:694: validateTx 100.0% -2025-07-23T19:39:15.4364546Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:743: add 88.3% -2025-07-23T19:39:15.4365116Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:893: isGapped 100.0% -2025-07-23T19:39:15.4365701Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:919: enqueueTx 95.0% -2025-07-23T19:39:15.4366277Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:958: journalTx 75.0% -2025-07-23T19:39:15.4366853Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:972: promoteTx 58.8% -2025-07-23T19:39:15.4367447Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1009: addLocals 100.0% -2025-07-23T19:39:15.4368044Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1015: addLocal 100.0% -2025-07-23T19:39:15.4368739Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1024: addRemotes 100.0% -2025-07-23T19:39:15.4369336Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1030: addRemote 100.0% -2025-07-23T19:39:15.4369957Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1035: addRemotesSync 100.0% -2025-07-23T19:39:15.4370598Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1040: addRemoteSync 100.0% -2025-07-23T19:39:15.4371188Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1049: Add 100.0% -2025-07-23T19:39:15.4371780Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1104: addTxsLocked 100.0% -2025-07-23T19:39:15.4372378Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1120: Status 90.9% -2025-07-23T19:39:15.4372936Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1139: Get 0.0% -2025-07-23T19:39:15.4373483Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1148: get 100.0% -2025-07-23T19:39:15.4374029Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1154: Has 0.0% -2025-07-23T19:39:15.4374584Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1158: HasLocal 0.0% -2025-07-23T19:39:15.4375327Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1171: removeTx 93.3% -2025-07-23T19:39:15.4375924Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1236: requestReset 66.7% -2025-07-23T19:39:15.4376595Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1247: requestPromoteExecutables 66.7% -2025-07-23T19:39:15.4377266Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1257: queueTxEvent 100.0% -2025-07-23T19:39:15.4377904Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1267: scheduleReorgLoop 93.1% -2025-07-23T19:39:15.4378618Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1337: runReorg 84.1% -2025-07-23T19:39:15.4379193Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1420: reset 23.1% -2025-07-23T19:39:15.4379807Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1520: promoteExecutables 100.0% -2025-07-23T19:39:15.4380581Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1590: truncatePending 69.6% -2025-07-23T19:39:15.4381225Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1675: truncateQueue 100.0% -2025-07-23T19:39:15.4381878Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1726: demoteUnexecutables 96.9% -2025-07-23T19:39:15.4382565Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1781: startPeriodicFeeUpdate 85.7% -2025-07-23T19:39:15.4383255Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1797: periodicBaseFeeUpdate 100.0% -2025-07-23T19:39:15.4383909Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1820: updateBaseFee 80.0% -2025-07-23T19:39:15.4384543Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1831: updateBaseFeeAt 83.3% -2025-07-23T19:39:15.4385145Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1849: Len 100.0% -2025-07-23T19:39:15.4385715Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1850: Less 100.0% -2025-07-23T19:39:15.4386280Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1851: Swap 100.0% -2025-07-23T19:39:15.4386887Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1863: newAccountSet 100.0% -2025-07-23T19:39:15.4387506Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1875: contains 100.0% -2025-07-23T19:39:15.4388198Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1882: containsTx 66.7% -2025-07-23T19:39:15.4388785Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1890: add 100.0% -2025-07-23T19:39:15.4389355Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1896: addTx 100.0% -2025-07-23T19:39:15.4389935Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1904: flatten 100.0% -2025-07-23T19:39:15.4390509Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1916: merge 0.0% -2025-07-23T19:39:15.4391098Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1943: newLookup 100.0% -2025-07-23T19:39:15.4391679Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1953: Range 60.0% -2025-07-23T19:39:15.4392233Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1974: Get 80.0% -2025-07-23T19:39:15.4392800Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1985: GetLocal 0.0% -2025-07-23T19:39:15.4393389Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1993: GetRemote 100.0% -2025-07-23T19:39:15.4393973Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2001: Count 100.0% -2025-07-23T19:39:15.4394552Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2009: LocalCount 0.0% -2025-07-23T19:39:15.4395160Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2017: RemoteCount 100.0% -2025-07-23T19:39:15.4395888Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2025: Slots 100.0% -2025-07-23T19:39:15.4396452Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2033: Add 100.0% -2025-07-23T19:39:15.4397011Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2048: Remove 83.3% -2025-07-23T19:39:15.4397615Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2069: RemoteToLocals 66.7% -2025-07-23T19:39:15.4398361Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2085: RemotesBelowTip 100.0% -2025-07-23T19:39:15.4398982Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2097: numSlots 100.0% -2025-07-23T19:39:15.4399546Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:49: Len 100.0% -2025-07-23T19:39:15.4400060Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:50: Less 100.0% -2025-07-23T19:39:15.4400588Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:51: Swap 100.0% -2025-07-23T19:39:15.4401205Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:53: Push 100.0% -2025-07-23T19:39:15.4401726Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:57: Pop 100.0% -2025-07-23T19:39:15.4402267Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:76: newSortedMap 100.0% -2025-07-23T19:39:15.4402803Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:84: Get 100.0% -2025-07-23T19:39:15.4403302Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:90: Put 100.0% -2025-07-23T19:39:15.4403825Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:103: Forward 100.0% -2025-07-23T19:39:15.4404367Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:126: Filter 100.0% -2025-07-23T19:39:15.4404899Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:135: reheap 100.0% -2025-07-23T19:39:15.4405431Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:148: filter 100.0% -2025-07-23T19:39:15.4405958Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:168: Cap 92.3% -2025-07-23T19:39:15.4406477Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:195: Remove 100.0% -2025-07-23T19:39:15.4407004Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:223: Ready 100.0% -2025-07-23T19:39:15.4407523Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:243: Len 100.0% -2025-07-23T19:39:15.4408050Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:247: flatten 100.0% -2025-07-23T19:39:15.4408695Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:264: Flatten 100.0% -2025-07-23T19:39:15.4409247Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:274: LastElement 100.0% -2025-07-23T19:39:15.4409802Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:294: newList 100.0% -2025-07-23T19:39:15.4410341Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:305: Contains 100.0% -2025-07-23T19:39:15.4410864Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:314: Add 100.0% -2025-07-23T19:39:15.4411389Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:361: Forward 100.0% -2025-07-23T19:39:15.4411923Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:376: Filter 95.0% -2025-07-23T19:39:15.4412442Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:412: Cap 100.0% -2025-07-23T19:39:15.4412956Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:421: Remove 100.0% -2025-07-23T19:39:15.4413484Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:444: Ready 100.0% -2025-07-23T19:39:15.4413997Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:451: Len 100.0% -2025-07-23T19:39:15.4414512Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:456: Empty 100.0% -2025-07-23T19:39:15.4415036Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:463: Flatten 100.0% -2025-07-23T19:39:15.4415720Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:469: LastElement 100.0% -2025-07-23T19:39:15.4416285Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:475: subTotalCost 75.0% -2025-07-23T19:39:15.4416819Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:493: Len 100.0% -2025-07-23T19:39:15.4417335Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:494: Swap 100.0% -2025-07-23T19:39:15.4417854Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:496: Less 100.0% -2025-07-23T19:39:15.4418462Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:507: cmp 100.0% -2025-07-23T19:39:15.4418969Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:522: Push 100.0% -2025-07-23T19:39:15.4419480Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:527: Pop 100.0% -2025-07-23T19:39:15.4420025Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:563: newPricedList 100.0% -2025-07-23T19:39:15.4420695Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:570: Put 100.0% -2025-07-23T19:39:15.4421220Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:581: Removed 100.0% -2025-07-23T19:39:15.4421808Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:593: Underpriced 100.0% -2025-07-23T19:39:15.4422378Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:603: underpricedFor 70.0% -2025-07-23T19:39:15.4422936Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:628: Discard 61.9% -2025-07-23T19:39:15.4423465Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:667: Reheap 100.0% -2025-07-23T19:39:15.4424008Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:695: SetBaseFee 100.0% -2025-07-23T19:39:15.4424567Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:47: newNoncer 100.0% -2025-07-23T19:39:15.4425100Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:56: get 100.0% -2025-07-23T19:39:15.4425624Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:72: set 100.0% -2025-07-23T19:39:15.4426158Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:81: setIfLower 62.5% -2025-07-23T19:39:15.4426707Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:97: setAll 100.0% -2025-07-23T19:39:15.4427216Z github.com/ava-labs/coreth/core/txpool/subpool.go:65: Resolve 66.7% -2025-07-23T19:39:15.4427689Z github.com/ava-labs/coreth/core/txpool/txpool.go:103: New 76.9% -2025-07-23T19:39:15.4428250Z github.com/ava-labs/coreth/core/txpool/txpool.go:143: reserver 69.2% -2025-07-23T19:39:15.4428726Z github.com/ava-labs/coreth/core/txpool/txpool.go:186: Close 76.9% -2025-07-23T19:39:15.4429188Z github.com/ava-labs/coreth/core/txpool/txpool.go:215: loop 92.6% -2025-07-23T19:39:15.4429654Z github.com/ava-labs/coreth/core/txpool/txpool.go:308: GasTip 100.0% -2025-07-23T19:39:15.4430141Z github.com/ava-labs/coreth/core/txpool/txpool.go:314: SetGasTip 100.0% -2025-07-23T19:39:15.4430619Z github.com/ava-labs/coreth/core/txpool/txpool.go:323: MinFee 0.0% -2025-07-23T19:39:15.4431092Z github.com/ava-labs/coreth/core/txpool/txpool.go:329: SetMinFee 100.0% -2025-07-23T19:39:15.4431560Z github.com/ava-labs/coreth/core/txpool/txpool.go:339: Has 75.0% -2025-07-23T19:39:15.4432025Z github.com/ava-labs/coreth/core/txpool/txpool.go:350: HasLocal 0.0% -2025-07-23T19:39:15.4432483Z github.com/ava-labs/coreth/core/txpool/txpool.go:360: Get 0.0% -2025-07-23T19:39:15.4432927Z github.com/ava-labs/coreth/core/txpool/txpool.go:372: Add 90.0% -2025-07-23T19:39:15.4433415Z github.com/ava-labs/coreth/core/txpool/txpool.go:415: AddRemotesSync 100.0% -2025-07-23T19:39:15.4433914Z github.com/ava-labs/coreth/core/txpool/txpool.go:425: Pending 100.0% -2025-07-23T19:39:15.4434410Z github.com/ava-labs/coreth/core/txpool/txpool.go:439: PendingSize 100.0% -2025-07-23T19:39:15.4435046Z github.com/ava-labs/coreth/core/txpool/txpool.go:451: IteratePending 66.7% -2025-07-23T19:39:15.4435596Z github.com/ava-labs/coreth/core/txpool/txpool.go:461: SubscribeTransactions 85.7% -2025-07-23T19:39:15.4436162Z github.com/ava-labs/coreth/core/txpool/txpool.go:475: SubscribeNewReorgEvent 100.0% -2025-07-23T19:39:15.4436685Z github.com/ava-labs/coreth/core/txpool/txpool.go:481: Nonce 100.0% -2025-07-23T19:39:15.4437147Z github.com/ava-labs/coreth/core/txpool/txpool.go:496: Stats 0.0% -2025-07-23T19:39:15.4437609Z github.com/ava-labs/coreth/core/txpool/txpool.go:509: Content 0.0% -2025-07-23T19:39:15.4438080Z github.com/ava-labs/coreth/core/txpool/txpool.go:529: ContentFrom 0.0% -2025-07-23T19:39:15.4438658Z github.com/ava-labs/coreth/core/txpool/txpool.go:540: Locals 75.0% -2025-07-23T19:39:15.4439123Z github.com/ava-labs/coreth/core/txpool/txpool.go:558: Status 0.0% -2025-07-23T19:39:15.4439691Z github.com/ava-labs/coreth/core/txpool/txpool.go:574: Sync 75.0% -2025-07-23T19:39:15.4440213Z github.com/ava-labs/coreth/core/txpool/validation.go:67: ValidateTransaction 73.9% -2025-07-23T19:39:15.4440802Z github.com/ava-labs/coreth/core/txpool/validation.go:160: validateBlobSidecar 66.7% -2025-07-23T19:39:15.4441412Z github.com/ava-labs/coreth/core/txpool/validation.go:222: ValidateTransactionWithState 88.9% -2025-07-23T19:39:15.4441964Z github.com/ava-labs/coreth/core/vm/runtime/env.go:35: NewEnv 100.0% -2025-07-23T19:39:15.4442462Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:71: setDefaults 94.7% -2025-07-23T19:39:15.4442978Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:134: Execute 100.0% -2025-07-23T19:39:15.4443479Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:169: Create 77.8% -2025-07-23T19:39:15.4443968Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:203: Call 100.0% -2025-07-23T19:39:15.4444433Z github.com/ava-labs/coreth/eth/api.go:40: NewEthereumAPI 0.0% -2025-07-23T19:39:15.4444858Z github.com/ava-labs/coreth/eth/api.go:45: Etherbase 0.0% -2025-07-23T19:39:15.4445262Z github.com/ava-labs/coreth/eth/api.go:50: Coinbase 0.0% -2025-07-23T19:39:15.4445691Z github.com/ava-labs/coreth/eth/api_admin.go:50: NewAdminAPI 0.0% -2025-07-23T19:39:15.4446147Z github.com/ava-labs/coreth/eth/api_admin.go:56: ExportChain 0.0% -2025-07-23T19:39:15.4446602Z github.com/ava-labs/coreth/eth/api_admin.go:93: hasAllBlocks 0.0% -2025-07-23T19:39:15.4447049Z github.com/ava-labs/coreth/eth/api_admin.go:104: ImportChain 0.0% -2025-07-23T19:39:15.4447498Z github.com/ava-labs/coreth/eth/api_backend.go:72: ChainConfig 0.0% -2025-07-23T19:39:15.4447948Z github.com/ava-labs/coreth/eth/api_backend.go:77: IsArchive 0.0% -2025-07-23T19:39:15.4448556Z github.com/ava-labs/coreth/eth/api_backend.go:83: HistoricalProofQueryWindow 0.0% -2025-07-23T19:39:15.4449130Z github.com/ava-labs/coreth/eth/api_backend.go:87: IsAllowUnfinalizedQueries 0.0% -2025-07-23T19:39:15.4449678Z github.com/ava-labs/coreth/eth/api_backend.go:91: SetAllowUnfinalizedQueries 0.0% -2025-07-23T19:39:15.4450185Z github.com/ava-labs/coreth/eth/api_backend.go:95: CurrentBlock 0.0% -2025-07-23T19:39:15.4450665Z github.com/ava-labs/coreth/eth/api_backend.go:99: LastAcceptedBlock 0.0% -2025-07-23T19:39:15.4451154Z github.com/ava-labs/coreth/eth/api_backend.go:103: HeaderByNumber 0.0% -2025-07-23T19:39:15.4451631Z github.com/ava-labs/coreth/eth/api_backend.go:126: HeaderByHash 0.0% -2025-07-23T19:39:15.4452131Z github.com/ava-labs/coreth/eth/api_backend.go:149: HeaderByNumberOrHash 0.0% -2025-07-23T19:39:15.4452630Z github.com/ava-labs/coreth/eth/api_backend.go:166: BlockByNumber 0.0% -2025-07-23T19:39:15.4453103Z github.com/ava-labs/coreth/eth/api_backend.go:190: BlockByHash 0.0% -2025-07-23T19:39:15.4453560Z github.com/ava-labs/coreth/eth/api_backend.go:215: GetBody 0.0% -2025-07-23T19:39:15.4454164Z github.com/ava-labs/coreth/eth/api_backend.go:225: BlockByNumberOrHash 0.0% -2025-07-23T19:39:15.4454653Z github.com/ava-labs/coreth/eth/api_backend.go:245: BadBlocks 0.0% -2025-07-23T19:39:15.4455147Z github.com/ava-labs/coreth/eth/api_backend.go:249: StateAndHeaderByNumber 0.0% -2025-07-23T19:39:15.4455701Z github.com/ava-labs/coreth/eth/api_backend.go:265: StateAndHeaderByNumberOrHash 0.0% -2025-07-23T19:39:15.4456213Z github.com/ava-labs/coreth/eth/api_backend.go:289: GetReceipts 0.0% -2025-07-23T19:39:15.4456667Z github.com/ava-labs/coreth/eth/api_backend.go:296: GetLogs 0.0% -2025-07-23T19:39:15.4457109Z github.com/ava-labs/coreth/eth/api_backend.go:303: GetEVM 0.0% -2025-07-23T19:39:15.4457600Z github.com/ava-labs/coreth/eth/api_backend.go:317: SubscribeRemovedLogsEvent 0.0% -2025-07-23T19:39:15.4458237Z github.com/ava-labs/coreth/eth/api_backend.go:321: SubscribePendingLogsEvent 0.0% -2025-07-23T19:39:15.4458884Z github.com/ava-labs/coreth/eth/api_backend.go:325: SubscribeChainEvent 0.0% -2025-07-23T19:39:15.4459427Z github.com/ava-labs/coreth/eth/api_backend.go:329: SubscribeChainAcceptedEvent 0.0% -2025-07-23T19:39:15.4459971Z github.com/ava-labs/coreth/eth/api_backend.go:333: SubscribeChainHeadEvent 0.0% -2025-07-23T19:39:15.4460503Z github.com/ava-labs/coreth/eth/api_backend.go:337: SubscribeChainSideEvent 0.0% -2025-07-23T19:39:15.4461023Z github.com/ava-labs/coreth/eth/api_backend.go:341: SubscribeLogsEvent 0.0% -2025-07-23T19:39:15.4461559Z github.com/ava-labs/coreth/eth/api_backend.go:345: SubscribeAcceptedLogsEvent 0.0% -2025-07-23T19:39:15.4462132Z github.com/ava-labs/coreth/eth/api_backend.go:349: SubscribeAcceptedTransactionEvent 0.0% -2025-07-23T19:39:15.4462649Z github.com/ava-labs/coreth/eth/api_backend.go:353: SendTx 0.0% -2025-07-23T19:39:15.4463128Z github.com/ava-labs/coreth/eth/api_backend.go:367: GetPoolTransactions 0.0% -2025-07-23T19:39:15.4463646Z github.com/ava-labs/coreth/eth/api_backend.go:380: GetPoolTransaction 0.0% -2025-07-23T19:39:15.4464140Z github.com/ava-labs/coreth/eth/api_backend.go:384: GetTransaction 0.0% -2025-07-23T19:39:15.4464620Z github.com/ava-labs/coreth/eth/api_backend.go:407: GetPoolNonce 0.0% -2025-07-23T19:39:15.4465074Z github.com/ava-labs/coreth/eth/api_backend.go:411: Stats 0.0% -2025-07-23T19:39:15.4465526Z github.com/ava-labs/coreth/eth/api_backend.go:415: TxPoolContent 0.0% -2025-07-23T19:39:15.4466015Z github.com/ava-labs/coreth/eth/api_backend.go:419: TxPoolContentFrom 0.0% -2025-07-23T19:39:15.4466532Z github.com/ava-labs/coreth/eth/api_backend.go:423: SubscribeNewTxsEvent 0.0% -2025-07-23T19:39:15.4467042Z github.com/ava-labs/coreth/eth/api_backend.go:427: EstimateBaseFee 0.0% -2025-07-23T19:39:15.4467519Z github.com/ava-labs/coreth/eth/api_backend.go:431: SuggestPrice 0.0% -2025-07-23T19:39:15.4468005Z github.com/ava-labs/coreth/eth/api_backend.go:435: SuggestGasTipCap 0.0% -2025-07-23T19:39:15.4468916Z github.com/ava-labs/coreth/eth/api_backend.go:439: FeeHistory 0.0% -2025-07-23T19:39:15.4469466Z github.com/ava-labs/coreth/eth/api_backend.go:443: ChainDb 0.0% -2025-07-23T19:39:15.4469921Z github.com/ava-labs/coreth/eth/api_backend.go:447: EventMux 0.0% -2025-07-23T19:39:15.4470388Z github.com/ava-labs/coreth/eth/api_backend.go:451: AccountManager 0.0% -2025-07-23T19:39:15.4470868Z github.com/ava-labs/coreth/eth/api_backend.go:455: ExtRPCEnabled 0.0% -2025-07-23T19:39:15.4471360Z github.com/ava-labs/coreth/eth/api_backend.go:459: UnprotectedAllowed 75.0% -2025-07-23T19:39:15.4471847Z github.com/ava-labs/coreth/eth/api_backend.go:479: RPCGasCap 0.0% -2025-07-23T19:39:15.4472313Z github.com/ava-labs/coreth/eth/api_backend.go:483: RPCEVMTimeout 0.0% -2025-07-23T19:39:15.4472787Z github.com/ava-labs/coreth/eth/api_backend.go:487: RPCTxFeeCap 0.0% -2025-07-23T19:39:15.4473422Z github.com/ava-labs/coreth/eth/api_backend.go:491: PriceOptionsConfig 0.0% -2025-07-23T19:39:15.4473908Z github.com/ava-labs/coreth/eth/api_backend.go:495: BloomStatus 0.0% -2025-07-23T19:39:15.4474379Z github.com/ava-labs/coreth/eth/api_backend.go:500: ServiceFilter 0.0% -2025-07-23T19:39:15.4474834Z github.com/ava-labs/coreth/eth/api_backend.go:506: Engine 0.0% -2025-07-23T19:39:15.4475288Z github.com/ava-labs/coreth/eth/api_backend.go:510: CurrentHeader 0.0% -2025-07-23T19:39:15.4475800Z github.com/ava-labs/coreth/eth/api_backend.go:514: GetMaxBlocksPerRequest 0.0% -2025-07-23T19:39:15.4476302Z github.com/ava-labs/coreth/eth/api_backend.go:518: StateAtBlock 0.0% -2025-07-23T19:39:15.4476779Z github.com/ava-labs/coreth/eth/api_backend.go:522: StateAtNextBlock 0.0% -2025-07-23T19:39:15.4477278Z github.com/ava-labs/coreth/eth/api_backend.go:526: StateAtTransaction 0.0% -2025-07-23T19:39:15.4477772Z github.com/ava-labs/coreth/eth/api_backend.go:530: MinRequiredTip 0.0% -2025-07-23T19:39:15.4478496Z github.com/ava-labs/coreth/eth/api_backend.go:535: isLatestAndAllowed 0.0% -2025-07-23T19:39:15.4478982Z github.com/ava-labs/coreth/eth/api_debug.go:56: NewDebugAPI 0.0% -2025-07-23T19:39:15.4479435Z github.com/ava-labs/coreth/eth/api_debug.go:61: DumpBlock 0.0% -2025-07-23T19:39:15.4479870Z github.com/ava-labs/coreth/eth/api_debug.go:91: Preimage 0.0% -2025-07-23T19:39:15.4480310Z github.com/ava-labs/coreth/eth/api_debug.go:100: GetBadBlocks 0.0% -2025-07-23T19:39:15.4480766Z github.com/ava-labs/coreth/eth/api_debug.go:109: AccountRange 0.0% -2025-07-23T19:39:15.4481226Z github.com/ava-labs/coreth/eth/api_debug.go:175: StorageRangeAt 0.0% -2025-07-23T19:39:15.4481695Z github.com/ava-labs/coreth/eth/api_debug.go:194: storageRangeAt 84.0% -2025-07-23T19:39:15.4482200Z github.com/ava-labs/coreth/eth/api_debug.go:235: GetModifiedAccountsByNumber 0.0% -2025-07-23T19:39:15.4482754Z github.com/ava-labs/coreth/eth/api_debug.go:263: GetModifiedAccountsByHash 0.0% -2025-07-23T19:39:15.4483279Z github.com/ava-labs/coreth/eth/api_debug.go:285: getModifiedAccounts 0.0% -2025-07-23T19:39:15.4483773Z github.com/ava-labs/coreth/eth/api_debug.go:326: GetAccessibleState 0.0% -2025-07-23T19:39:15.4484262Z github.com/ava-labs/coreth/eth/backend.go:121: roundUpCacheSize 0.0% -2025-07-23T19:39:15.4484706Z github.com/ava-labs/coreth/eth/backend.go:128: New 0.0% -2025-07-23T19:39:15.4485107Z github.com/ava-labs/coreth/eth/backend.go:309: APIs 0.0% -2025-07-23T19:39:15.4485523Z github.com/ava-labs/coreth/eth/backend.go:349: Etherbase 0.0% -2025-07-23T19:39:15.4485968Z github.com/ava-labs/coreth/eth/backend.go:361: SetEtherbase 0.0% -2025-07-23T19:39:15.4486403Z github.com/ava-labs/coreth/eth/backend.go:369: Miner 0.0% -2025-07-23T19:39:15.4486848Z github.com/ava-labs/coreth/eth/backend.go:371: AccountManager 0.0% -2025-07-23T19:39:15.4487306Z github.com/ava-labs/coreth/eth/backend.go:372: BlockChain 0.0% -2025-07-23T19:39:15.4487742Z github.com/ava-labs/coreth/eth/backend.go:373: TxPool 0.0% -2025-07-23T19:39:15.4488259Z github.com/ava-labs/coreth/eth/backend.go:374: EventMux 0.0% -2025-07-23T19:39:15.4488804Z github.com/ava-labs/coreth/eth/backend.go:375: Engine 0.0% -2025-07-23T19:39:15.4489219Z github.com/ava-labs/coreth/eth/backend.go:376: ChainDb 0.0% -2025-07-23T19:39:15.4489650Z github.com/ava-labs/coreth/eth/backend.go:378: NetVersion 0.0% -2025-07-23T19:39:15.4490094Z github.com/ava-labs/coreth/eth/backend.go:379: ArchiveMode 0.0% -2025-07-23T19:39:15.4490543Z github.com/ava-labs/coreth/eth/backend.go:380: BloomIndexer 0.0% -2025-07-23T19:39:15.4490975Z github.com/ava-labs/coreth/eth/backend.go:384: Start 0.0% -2025-07-23T19:39:15.4491379Z github.com/ava-labs/coreth/eth/backend.go:395: Stop 0.0% -2025-07-23T19:39:15.4491819Z github.com/ava-labs/coreth/eth/backend.go:413: LastAcceptedBlock 0.0% -2025-07-23T19:39:15.4492473Z github.com/ava-labs/coreth/eth/backend.go:423: precheckPopulateMissingTries 0.0% -2025-07-23T19:39:15.4493011Z github.com/ava-labs/coreth/eth/backend.go:447: handleOfflinePruning 0.0% -2025-07-23T19:39:15.4493519Z github.com/ava-labs/coreth/eth/bloombits.go:57: startBloomHandlers 0.0% -2025-07-23T19:39:15.4494051Z github.com/ava-labs/coreth/eth/chain_with_final_block.go:20: CurrentFinalBlock 0.0% -2025-07-23T19:39:15.4494610Z github.com/ava-labs/coreth/eth/ethconfig/config.go:58: NewDefaultConfig 100.0% -2025-07-23T19:39:15.4495144Z github.com/ava-labs/coreth/eth/ethconfig/gen_config.go:18: MarshalTOML 0.0% -2025-07-23T19:39:15.4495672Z github.com/ava-labs/coreth/eth/ethconfig/gen_config.go:108: UnmarshalTOML 0.0% -2025-07-23T19:39:15.4496175Z github.com/ava-labs/coreth/eth/filters/api.go:87: NewFilterAPI 100.0% -2025-07-23T19:39:15.4496656Z github.com/ava-labs/coreth/eth/filters/api.go:101: timeoutLoop 100.0% -2025-07-23T19:39:15.4497304Z github.com/ava-labs/coreth/eth/filters/api.go:134: NewPendingTransactionFilter 100.0% -2025-07-23T19:39:15.4497869Z github.com/ava-labs/coreth/eth/filters/api.go:168: NewPendingTransactions 0.0% -2025-07-23T19:39:15.4498510Z github.com/ava-labs/coreth/eth/filters/api.go:211: NewAcceptedTransactions 0.0% -2025-07-23T19:39:15.4499050Z github.com/ava-labs/coreth/eth/filters/api.go:253: NewBlockFilter 0.0% -2025-07-23T19:39:15.4499528Z github.com/ava-labs/coreth/eth/filters/api.go:291: NewHeads 0.0% -2025-07-23T19:39:15.4499963Z github.com/ava-labs/coreth/eth/filters/api.go:328: Logs 0.0% -2025-07-23T19:39:15.4500405Z github.com/ava-labs/coreth/eth/filters/api.go:387: NewFilter 87.0% -2025-07-23T19:39:15.4500861Z github.com/ava-labs/coreth/eth/filters/api.go:432: GetLogs 90.0% -2025-07-23T19:39:15.4501344Z github.com/ava-labs/coreth/eth/filters/api.go:470: UninstallFilter 100.0% -2025-07-23T19:39:15.4501846Z github.com/ava-labs/coreth/eth/filters/api.go:486: GetFilterLogs 0.0% -2025-07-23T19:39:15.4502336Z github.com/ava-labs/coreth/eth/filters/api.go:528: GetFilterChanges 80.0% -2025-07-23T19:39:15.4502825Z github.com/ava-labs/coreth/eth/filters/api.go:581: returnHashes 0.0% -2025-07-23T19:39:15.4503292Z github.com/ava-labs/coreth/eth/filters/api.go:590: returnLogs 66.7% -2025-07-23T19:39:15.4503768Z github.com/ava-labs/coreth/eth/filters/api.go:598: UnmarshalJSON 75.5% -2025-07-23T19:39:15.4504251Z github.com/ava-labs/coreth/eth/filters/api.go:703: decodeAddress 75.0% -2025-07-23T19:39:15.4504733Z github.com/ava-labs/coreth/eth/filters/api.go:711: decodeTopic 75.0% -2025-07-23T19:39:15.4505224Z github.com/ava-labs/coreth/eth/filters/filter.go:58: NewRangeFilter 100.0% -2025-07-23T19:39:15.4505743Z github.com/ava-labs/coreth/eth/filters/filter.go:91: NewBlockFilter 100.0% -2025-07-23T19:39:15.4506245Z github.com/ava-labs/coreth/eth/filters/filter.go:100: newFilter 100.0% -2025-07-23T19:39:15.4506715Z github.com/ava-labs/coreth/eth/filters/filter.go:110: Logs 80.4% -2025-07-23T19:39:15.4507197Z github.com/ava-labs/coreth/eth/filters/filter.go:222: rangeLogsAsync 70.6% -2025-07-23T19:39:15.4507695Z github.com/ava-labs/coreth/eth/filters/filter.go:263: indexedLogs 0.0% -2025-07-23T19:39:15.4508290Z github.com/ava-labs/coreth/eth/filters/filter.go:309: unindexedLogs 81.8% -2025-07-23T19:39:15.4508783Z github.com/ava-labs/coreth/eth/filters/filter.go:331: blockLogs 100.0% -2025-07-23T19:39:15.4509273Z github.com/ava-labs/coreth/eth/filters/filter.go:340: checkMatches 82.4% -2025-07-23T19:39:15.4509757Z github.com/ava-labs/coreth/eth/filters/filter.go:370: includes 100.0% -2025-07-23T19:39:15.4510241Z github.com/ava-labs/coreth/eth/filters/filter.go:380: filterLogs 100.0% -2025-07-23T19:39:15.4510738Z github.com/ava-labs/coreth/eth/filters/filter.go:414: bloomFilter 100.0% -2025-07-23T19:39:15.4511383Z github.com/ava-labs/coreth/eth/filters/filter_system.go:55: withDefaults 100.0% -2025-07-23T19:39:15.4511944Z github.com/ava-labs/coreth/eth/filters/filter_system.go:101: NewFilterSystem 100.0% -2025-07-23T19:39:15.4512482Z github.com/ava-labs/coreth/eth/filters/filter_system.go:111: getLogs 66.7% -2025-07-23T19:39:15.4513018Z github.com/ava-labs/coreth/eth/filters/filter_system.go:209: NewEventSystem 92.3% -2025-07-23T19:39:15.4513546Z github.com/ava-labs/coreth/eth/filters/filter_system.go:253: Err 100.0% -2025-07-23T19:39:15.4514066Z github.com/ava-labs/coreth/eth/filters/filter_system.go:258: Unsubscribe 100.0% -2025-07-23T19:39:15.4514597Z github.com/ava-labs/coreth/eth/filters/filter_system.go:283: subscribe 100.0% -2025-07-23T19:39:15.4515139Z github.com/ava-labs/coreth/eth/filters/filter_system.go:292: SubscribeLogs 100.0% -2025-07-23T19:39:15.4515721Z github.com/ava-labs/coreth/eth/filters/filter_system.go:334: SubscribeAcceptedLogs 0.0% -2025-07-23T19:39:15.4516439Z github.com/ava-labs/coreth/eth/filters/filter_system.go:359: subscribeAcceptedLogs 0.0% -2025-07-23T19:39:15.4517064Z github.com/ava-labs/coreth/eth/filters/filter_system.go:376: subscribeMinedPendingLogs 100.0% -2025-07-23T19:39:15.4517656Z github.com/ava-labs/coreth/eth/filters/filter_system.go:393: subscribeLogs 100.0% -2025-07-23T19:39:15.4518335Z github.com/ava-labs/coreth/eth/filters/filter_system.go:410: subscribePendingLogs 100.0% -2025-07-23T19:39:15.4518933Z github.com/ava-labs/coreth/eth/filters/filter_system.go:427: SubscribeNewHeads 100.0% -2025-07-23T19:39:15.4519530Z github.com/ava-labs/coreth/eth/filters/filter_system.go:443: SubscribeAcceptedHeads 0.0% -2025-07-23T19:39:15.4520127Z github.com/ava-labs/coreth/eth/filters/filter_system.go:459: SubscribePendingTxs 100.0% -2025-07-23T19:39:15.4520720Z github.com/ava-labs/coreth/eth/filters/filter_system.go:475: SubscribeAcceptedTxs 0.0% -2025-07-23T19:39:15.4521309Z github.com/ava-labs/coreth/eth/filters/filter_system.go:491: handleLogs 83.3% -2025-07-23T19:39:15.4521870Z github.com/ava-labs/coreth/eth/filters/filter_system.go:503: handleAcceptedLogs 33.3% -2025-07-23T19:39:15.4522131Z github.com/ava-labs/coreth/eth/filters/filter_system.go:515: handlePendingLogs 83.3% -2025-07-23T19:39:15.4522379Z github.com/ava-labs/coreth/eth/filters/filter_system.go:527: handleTxsEvent 100.0% -2025-07-23T19:39:15.4522649Z github.com/ava-labs/coreth/eth/filters/filter_system.go:533: handleTxsAcceptedEvent 0.0% -2025-07-23T19:39:15.4522904Z github.com/ava-labs/coreth/eth/filters/filter_system.go:539: handleChainEvent 100.0% -2025-07-23T19:39:15.4523182Z github.com/ava-labs/coreth/eth/filters/filter_system.go:545: handleChainAcceptedEvent 0.0% -2025-07-23T19:39:15.4523418Z github.com/ava-labs/coreth/eth/filters/filter_system.go:552: eventLoop 53.8% -2025-07-23T19:39:15.4523659Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:63: Estimate 73.4% -2025-07-23T19:39:15.4523902Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:199: execute 88.9% -2025-07-23T19:39:15.4524133Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:218: run 91.7% -2025-07-23T19:39:15.4524410Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:63: newFeeInfoProvider 100.0% -2025-07-23T19:39:15.4524652Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:92: addHeader 100.0% -2025-07-23T19:39:15.4524883Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:125: get 100.0% -2025-07-23T19:39:15.4525140Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:136: populateCache 83.3% -2025-07-23T19:39:15.4525382Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:68: processBlock 84.6% -2025-07-23T19:39:15.4525639Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:89: processPercentiles 72.2% -2025-07-23T19:39:15.4525897Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:124: resolveBlockRange 100.0% -2025-07-23T19:39:15.4526299Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:177: FeeHistory 74.4% -2025-07-23T19:39:15.4526517Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:132: NewOracle 83.3% -2025-07-23T19:39:15.4526756Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:211: EstimateBaseFee 0.0% -2025-07-23T19:39:15.4527009Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:220: estimateNextBaseFee 57.1% -2025-07-23T19:39:15.4527235Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:239: SuggestPrice 60.0% -2025-07-23T19:39:15.4527473Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:266: SuggestTipCap 100.0% -2025-07-23T19:39:15.4527694Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:271: suggestTip 85.7% -2025-07-23T19:39:15.4527918Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:347: getFeeInfo 42.9% -2025-07-23T19:39:15.4528215Z github.com/ava-labs/coreth/eth/state_accessor.go:53: hashState 0.0% -2025-07-23T19:39:15.4528533Z github.com/ava-labs/coreth/eth/state_accessor.go:193: pathState 0.0% -2025-07-23T19:39:15.4528752Z github.com/ava-labs/coreth/eth/state_accessor.go:227: stateAtBlock 0.0% -2025-07-23T19:39:15.4528978Z github.com/ava-labs/coreth/eth/state_accessor.go:240: stateAtTransaction 0.0% -2025-07-23T19:39:15.4529196Z github.com/ava-labs/coreth/eth/state_accessor.go:287: StateAtNextBlock 0.0% -2025-07-23T19:39:15.4529395Z github.com/ava-labs/coreth/eth/tracers/api.go:115: NewAPI 100.0% -2025-07-23T19:39:15.4529610Z github.com/ava-labs/coreth/eth/tracers/api.go:127: NewFileTracerAPI 0.0% -2025-07-23T19:39:15.4529822Z github.com/ava-labs/coreth/eth/tracers/api.go:133: chainContext 100.0% -2025-07-23T19:39:15.4530031Z github.com/ava-labs/coreth/eth/tracers/api.go:139: blockByNumber 83.3% -2025-07-23T19:39:15.4530230Z github.com/ava-labs/coreth/eth/tracers/api.go:152: blockByHash 0.0% -2025-07-23T19:39:15.4530472Z github.com/ava-labs/coreth/eth/tracers/api.go:168: blockByNumberAndHash 66.7% -2025-07-23T19:39:15.4530664Z github.com/ava-labs/coreth/eth/tracers/api.go:213: String 0.0% -2025-07-23T19:39:15.4530867Z github.com/ava-labs/coreth/eth/tracers/api.go:243: TraceChain 0.0% -2025-07-23T19:39:15.4531065Z github.com/ava-labs/coreth/eth/tracers/api.go:276: traceChain 76.8% -2025-07-23T19:39:15.4531294Z github.com/ava-labs/coreth/eth/tracers/api.go:467: TraceBlockByNumber 100.0% -2025-07-23T19:39:15.4531516Z github.com/ava-labs/coreth/eth/tracers/api.go:477: TraceBlockByHash 0.0% -2025-07-23T19:39:15.4531714Z github.com/ava-labs/coreth/eth/tracers/api.go:487: TraceBlock 0.0% -2025-07-23T19:39:15.4531934Z github.com/ava-labs/coreth/eth/tracers/api.go:497: TraceBlockFromFile 0.0% -2025-07-23T19:39:15.4532145Z github.com/ava-labs/coreth/eth/tracers/api.go:508: TraceBadBlock 0.0% -2025-07-23T19:39:15.4532387Z github.com/ava-labs/coreth/eth/tracers/api.go:529: StandardTraceBlockToFile 0.0% -2025-07-23T19:39:15.4532618Z github.com/ava-labs/coreth/eth/tracers/api.go:539: IntermediateRoots 0.0% -2025-07-23T19:39:15.4532869Z github.com/ava-labs/coreth/eth/tracers/api.go:598: StandardTraceBadBlockToFile 0.0% -2025-07-23T19:39:15.4533067Z github.com/ava-labs/coreth/eth/tracers/api.go:619: traceBlock 76.0% -2025-07-23T19:39:15.4533293Z github.com/ava-labs/coreth/eth/tracers/api.go:679: traceBlockParallel 0.0% -2025-07-23T19:39:15.4533532Z github.com/ava-labs/coreth/eth/tracers/api.go:756: standardTraceBlockToFile 0.0% -2025-07-23T19:39:15.4533732Z github.com/ava-labs/coreth/eth/tracers/api.go:866: containsTx 0.0% -2025-07-23T19:39:15.4533947Z github.com/ava-labs/coreth/eth/tracers/api.go:877: TraceTransaction 73.7% -2025-07-23T19:39:15.4534141Z github.com/ava-labs/coreth/eth/tracers/api.go:920: TraceCall 80.6% -2025-07-23T19:39:15.4534337Z github.com/ava-labs/coreth/eth/tracers/api.go:996: traceTx 69.6% -2025-07-23T19:39:15.4534638Z github.com/ava-labs/coreth/eth/tracers/api.go:1042: APIs 0.0% -2025-07-23T19:39:15.4534853Z github.com/ava-labs/coreth/eth/tracers/api.go:1060: overrideConfig 0.0% -2025-07-23T19:39:15.4535091Z github.com/ava-labs/coreth/eth/tracers/tracker.go:49: newStateTracker 100.0% -2025-07-23T19:39:15.4535314Z github.com/ava-labs/coreth/eth/tracers/tracker.go:62: releaseState 100.0% -2025-07-23T19:39:15.4535535Z github.com/ava-labs/coreth/eth/tracers/tracker.go:95: callReleases 100.0% -2025-07-23T19:39:15.4535725Z github.com/ava-labs/coreth/eth/tracers/tracker.go:106: wait 87.5% -2025-07-23T19:39:15.4535969Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:53: New 0.0% -2025-07-23T19:39:15.4536271Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:59: CreateAccessList 0.0% -2025-07-23T19:39:15.4536533Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:92: GetProof 0.0% -2025-07-23T19:39:15.4536896Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:156: CallContract 0.0% -2025-07-23T19:39:15.4537163Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:166: GCStats 0.0% -2025-07-23T19:39:15.4537422Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:173: MemStats 0.0% -2025-07-23T19:39:15.4537773Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:180: SubscribePendingTransactions 0.0% -2025-07-23T19:39:15.4538041Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:184: toCallArg 0.0% -2025-07-23T19:39:15.4538420Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:219: toOverrideMap 0.0% -2025-07-23T19:39:15.4538622Z github.com/ava-labs/coreth/ethclient/ethclient.go:53: Dial 0.0% -2025-07-23T19:39:15.4538835Z github.com/ava-labs/coreth/ethclient/ethclient.go:58: DialContext 0.0% -2025-07-23T19:39:15.4539051Z github.com/ava-labs/coreth/ethclient/ethclient.go:67: NewClient 100.0% -2025-07-23T19:39:15.4539256Z github.com/ava-labs/coreth/ethclient/ethclient.go:72: Close 100.0% -2025-07-23T19:39:15.4539452Z github.com/ava-labs/coreth/ethclient/ethclient.go:77: Client 0.0% -2025-07-23T19:39:15.4539661Z github.com/ava-labs/coreth/ethclient/ethclient.go:84: ChainID 80.0% -2025-07-23T19:39:15.4539871Z github.com/ava-labs/coreth/ethclient/ethclient.go:97: BlockByHash 0.0% -2025-07-23T19:39:15.4540108Z github.com/ava-labs/coreth/ethclient/ethclient.go:106: BlockByNumber 100.0% -2025-07-23T19:39:15.4540328Z github.com/ava-labs/coreth/ethclient/ethclient.go:111: BlockNumber 100.0% -2025-07-23T19:39:15.4540547Z github.com/ava-labs/coreth/ethclient/ethclient.go:125: BlockReceipts 0.0% -2025-07-23T19:39:15.4540759Z github.com/ava-labs/coreth/ethclient/ethclient.go:141: getBlock 51.2% -2025-07-23T19:39:15.4540988Z github.com/ava-labs/coreth/ethclient/ethclient.go:221: HeaderByHash 80.0% -2025-07-23T19:39:15.4541223Z github.com/ava-labs/coreth/ethclient/ethclient.go:232: HeaderByNumber 80.0% -2025-07-23T19:39:15.4541456Z github.com/ava-labs/coreth/ethclient/ethclient.go:252: UnmarshalJSON 66.7% -2025-07-23T19:39:15.4541689Z github.com/ava-labs/coreth/ethclient/ethclient.go:260: TransactionByHash 0.0% -2025-07-23T19:39:15.4541927Z github.com/ava-labs/coreth/ethclient/ethclient.go:282: TransactionSender 0.0% -2025-07-23T19:39:15.4542155Z github.com/ava-labs/coreth/ethclient/ethclient.go:304: TransactionCount 0.0% -2025-07-23T19:39:15.4542393Z github.com/ava-labs/coreth/ethclient/ethclient.go:311: TransactionInBlock 0.0% -2025-07-23T19:39:15.4542642Z github.com/ava-labs/coreth/ethclient/ethclient.go:330: TransactionReceipt 80.0% -2025-07-23T19:39:15.4542862Z github.com/ava-labs/coreth/ethclient/ethclient.go:341: SyncProgress 0.0% -2025-07-23T19:39:15.4543094Z github.com/ava-labs/coreth/ethclient/ethclient.go:357: SubscribeNewHead 0.0% -2025-07-23T19:39:15.4543431Z github.com/ava-labs/coreth/ethclient/ethclient.go:371: NetworkID 0.0% -2025-07-23T19:39:15.4543639Z github.com/ava-labs/coreth/ethclient/ethclient.go:385: BalanceAt 0.0% -2025-07-23T19:39:15.4543869Z github.com/ava-labs/coreth/ethclient/ethclient.go:392: BalanceAtHash 0.0% -2025-07-23T19:39:15.4544075Z github.com/ava-labs/coreth/ethclient/ethclient.go:400: StorageAt 0.0% -2025-07-23T19:39:15.4544300Z github.com/ava-labs/coreth/ethclient/ethclient.go:407: StorageAtHash 0.0% -2025-07-23T19:39:15.4544501Z github.com/ava-labs/coreth/ethclient/ethclient.go:415: CodeAt 0.0% -2025-07-23T19:39:15.4544710Z github.com/ava-labs/coreth/ethclient/ethclient.go:422: CodeAtHash 0.0% -2025-07-23T19:39:15.4544920Z github.com/ava-labs/coreth/ethclient/ethclient.go:430: NonceAt 100.0% -2025-07-23T19:39:15.4545135Z github.com/ava-labs/coreth/ethclient/ethclient.go:437: NonceAtHash 0.0% -2025-07-23T19:39:15.4545341Z github.com/ava-labs/coreth/ethclient/ethclient.go:446: FilterLogs 0.0% -2025-07-23T19:39:15.4545696Z github.com/ava-labs/coreth/ethclient/ethclient.go:457: SubscribeFilterLogs 0.0% -2025-07-23T19:39:15.4545915Z github.com/ava-labs/coreth/ethclient/ethclient.go:472: toFilterArg 0.0% -2025-07-23T19:39:15.4546140Z github.com/ava-labs/coreth/ethclient/ethclient.go:539: CallContract 80.0% -2025-07-23T19:39:15.4546378Z github.com/ava-labs/coreth/ethclient/ethclient.go:550: CallContractAtHash 0.0% -2025-07-23T19:39:15.4546608Z github.com/ava-labs/coreth/ethclient/ethclient.go:572: SuggestGasPrice 0.0% -2025-07-23T19:39:15.4546845Z github.com/ava-labs/coreth/ethclient/ethclient.go:582: SuggestGasTipCap 0.0% -2025-07-23T19:39:15.4547055Z github.com/ava-labs/coreth/ethclient/ethclient.go:598: FeeHistory 0.0% -2025-07-23T19:39:15.4547274Z github.com/ava-labs/coreth/ethclient/ethclient.go:626: EstimateGas 0.0% -2025-07-23T19:39:15.4547508Z github.com/ava-labs/coreth/ethclient/ethclient.go:639: SendTransaction 75.0% -2025-07-23T19:39:15.4547738Z github.com/ava-labs/coreth/ethclient/ethclient.go:647: toBlockNumArg 85.7% -2025-07-23T19:39:15.4547952Z github.com/ava-labs/coreth/ethclient/ethclient.go:662: toCallArg 60.0% -2025-07-23T19:39:15.4548294Z github.com/ava-labs/coreth/ethclient/ethclient.go:722: toSyncProgress 0.0% -2025-07-23T19:39:15.4548538Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:44: NewClientWithHook 0.0% -2025-07-23T19:39:15.4548841Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:61: SubscribeNewAcceptedTransactions 0.0% -2025-07-23T19:39:15.4549131Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:73: SubscribeNewPendingTransactions 0.0% -2025-07-23T19:39:15.4549369Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:85: AcceptedCodeAt 0.0% -2025-07-23T19:39:15.4549601Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:91: AcceptedNonceAt 0.0% -2025-07-23T19:39:15.4549857Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:97: AcceptedCallContract 0.0% -2025-07-23T19:39:15.4550105Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:104: EstimateBaseFee 0.0% -2025-07-23T19:39:15.4550333Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:113: ToBlockNumArg 0.0% -2025-07-23T19:39:15.4550580Z github.com/ava-labs/coreth/ethclient/signer.go:48: setSenderFromServer 100.0% -2025-07-23T19:39:15.4550769Z github.com/ava-labs/coreth/ethclient/signer.go:53: Equal 0.0% -2025-07-23T19:39:15.4550961Z github.com/ava-labs/coreth/ethclient/signer.go:58: Sender 66.7% -2025-07-23T19:39:15.4551153Z github.com/ava-labs/coreth/ethclient/signer.go:65: ChainID 0.0% -2025-07-23T19:39:15.4551331Z github.com/ava-labs/coreth/ethclient/signer.go:68: Hash 0.0% -2025-07-23T19:39:15.4551545Z github.com/ava-labs/coreth/ethclient/signer.go:71: SignatureValues 0.0% -2025-07-23T19:39:15.4551765Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:48: Add 0.0% -2025-07-23T19:39:15.4552125Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:87: NewBackend 88.9% -2025-07-23T19:39:15.4552379Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:122: newWithNode 83.3% -2025-07-23T19:39:15.4552609Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:154: Close 100.0% -2025-07-23T19:39:15.4552835Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:163: Commit 75.0% -2025-07-23T19:39:15.4553077Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:171: buildBlock 73.3% -2025-07-23T19:39:15.4553346Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:196: acceptAncestors 83.3% -2025-07-23T19:39:15.4553583Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:219: Rollback 100.0% -2025-07-23T19:39:15.4553806Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:239: Fork 76.5% -2025-07-23T19:39:15.4554047Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:274: AdjustTime 100.0% -2025-07-23T19:39:15.4554386Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:280: Client 100.0% -2025-07-23T19:39:15.4554661Z github.com/ava-labs/coreth/ethclient/simulated/options.go:29: WithBlockGasLimit 100.0% -2025-07-23T19:39:15.4554927Z github.com/ava-labs/coreth/ethclient/simulated/options.go:37: WithCallGasLimit 100.0% -2025-07-23T19:39:15.4555165Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:51: NewHasher 100.0% -2025-07-23T19:39:15.4555388Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:56: Reset 100.0% -2025-07-23T19:39:15.4555619Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:61: Update 100.0% -2025-07-23T19:39:15.4555840Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:68: Hash 100.0% -2025-07-23T19:39:15.4556041Z github.com/ava-labs/coreth/internal/debug/api.go:70: Verbosity 0.0% -2025-07-23T19:39:15.4556245Z github.com/ava-labs/coreth/internal/debug/api.go:76: Vmodule 0.0% -2025-07-23T19:39:15.4556444Z github.com/ava-labs/coreth/internal/debug/api.go:81: MemStats 0.0% -2025-07-23T19:39:15.4556646Z github.com/ava-labs/coreth/internal/debug/api.go:88: GcStats 0.0% -2025-07-23T19:39:15.4556851Z github.com/ava-labs/coreth/internal/debug/api.go:96: CpuProfile 0.0% -2025-07-23T19:39:15.4557078Z github.com/ava-labs/coreth/internal/debug/api.go:106: StartCPUProfile 0.0% -2025-07-23T19:39:15.4557300Z github.com/ava-labs/coreth/internal/debug/api.go:127: StopCPUProfile 0.0% -2025-07-23T19:39:15.4557496Z github.com/ava-labs/coreth/internal/debug/api.go:143: GoTrace 0.0% -2025-07-23T19:39:15.4557712Z github.com/ava-labs/coreth/internal/debug/api.go:155: BlockProfile 0.0% -2025-07-23T19:39:15.4557949Z github.com/ava-labs/coreth/internal/debug/api.go:164: SetBlockProfileRate 0.0% -2025-07-23T19:39:15.4558272Z github.com/ava-labs/coreth/internal/debug/api.go:169: WriteBlockProfile 0.0% -2025-07-23T19:39:15.4565315Z github.com/ava-labs/coreth/internal/debug/api.go:176: MutexProfile 0.0% -2025-07-23T19:39:15.4565644Z github.com/ava-labs/coreth/internal/debug/api.go:184: SetMutexProfileFraction 0.0% -2025-07-23T19:39:15.4565898Z github.com/ava-labs/coreth/internal/debug/api.go:189: WriteMutexProfile 0.0% -2025-07-23T19:39:15.4566138Z github.com/ava-labs/coreth/internal/debug/api.go:196: WriteMemProfile 0.0% -2025-07-23T19:39:15.4566342Z github.com/ava-labs/coreth/internal/debug/api.go:203: Stacks 0.0% -2025-07-23T19:39:15.4566578Z github.com/ava-labs/coreth/internal/debug/api.go:242: FreeOSMemory 0.0% -2025-07-23T19:39:15.4566799Z github.com/ava-labs/coreth/internal/debug/api.go:248: SetGCPercent 0.0% -2025-07-23T19:39:15.4567012Z github.com/ava-labs/coreth/internal/debug/api.go:252: writeProfile 0.0% -2025-07-23T19:39:15.4567229Z github.com/ava-labs/coreth/internal/debug/api.go:265: expandHome 0.0% -2025-07-23T19:39:15.4567434Z github.com/ava-labs/coreth/internal/debug/flags.go:181: init 100.0% -2025-07-23T19:39:15.4567822Z github.com/ava-labs/coreth/internal/debug/flags.go:187: Setup 0.0% -2025-07-23T19:39:15.4568047Z github.com/ava-labs/coreth/internal/debug/flags.go:314: StartPProf 0.0% -2025-07-23T19:39:15.4568394Z github.com/ava-labs/coreth/internal/debug/flags.go:325: Exit 0.0% -2025-07-23T19:39:15.4568658Z github.com/ava-labs/coreth/internal/debug/flags.go:333: validateLogLocation 0.0% -2025-07-23T19:39:15.4568887Z github.com/ava-labs/coreth/internal/debug/loudpanic.go:33: LoudPanic 0.0% -2025-07-23T19:39:15.4569109Z github.com/ava-labs/coreth/internal/debug/trace.go:39: StartGoTrace 0.0% -2025-07-23T19:39:15.4569327Z github.com/ava-labs/coreth/internal/debug/trace.go:60: StopGoTrace 0.0% -2025-07-23T19:39:15.4569533Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:42: lock 0.0% -2025-07-23T19:39:15.4569753Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:57: LockAddr 0.0% -2025-07-23T19:39:15.4570099Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:62: UnlockAddr 0.0% -2025-07-23T19:39:15.4570381Z github.com/ava-labs/coreth/internal/ethapi/api.coreth.go:46: SuggestPriceOptions 86.7% -2025-07-23T19:39:15.4570663Z github.com/ava-labs/coreth/internal/ethapi/api.coreth.go:104: calculateFeeSpeeds 100.0% -2025-07-23T19:39:15.4570903Z github.com/ava-labs/coreth/internal/ethapi/api.go:76: NewEthereumAPI 100.0% -2025-07-23T19:39:15.4571107Z github.com/ava-labs/coreth/internal/ethapi/api.go:81: GasPrice 0.0% -2025-07-23T19:39:15.4571312Z github.com/ava-labs/coreth/internal/ethapi/api.go:91: BaseFee 0.0% -2025-07-23T19:39:15.4571560Z github.com/ava-labs/coreth/internal/ethapi/api.go:100: MaxPriorityFeePerGas 0.0% -2025-07-23T19:39:15.4571783Z github.com/ava-labs/coreth/internal/ethapi/api.go:116: FeeHistory 0.0% -2025-07-23T19:39:15.4571984Z github.com/ava-labs/coreth/internal/ethapi/api.go:148: Syncing 0.0% -2025-07-23T19:39:15.4572213Z github.com/ava-labs/coreth/internal/ethapi/api.go:158: NewTxPoolAPI 0.0% -2025-07-23T19:39:15.4572420Z github.com/ava-labs/coreth/internal/ethapi/api.go:163: Content 0.0% -2025-07-23T19:39:15.4572635Z github.com/ava-labs/coreth/internal/ethapi/api.go:191: ContentFrom 0.0% -2025-07-23T19:39:15.4572835Z github.com/ava-labs/coreth/internal/ethapi/api.go:215: Status 0.0% -2025-07-23T19:39:15.4573037Z github.com/ava-labs/coreth/internal/ethapi/api.go:225: Inspect 0.0% -2025-07-23T19:39:15.4573290Z github.com/ava-labs/coreth/internal/ethapi/api.go:265: NewEthereumAccountAPI 0.0% -2025-07-23T19:39:15.4573495Z github.com/ava-labs/coreth/internal/ethapi/api.go:270: Accounts 0.0% -2025-07-23T19:39:15.4573748Z github.com/ava-labs/coreth/internal/ethapi/api.go:284: NewPersonalAccountAPI 0.0% -2025-07-23T19:39:15.4573967Z github.com/ava-labs/coreth/internal/ethapi/api.go:293: ListAccounts 0.0% -2025-07-23T19:39:15.4574185Z github.com/ava-labs/coreth/internal/ethapi/api.go:307: ListWallets 0.0% -2025-07-23T19:39:15.4574401Z github.com/ava-labs/coreth/internal/ethapi/api.go:329: OpenWallet 0.0% -2025-07-23T19:39:15.4574629Z github.com/ava-labs/coreth/internal/ethapi/api.go:343: DeriveAccount 0.0% -2025-07-23T19:39:15.4574839Z github.com/ava-labs/coreth/internal/ethapi/api.go:359: NewAccount 0.0% -2025-07-23T19:39:15.4575059Z github.com/ava-labs/coreth/internal/ethapi/api.go:376: fetchKeystore 0.0% -2025-07-23T19:39:15.4575282Z github.com/ava-labs/coreth/internal/ethapi/api.go:385: ImportRawKey 0.0% -2025-07-23T19:39:15.4575502Z github.com/ava-labs/coreth/internal/ethapi/api.go:401: UnlockAccount 0.0% -2025-07-23T19:39:15.4575719Z github.com/ava-labs/coreth/internal/ethapi/api.go:430: LockAccount 0.0% -2025-07-23T19:39:15.4575949Z github.com/ava-labs/coreth/internal/ethapi/api.go:440: signTransaction 0.0% -2025-07-23T19:39:15.4576174Z github.com/ava-labs/coreth/internal/ethapi/api.go:460: SendTransaction 0.0% -2025-07-23T19:39:15.4576526Z github.com/ava-labs/coreth/internal/ethapi/api.go:482: SignTransaction 0.0% -2025-07-23T19:39:15.4576727Z github.com/ava-labs/coreth/internal/ethapi/api.go:526: Sign 0.0% -2025-07-23T19:39:15.4576932Z github.com/ava-labs/coreth/internal/ethapi/api.go:554: EcRecover 0.0% -2025-07-23T19:39:15.4577163Z github.com/ava-labs/coreth/internal/ethapi/api.go:571: InitializeWallet 0.0% -2025-07-23T19:39:15.4577362Z github.com/ava-labs/coreth/internal/ethapi/api.go:598: Unpair 0.0% -2025-07-23T19:39:15.4577604Z github.com/ava-labs/coreth/internal/ethapi/api.go:618: NewBlockChainAPI 100.0% -2025-07-23T19:39:15.4577805Z github.com/ava-labs/coreth/internal/ethapi/api.go:628: ChainId 0.0% -2025-07-23T19:39:15.4578018Z github.com/ava-labs/coreth/internal/ethapi/api.go:633: BlockNumber 0.0% -2025-07-23T19:39:15.4578335Z github.com/ava-labs/coreth/internal/ethapi/api.go:641: GetBalance 0.0% -2025-07-23T19:39:15.4578648Z github.com/ava-labs/coreth/internal/ethapi/api.go:671: Put 0.0% -2025-07-23T19:39:15.4578853Z github.com/ava-labs/coreth/internal/ethapi/api.go:676: Delete 0.0% -2025-07-23T19:39:15.4579056Z github.com/ava-labs/coreth/internal/ethapi/api.go:683: GetProof 0.0% -2025-07-23T19:39:15.4579260Z github.com/ava-labs/coreth/internal/ethapi/api.go:766: decodeHash 0.0% -2025-07-23T19:39:15.4579508Z github.com/ava-labs/coreth/internal/ethapi/api.go:788: GetHeaderByNumber 100.0% -2025-07-23T19:39:15.4579742Z github.com/ava-labs/coreth/internal/ethapi/api.go:805: GetHeaderByHash 100.0% -2025-07-23T19:39:15.4579975Z github.com/ava-labs/coreth/internal/ethapi/api.go:820: GetBlockByNumber 100.0% -2025-07-23T19:39:15.4580213Z github.com/ava-labs/coreth/internal/ethapi/api.go:838: GetBlockByHash 100.0% -2025-07-23T19:39:15.4580495Z github.com/ava-labs/coreth/internal/ethapi/api.go:847: GetUncleByBlockNumberAndIndex 0.0% -2025-07-23T19:39:15.4580783Z github.com/ava-labs/coreth/internal/ethapi/api.go:862: GetUncleByBlockHashAndIndex 0.0% -2025-07-23T19:39:15.4581051Z github.com/ava-labs/coreth/internal/ethapi/api.go:877: GetUncleCountByBlockNumber 0.0% -2025-07-23T19:39:15.4581314Z github.com/ava-labs/coreth/internal/ethapi/api.go:886: GetUncleCountByBlockHash 0.0% -2025-07-23T19:39:15.4581521Z github.com/ava-labs/coreth/internal/ethapi/api.go:895: GetCode 0.0% -2025-07-23T19:39:15.4581741Z github.com/ava-labs/coreth/internal/ethapi/api.go:907: GetStorageAt 0.0% -2025-07-23T19:39:15.4581978Z github.com/ava-labs/coreth/internal/ethapi/api.go:921: GetBlockReceipts 85.7% -2025-07-23T19:39:15.4582176Z github.com/ava-labs/coreth/internal/ethapi/api.go:966: Apply 84.2% -2025-07-23T19:39:15.4582377Z github.com/ava-labs/coreth/internal/ethapi/api.go:1017: Apply 56.2% -2025-07-23T19:39:15.4582620Z github.com/ava-labs/coreth/internal/ethapi/api.go:1058: NewChainContext 100.0% -2025-07-23T19:39:15.4582828Z github.com/ava-labs/coreth/internal/ethapi/api.go:1062: Engine 100.0% -2025-07-23T19:39:15.4583046Z github.com/ava-labs/coreth/internal/ethapi/api.go:1066: GetHeader 0.0% -2025-07-23T19:39:15.4583250Z github.com/ava-labs/coreth/internal/ethapi/api.go:1076: doCall 80.8% -2025-07-23T19:39:15.4583453Z github.com/ava-labs/coreth/internal/ethapi/api.go:1128: DoCall 43.8% -2025-07-23T19:39:15.4583652Z github.com/ava-labs/coreth/internal/ethapi/api.go:1163: Call 66.7% -2025-07-23T19:39:15.4583881Z github.com/ava-labs/coreth/internal/ethapi/api.go:1183: DoEstimateGas 77.8% -2025-07-23T19:39:15.4584104Z github.com/ava-labs/coreth/internal/ethapi/api.go:1227: EstimateGas 100.0% -2025-07-23T19:39:15.4584351Z github.com/ava-labs/coreth/internal/ethapi/api.go:1236: RPCMarshalHeader 80.0% -2025-07-23T19:39:15.4584594Z github.com/ava-labs/coreth/internal/ethapi/api.go:1281: RPCMarshalBlock 95.0% -2025-07-23T19:39:15.4584840Z github.com/ava-labs/coreth/internal/ethapi/api.go:1313: rpcMarshalHeader 100.0% -2025-07-23T19:39:15.4585194Z github.com/ava-labs/coreth/internal/ethapi/api.go:1323: rpcMarshalBlock 100.0% -2025-07-23T19:39:15.4585430Z github.com/ava-labs/coreth/internal/ethapi/api.go:1361: newRPCTransaction 94.9% -2025-07-23T19:39:15.4585672Z github.com/ava-labs/coreth/internal/ethapi/api.go:1438: effectiveGasPrice 0.0% -2025-07-23T19:39:15.4585907Z github.com/ava-labs/coreth/internal/ethapi/api.go:1450: NewRPCTransaction 0.0% -2025-07-23T19:39:15.4586210Z github.com/ava-labs/coreth/internal/ethapi/api.go:1463: newRPCTransactionFromBlockIndex 75.0% -2025-07-23T19:39:15.4586510Z github.com/ava-labs/coreth/internal/ethapi/api.go:1472: newRPCRawTransactionFromBlockIndex 0.0% -2025-07-23T19:39:15.4586742Z github.com/ava-labs/coreth/internal/ethapi/api.go:1492: CreateAccessList 0.0% -2025-07-23T19:39:15.4586965Z github.com/ava-labs/coreth/internal/ethapi/api.go:1511: AccessList 0.0% -2025-07-23T19:39:15.4587286Z github.com/ava-labs/coreth/internal/ethapi/api.go:1573: NewTransactionAPI 100.0% -2025-07-23T19:39:15.4587579Z github.com/ava-labs/coreth/internal/ethapi/api.go:1581: GetBlockTransactionCountByNumber 0.0% -2025-07-23T19:39:15.4587867Z github.com/ava-labs/coreth/internal/ethapi/api.go:1590: GetBlockTransactionCountByHash 0.0% -2025-07-23T19:39:15.4588259Z github.com/ava-labs/coreth/internal/ethapi/api.go:1599: GetTransactionByBlockNumberAndIndex 0.0% -2025-07-23T19:39:15.4588554Z github.com/ava-labs/coreth/internal/ethapi/api.go:1607: GetTransactionByBlockHashAndIndex 0.0% -2025-07-23T19:39:15.4588863Z github.com/ava-labs/coreth/internal/ethapi/api.go:1615: GetRawTransactionByBlockNumberAndIndex 0.0% -2025-07-23T19:39:15.4589158Z github.com/ava-labs/coreth/internal/ethapi/api.go:1623: GetRawTransactionByBlockHashAndIndex 0.0% -2025-07-23T19:39:15.4589408Z github.com/ava-labs/coreth/internal/ethapi/api.go:1631: GetTransactionCount 0.0% -2025-07-23T19:39:15.4589663Z github.com/ava-labs/coreth/internal/ethapi/api.go:1650: GetTransactionByHash 0.0% -2025-07-23T19:39:15.4589936Z github.com/ava-labs/coreth/internal/ethapi/api.go:1672: GetRawTransactionByHash 0.0% -2025-07-23T19:39:15.4590192Z github.com/ava-labs/coreth/internal/ethapi/api.go:1688: GetTransactionReceipt 75.0% -2025-07-23T19:39:15.4590426Z github.com/ava-labs/coreth/internal/ethapi/api.go:1715: marshalReceipt 84.6% -2025-07-23T19:39:15.4590633Z github.com/ava-labs/coreth/internal/ethapi/api.go:1757: sign 80.0% -2025-07-23T19:39:15.4590879Z github.com/ava-labs/coreth/internal/ethapi/api.go:1770: SubmitTransaction 0.0% -2025-07-23T19:39:15.4591113Z github.com/ava-labs/coreth/internal/ethapi/api.go:1802: SendTransaction 37.5% -2025-07-23T19:39:15.4591344Z github.com/ava-labs/coreth/internal/ethapi/api.go:1838: FillTransaction 87.5% -2025-07-23T19:39:15.4591582Z github.com/ava-labs/coreth/internal/ethapi/api.go:1856: SendRawTransaction 0.0% -2025-07-23T19:39:15.4591788Z github.com/ava-labs/coreth/internal/ethapi/api.go:1873: Sign 0.0% -2025-07-23T19:39:15.4592019Z github.com/ava-labs/coreth/internal/ethapi/api.go:1898: SignTransaction 65.0% -2025-07-23T19:39:15.4592267Z github.com/ava-labs/coreth/internal/ethapi/api.go:1932: PendingTransactions 0.0% -2025-07-23T19:39:15.4592472Z github.com/ava-labs/coreth/internal/ethapi/api.go:1957: Resend 0.0% -2025-07-23T19:39:15.4592696Z github.com/ava-labs/coreth/internal/ethapi/api.go:2014: NewDebugAPI 0.0% -2025-07-23T19:39:15.4592924Z github.com/ava-labs/coreth/internal/ethapi/api.go:2019: GetRawHeader 0.0% -2025-07-23T19:39:15.4593141Z github.com/ava-labs/coreth/internal/ethapi/api.go:2038: GetRawBlock 0.0% -2025-07-23T19:39:15.4593371Z github.com/ava-labs/coreth/internal/ethapi/api.go:2057: GetRawReceipts 0.0% -2025-07-23T19:39:15.4593613Z github.com/ava-labs/coreth/internal/ethapi/api.go:2084: GetRawTransaction 0.0% -2025-07-23T19:39:15.4593831Z github.com/ava-labs/coreth/internal/ethapi/api.go:2100: PrintBlock 0.0% -2025-07-23T19:39:15.4594170Z github.com/ava-labs/coreth/internal/ethapi/api.go:2114: NewNetAPI 0.0% -2025-07-23T19:39:15.4594380Z github.com/ava-labs/coreth/internal/ethapi/api.go:2119: Listening 0.0% -2025-07-23T19:39:15.4594586Z github.com/ava-labs/coreth/internal/ethapi/api.go:2124: PeerCount 0.0% -2025-07-23T19:39:15.4594796Z github.com/ava-labs/coreth/internal/ethapi/api.go:2129: Version 0.0% -2025-07-23T19:39:15.4595013Z github.com/ava-labs/coreth/internal/ethapi/api.go:2135: checkTxFee 28.6% -2025-07-23T19:39:15.4595256Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:20: GetChainConfig 0.0% -2025-07-23T19:39:15.4595490Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:32: CallDetailed 0.0% -2025-07-23T19:39:15.4595718Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:71: GetBadBlocks 0.0% -2025-07-23T19:39:15.4596017Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:103: stateQueryBlockNumberAllowed 90.5% -2025-07-23T19:39:15.4596384Z github.com/ava-labs/coreth/internal/ethapi/backend.go:115: GetAPIs 0.0% -2025-07-23T19:39:15.4596599Z github.com/ava-labs/coreth/internal/ethapi/errors.go:47: ErrorCode 0.0% -2025-07-23T19:39:15.4596812Z github.com/ava-labs/coreth/internal/ethapi/errors.go:52: ErrorData 0.0% -2025-07-23T19:39:15.4597045Z github.com/ava-labs/coreth/internal/ethapi/errors.go:57: newRevertError 0.0% -2025-07-23T19:39:15.4597290Z github.com/ava-labs/coreth/internal/ethapi/errors.go:75: NewTxIndexingError 0.0% -2025-07-23T19:39:15.4597492Z github.com/ava-labs/coreth/internal/ethapi/errors.go:78: Error 0.0% -2025-07-23T19:39:15.4597704Z github.com/ava-labs/coreth/internal/ethapi/errors.go:84: ErrorCode 0.0% -2025-07-23T19:39:15.4597918Z github.com/ava-labs/coreth/internal/ethapi/errors.go:89: ErrorData 0.0% -2025-07-23T19:39:15.4598260Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:91: from 100.0% -2025-07-23T19:39:15.4598510Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:99: data 100.0% -2025-07-23T19:39:15.4598778Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:110: setDefaults 61.9% -2025-07-23T19:39:15.4599054Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:203: setFeeDefaults 89.7% -2025-07-23T19:39:15.4599358Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:263: setCancunFeeDefaults 100.0% -2025-07-23T19:39:15.4599676Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:282: setApricotPhase3FeeDefault 90.9% -2025-07-23T19:39:15.4599959Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:310: setBlobTxSidecar 90.5% -2025-07-23T19:39:15.4600225Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:387: ToMessage 78.6% -2025-07-23T19:39:15.4600496Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:476: toTransaction 73.3% -2025-07-23T19:39:15.4600795Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:548: IsEIP4844 100.0% -2025-07-23T19:39:15.4601015Z github.com/ava-labs/coreth/internal/flags/categories.go:53: init 100.0% -2025-07-23T19:39:15.4601225Z github.com/ava-labs/coreth/internal/flags/helpers.go:47: NewApp 80.0% -2025-07-23T19:39:15.4601434Z github.com/ava-labs/coreth/internal/flags/helpers.go:62: Merge 0.0% -2025-07-23T19:39:15.4601678Z github.com/ava-labs/coreth/internal/flags/helpers.go:87: MigrateGlobalFlags 0.0% -2025-07-23T19:39:15.4601917Z github.com/ava-labs/coreth/internal/flags/helpers.go:114: doMigrateFlags 0.0% -2025-07-23T19:39:15.4602122Z github.com/ava-labs/coreth/internal/flags/helpers.go:149: init 50.0% -2025-07-23T19:39:15.4602340Z github.com/ava-labs/coreth/internal/flags/helpers.go:162: FlagString 0.0% -2025-07-23T19:39:15.4602551Z github.com/ava-labs/coreth/internal/flags/helpers.go:194: indent 0.0% -2025-07-23T19:39:15.4602764Z github.com/ava-labs/coreth/internal/flags/helpers.go:199: wordWrap 0.0% -2025-07-23T19:39:15.4603099Z github.com/ava-labs/coreth/internal/reexec/reexec.go:31: Register 0.0% -2025-07-23T19:39:15.4603299Z github.com/ava-labs/coreth/internal/reexec/reexec.go:40: Init 0.0% -2025-07-23T19:39:15.4603506Z github.com/ava-labs/coreth/internal/reexec/self_linux.go:23: Self 0.0% -2025-07-23T19:39:15.4603829Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:49: NewShutdownTracker 100.0% -2025-07-23T19:39:15.4604115Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:59: MarkStartup 71.4% -2025-07-23T19:39:15.4604380Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:75: Start 85.7% -2025-07-23T19:39:15.4604647Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:91: Stop 100.0% -2025-07-23T19:39:15.4604870Z github.com/ava-labs/coreth/internal/version/vcs.go:43: buildInfoVCS 36.4% -2025-07-23T19:39:15.4605085Z github.com/ava-labs/coreth/internal/version/version.go:54: VCS 83.3% -2025-07-23T19:39:15.4605410Z github.com/ava-labs/coreth/internal/version/version.go:69: ClientName 0.0% -2025-07-23T19:39:15.4605619Z github.com/ava-labs/coreth/internal/version/version.go:85: Info 42.9% -2025-07-23T19:39:15.4605857Z github.com/ava-labs/coreth/internal/version/version.go:112: versionInfo 50.0% -2025-07-23T19:39:15.4606087Z github.com/ava-labs/coreth/internal/version/version.go:142: findModule 50.0% -2025-07-23T19:39:15.4606271Z github.com/ava-labs/coreth/log/format.go:45: format 66.7% -2025-07-23T19:39:15.4606476Z github.com/ava-labs/coreth/log/format.go:103: formatAttributes 82.1% -2025-07-23T19:39:15.4606678Z github.com/ava-labs/coreth/log/format.go:150: FormatSlogValue 84.0% -2025-07-23T19:39:15.4606881Z github.com/ava-labs/coreth/log/format.go:206: appendInt64 100.0% -2025-07-23T19:39:15.4607072Z github.com/ava-labs/coreth/log/format.go:214: appendUint64 88.2% -2025-07-23T19:39:15.4607285Z github.com/ava-labs/coreth/log/format.go:249: FormatLogfmtUint64 0.0% -2025-07-23T19:39:15.4607482Z github.com/ava-labs/coreth/log/format.go:254: appendBigInt 12.5% -2025-07-23T19:39:15.4607670Z github.com/ava-labs/coreth/log/format.go:288: appendU256 50.0% -2025-07-23T19:39:15.4607892Z github.com/ava-labs/coreth/log/format.go:298: appendEscapeString 100.0% -2025-07-23T19:39:15.4608088Z github.com/ava-labs/coreth/log/format.go:331: escapeMessage 60.0% -2025-07-23T19:39:15.4608407Z github.com/ava-labs/coreth/log/format.go:352: writeTimeTermFormat 100.0% -2025-07-23T19:39:15.4608614Z github.com/ava-labs/coreth/log/format.go:372: writePosIntWidth 91.7% -2025-07-23T19:39:15.4608813Z github.com/ava-labs/coreth/log/handler.go:22: DiscardHandler 0.0% -2025-07-23T19:39:15.4608990Z github.com/ava-labs/coreth/log/handler.go:26: Handle 0.0% -2025-07-23T19:39:15.4609167Z github.com/ava-labs/coreth/log/handler.go:30: Enabled 0.0% -2025-07-23T19:39:15.4609356Z github.com/ava-labs/coreth/log/handler.go:34: WithGroup 0.0% -2025-07-23T19:39:15.4609538Z github.com/ava-labs/coreth/log/handler.go:38: WithAttrs 0.0% -2025-07-23T19:39:15.4609750Z github.com/ava-labs/coreth/log/handler.go:67: NewTerminalHandler 0.0% -2025-07-23T19:39:15.4609993Z github.com/ava-labs/coreth/log/handler.go:73: NewTerminalHandlerWithLevel 100.0% -2025-07-23T19:39:15.4610173Z github.com/ava-labs/coreth/log/handler.go:82: Handle 100.0% -2025-07-23T19:39:15.4610355Z github.com/ava-labs/coreth/log/handler.go:91: Enabled 100.0% -2025-07-23T19:39:15.4610536Z github.com/ava-labs/coreth/log/handler.go:95: WithGroup 0.0% -2025-07-23T19:39:15.4610724Z github.com/ava-labs/coreth/log/handler.go:99: WithAttrs 100.0% -2025-07-23T19:39:15.4610931Z github.com/ava-labs/coreth/log/handler.go:110: ResetFieldPadding 0.0% -2025-07-23T19:39:15.4611127Z github.com/ava-labs/coreth/log/handler.go:117: JSONHandler 0.0% -2025-07-23T19:39:15.4611473Z github.com/ava-labs/coreth/log/handler.go:123: JSONHandlerWithLevel 100.0% -2025-07-23T19:39:15.4611670Z github.com/ava-labs/coreth/log/handler.go:134: LogfmtHandler 0.0% -2025-07-23T19:39:15.4611900Z github.com/ava-labs/coreth/log/handler.go:142: LogfmtHandlerWithLevel 0.0% -2025-07-23T19:39:15.4612121Z github.com/ava-labs/coreth/log/handler.go:149: builtinReplaceLogfmt 0.0% -2025-07-23T19:39:15.4612341Z github.com/ava-labs/coreth/log/handler.go:153: builtinReplaceJSON 0.0% -2025-07-23T19:39:15.4612542Z github.com/ava-labs/coreth/log/handler.go:157: builtinReplace 0.0% -2025-07-23T19:39:15.4612740Z github.com/ava-labs/coreth/log/logger.go:46: LvlFromString 37.5% -2025-07-23T19:39:15.4612945Z github.com/ava-labs/coreth/log/logger.go:67: FromLegacyLevel 0.0% -2025-07-23T19:39:15.4613157Z github.com/ava-labs/coreth/log/logger.go:93: LevelAlignedString 37.5% -2025-07-23T19:39:15.4613351Z github.com/ava-labs/coreth/log/logger.go:113: LevelString 0.0% -2025-07-23T19:39:15.4613628Z github.com/ava-labs/coreth/log/logger.go:173: NewLogger 0.0% -2025-07-23T19:39:15.4613804Z github.com/ava-labs/coreth/log/logger.go:180: Write 0.0% -2025-07-23T19:39:15.4613974Z github.com/ava-labs/coreth/log/logger.go:196: Log 0.0% -2025-07-23T19:39:15.4614141Z github.com/ava-labs/coreth/log/logger.go:200: With 0.0% -2025-07-23T19:39:15.4614300Z github.com/ava-labs/coreth/log/logger.go:204: New 0.0% -2025-07-23T19:39:15.4614483Z github.com/ava-labs/coreth/log/logger.go:209: Enabled 0.0% -2025-07-23T19:39:15.4614649Z github.com/ava-labs/coreth/log/logger.go:213: Trace 0.0% -2025-07-23T19:39:15.4614821Z github.com/ava-labs/coreth/log/logger.go:217: Debug 0.0% -2025-07-23T19:39:15.4614983Z github.com/ava-labs/coreth/log/logger.go:221: Info 0.0% -2025-07-23T19:39:15.4615143Z github.com/ava-labs/coreth/log/logger.go:225: Warn 0.0% -2025-07-23T19:39:15.4615316Z github.com/ava-labs/coreth/log/logger.go:229: Error 0.0% -2025-07-23T19:39:15.4615477Z github.com/ava-labs/coreth/log/logger.go:233: Crit 0.0% -2025-07-23T19:39:15.4615724Z github.com/ava-labs/coreth/metrics/metricstest/metrics.go:15: WithMetrics 40.0% -2025-07-23T19:39:15.4615994Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:28: NewGatherer 100.0% -2025-07-23T19:39:15.4616237Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:36: Gather 100.0% -2025-07-23T19:39:15.4616478Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:64: ptrTo 100.0% -2025-07-23T19:39:15.4616736Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:66: metricFamily 94.1% -2025-07-23T19:39:15.4616898Z github.com/ava-labs/coreth/miner/miner.go:59: New 0.0% -2025-07-23T19:39:15.4617099Z github.com/ava-labs/coreth/miner/miner.go:65: SetEtherbase 0.0% -2025-07-23T19:39:15.4617293Z github.com/ava-labs/coreth/miner/miner.go:69: GenerateBlock 0.0% -2025-07-23T19:39:15.4617522Z github.com/ava-labs/coreth/miner/miner.go:75: SubscribePendingLogs 0.0% -2025-07-23T19:39:15.4617746Z github.com/ava-labs/coreth/miner/ordering.go:50: newTxWithMinerFee 100.0% -2025-07-23T19:39:15.4617923Z github.com/ava-labs/coreth/miner/ordering.go:72: Len 100.0% -2025-07-23T19:39:15.4618199Z github.com/ava-labs/coreth/miner/ordering.go:73: Less 100.0% -2025-07-23T19:39:15.4618378Z github.com/ava-labs/coreth/miner/ordering.go:82: Swap 100.0% -2025-07-23T19:39:15.4618556Z github.com/ava-labs/coreth/miner/ordering.go:84: Push 0.0% -2025-07-23T19:39:15.4618734Z github.com/ava-labs/coreth/miner/ordering.go:88: Pop 100.0% -2025-07-23T19:39:15.4619003Z github.com/ava-labs/coreth/miner/ordering.go:112: newTransactionsByPriceAndNonce 100.0% -2025-07-23T19:39:15.4619190Z github.com/ava-labs/coreth/miner/ordering.go:141: Peek 100.0% -2025-07-23T19:39:15.4619376Z github.com/ava-labs/coreth/miner/ordering.go:149: Shift 100.0% -2025-07-23T19:39:15.4619673Z github.com/ava-labs/coreth/miner/ordering.go:164: Pop 0.0% -2025-07-23T19:39:15.4619854Z github.com/ava-labs/coreth/miner/ordering.go:170: Empty 0.0% -2025-07-23T19:39:15.4620028Z github.com/ava-labs/coreth/miner/ordering.go:175: Clear 0.0% -2025-07-23T19:39:15.4620217Z github.com/ava-labs/coreth/miner/worker.go:116: newWorker 0.0% -2025-07-23T19:39:15.4620415Z github.com/ava-labs/coreth/miner/worker.go:133: setEtherbase 0.0% -2025-07-23T19:39:15.4620617Z github.com/ava-labs/coreth/miner/worker.go:140: commitNewWork 0.0% -2025-07-23T19:39:15.4620858Z github.com/ava-labs/coreth/miner/worker.go:264: createCurrentEnvironment 0.0% -2025-07-23T19:39:15.4621071Z github.com/ava-labs/coreth/miner/worker.go:313: commitTransaction 0.0% -2025-07-23T19:39:15.4621329Z github.com/ava-labs/coreth/miner/worker.go:327: commitBlobTransaction 0.0% -2025-07-23T19:39:15.4621657Z github.com/ava-labs/coreth/miner/worker.go:352: applyTransaction 0.0% -2025-07-23T19:39:15.4621882Z github.com/ava-labs/coreth/miner/worker.go:386: commitTransactions 0.0% -2025-07-23T19:39:15.4622060Z github.com/ava-labs/coreth/miner/worker.go:493: commit 0.0% -2025-07-23T19:39:15.4622254Z github.com/ava-labs/coreth/miner/worker.go:511: handleResult 0.0% -2025-07-23T19:39:15.4622449Z github.com/ava-labs/coreth/miner/worker.go:557: copyReceipts 0.0% -2025-07-23T19:39:15.4622642Z github.com/ava-labs/coreth/miner/worker.go:567: totalFees 0.0% -2025-07-23T19:39:15.4622928Z github.com/ava-labs/coreth/nativeasset/contract.go:36: PackNativeAssetBalanceInput 100.0% -2025-07-23T19:39:15.4623219Z github.com/ava-labs/coreth/nativeasset/contract.go:44: UnpackNativeAssetBalanceInput 100.0% -2025-07-23T19:39:15.4623414Z github.com/ava-labs/coreth/nativeasset/contract.go:55: Run 90.0% -2025-07-23T19:39:15.4623687Z github.com/ava-labs/coreth/nativeasset/contract.go:84: PackNativeAssetCallInput 100.0% -2025-07-23T19:39:15.4623974Z github.com/ava-labs/coreth/nativeasset/contract.go:94: UnpackNativeAssetCallInput 100.0% -2025-07-23T19:39:15.4624177Z github.com/ava-labs/coreth/nativeasset/contract.go:106: Run 100.0% -2025-07-23T19:39:15.4624371Z github.com/ava-labs/coreth/nativeasset/contract.go:123: run 81.0% -2025-07-23T19:39:15.4624576Z github.com/ava-labs/coreth/nativeasset/contract.go:168: Run 100.0% -2025-07-23T19:39:15.4624775Z github.com/ava-labs/coreth/network/network.go:125: NewNetwork 75.0% -2025-07-23T19:39:15.4625010Z github.com/ava-labs/coreth/network/network.go:155: SendAppRequestAny 90.0% -2025-07-23T19:39:15.4625225Z github.com/ava-labs/coreth/network/network.go:177: SendAppRequest 88.9% -2025-07-23T19:39:15.4625443Z github.com/ava-labs/coreth/network/network.go:204: sendAppRequest 70.0% -2025-07-23T19:39:15.4625646Z github.com/ava-labs/coreth/network/network.go:259: AppRequest 81.8% -2025-07-23T19:39:15.4625859Z github.com/ava-labs/coreth/network/network.go:304: AppResponse 100.0% -2025-07-23T19:39:15.4626085Z github.com/ava-labs/coreth/network/network.go:325: AppRequestFailed 71.4% -2025-07-23T19:39:15.4626341Z github.com/ava-labs/coreth/network/network.go:343: calculateTimeUntilDeadline 100.0% -2025-07-23T19:39:15.4626579Z github.com/ava-labs/coreth/network/network.go:365: markRequestFulfilled 100.0% -2025-07-23T19:39:15.4626783Z github.com/ava-labs/coreth/network/network.go:382: AppGossip 100.0% -2025-07-23T19:39:15.4626981Z github.com/ava-labs/coreth/network/network.go:387: Connected 87.5% -2025-07-23T19:39:15.4627185Z github.com/ava-labs/coreth/network/network.go:406: Disconnected 0.0% -2025-07-23T19:39:15.4627385Z github.com/ava-labs/coreth/network/network.go:424: Shutdown 100.0% -2025-07-23T19:39:15.4627628Z github.com/ava-labs/coreth/network/network.go:438: SetRequestHandler 100.0% -2025-07-23T19:39:15.4627924Z github.com/ava-labs/coreth/network/network.go:445: Size 100.0% -2025-07-23T19:39:15.4628233Z github.com/ava-labs/coreth/network/network.go:452: TrackBandwidth 0.0% -2025-07-23T19:39:15.4628490Z github.com/ava-labs/coreth/network/network.go:463: SendSyncedAppRequestAny 100.0% -2025-07-23T19:39:15.4628731Z github.com/ava-labs/coreth/network/network.go:475: SendSyncedAppRequest 75.0% -2025-07-23T19:39:15.4628924Z github.com/ava-labs/coreth/network/network.go:483: NewClient 0.0% -2025-07-23T19:39:15.4629132Z github.com/ava-labs/coreth/network/network.go:487: AddHandler 100.0% -2025-07-23T19:39:15.4629351Z github.com/ava-labs/coreth/network/network.go:492: P2PValidators 0.0% -2025-07-23T19:39:15.4629563Z github.com/ava-labs/coreth/network/network.go:501: nextRequestID 100.0% -2025-07-23T19:39:15.4629792Z github.com/ava-labs/coreth/network/network.go:511: IsNetworkRequest 100.0% -2025-07-23T19:39:15.4630024Z github.com/ava-labs/coreth/network/peer_tracker.go:55: NewPeerTracker 100.0% -2025-07-23T19:39:15.4630382Z github.com/ava-labs/coreth/network/peer_tracker.go:70: shouldTrackNewPeer 85.7% -2025-07-23T19:39:15.4630627Z github.com/ava-labs/coreth/network/peer_tracker.go:85: getResponsivePeer 75.0% -2025-07-23T19:39:15.4630847Z github.com/ava-labs/coreth/network/peer_tracker.go:98: GetAnyPeer 100.0% -2025-07-23T19:39:15.4631069Z github.com/ava-labs/coreth/network/peer_tracker.go:133: TrackPeer 100.0% -2025-07-23T19:39:15.4631298Z github.com/ava-labs/coreth/network/peer_tracker.go:138: TrackBandwidth 86.7% -2025-07-23T19:39:15.4631510Z github.com/ava-labs/coreth/network/peer_tracker.go:165: Connected 71.4% -2025-07-23T19:39:15.4631740Z github.com/ava-labs/coreth/network/peer_tracker.go:188: Disconnected 100.0% -2025-07-23T19:39:15.4631939Z github.com/ava-labs/coreth/network/peer_tracker.go:198: Size 100.0% -2025-07-23T19:39:15.4632214Z github.com/ava-labs/coreth/network/stats/stats.go:23: IncDeadlineDroppedRequest 100.0% -2025-07-23T19:39:15.4632484Z github.com/ava-labs/coreth/network/stats/stats.go:27: UpdateTimeUntilDeadline 100.0% -2025-07-23T19:39:15.4632745Z github.com/ava-labs/coreth/network/stats/stats.go:31: NewRequestHandlerStats 100.0% -2025-07-23T19:39:15.4633032Z github.com/ava-labs/coreth/network/waiting_handler.go:29: newWaitingResponseHandler 100.0% -2025-07-23T19:39:15.4633259Z github.com/ava-labs/coreth/network/waiting_handler.go:39: OnResponse 100.0% -2025-07-23T19:39:15.4633483Z github.com/ava-labs/coreth/network/waiting_handler.go:46: OnFailure 100.0% -2025-07-23T19:39:15.4633722Z github.com/ava-labs/coreth/network/waiting_handler.go:52: WaitForResult 100.0% -2025-07-23T19:39:15.4633887Z github.com/ava-labs/coreth/node/api.go:38: apis 100.0% -2025-07-23T19:39:15.4634076Z github.com/ava-labs/coreth/node/api.go:59: ClientVersion 0.0% -2025-07-23T19:39:15.4634233Z github.com/ava-labs/coreth/node/api.go:65: Sha3 0.0% -2025-07-23T19:39:15.4634441Z github.com/ava-labs/coreth/node/config.go:75: ExtRPCEnabled 100.0% -2025-07-23T19:39:15.4634642Z github.com/ava-labs/coreth/node/config.go:81: KeyDirConfig 60.0% -2025-07-23T19:39:15.4634842Z github.com/ava-labs/coreth/node/config.go:97: GetKeyStoreDir 75.0% -2025-07-23T19:39:15.4635063Z github.com/ava-labs/coreth/node/config.go:119: makeAccountManager 58.8% -2025-07-23T19:39:15.4635225Z github.com/ava-labs/coreth/node/node.go:42: New 87.5% -2025-07-23T19:39:15.4635398Z github.com/ava-labs/coreth/node/node.go:62: Config 100.0% -2025-07-23T19:39:15.4635604Z github.com/ava-labs/coreth/node/node.go:67: AccountManager 100.0% -2025-07-23T19:39:15.4635769Z github.com/ava-labs/coreth/node/node.go:72: APIs 100.0% -2025-07-23T19:39:15.4635998Z github.com/ava-labs/coreth/params/config_extra.go:34: SetEthUpgrades 79.3% -2025-07-23T19:39:15.4636206Z github.com/ava-labs/coreth/params/config_extra.go:91: GetExtra 60.0% -2025-07-23T19:39:15.4636518Z github.com/ava-labs/coreth/params/config_extra.go:100: Copy 0.0% -2025-07-23T19:39:15.4636736Z github.com/ava-labs/coreth/params/config_extra.go:107: WithExtra 100.0% -2025-07-23T19:39:15.4636947Z github.com/ava-labs/coreth/params/config_extra.go:122: MarshalJSON 0.0% -2025-07-23T19:39:15.4637166Z github.com/ava-labs/coreth/params/config_extra.go:152: UnmarshalJSON 0.0% -2025-07-23T19:39:15.4637405Z github.com/ava-labs/coreth/params/config_extra.go:174: ToWithUpgradesJSON 0.0% -2025-07-23T19:39:15.4637621Z github.com/ava-labs/coreth/params/config_libevm.go:18: libevmInit 100.0% -2025-07-23T19:39:15.4637870Z github.com/ava-labs/coreth/params/config_libevm.go:31: constructRulesExtra 53.3% -2025-07-23T19:39:15.4638088Z github.com/ava-labs/coreth/params/extras/config.go:96: copyAndSet 100.0% -2025-07-23T19:39:15.4638439Z github.com/ava-labs/coreth/params/extras/config.go:123: CheckConfigCompatible 0.0% -2025-07-23T19:39:15.4638773Z github.com/ava-labs/coreth/params/extras/config.go:145: Description 0.0% -2025-07-23T19:39:15.4639051Z github.com/ava-labs/coreth/params/extras/config.go:166: isForkTimestampIncompatible 0.0% -2025-07-23T19:39:15.4639296Z github.com/ava-labs/coreth/params/extras/config.go:172: isTimestampForked 100.0% -2025-07-23T19:39:15.4639554Z github.com/ava-labs/coreth/params/extras/config.go:179: configTimestampEqual 0.0% -2025-07-23T19:39:15.4639780Z github.com/ava-labs/coreth/params/extras/config.go:194: UnmarshalJSON 0.0% -2025-07-23T19:39:15.4640000Z github.com/ava-labs/coreth/params/extras/config.go:210: MarshalJSON 0.0% -2025-07-23T19:39:15.4640252Z github.com/ava-labs/coreth/params/extras/config.go:223: CheckConfigForkOrder 0.0% -2025-07-23T19:39:15.4640466Z github.com/ava-labs/coreth/params/extras/config.go:240: checkForks 0.0% -2025-07-23T19:39:15.4640672Z github.com/ava-labs/coreth/params/extras/config.go:281: Verify 0.0% -2025-07-23T19:39:15.4640924Z github.com/ava-labs/coreth/params/extras/config.go:291: IsPrecompileEnabled 0.0% -2025-07-23T19:39:15.4641172Z github.com/ava-labs/coreth/params/extras/config.go:303: IsForkTransition 100.0% -2025-07-23T19:39:15.4641401Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:61: Equal 0.0% -2025-07-23T19:39:15.4641720Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:65: checkNetworkUpgradesCompatible 0.0% -2025-07-23T19:39:15.4641966Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:112: forkOrder 0.0% -2025-07-23T19:39:15.4642232Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:133: IsApricotPhase1 0.0% -2025-07-23T19:39:15.4642495Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:139: IsApricotPhase2 0.0% -2025-07-23T19:39:15.4642762Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:145: IsApricotPhase3 0.0% -2025-07-23T19:39:15.4643021Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:151: IsApricotPhase4 0.0% -2025-07-23T19:39:15.4643293Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:157: IsApricotPhase5 0.0% -2025-07-23T19:39:15.4643568Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:163: IsApricotPhasePre6 0.0% -2025-07-23T19:39:15.4643828Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:169: IsApricotPhase6 0.0% -2025-07-23T19:39:15.4644114Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:175: IsApricotPhasePost6 0.0% -2025-07-23T19:39:15.4644352Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:181: IsBanff 0.0% -2025-07-23T19:39:15.4644597Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:187: IsCortina 0.0% -2025-07-23T19:39:15.4644835Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:193: IsDurango 0.0% -2025-07-23T19:39:15.4645066Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:199: IsEtna 0.0% -2025-07-23T19:39:15.4645427Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:205: IsFortuna 0.0% -2025-07-23T19:39:15.4645666Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:211: IsGranite 0.0% -2025-07-23T19:39:15.4645920Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:215: Description 0.0% -2025-07-23T19:39:15.4646191Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:234: GetNetworkUpgrades 0.0% -2025-07-23T19:39:15.4646458Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:264: GetAvalancheRules 0.0% -2025-07-23T19:39:15.4646711Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:283: ptrToString 0.0% -2025-07-23T19:39:15.4646980Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:32: UnmarshalJSON 0.0% -2025-07-23T19:39:15.4647243Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:59: MarshalJSON 0.0% -2025-07-23T19:39:15.4647549Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:71: verifyPrecompileUpgrades 0.0% -2025-07-23T19:39:15.4647936Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:137: GetActivePrecompileConfig 0.0% -2025-07-23T19:39:15.4648371Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:147: GetActivatingPrecompileConfigs 0.0% -2025-07-23T19:39:15.4648690Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:176: checkPrecompilesCompatible 0.0% -2025-07-23T19:39:15.4648998Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:192: checkPrecompileCompatible 0.0% -2025-07-23T19:39:15.4649316Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:230: EnabledStatefulPrecompiles 0.0% -2025-07-23T19:39:15.4649560Z github.com/ava-labs/coreth/params/extras/precompiles.go:18: UnmarshalJSON 0.0% -2025-07-23T19:39:15.4649795Z github.com/ava-labs/coreth/params/extras/rules.go:28: PredicatersExist 0.0% -2025-07-23T19:39:15.4650023Z github.com/ava-labs/coreth/params/extras/rules.go:32: PredicaterExists 0.0% -2025-07-23T19:39:15.4650268Z github.com/ava-labs/coreth/params/extras/rules.go:38: IsPrecompileEnabled 0.0% -2025-07-23T19:39:15.4650497Z github.com/ava-labs/coreth/params/hooks_libevm.go:28: GetRulesExtra 100.0% -2025-07-23T19:39:15.4650736Z github.com/ava-labs/coreth/params/hooks_libevm.go:33: CanCreateContract 0.0% -2025-07-23T19:39:15.4650988Z github.com/ava-labs/coreth/params/hooks_libevm.go:37: CanExecuteTransaction 0.0% -2025-07-23T19:39:15.4651236Z github.com/ava-labs/coreth/params/hooks_libevm.go:42: MinimumGasConsumption 0.0% -2025-07-23T19:39:15.4651465Z github.com/ava-labs/coreth/params/hooks_libevm.go:70: ActivePrecompiles 0.0% -2025-07-23T19:39:15.4651732Z github.com/ava-labs/coreth/params/hooks_libevm.go:92: precompileOverrideBuiltin 0.0% -2025-07-23T19:39:15.4651957Z github.com/ava-labs/coreth/params/hooks_libevm.go:113: makePrecompile 0.0% -2025-07-23T19:39:15.4652190Z github.com/ava-labs/coreth/params/hooks_libevm.go:140: PrecompileOverride 0.0% -2025-07-23T19:39:15.4652414Z github.com/ava-labs/coreth/params/hooks_libevm.go:160: GetStateDB 0.0% -2025-07-23T19:39:15.4652639Z github.com/ava-labs/coreth/params/hooks_libevm.go:172: GetBlockContext 0.0% -2025-07-23T19:39:15.4652863Z github.com/ava-labs/coreth/params/hooks_libevm.go:176: GetChainConfig 0.0% -2025-07-23T19:39:15.4653083Z github.com/ava-labs/coreth/params/hooks_libevm.go:180: GetSnowContext 0.0% -2025-07-23T19:39:15.4653309Z github.com/ava-labs/coreth/params/hooks_libevm.go:184: GetPrecompileEnv 0.0% -2025-07-23T19:39:15.4653516Z github.com/ava-labs/coreth/params/hooks_libevm.go:194: Number 0.0% -2025-07-23T19:39:15.4653722Z github.com/ava-labs/coreth/params/hooks_libevm.go:198: Timestamp 0.0% -2025-07-23T19:39:15.4653960Z github.com/ava-labs/coreth/params/hooks_libevm.go:202: GetPredicateResults 0.0% -2025-07-23T19:39:15.4654179Z github.com/ava-labs/coreth/params/version.go:53: VersionWithCommit 0.0% -2025-07-23T19:39:15.4654516Z github.com/ava-labs/coreth/plugin/evm/admin.go:22: NewAdminService 0.0% -2025-07-23T19:39:15.4654738Z github.com/ava-labs/coreth/plugin/evm/admin.go:30: StartCPUProfiler 0.0% -2025-07-23T19:39:15.4654955Z github.com/ava-labs/coreth/plugin/evm/admin.go:40: StopCPUProfiler 0.0% -2025-07-23T19:39:15.4655163Z github.com/ava-labs/coreth/plugin/evm/admin.go:50: MemoryProfile 0.0% -2025-07-23T19:39:15.4655369Z github.com/ava-labs/coreth/plugin/evm/admin.go:60: LockProfile 0.0% -2025-07-23T19:39:15.4655567Z github.com/ava-labs/coreth/plugin/evm/admin.go:69: SetLogLevel 0.0% -2025-07-23T19:39:15.4655768Z github.com/ava-labs/coreth/plugin/evm/admin.go:81: GetVMConfig 0.0% -2025-07-23T19:39:15.4656057Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/ops.go:12: ConvertToAtomicOps 75.0% -2025-07-23T19:39:15.4656443Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:26: AddItemsToBeRemovedToPeerChain 87.5% -2025-07-23T19:39:15.4656884Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:40: AssertOpsApplied 100.0% -2025-07-23T19:39:15.4657234Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:58: AssertOpsNotApplied 100.0% -2025-07-23T19:39:15.4657575Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:76: NewSharedMemories 100.0% -2025-07-23T19:39:15.4657896Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:85: TestSharedMemory 100.0% -2025-07-23T19:39:15.4658315Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:28: init 83.3% -2025-07-23T19:39:15.4658624Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:58: GasUsed 100.0% -2025-07-23T19:39:15.4658866Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:61: Verify 0.0% -2025-07-23T19:39:15.4659119Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:64: AtomicOps 100.0% -2025-07-23T19:39:15.4659377Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:69: Initialize 0.0% -2025-07-23T19:39:15.4659607Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:72: ID 100.0% -2025-07-23T19:39:15.4659855Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:75: Burned 100.0% -2025-07-23T19:39:15.4660087Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:78: Bytes 0.0% -2025-07-23T19:39:15.4660337Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:81: SignedBytes 0.0% -2025-07-23T19:39:15.4660600Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:84: InputUTXOs 100.0% -2025-07-23T19:39:15.4660829Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:87: Visit 0.0% -2025-07-23T19:39:15.4661109Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:92: EVMStateTransfer 0.0% -2025-07-23T19:39:15.4661432Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:98: GenerateTestImportTxWithGas 100.0% -2025-07-23T19:39:15.4661741Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:115: GenerateTestImportTx 100.0% -2025-07-23T19:39:15.4662041Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:130: GenerateTestExportTx 100.0% -2025-07-23T19:39:15.4662289Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:151: NewTestTx 80.0% -2025-07-23T19:39:15.4662555Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:163: NewTestTxs 100.0% -2025-07-23T19:39:15.4662765Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:25: init 85.7% -2025-07-23T19:39:15.4663006Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:57: ExtractAtomicTxs 0.0% -2025-07-23T19:39:15.4663252Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:76: ExtractAtomicTx 66.7% -2025-07-23T19:39:15.4663515Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:89: ExtractAtomicTxsBatch 0.0% -2025-07-23T19:39:15.4663755Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:60: InputUTXOs 0.0% -2025-07-23T19:39:15.4664108Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:75: Verify 0.0% -2025-07-23T19:39:15.4664336Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:134: GasUsed 0.0% -2025-07-23T19:39:15.4664566Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:156: Burned 0.0% -2025-07-23T19:39:15.4664786Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:182: Visit 0.0% -2025-07-23T19:39:15.4665017Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:185: AtomicOps 0.0% -2025-07-23T19:39:15.4665262Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:219: NewExportTx 0.0% -2025-07-23T19:39:15.4665519Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:313: EVMStateTransfer 0.0% -2025-07-23T19:39:15.4665787Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:352: getSpendableFunds 0.0% -2025-07-23T19:39:15.4666218Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:409: getSpendableAVAXWithFee 0.0% -2025-07-23T19:39:15.4666466Z github.com/ava-labs/coreth/plugin/evm/atomic/gossip.go:12: MarshalGossip 100.0% -2025-07-23T19:39:15.4666722Z github.com/ava-labs/coreth/plugin/evm/atomic/gossip.go:16: UnmarshalGossip 100.0% -2025-07-23T19:39:15.4666955Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:63: InputUTXOs 0.0% -2025-07-23T19:39:15.4667180Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:72: Verify 0.0% -2025-07-23T19:39:15.4667405Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:136: GasUsed 0.0% -2025-07-23T19:39:15.4667630Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:161: Burned 0.0% -2025-07-23T19:39:15.4667867Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:192: AtomicOps 0.0% -2025-07-23T19:39:15.4668213Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:202: NewImportTx 0.0% -2025-07-23T19:39:15.4668482Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:335: EVMStateTransfer 0.0% -2025-07-23T19:39:15.4668710Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:352: Visit 0.0% -2025-07-23T19:39:15.4668945Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:18: Initialize 100.0% -2025-07-23T19:39:15.4669165Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:25: ID 100.0% -2025-07-23T19:39:15.4669383Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:30: Bytes 0.0% -2025-07-23T19:39:15.4669625Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:35: SignedBytes 100.0% -2025-07-23T19:39:15.4669925Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:42: NewAtomicBackend 75.0% -2025-07-23T19:39:15.4670203Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:79: initialize 72.0% -2025-07-23T19:39:15.4670523Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:182: ApplyToSharedMemory 63.3% -2025-07-23T19:39:15.4670885Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:303: MarkApplyToSharedMemoryCursor 100.0% -2025-07-23T19:39:15.4671206Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:309: GetVerifiedAtomicState 0.0% -2025-07-23T19:39:15.4671505Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:320: getAtomicRootAt 0.0% -2025-07-23T19:39:15.4671796Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:332: SetLastAccepted 0.0% -2025-07-23T19:39:15.4672072Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:343: InsertTxs 0.0% -2025-07-23T19:39:15.4672337Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:393: IsBonus 0.0% -2025-07-23T19:39:15.4672619Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:400: AtomicTrie 100.0% -2025-07-23T19:39:15.4672915Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:406: mergeAtomicOps 91.7% -2025-07-23T19:39:15.4673352Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:428: mergeAtomicOpsToMap 100.0% -2025-07-23T19:39:15.4673647Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:438: AddBonusBlock 0.0% -2025-07-23T19:39:15.4673977Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:65: NewAtomicTxRepository 75.0% -2025-07-23T19:39:15.4674305Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:85: initializeHeightIndex 59.6% -2025-07-23T19:39:15.4674608Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:185: GetIndexHeight 0.0% -2025-07-23T19:39:15.4674891Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:201: GetByTxID 0.0% -2025-07-23T19:39:15.4675191Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:229: GetByHeight 100.0% -2025-07-23T19:39:15.4675505Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:236: getByHeightBytes 100.0% -2025-07-23T19:39:15.4675888Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:248: Write 100.0% -2025-07-23T19:39:15.4676184Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:254: WriteBonus 0.0% -2025-07-23T19:39:15.4676456Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:258: write 72.2% -2025-07-23T19:39:15.4676746Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:300: indexTxByID 80.0% -2025-07-23T19:39:15.4677058Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:320: indexTxsAtHeight 66.7% -2025-07-23T19:39:15.4677392Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:335: appendTxToHeightIndex 75.0% -2025-07-23T19:39:15.4677711Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:356: IterateByHeight 100.0% -2025-07-23T19:39:15.4677960Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:28: Root 0.0% -2025-07-23T19:39:15.4678326Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:35: Accept 0.0% -2025-07-23T19:39:15.4678586Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:78: Reject 0.0% -2025-07-23T19:39:15.4678864Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:52: newAtomicTrie 58.3% -2025-07-23T19:39:15.4679196Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:103: lastCommittedRootIfExists 72.7% -2025-07-23T19:39:15.4679500Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:126: nearestCommitHeight 100.0% -2025-07-23T19:39:15.4679766Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:130: OpenTrie 100.0% -2025-07-23T19:39:15.4680030Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:135: Commit 75.0% -2025-07-23T19:39:15.4680301Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:143: UpdateTrie 80.0% -2025-07-23T19:39:15.4680596Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:165: LastCommitted 100.0% -2025-07-23T19:39:15.4680903Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:171: updateLastCommitted 75.0% -2025-07-23T19:39:15.4681165Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:191: Iterator 75.0% -2025-07-23T19:39:15.4681423Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:205: TrieDB 0.0% -2025-07-23T19:39:15.4681673Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:212: Root 100.0% -2025-07-23T19:39:15.4681938Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:218: getRoot 62.5% -2025-07-23T19:39:15.4682233Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:237: LastAcceptedRoot 100.0% -2025-07-23T19:39:15.4682499Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:241: InsertTrie 55.6% -2025-07-23T19:39:15.4682889Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:263: AcceptTrie 83.3% -2025-07-23T19:39:15.4683155Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:293: RejectTrie 0.0% -2025-07-23T19:39:15.4683504Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:28: NewAtomicTrieIterator 100.0% -2025-07-23T19:39:15.4683789Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:33: Error 100.0% -2025-07-23T19:39:15.4684067Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:42: Next 81.0% -2025-07-23T19:39:15.4684371Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:81: resetFields 100.0% -2025-07-23T19:39:15.4684667Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:90: BlockNumber 100.0% -2025-07-23T19:39:15.4684978Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:95: BlockchainID 100.0% -2025-07-23T19:39:15.4685385Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:101: AtomicOps 100.0% -2025-07-23T19:39:15.4685659Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:107: Key 0.0% -2025-07-23T19:39:15.4685944Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:112: Value 0.0% -2025-07-23T19:39:15.4686177Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:29: MarshalJSON 0.0% -2025-07-23T19:39:15.4686419Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:37: UnmarshalJSON 0.0% -2025-07-23T19:39:15.4686635Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:58: Valid 0.0% -2025-07-23T19:39:15.4686848Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:67: String 0.0% -2025-07-23T19:39:15.4687100Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:29: Initialize 0.0% -2025-07-23T19:39:15.4687329Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:36: Sync 0.0% -2025-07-23T19:39:15.4687624Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:69: OnFinishBeforeCommit 0.0% -2025-07-23T19:39:15.4687909Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:81: OnFinishAfterCommit 0.0% -2025-07-23T19:39:15.4688281Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:28: OnLeafsRequest 0.0% -2025-07-23T19:39:15.4688566Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:38: NewLeafHandler 0.0% -2025-07-23T19:39:15.4688829Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:45: Initialize 0.0% -2025-07-23T19:39:15.4689080Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:32: NewSummary 80.0% -2025-07-23T19:39:15.4689322Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:57: Bytes 100.0% -2025-07-23T19:39:15.4689548Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:61: ID 100.0% -2025-07-23T19:39:15.4689790Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:65: String 0.0% -2025-07-23T19:39:15.4690022Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:69: Accept 66.7% -2025-07-23T19:39:15.4690321Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_parser.go:17: NewSummaryParser 100.0% -2025-07-23T19:39:15.4690586Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_parser.go:21: Parse 80.0% -2025-07-23T19:39:15.4690862Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_provider.go:25: Initialize 0.0% -2025-07-23T19:39:15.4691173Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_provider.go:30: StateSummaryAtBlock 0.0% -2025-07-23T19:39:15.4691422Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:88: Validate 100.0% -2025-07-23T19:39:15.4691665Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:162: addZeroes 100.0% -2025-07-23T19:39:15.4691911Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:170: newSyncer 86.7% -2025-07-23T19:39:15.4692263Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:211: Start 100.0% -2025-07-23T19:39:15.4692499Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:219: onLeafs 70.8% -2025-07-23T19:39:15.4692740Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:267: onFinish 58.3% -2025-07-23T19:39:15.4693004Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:293: onSyncFailure 100.0% -2025-07-23T19:39:15.4693239Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:300: Wait 100.0% -2025-07-23T19:39:15.4693468Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:318: Start 100.0% -2025-07-23T19:39:15.4693692Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:319: End 100.0% -2025-07-23T19:39:15.4693938Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:320: NodeType 100.0% -2025-07-23T19:39:15.4694175Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:321: OnFinish 100.0% -2025-07-23T19:39:15.4694527Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:322: OnStart 100.0% -2025-07-23T19:39:15.4694762Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:323: Root 100.0% -2025-07-23T19:39:15.4694997Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:324: Account 100.0% -2025-07-23T19:39:15.4695244Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:325: OnLeafs 100.0% -2025-07-23T19:39:15.4695452Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:70: Compare 0.0% -2025-07-23T19:39:15.4695657Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:86: Compare 0.0% -2025-07-23T19:39:15.4695861Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:95: Verify 0.0% -2025-07-23T19:39:15.4696060Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:108: Verify 0.0% -2025-07-23T19:39:15.4696271Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:183: Compare 0.0% -2025-07-23T19:39:15.4696475Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:197: Sign 82.4% -2025-07-23T19:39:15.4696726Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:231: BlockFeeContribution 0.0% -2025-07-23T19:39:15.4696947Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:261: GossipID 100.0% -2025-07-23T19:39:15.4697146Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:271: Less 0.0% -2025-07-23T19:39:15.4697346Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:279: Len 0.0% -2025-07-23T19:39:15.4697542Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:281: Swap 0.0% -2025-07-23T19:39:15.4697805Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:287: SortEVMInputsAndSigners 0.0% -2025-07-23T19:39:15.4698058Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:293: CalculateDynamicFee 0.0% -2025-07-23T19:39:15.4698383Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:309: calcBytesCost 0.0% -2025-07-23T19:39:15.4698682Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:48: newMempoolMetrics 100.0% -2025-07-23T19:39:15.4698956Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:89: Initialize 93.3% -2025-07-23T19:39:15.4699220Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:114: PendingLen 0.0% -2025-07-23T19:39:15.4699463Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:119: Len 0.0% -2025-07-23T19:39:15.4699714Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:127: length 100.0% -2025-07-23T19:39:15.4699997Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:133: atomicTxGasPrice 77.8% -2025-07-23T19:39:15.4700240Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:148: Add 100.0% -2025-07-23T19:39:15.4700510Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:157: AddRemoteTx 100.0% -2025-07-23T19:39:15.4700770Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:180: AddLocalTx 0.0% -2025-07-23T19:39:15.4701150Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:193: ForceAddTx 0.0% -2025-07-23T19:39:15.4701429Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:203: checkConflictTx 26.7% -2025-07-23T19:39:15.4701676Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:234: addTx 64.6% -2025-07-23T19:39:15.4701927Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:352: Iterate 100.0% -2025-07-23T19:39:15.4702184Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:363: GetFilter 0.0% -2025-07-23T19:39:15.4702429Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:371: NextTx 88.9% -2025-07-23T19:39:15.4702693Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:391: GetPendingTx 0.0% -2025-07-23T19:39:15.4702939Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:401: GetTx 72.7% -2025-07-23T19:39:15.4703177Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:422: Has 100.0% -2025-07-23T19:39:15.4703562Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:428: IssueCurrentTxs 88.9% -2025-07-23T19:39:15.4703849Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:451: CancelCurrentTx 0.0% -2025-07-23T19:39:15.4704125Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:464: CancelCurrentTxs 0.0% -2025-07-23T19:39:15.4704380Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:484: cancelTx 0.0% -2025-07-23T19:39:15.4704652Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:505: DiscardCurrentTx 0.0% -2025-07-23T19:39:15.4704929Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:515: DiscardCurrentTxs 0.0% -2025-07-23T19:39:15.4705203Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:526: discardCurrentTx 0.0% -2025-07-23T19:39:15.4705456Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:540: removeTx 91.7% -2025-07-23T19:39:15.4705740Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:565: removeSpenders 50.0% -2025-07-23T19:39:15.4705986Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:573: RemoveTx 0.0% -2025-07-23T19:39:15.4706250Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:581: addPending 100.0% -2025-07-23T19:39:15.4706548Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:590: SubscribePendingTxs 0.0% -2025-07-23T19:39:15.4706831Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:29: newInternalTxHeap 100.0% -2025-07-23T19:39:15.4707070Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:37: Len 100.0% -2025-07-23T19:39:15.4707310Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:39: Less 100.0% -2025-07-23T19:39:15.4707545Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:46: Swap 100.0% -2025-07-23T19:39:15.4707785Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:52: Push 80.0% -2025-07-23T19:39:15.4708024Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:61: Pop 100.0% -2025-07-23T19:39:15.4708382Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:70: Get 100.0% -2025-07-23T19:39:15.4708620Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:78: Has 100.0% -2025-07-23T19:39:15.4708875Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:88: newTxHeap 100.0% -2025-07-23T19:39:15.4709117Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:95: Push 100.0% -2025-07-23T19:39:15.4709362Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:113: PeekMax 0.0% -2025-07-23T19:39:15.4709614Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:119: PeekMin 100.0% -2025-07-23T19:39:15.4709866Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:125: PopMax 100.0% -2025-07-23T19:39:15.4710236Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:130: PopMin 100.0% -2025-07-23T19:39:15.4710482Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:134: Remove 75.0% -2025-07-23T19:39:15.4710716Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:150: Len 100.0% -2025-07-23T19:39:15.4710957Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:154: Get 100.0% -2025-07-23T19:39:15.4711194Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:162: Has 100.0% -2025-07-23T19:39:15.4711415Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:43: Version 0.0% -2025-07-23T19:39:15.4711637Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:53: GetUTXOs 0.0% -2025-07-23T19:39:15.4711859Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:141: IssueTx 0.0% -2025-07-23T19:39:15.4712108Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:170: GetAtomicTxStatus 0.0% -2025-07-23T19:39:15.4712453Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:205: GetAtomicTx 0.0% -2025-07-23T19:39:15.4712755Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:48: newBlockExtender 100.0% -2025-07-23T19:39:15.4713045Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:61: NewBlockExtension 75.0% -2025-07-23T19:39:15.4713340Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:82: SyntacticVerify 66.7% -2025-07-23T19:39:15.4713623Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:172: SemanticVerify 100.0% -2025-07-23T19:39:15.4713888Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:193: Accept 85.7% -2025-07-23T19:39:15.4714148Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:213: Reject 77.8% -2025-07-23T19:39:15.4714447Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:231: CleanupVerified 100.0% -2025-07-23T19:39:15.4714725Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:239: AtomicTxs 100.0% -2025-07-23T19:39:15.4715026Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:245: verifyUTXOsPresent 92.9% -2025-07-23T19:39:15.4715324Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/bonus_blocks.go:9: readMainnetBonusBlocks 0.0% -2025-07-23T19:39:15.4715570Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/ext_data_hashes.go:23: init 66.7% -2025-07-23T19:39:15.4715854Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:18: ParseServiceAddress 0.0% -2025-07-23T19:39:15.4716136Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:27: ParseLocalAddress 0.0% -2025-07-23T19:39:15.4716413Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:40: FormatLocalAddress 0.0% -2025-07-23T19:39:15.4716674Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:51: ParseAddress 0.0% -2025-07-23T19:39:15.4716982Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:50: NewVerifierBackend 100.0% -2025-07-23T19:39:15.4717279Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:62: SemanticVerify 100.0% -2025-07-23T19:39:15.4717558Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:80: ImportTx 95.7% -2025-07-23T19:39:15.4717836Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:167: conflicts 88.2% -2025-07-23T19:39:15.4718210Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:205: ExportTx 86.8% -2025-07-23T19:39:15.4718436Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:108: WrapVM 100.0% -2025-07-23T19:39:15.4718665Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:113: Initialize 74.4% -2025-07-23T19:39:15.4718888Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:231: SetState 57.1% -2025-07-23T19:39:15.4719148Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:248: onBootstrapStarted 100.0% -2025-07-23T19:39:15.4719545Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:253: onNormalOperationsStarted 83.9% -2025-07-23T19:39:15.4719767Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:342: Shutdown 75.0% -2025-07-23T19:39:15.4720005Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:356: CreateHandlers 0.0% -2025-07-23T19:39:15.4720247Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:371: verifyTxAtTip 77.3% -2025-07-23T19:39:15.4720463Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:414: verifyTx 85.7% -2025-07-23T19:39:15.4720686Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:428: verifyTxs 88.2% -2025-07-23T19:39:15.4720933Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:464: CodecRegistry 100.0% -2025-07-23T19:39:15.4721151Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:467: Clock 100.0% -2025-07-23T19:39:15.4721404Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:470: Logger 100.0% -2025-07-23T19:39:15.4721791Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:472: createConsensusCallbacks 100.0% -2025-07-23T19:39:15.4722092Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:479: preBatchOnFinalizeAndAssemble 84.0% -2025-07-23T19:39:15.4722391Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:526: postBatchOnFinalizeAndAssemble 84.1% -2025-07-23T19:39:15.4722660Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:636: onFinalizeAndAssemble 100.0% -2025-07-23T19:39:15.4722923Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:648: onExtraStateChange 83.9% -2025-07-23T19:39:15.4723154Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:721: BuildBlock 100.0% -2025-07-23T19:39:15.4723420Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:725: BuildBlockWithContext 50.0% -2025-07-23T19:39:15.4723675Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:744: chainConfigExtra 100.0% -2025-07-23T19:39:15.4723891Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:748: rules 100.0% -2025-07-23T19:39:15.4724134Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:754: CurrentRules 100.0% -2025-07-23T19:39:15.4724369Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:763: GetAtomicTx 22.2% -2025-07-23T19:39:15.4724597Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:780: NewImportTx 85.7% -2025-07-23T19:39:15.4724823Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:800: NewExportTx 71.4% -2025-07-23T19:39:15.4725070Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:49: NewBlockBuilder 100.0% -2025-07-23T19:39:15.4725336Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:62: handleGenerateBlock 100.0% -2025-07-23T19:39:15.4725575Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:70: needToBuild 100.0% -2025-07-23T19:39:15.4725817Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:78: signalCanBuild 100.0% -2025-07-23T19:39:15.4726078Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:87: awaitSubmittedTxs 100.0% -2025-07-23T19:39:15.4726313Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:119: waitForEvent 91.7% -2025-07-23T19:39:15.4726576Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:145: waitForNeedToBuild 100.0% -2025-07-23T19:39:15.4726803Z github.com/ava-labs/coreth/plugin/evm/client/client.go:49: NewClient 0.0% -2025-07-23T19:39:15.4727047Z github.com/ava-labs/coreth/plugin/evm/client/client.go:57: NewCChainClient 0.0% -2025-07-23T19:39:15.4727268Z github.com/ava-labs/coreth/plugin/evm/client/client.go:62: IssueTx 0.0% -2025-07-23T19:39:15.4727517Z github.com/ava-labs/coreth/plugin/evm/client/client.go:82: GetAtomicTxStatus 0.0% -2025-07-23T19:39:15.4727745Z github.com/ava-labs/coreth/plugin/evm/client/client.go:91: GetAtomicTx 0.0% -2025-07-23T19:39:15.4727990Z github.com/ava-labs/coreth/plugin/evm/client/client.go:106: GetAtomicUTXOs 0.0% -2025-07-23T19:39:15.4728437Z github.com/ava-labs/coreth/plugin/evm/client/client.go:138: StartCPUProfiler 0.0% -2025-07-23T19:39:15.4728687Z github.com/ava-labs/coreth/plugin/evm/client/client.go:142: StopCPUProfiler 0.0% -2025-07-23T19:39:15.4728936Z github.com/ava-labs/coreth/plugin/evm/client/client.go:146: MemoryProfile 0.0% -2025-07-23T19:39:15.4729164Z github.com/ava-labs/coreth/plugin/evm/client/client.go:150: LockProfile 0.0% -2025-07-23T19:39:15.4729397Z github.com/ava-labs/coreth/plugin/evm/client/client.go:159: SetLogLevel 0.0% -2025-07-23T19:39:15.4729624Z github.com/ava-labs/coreth/plugin/evm/client/client.go:170: GetVMConfig 0.0% -2025-07-23T19:39:15.4729859Z github.com/ava-labs/coreth/plugin/evm/client/utils.go:8: ParseEthAddress 0.0% -2025-07-23T19:39:15.4730085Z github.com/ava-labs/coreth/plugin/evm/config/config.go:265: EthAPIs 0.0% -2025-07-23T19:39:15.4730313Z github.com/ava-labs/coreth/plugin/evm/config/config.go:269: SetDefaults 0.0% -2025-07-23T19:39:15.4730673Z github.com/ava-labs/coreth/plugin/evm/config/config.go:327: UnmarshalJSON 80.0% -2025-07-23T19:39:15.4730893Z github.com/ava-labs/coreth/plugin/evm/config/config.go:337: String 0.0% -2025-07-23T19:39:15.4731119Z github.com/ava-labs/coreth/plugin/evm/config/config.go:342: MarshalJSON 0.0% -2025-07-23T19:39:15.4731341Z github.com/ava-labs/coreth/plugin/evm/config/config.go:347: Validate 0.0% -2025-07-23T19:39:15.4731570Z github.com/ava-labs/coreth/plugin/evm/config/config.go:382: Deprecate 57.1% -2025-07-23T19:39:15.4731815Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:28: New 0.0% -2025-07-23T19:39:15.4732068Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:35: Dial 0.0% -2025-07-23T19:39:15.4732344Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:40: DialContext 0.0% -2025-07-23T19:39:15.4732641Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:60: OnBlockDecoded 0.0% -2025-07-23T19:39:15.4732899Z github.com/ava-labs/coreth/plugin/evm/customlogs/log_ext.go:8: FlattenLogs 100.0% -2025-07-23T19:39:15.4733252Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:16: writeCurrentTimeMarker 0.0% -2025-07-23T19:39:15.4733578Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:25: readTimeMarker 0.0% -2025-07-23T19:39:15.4733915Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:44: WriteOfflinePruning 0.0% -2025-07-23T19:39:15.4734252Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:50: ReadOfflinePruning 0.0% -2025-07-23T19:39:15.4734594Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:55: DeleteOfflinePruning 0.0% -2025-07-23T19:39:15.4734956Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:61: WritePopulateMissingTries 0.0% -2025-07-23T19:39:15.4735313Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:67: ReadPopulateMissingTries 0.0% -2025-07-23T19:39:15.4735679Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:73: DeletePopulateMissingTries 0.0% -2025-07-23T19:39:15.4736027Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:79: WritePruningDisabled 0.0% -2025-07-23T19:39:15.4736361Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:85: HasPruningDisabled 0.0% -2025-07-23T19:39:15.4736690Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:90: WriteAcceptorTip 0.0% -2025-07-23T19:39:15.4737020Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:97: ReadAcceptorTip 0.0% -2025-07-23T19:39:15.4737365Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:15: ReadSnapshotBlockHash 0.0% -2025-07-23T19:39:15.4737721Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:25: WriteSnapshotBlockHash 50.0% -2025-07-23T19:39:15.4738325Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:35: DeleteSnapshotBlockHash 0.0% -2025-07-23T19:39:15.4738675Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:42: IterateAccountSnapshots 0.0% -2025-07-23T19:39:15.4738985Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:18: ReadSyncRoot 0.0% -2025-07-23T19:39:15.4739292Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:31: WriteSyncRoot 0.0% -2025-07-23T19:39:15.4739609Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:36: AddCodeToFetch 50.0% -2025-07-23T19:39:15.4739925Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:43: DeleteCodeToFetch 0.0% -2025-07-23T19:39:15.4740262Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:52: NewCodeToFetchIterator 0.0% -2025-07-23T19:39:15.4740578Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:59: codeToFetchKey 100.0% -2025-07-23T19:39:15.4741029Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:69: NewSyncSegmentsIterator 0.0% -2025-07-23T19:39:15.4741357Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:81: WriteSyncSegment 100.0% -2025-07-23T19:39:15.4741670Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:86: ClearSyncSegments 0.0% -2025-07-23T19:39:15.4742004Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:94: ClearAllSyncSegments 100.0% -2025-07-23T19:39:15.4742344Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:100: UnpackSyncSegmentKey 0.0% -2025-07-23T19:39:15.4742675Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:108: packSyncSegmentKey 100.0% -2025-07-23T19:39:15.4743042Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:119: NewSyncStorageTriesIterator 0.0% -2025-07-23T19:39:15.4743385Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:124: WriteSyncStorageTrie 100.0% -2025-07-23T19:39:15.4743716Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:130: ClearSyncStorageTrie 0.0% -2025-07-23T19:39:15.4744065Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:138: ClearAllSyncStorageTries 0.0% -2025-07-23T19:39:15.4744410Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:144: UnpackSyncStorageTrieKey 0.0% -2025-07-23T19:39:15.4744761Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:152: packSyncStorageTrieKey 100.0% -2025-07-23T19:39:15.4745091Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:161: WriteSyncPerformed 100.0% -2025-07-23T19:39:15.4745431Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:171: NewSyncPerformedIterator 0.0% -2025-07-23T19:39:15.4745780Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:177: UnpackSyncPerformedKey 0.0% -2025-07-23T19:39:15.4746121Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:182: GetLatestSyncPerformed 0.0% -2025-07-23T19:39:15.4746429Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:198: clearPrefix 68.8% -2025-07-23T19:39:15.4746723Z github.com/ava-labs/coreth/plugin/evm/customrawdb/database_ext.go:17: InspectDatabase 100.0% -2025-07-23T19:39:15.4747022Z github.com/ava-labs/coreth/plugin/evm/customrawdb/database_ext.go:67: ParseStateSchemeExt 0.0% -2025-07-23T19:39:15.4747301Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:16: SetBlockExtra 100.0% -2025-07-23T19:39:15.4747542Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:33: Copy 100.0% -2025-07-23T19:39:15.4747856Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:48: BodyRLPFieldsForEncoding 100.0% -2025-07-23T19:39:15.4748414Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:61: BodyRLPFieldPointersForDecoding 100.0% -2025-07-23T19:39:15.4748739Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:78: BlockRLPFieldsForEncoding 100.0% -2025-07-23T19:39:15.4749078Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:92: BlockRLPFieldPointersForDecoding 100.0% -2025-07-23T19:39:15.4749349Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:104: BlockExtData 100.0% -2025-07-23T19:39:15.4749620Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:111: BlockVersion 100.0% -2025-07-23T19:39:15.4749917Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:115: BlockExtDataGasUsed 100.0% -2025-07-23T19:39:15.4750183Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:123: BlockGasCost 100.0% -2025-07-23T19:39:15.4750466Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:131: CalcExtDataHash 66.7% -2025-07-23T19:39:15.4750874Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:138: NewBlockWithExtData 100.0% -2025-07-23T19:39:15.4751207Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_json.go:18: MarshalJSON 100.0% -2025-07-23T19:39:15.4751539Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_json.go:72: UnmarshalJSON 76.2% -2025-07-23T19:39:15.4751847Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_rlp.go:8: EncodeRLP 85.9% -2025-07-23T19:39:15.4752127Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:17: GetHeaderExtra 100.0% -2025-07-23T19:39:15.4752406Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:22: SetHeaderExtra 100.0% -2025-07-23T19:39:15.4752692Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:28: WithHeaderExtra 100.0% -2025-07-23T19:39:15.4752960Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:45: EncodeRLP 100.0% -2025-07-23T19:39:15.4753223Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:56: DecodeRLP 100.0% -2025-07-23T19:39:15.4753491Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:70: EncodeJSON 100.0% -2025-07-23T19:39:15.4753746Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:81: DecodeJSON 83.3% -2025-07-23T19:39:15.4754002Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:93: PostCopy 100.0% -2025-07-23T19:39:15.4754282Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:106: updateFromEth 100.0% -2025-07-23T19:39:15.4754552Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:128: updateToEth 100.0% -2025-07-23T19:39:15.4754843Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:150: updateFromExtras 100.0% -2025-07-23T19:39:15.4755123Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:156: updateToExtras 100.0% -2025-07-23T19:39:15.4755378Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:233: Hash 100.0% -2025-07-23T19:39:15.4755662Z github.com/ava-labs/coreth/plugin/evm/customtypes/state_account_ext.go:14: IsMultiCoin 0.0% -2025-07-23T19:39:15.4755947Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:22: WrapDatabase 100.0% -2025-07-23T19:39:15.4756199Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:25: Stat 0.0% -2025-07-23T19:39:15.4756470Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:28: NewBatch 100.0% -2025-07-23T19:39:15.4756757Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:32: NewBatchWithSize 0.0% -2025-07-23T19:39:15.4757030Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:36: NewSnapshot 0.0% -2025-07-23T19:39:15.4757304Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:44: NewIterator 100.0% -2025-07-23T19:39:15.4757610Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:57: NewIteratorWithStart 0.0% -2025-07-23T19:39:15.4757994Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:65: ValueSize 100.0% -2025-07-23T19:39:15.4758353Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:68: Replay 100.0% -2025-07-23T19:39:15.4758608Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:38: NewGossipEthTxPool 75.0% -2025-07-23T19:39:15.4758840Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:70: IsSubscribed 100.0% -2025-07-23T19:39:15.4759058Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:74: Subscribe 92.6% -2025-07-23T19:39:15.4759267Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:119: Add 100.0% -2025-07-23T19:39:15.4759468Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:125: Has 100.0% -2025-07-23T19:39:15.4759693Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:129: Iterate 100.0% -2025-07-23T19:39:15.4759909Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:135: GetFilter 0.0% -2025-07-23T19:39:15.4760256Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:144: MarshalGossip 100.0% -2025-07-23T19:39:15.4760510Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:148: UnmarshalGossip 100.0% -2025-07-23T19:39:15.4760731Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:160: GossipID 100.0% -2025-07-23T19:39:15.4760938Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:170: Add 75.0% -2025-07-23T19:39:15.4761173Z github.com/ava-labs/coreth/plugin/evm/extension/config.go:161: Validate 55.6% -2025-07-23T19:39:15.4761437Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:19: NewTxGossipHandler 100.0% -2025-07-23T19:39:15.4761672Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:61: AppGossip 100.0% -2025-07-23T19:39:15.4761903Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:65: AppRequest 100.0% -2025-07-23T19:39:15.4762131Z github.com/ava-labs/coreth/plugin/evm/header/base_fee.go:21: BaseFee 100.0% -2025-07-23T19:39:15.4762408Z github.com/ava-labs/coreth/plugin/evm/header/base_fee.go:50: EstimateNextBaseFee 100.0% -2025-07-23T19:39:15.4762669Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:28: BlockGasCost 100.0% -2025-07-23T19:39:15.4762964Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:60: BlockGasCostWithStep 100.0% -2025-07-23T19:39:15.4763249Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:88: EstimateRequiredTip 100.0% -2025-07-23T19:39:15.4763547Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_state.go:19: feeStateBeforeBlock 100.0% -2025-07-23T19:39:15.4763845Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_state.go:51: feeStateAfterBlock 100.0% -2025-07-23T19:39:15.4764134Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:40: baseFeeFromWindow 97.4% -2025-07-23T19:39:15.4764407Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:148: feeWindow 100.0% -2025-07-23T19:39:15.4764734Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:221: selectBigWithinBounds 100.0% -2025-07-23T19:39:15.4764964Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:29: ExtraPrefix 100.0% -2025-07-23T19:39:15.4765217Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:61: VerifyExtraPrefix 100.0% -2025-07-23T19:39:15.4765450Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:116: VerifyExtra 100.0% -2025-07-23T19:39:15.4765733Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:169: PredicateBytesFromExtra 100.0% -2025-07-23T19:39:15.4766005Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:187: SetPredicateBytesInExtra 100.0% -2025-07-23T19:39:15.4766236Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:28: GasLimit 100.0% -2025-07-23T19:39:15.4766489Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:61: VerifyGasUsed 100.0% -2025-07-23T19:39:15.4766858Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:97: VerifyGasLimit 100.0% -2025-07-23T19:39:15.4767109Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:159: GasCapacity 100.0% -2025-07-23T19:39:15.4767401Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:179: RemainingAtomicGasCapacity 100.0% -2025-07-23T19:39:15.4767608Z github.com/ava-labs/coreth/plugin/evm/health.go:11: HealthCheck 0.0% -2025-07-23T19:39:15.4767819Z github.com/ava-labs/coreth/plugin/evm/log/log.go:26: InitLogger 55.0% -2025-07-23T19:39:15.4768035Z github.com/ava-labs/coreth/plugin/evm/log/log.go:62: SetLogLevel 100.0% -2025-07-23T19:39:15.4768343Z github.com/ava-labs/coreth/plugin/evm/log/log.go:77: trimPrefixes 88.9% -2025-07-23T19:39:15.4768548Z github.com/ava-labs/coreth/plugin/evm/log/log.go:92: getSource 0.0% -2025-07-23T19:39:15.4768744Z github.com/ava-labs/coreth/plugin/evm/log/log.go:104: Handle 0.0% -2025-07-23T19:39:15.4769099Z github.com/ava-labs/coreth/plugin/evm/message/block_request.go:24: String 0.0% -2025-07-23T19:39:15.4769339Z github.com/ava-labs/coreth/plugin/evm/message/block_request.go:31: Handle 0.0% -2025-07-23T19:39:15.4769640Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:31: NewBlockSyncSummary 80.0% -2025-07-23T19:39:15.4769922Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:53: GetBlockHash 100.0% -2025-07-23T19:39:15.4770202Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:57: GetBlockRoot 100.0% -2025-07-23T19:39:15.4770468Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:61: Bytes 100.0% -2025-07-23T19:39:15.4770730Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:65: Height 100.0% -2025-07-23T19:39:15.4770971Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:69: ID 0.0% -2025-07-23T19:39:15.4771231Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:73: String 0.0% -2025-07-23T19:39:15.4771498Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:77: Accept 66.7% -2025-07-23T19:39:15.4771859Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_parser.go:14: NewBlockSyncSummaryParser 100.0% -2025-07-23T19:39:15.4772138Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_parser.go:18: Parse 80.0% -2025-07-23T19:39:15.4772462Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_provider.go:14: StateSummaryAtBlock 0.0% -2025-07-23T19:39:15.4772701Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:23: String 0.0% -2025-07-23T19:39:15.4772934Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:31: Handle 0.0% -2025-07-23T19:39:15.4773191Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:35: NewCodeRequest 0.0% -2025-07-23T19:39:15.4773410Z github.com/ava-labs/coreth/plugin/evm/message/codec.go:20: init 88.9% -2025-07-23T19:39:15.4773679Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:35: HandleLeafsRequest 0.0% -2025-07-23T19:39:15.4773944Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:39: HandleBlockRequest 0.0% -2025-07-23T19:39:15.4774197Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:43: HandleCodeRequest 0.0% -2025-07-23T19:39:15.4774435Z github.com/ava-labs/coreth/plugin/evm/message/leafs_request.go:40: String 0.0% -2025-07-23T19:39:15.4774675Z github.com/ava-labs/coreth/plugin/evm/message/leafs_request.go:47: Handle 0.0% -2025-07-23T19:39:15.4774920Z github.com/ava-labs/coreth/plugin/evm/message/request.go:25: RequestToBytes 0.0% -2025-07-23T19:39:15.4775184Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:39: newNetworkHandler 100.0% -2025-07-23T19:39:15.4775439Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:54: HandleLeafsRequest 60.0% -2025-07-23T19:39:15.4775700Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:63: HandleBlockRequest 100.0% -2025-07-23T19:39:15.4776069Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:67: HandleCodeRequest 0.0% -2025-07-23T19:39:15.4776291Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:99: NewClient 100.0% -2025-07-23T19:39:15.4776542Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:127: StateSyncEnabled 100.0% -2025-07-23T19:39:15.4776819Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:134: GetOngoingSyncStateSummary 0.0% -2025-07-23T19:39:15.4777073Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:153: ClearOngoingSummary 60.0% -2025-07-23T19:39:15.4777329Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:165: ParseStateSummary 100.0% -2025-07-23T19:39:15.4777550Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:171: stateSync 71.4% -2025-07-23T19:39:15.4777793Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:189: acceptSyncSummary 92.0% -2025-07-23T19:39:15.4778023Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:257: syncBlocks 89.3% -2025-07-23T19:39:15.4778463Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:304: syncStateTrie 77.8% -2025-07-23T19:39:15.4778694Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:326: Shutdown 100.0% -2025-07-23T19:39:15.4778916Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:336: finishSync 66.7% -2025-07-23T19:39:15.4779153Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:405: commitVMMarkers 66.7% -2025-07-23T19:39:15.4779370Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:420: Error 100.0% -2025-07-23T19:39:15.4779585Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:36: NewServer 100.0% -2025-07-23T19:39:15.4779851Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:48: GetLastStateSummary 75.0% -2025-07-23T19:39:15.4780085Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:64: GetStateSummary 66.7% -2025-07-23T19:39:15.4780337Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:82: stateSummaryAtHeight 62.5% -2025-07-23T19:39:15.4780610Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:53: ParseState 100.0% -2025-07-23T19:39:15.4780851Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:74: Target 100.0% -2025-07-23T19:39:15.4781119Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:83: MaxCapacity 100.0% -2025-07-23T19:39:15.4781367Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:91: GasPrice 100.0% -2025-07-23T19:39:15.4781630Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:99: AdvanceTime 100.0% -2025-07-23T19:39:15.4781893Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:114: ConsumeGas 100.0% -2025-07-23T19:39:15.4782187Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:144: UpdateTargetExcess 100.0% -2025-07-23T19:39:15.4782429Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:160: Bytes 100.0% -2025-07-23T19:39:15.4782736Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:170: DesiredTargetExcess 100.0% -2025-07-23T19:39:15.4783006Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:184: targetExcess 100.0% -2025-07-23T19:39:15.4783274Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:195: scaleExcess 100.0% -2025-07-23T19:39:15.4783561Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:214: mulWithUpperBound 100.0% -2025-07-23T19:39:15.4783817Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:67: ParseWindow 100.0% -2025-07-23T19:39:15.4784052Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:87: Add 100.0% -2025-07-23T19:39:15.4784285Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:94: Shift 100.0% -2025-07-23T19:39:15.4784516Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:108: Sum 100.0% -2025-07-23T19:39:15.4784749Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:112: Bytes 100.0% -2025-07-23T19:39:15.4785091Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:121: add 100.0% -2025-07-23T19:39:15.4785344Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap4/cost.go:53: BlockGasCost 93.3% -2025-07-23T19:39:15.4785538Z github.com/ava-labs/coreth/plugin/evm/version.go:15: init 50.0% -2025-07-23T19:39:15.4785724Z github.com/ava-labs/coreth/plugin/evm/vm.go:175: init 100.0% -2025-07-23T19:39:15.4785919Z github.com/ava-labs/coreth/plugin/evm/vm.go:271: Initialize 80.3% -2025-07-23T19:39:15.4786127Z github.com/ava-labs/coreth/plugin/evm/vm.go:500: parseGenesis 76.9% -2025-07-23T19:39:15.4786350Z github.com/ava-labs/coreth/plugin/evm/vm.go:530: initializeMetrics 54.5% -2025-07-23T19:39:15.4786560Z github.com/ava-labs/coreth/plugin/evm/vm.go:549: initializeChain 84.2% -2025-07-23T19:39:15.4786784Z github.com/ava-labs/coreth/plugin/evm/vm.go:604: initializeStateSync 76.7% -2025-07-23T19:39:15.4787075Z github.com/ava-labs/coreth/plugin/evm/vm.go:704: initChainState 75.0% -2025-07-23T19:39:15.4787268Z github.com/ava-labs/coreth/plugin/evm/vm.go:737: SetState 83.3% -2025-07-23T19:39:15.4787494Z github.com/ava-labs/coreth/plugin/evm/vm.go:752: onBootstrapStarted 71.4% -2025-07-23T19:39:15.4787736Z github.com/ava-labs/coreth/plugin/evm/vm.go:768: onNormalOperationsStarted 75.0% -2025-07-23T19:39:15.4787952Z github.com/ava-labs/coreth/plugin/evm/vm.go:779: initBlockBuilding 91.3% -2025-07-23T19:39:15.4788255Z github.com/ava-labs/coreth/plugin/evm/vm.go:886: WaitForEvent 77.8% -2025-07-23T19:39:15.4788443Z github.com/ava-labs/coreth/plugin/evm/vm.go:907: Shutdown 76.9% -2025-07-23T19:39:15.4788643Z github.com/ava-labs/coreth/plugin/evm/vm.go:929: buildBlock 100.0% -2025-07-23T19:39:15.4788873Z github.com/ava-labs/coreth/plugin/evm/vm.go:933: buildBlockWithContext 86.7% -2025-07-23T19:39:15.4789068Z github.com/ava-labs/coreth/plugin/evm/vm.go:978: parseBlock 77.8% -2025-07-23T19:39:15.4789282Z github.com/ava-labs/coreth/plugin/evm/vm.go:997: ParseEthBlock 75.0% -2025-07-23T19:39:15.4789474Z github.com/ava-labs/coreth/plugin/evm/vm.go:1008: getBlock 100.0% -2025-07-23T19:39:15.4789687Z github.com/ava-labs/coreth/plugin/evm/vm.go:1021: GetAcceptedBlock 90.0% -2025-07-23T19:39:15.4789898Z github.com/ava-labs/coreth/plugin/evm/vm.go:1041: SetPreference 75.0% -2025-07-23T19:39:15.4790119Z github.com/ava-labs/coreth/plugin/evm/vm.go:1057: GetBlockIDAtHeight 85.7% -2025-07-23T19:39:15.4790309Z github.com/ava-labs/coreth/plugin/evm/vm.go:1070: Version 0.0% -2025-07-23T19:39:15.4790515Z github.com/ava-labs/coreth/plugin/evm/vm.go:1075: CreateHandlers 0.0% -2025-07-23T19:39:15.4790717Z github.com/ava-labs/coreth/plugin/evm/vm.go:1122: NewHTTPHandler 0.0% -2025-07-23T19:39:15.4790937Z github.com/ava-labs/coreth/plugin/evm/vm.go:1126: chainConfigExtra 100.0% -2025-07-23T19:39:15.4791124Z github.com/ava-labs/coreth/plugin/evm/vm.go:1130: rules 100.0% -2025-07-23T19:39:15.4791331Z github.com/ava-labs/coreth/plugin/evm/vm.go:1136: currentRules 100.0% -2025-07-23T19:39:15.4791590Z github.com/ava-labs/coreth/plugin/evm/vm.go:1144: requirePrimaryNetworkSigners 0.0% -2025-07-23T19:39:15.4791829Z github.com/ava-labs/coreth/plugin/evm/vm.go:1153: startContinuousProfiler 91.7% -2025-07-23T19:39:15.4792048Z github.com/ava-labs/coreth/plugin/evm/vm.go:1183: ReadLastAccepted 70.0% -2025-07-23T19:39:15.4792261Z github.com/ava-labs/coreth/plugin/evm/vm.go:1207: attachEthService 0.0% -2025-07-23T19:39:15.4792478Z github.com/ava-labs/coreth/plugin/evm/vm.go:1242: stateSyncEnabled 100.0% -2025-07-23T19:39:15.4792706Z github.com/ava-labs/coreth/plugin/evm/vm.go:1252: PutLastAcceptedID 100.0% -2025-07-23T19:39:15.4792936Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:20: initializeDBs 100.0% -2025-07-23T19:39:15.4793171Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:35: inspectDatabases 0.0% -2025-07-23T19:39:15.4793502Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:54: inspectDB 0.0% -2025-07-23T19:39:15.4793755Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:28: SetExtensionConfig 66.7% -2025-07-23T19:39:15.4794000Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:41: GetExtendedBlock 75.0% -2025-07-23T19:39:15.4794281Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:53: LastAcceptedExtendedBlock 75.0% -2025-07-23T19:39:15.4794514Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:64: ChainConfig 100.0% -2025-07-23T19:39:15.4794738Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:68: Blockchain 100.0% -2025-07-23T19:39:15.4794952Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:72: Config 100.0% -2025-07-23T19:39:15.4795195Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:76: MetricRegistry 100.0% -2025-07-23T19:39:15.4795518Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:80: Validators 0.0% -2025-07-23T19:39:15.4795751Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:84: VersionDB 100.0% -2025-07-23T19:39:15.4795983Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:88: SyncerClient 0.0% -2025-07-23T19:39:15.4796205Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:58: wrapBlock 85.7% -2025-07-23T19:39:15.4796420Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:75: ID 100.0% -2025-07-23T19:39:15.4796634Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:78: Accept 76.5% -2025-07-23T19:39:15.4796912Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:125: handlePrecompileAccept 78.6% -2025-07-23T19:39:15.4797132Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:159: Reject 83.3% -2025-07-23T19:39:15.4797353Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:176: Parent 100.0% -2025-07-23T19:39:15.4797573Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:181: Height 100.0% -2025-07-23T19:39:15.4797804Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:186: Timestamp 100.0% -2025-07-23T19:39:15.4798023Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:191: Verify 100.0% -2025-07-23T19:39:15.4798401Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:199: ShouldVerifyWithContext 72.7% -2025-07-23T19:39:15.4798664Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:223: VerifyWithContext 100.0% -2025-07-23T19:39:15.4798884Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:233: verify 100.0% -2025-07-23T19:39:15.4799136Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:279: semanticVerify 100.0% -2025-07-23T19:39:15.4799381Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:295: syntacticVerify 71.0% -2025-07-23T19:39:15.4799633Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:434: verifyPredicates 85.0% -2025-07-23T19:39:15.4799854Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:468: Bytes 75.0% -2025-07-23T19:39:15.4800068Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:476: String 0.0% -2025-07-23T19:39:15.4800307Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:478: GetEthBlock 100.0% -2025-07-23T19:39:15.4800561Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:482: GetBlockExtension 100.0% -2025-07-23T19:39:15.4800767Z github.com/ava-labs/coreth/plugin/factory/factory.go:25: New 0.0% -2025-07-23T19:39:15.4800990Z github.com/ava-labs/coreth/plugin/factory/factory.go:29: NewPluginVM 0.0% -2025-07-23T19:39:15.4801163Z github.com/ava-labs/coreth/plugin/main.go:19: main 0.0% -2025-07-23T19:39:15.4801377Z github.com/ava-labs/coreth/plugin/params.go:13: corethFlagSet 0.0% -2025-07-23T19:39:15.4801567Z github.com/ava-labs/coreth/plugin/params.go:22: getViper 0.0% -2025-07-23T19:39:15.4801768Z github.com/ava-labs/coreth/plugin/params.go:35: PrintVersion 0.0% -2025-07-23T19:39:15.4802141Z github.com/ava-labs/coreth/precompile/contract/contract.go:32: IsActivated 0.0% -2025-07-23T19:39:15.4802457Z github.com/ava-labs/coreth/precompile/contract/contract.go:40: NewStatefulPrecompileFunction 0.0% -2025-07-23T19:39:15.4802820Z github.com/ava-labs/coreth/precompile/contract/contract.go:47: NewStatefulPrecompileFunctionWithActivator 0.0% -2025-07-23T19:39:15.4803130Z github.com/ava-labs/coreth/precompile/contract/contract.go:65: NewStatefulPrecompileContract 0.0% -2025-07-23T19:39:15.4803352Z github.com/ava-labs/coreth/precompile/contract/contract.go:84: Run 0.0% -2025-07-23T19:39:15.4803604Z github.com/ava-labs/coreth/precompile/contract/mocks.go:38: NewMockStateDB 0.0% -2025-07-23T19:39:15.4803821Z github.com/ava-labs/coreth/precompile/contract/mocks.go:45: EXPECT 0.0% -2025-07-23T19:39:15.4804056Z github.com/ava-labs/coreth/precompile/contract/mocks.go:50: AddBalance 0.0% -2025-07-23T19:39:15.4804284Z github.com/ava-labs/coreth/precompile/contract/mocks.go:56: AddBalance 0.0% -2025-07-23T19:39:15.4804652Z github.com/ava-labs/coreth/precompile/contract/mocks.go:62: AddBalanceMultiCoin 0.0% -2025-07-23T19:39:15.4804925Z github.com/ava-labs/coreth/precompile/contract/mocks.go:68: AddBalanceMultiCoin 0.0% -2025-07-23T19:39:15.4805145Z github.com/ava-labs/coreth/precompile/contract/mocks.go:74: AddLog 0.0% -2025-07-23T19:39:15.4805364Z github.com/ava-labs/coreth/precompile/contract/mocks.go:80: AddLog 0.0% -2025-07-23T19:39:15.4805607Z github.com/ava-labs/coreth/precompile/contract/mocks.go:86: CreateAccount 0.0% -2025-07-23T19:39:15.4805846Z github.com/ava-labs/coreth/precompile/contract/mocks.go:92: CreateAccount 0.0% -2025-07-23T19:39:15.4806062Z github.com/ava-labs/coreth/precompile/contract/mocks.go:98: Exist 0.0% -2025-07-23T19:39:15.4806276Z github.com/ava-labs/coreth/precompile/contract/mocks.go:106: Exist 0.0% -2025-07-23T19:39:15.4806508Z github.com/ava-labs/coreth/precompile/contract/mocks.go:112: GetBalance 0.0% -2025-07-23T19:39:15.4806756Z github.com/ava-labs/coreth/precompile/contract/mocks.go:120: GetBalance 0.0% -2025-07-23T19:39:15.4807028Z github.com/ava-labs/coreth/precompile/contract/mocks.go:126: GetBalanceMultiCoin 0.0% -2025-07-23T19:39:15.4807302Z github.com/ava-labs/coreth/precompile/contract/mocks.go:134: GetBalanceMultiCoin 0.0% -2025-07-23T19:39:15.4807527Z github.com/ava-labs/coreth/precompile/contract/mocks.go:140: GetNonce 0.0% -2025-07-23T19:39:15.4807750Z github.com/ava-labs/coreth/precompile/contract/mocks.go:148: GetNonce 0.0% -2025-07-23T19:39:15.4808042Z github.com/ava-labs/coreth/precompile/contract/mocks.go:154: GetPredicateStorageSlots 0.0% -2025-07-23T19:39:15.4808424Z github.com/ava-labs/coreth/precompile/contract/mocks.go:163: GetPredicateStorageSlots 0.0% -2025-07-23T19:39:15.4808653Z github.com/ava-labs/coreth/precompile/contract/mocks.go:169: GetState 0.0% -2025-07-23T19:39:15.4808882Z github.com/ava-labs/coreth/precompile/contract/mocks.go:177: GetState 0.0% -2025-07-23T19:39:15.4809110Z github.com/ava-labs/coreth/precompile/contract/mocks.go:183: GetTxHash 0.0% -2025-07-23T19:39:15.4809341Z github.com/ava-labs/coreth/precompile/contract/mocks.go:191: GetTxHash 0.0% -2025-07-23T19:39:15.4809557Z github.com/ava-labs/coreth/precompile/contract/mocks.go:197: Logs 0.0% -2025-07-23T19:39:15.4809779Z github.com/ava-labs/coreth/precompile/contract/mocks.go:205: Logs 0.0% -2025-07-23T19:39:15.4810031Z github.com/ava-labs/coreth/precompile/contract/mocks.go:211: RevertToSnapshot 0.0% -2025-07-23T19:39:15.4810283Z github.com/ava-labs/coreth/precompile/contract/mocks.go:217: RevertToSnapshot 0.0% -2025-07-23T19:39:15.4810512Z github.com/ava-labs/coreth/precompile/contract/mocks.go:223: SetNonce 0.0% -2025-07-23T19:39:15.4810733Z github.com/ava-labs/coreth/precompile/contract/mocks.go:229: SetNonce 0.0% -2025-07-23T19:39:15.4810956Z github.com/ava-labs/coreth/precompile/contract/mocks.go:235: SetState 0.0% -2025-07-23T19:39:15.4811350Z github.com/ava-labs/coreth/precompile/contract/mocks.go:241: SetState 0.0% -2025-07-23T19:39:15.4811574Z github.com/ava-labs/coreth/precompile/contract/mocks.go:247: Snapshot 0.0% -2025-07-23T19:39:15.4811803Z github.com/ava-labs/coreth/precompile/contract/mocks.go:255: Snapshot 0.0% -2025-07-23T19:39:15.4812070Z github.com/ava-labs/coreth/precompile/contract/mocks.go:261: SubBalanceMultiCoin 0.0% -2025-07-23T19:39:15.4812337Z github.com/ava-labs/coreth/precompile/contract/mocks.go:267: SubBalanceMultiCoin 0.0% -2025-07-23T19:39:15.4812621Z github.com/ava-labs/coreth/precompile/contract/mocks.go:285: NewMockAccessibleState 0.0% -2025-07-23T19:39:15.4812846Z github.com/ava-labs/coreth/precompile/contract/mocks.go:292: EXPECT 0.0% -2025-07-23T19:39:15.4813100Z github.com/ava-labs/coreth/precompile/contract/mocks.go:297: GetBlockContext 0.0% -2025-07-23T19:39:15.4813451Z github.com/ava-labs/coreth/precompile/contract/mocks.go:305: GetBlockContext 0.0% -2025-07-23T19:39:15.4813701Z github.com/ava-labs/coreth/precompile/contract/mocks.go:311: GetChainConfig 0.0% -2025-07-23T19:39:15.4813951Z github.com/ava-labs/coreth/precompile/contract/mocks.go:319: GetChainConfig 0.0% -2025-07-23T19:39:15.4814204Z github.com/ava-labs/coreth/precompile/contract/mocks.go:325: GetPrecompileEnv 0.0% -2025-07-23T19:39:15.4814456Z github.com/ava-labs/coreth/precompile/contract/mocks.go:333: GetPrecompileEnv 0.0% -2025-07-23T19:39:15.4814700Z github.com/ava-labs/coreth/precompile/contract/mocks.go:339: GetSnowContext 0.0% -2025-07-23T19:39:15.4814945Z github.com/ava-labs/coreth/precompile/contract/mocks.go:347: GetSnowContext 0.0% -2025-07-23T19:39:15.4815183Z github.com/ava-labs/coreth/precompile/contract/mocks.go:353: GetStateDB 0.0% -2025-07-23T19:39:15.4815416Z github.com/ava-labs/coreth/precompile/contract/mocks.go:361: GetStateDB 0.0% -2025-07-23T19:39:15.4815690Z github.com/ava-labs/coreth/precompile/contract/mocks.go:379: NewMockBlockContext 0.0% -2025-07-23T19:39:15.4815919Z github.com/ava-labs/coreth/precompile/contract/mocks.go:386: EXPECT 0.0% -2025-07-23T19:39:15.4816184Z github.com/ava-labs/coreth/precompile/contract/mocks.go:391: GetPredicateResults 0.0% -2025-07-23T19:39:15.4816455Z github.com/ava-labs/coreth/precompile/contract/mocks.go:399: GetPredicateResults 0.0% -2025-07-23T19:39:15.4816675Z github.com/ava-labs/coreth/precompile/contract/mocks.go:405: Number 0.0% -2025-07-23T19:39:15.4816894Z github.com/ava-labs/coreth/precompile/contract/mocks.go:413: Number 0.0% -2025-07-23T19:39:15.4817129Z github.com/ava-labs/coreth/precompile/contract/mocks.go:419: Timestamp 0.0% -2025-07-23T19:39:15.4817355Z github.com/ava-labs/coreth/precompile/contract/mocks.go:427: Timestamp 0.0% -2025-07-23T19:39:15.4817646Z github.com/ava-labs/coreth/precompile/contract/utils.go:35: CalculateFunctionSelector 0.0% -2025-07-23T19:39:15.4817879Z github.com/ava-labs/coreth/precompile/contract/utils.go:44: DeductGas 0.0% -2025-07-23T19:39:15.4818192Z github.com/ava-labs/coreth/precompile/contract/utils.go:53: ParseABI 0.0% -2025-07-23T19:39:15.4818460Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:57: NewConfig 100.0% -2025-07-23T19:39:15.4818744Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:67: NewDefaultConfig 100.0% -2025-07-23T19:39:15.4819023Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:73: NewDisableConfig 0.0% -2025-07-23T19:39:15.4819258Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:84: Key 0.0% -2025-07-23T19:39:15.4819505Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:87: Verify 100.0% -2025-07-23T19:39:15.4819754Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:107: Equal 100.0% -2025-07-23T19:39:15.4819999Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:117: Accept 0.0% -2025-07-23T19:39:15.4820412Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:145: PredicateGas 84.6% -2025-07-23T19:39:15.4820698Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:186: VerifyPredicate 80.0% -2025-07-23T19:39:15.4821009Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:85: PackGetBlockchainID 100.0% -2025-07-23T19:39:15.4821372Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:91: PackGetBlockchainIDOutput 100.0% -2025-07-23T19:39:15.4821664Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:96: getBlockchainID 83.3% -2025-07-23T19:39:15.4822029Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:111: UnpackGetVerifiedWarpBlockHashInput 0.0% -2025-07-23T19:39:15.4822379Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:125: PackGetVerifiedWarpBlockHash 100.0% -2025-07-23T19:39:15.4822843Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:131: PackGetVerifiedWarpBlockHashOutput 100.0% -2025-07-23T19:39:15.4823218Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:140: UnpackGetVerifiedWarpBlockHashOutput 0.0% -2025-07-23T19:39:15.4823547Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:147: getVerifiedWarpBlockHash 100.0% -2025-07-23T19:39:15.4823903Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:153: UnpackGetVerifiedWarpMessageInput 100.0% -2025-07-23T19:39:15.4824246Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:167: PackGetVerifiedWarpMessage 100.0% -2025-07-23T19:39:15.4824601Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:173: PackGetVerifiedWarpMessageOutput 100.0% -2025-07-23T19:39:15.4824959Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:182: UnpackGetVerifiedWarpMessageOutput 0.0% -2025-07-23T19:39:15.4825283Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:191: getVerifiedWarpMessage 100.0% -2025-07-23T19:39:15.4825624Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:197: UnpackSendWarpMessageInput 100.0% -2025-07-23T19:39:15.4825942Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:209: PackSendWarpMessage 100.0% -2025-07-23T19:39:15.4826272Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:215: PackSendWarpMessageOutput 100.0% -2025-07-23T19:39:15.4826616Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:221: UnpackSendWarpMessageOutput 0.0% -2025-07-23T19:39:15.4826910Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:232: sendWarpMessage 81.5% -2025-07-23T19:39:15.4827234Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:301: PackSendWarpMessageEvent 100.0% -2025-07-23T19:39:15.4827592Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:306: UnpackSendWarpEventDataToMessage 80.0% -2025-07-23T19:39:15.4827903Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:316: createWarpPrecompile 81.8% -2025-07-23T19:39:15.4828297Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:29: init 75.0% -2025-07-23T19:39:15.4828636Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:48: handleWarpMessage 96.7% -2025-07-23T19:39:15.4828954Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:98: packFailed 100.0% -2025-07-23T19:39:15.4829286Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:102: handleMessage 100.0% -2025-07-23T19:39:15.4829600Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:119: packFailed 100.0% -2025-07-23T19:39:15.4829931Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:123: handleMessage 100.0% -2025-07-23T19:39:15.4830173Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:35: init 50.0% -2025-07-23T19:39:15.4830553Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:45: MakeConfig 0.0% -2025-07-23T19:39:15.4830808Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:50: Configure 0.0% -2025-07-23T19:39:15.4831025Z github.com/ava-labs/coreth/precompile/modules/module.go:27: Len 100.0% -2025-07-23T19:39:15.4831246Z github.com/ava-labs/coreth/precompile/modules/module.go:31: Swap 100.0% -2025-07-23T19:39:15.4831469Z github.com/ava-labs/coreth/precompile/modules/module.go:35: Less 100.0% -2025-07-23T19:39:15.4831746Z github.com/ava-labs/coreth/precompile/modules/registerer.go:37: ReservedAddress 75.0% -2025-07-23T19:39:15.4832020Z github.com/ava-labs/coreth/precompile/modules/registerer.go:48: RegisterModule 46.2% -2025-07-23T19:39:15.4832336Z github.com/ava-labs/coreth/precompile/modules/registerer.go:72: GetPrecompileModuleByAddress 0.0% -2025-07-23T19:39:15.4832619Z github.com/ava-labs/coreth/precompile/modules/registerer.go:81: GetPrecompileModule 0.0% -2025-07-23T19:39:15.4833000Z github.com/ava-labs/coreth/precompile/modules/registerer.go:90: RegisteredModules 0.0% -2025-07-23T19:39:15.4833310Z github.com/ava-labs/coreth/precompile/modules/registerer.go:94: insertSortedByAddress 100.0% -2025-07-23T19:39:15.4833601Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:32: NewMockPredicater 0.0% -2025-07-23T19:39:15.4833854Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:39: EXPECT 0.0% -2025-07-23T19:39:15.4834127Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:44: PredicateGas 0.0% -2025-07-23T19:39:15.4834402Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:53: PredicateGas 0.0% -2025-07-23T19:39:15.4834683Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:59: VerifyPredicate 0.0% -2025-07-23T19:39:15.4834969Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:67: VerifyPredicate 0.0% -2025-07-23T19:39:15.4835249Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:85: NewMockConfig 0.0% -2025-07-23T19:39:15.4835497Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:92: EXPECT 0.0% -2025-07-23T19:39:15.4835747Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:97: Equal 0.0% -2025-07-23T19:39:15.4835993Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:105: Equal 0.0% -2025-07-23T19:39:15.4836266Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:111: IsDisabled 0.0% -2025-07-23T19:39:15.4836532Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:119: IsDisabled 0.0% -2025-07-23T19:39:15.4836773Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:125: Key 0.0% -2025-07-23T19:39:15.4837016Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:133: Key 0.0% -2025-07-23T19:39:15.4837278Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:139: Timestamp 0.0% -2025-07-23T19:39:15.4837542Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:147: Timestamp 0.0% -2025-07-23T19:39:15.4837799Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:153: Verify 0.0% -2025-07-23T19:39:15.4838048Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:161: Verify 0.0% -2025-07-23T19:39:15.4838445Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:179: NewMockChainConfig 0.0% -2025-07-23T19:39:15.4838697Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:186: EXPECT 0.0% -2025-07-23T19:39:15.4838955Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:191: IsDurango 0.0% -2025-07-23T19:39:15.4839218Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:199: IsDurango 0.0% -2025-07-23T19:39:15.4839505Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:217: NewMockAccepter 0.0% -2025-07-23T19:39:15.4839761Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:224: EXPECT 0.0% -2025-07-23T19:39:15.4840129Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:229: Accept 0.0% -2025-07-23T19:39:15.4840377Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:237: Accept 0.0% -2025-07-23T19:39:15.4840662Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:17: Timestamp 0.0% -2025-07-23T19:39:15.4840945Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:22: IsDisabled 0.0% -2025-07-23T19:39:15.4841217Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:28: Equal 0.0% -2025-07-23T19:39:15.4841530Z github.com/ava-labs/coreth/precompile/precompiletest/test_config.go:28: RunVerifyTests 100.0% -2025-07-23T19:39:15.4841828Z github.com/ava-labs/coreth/precompile/precompiletest/test_config.go:51: RunEqualTests 100.0% -2025-07-23T19:39:15.4842104Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:66: Run 100.0% -2025-07-23T19:39:15.4842489Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:88: setup 96.0% -2025-07-23T19:39:15.4842828Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:135: RunPrecompileTests 100.0% -2025-07-23T19:39:15.4843142Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:153: newTestStateDB 100.0% -2025-07-23T19:39:15.4843493Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:163: GetPredicateStorageSlots 100.0% -2025-07-23T19:39:15.4843766Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:26: Run 100.0% -2025-07-23T19:39:15.4844079Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:43: RunPredicateTests 100.0% -2025-07-23T19:39:15.4844371Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:53: RunBenchmark 0.0% -2025-07-23T19:39:15.4844705Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:73: RunPredicateBenchmarks 0.0% -2025-07-23T19:39:15.4844957Z github.com/ava-labs/coreth/predicate/predicate_bytes.go:28: PackPredicate 100.0% -2025-07-23T19:39:15.4845213Z github.com/ava-labs/coreth/predicate/predicate_bytes.go:36: UnpackPredicate 87.5% -2025-07-23T19:39:15.4845437Z github.com/ava-labs/coreth/predicate/predicate_results.go:24: init 83.3% -2025-07-23T19:39:15.4845704Z github.com/ava-labs/coreth/predicate/predicate_results.go:47: GetPredicateResults 0.0% -2025-07-23T19:39:15.4845950Z github.com/ava-labs/coreth/predicate/predicate_results.go:56: NewResults 100.0% -2025-07-23T19:39:15.4846212Z github.com/ava-labs/coreth/predicate/predicate_results.go:62: NewResultsFromMap 100.0% -2025-07-23T19:39:15.4846460Z github.com/ava-labs/coreth/predicate/predicate_results.go:69: ParseResults 71.4% -2025-07-23T19:39:15.4846702Z github.com/ava-labs/coreth/predicate/predicate_results.go:82: GetResults 100.0% -2025-07-23T19:39:15.4846950Z github.com/ava-labs/coreth/predicate/predicate_results.go:91: SetTxResults 100.0% -2025-07-23T19:39:15.4847221Z github.com/ava-labs/coreth/predicate/predicate_results.go:101: DeleteTxResults 100.0% -2025-07-23T19:39:15.4847452Z github.com/ava-labs/coreth/predicate/predicate_results.go:106: Bytes 100.0% -2025-07-23T19:39:15.4847684Z github.com/ava-labs/coreth/predicate/predicate_results.go:110: String 0.0% -2025-07-23T19:39:15.4847981Z github.com/ava-labs/coreth/predicate/predicate_slots.go:20: PreparePredicateStorageSlots 0.0% -2025-07-23T19:39:15.4848308Z github.com/ava-labs/coreth/predicate/predicate_tx.go:16: NewPredicateTx 0.0% -2025-07-23T19:39:15.4848522Z github.com/ava-labs/coreth/rpc/client.go:128: newClientConn 100.0% -2025-07-23T19:39:15.4848702Z github.com/ava-labs/coreth/rpc/client.go:141: close 100.0% -2025-07-23T19:39:15.4848875Z github.com/ava-labs/coreth/rpc/client.go:161: wait 100.0% -2025-07-23T19:39:15.4849046Z github.com/ava-labs/coreth/rpc/client.go:189: Dial 100.0% -2025-07-23T19:39:15.4849366Z github.com/ava-labs/coreth/rpc/client.go:197: DialContext 100.0% -2025-07-23T19:39:15.4849565Z github.com/ava-labs/coreth/rpc/client.go:208: DialOptions 80.0% -2025-07-23T19:39:15.4849779Z github.com/ava-labs/coreth/rpc/client.go:242: ClientFromContext 100.0% -2025-07-23T19:39:15.4849967Z github.com/ava-labs/coreth/rpc/client.go:247: newClient 100.0% -2025-07-23T19:39:15.4850163Z github.com/ava-labs/coreth/rpc/client.go:257: initClient 100.0% -2025-07-23T19:39:15.4850351Z github.com/ava-labs/coreth/rpc/client.go:293: RegisterName 0.0% -2025-07-23T19:39:15.4850533Z github.com/ava-labs/coreth/rpc/client.go:297: nextID 100.0% -2025-07-23T19:39:15.4850741Z github.com/ava-labs/coreth/rpc/client.go:304: SupportedModules 100.0% -2025-07-23T19:39:15.4850915Z github.com/ava-labs/coreth/rpc/client.go:313: Close 100.0% -2025-07-23T19:39:15.4851100Z github.com/ava-labs/coreth/rpc/client.go:327: SetHeader 83.3% -2025-07-23T19:39:15.4851382Z github.com/ava-labs/coreth/rpc/client.go:342: Call 100.0% -2025-07-23T19:39:15.4851574Z github.com/ava-labs/coreth/rpc/client.go:352: CallContext 95.2% -2025-07-23T19:39:15.4851764Z github.com/ava-labs/coreth/rpc/client.go:400: BatchCall 100.0% -2025-07-23T19:39:15.4851969Z github.com/ava-labs/coreth/rpc/client.go:414: BatchCallContext 85.7% -2025-07-23T19:39:15.4852145Z github.com/ava-labs/coreth/rpc/client.go:485: Notify 75.0% -2025-07-23T19:39:15.4852341Z github.com/ava-labs/coreth/rpc/client.go:500: EthSubscribe 100.0% -2025-07-23T19:39:15.4852528Z github.com/ava-labs/coreth/rpc/client.go:506: ShhSubscribe 0.0% -2025-07-23T19:39:15.4852715Z github.com/ava-labs/coreth/rpc/client.go:522: Subscribe 81.2% -2025-07-23T19:39:15.4852941Z github.com/ava-labs/coreth/rpc/client.go:559: SupportsSubscriptions 0.0% -2025-07-23T19:39:15.4853124Z github.com/ava-labs/coreth/rpc/client.go:563: newMessage 83.3% -2025-07-23T19:39:15.4853303Z github.com/ava-labs/coreth/rpc/client.go:576: send 100.0% -2025-07-23T19:39:15.4853474Z github.com/ava-labs/coreth/rpc/client.go:591: write 100.0% -2025-07-23T19:39:15.4853658Z github.com/ava-labs/coreth/rpc/client.go:608: reconnect 93.3% -2025-07-23T19:39:15.4853834Z github.com/ava-labs/coreth/rpc/client.go:636: dispatch 94.1% -2025-07-23T19:39:15.4854014Z github.com/ava-labs/coreth/rpc/client.go:717: drainRead 100.0% -2025-07-23T19:39:15.4854185Z github.com/ava-labs/coreth/rpc/client.go:728: read 100.0% -2025-07-23T19:39:15.4854388Z github.com/ava-labs/coreth/rpc/client_opt.go:57: initHeaders 100.0% -2025-07-23T19:39:15.4854586Z github.com/ava-labs/coreth/rpc/client_opt.go:63: setHeader 100.0% -2025-07-23T19:39:15.4854788Z github.com/ava-labs/coreth/rpc/client_opt.go:70: applyOption 100.0% -2025-07-23T19:39:15.4855011Z github.com/ava-labs/coreth/rpc/client_opt.go:75: WithWebsocketDialer 0.0% -2025-07-23T19:39:15.4855278Z github.com/ava-labs/coreth/rpc/client_opt.go:83: WithWebsocketMessageSizeLimit 100.0% -2025-07-23T19:39:15.4855469Z github.com/ava-labs/coreth/rpc/client_opt.go:91: WithHeader 0.0% -2025-07-23T19:39:15.4855666Z github.com/ava-labs/coreth/rpc/client_opt.go:100: WithHeaders 0.0% -2025-07-23T19:39:15.4855881Z github.com/ava-labs/coreth/rpc/client_opt.go:110: WithHTTPClient 0.0% -2025-07-23T19:39:15.4856079Z github.com/ava-labs/coreth/rpc/client_opt.go:119: WithHTTPAuth 0.0% -2025-07-23T19:39:15.4856303Z github.com/ava-labs/coreth/rpc/client_opt.go:139: WithBatchItemLimit 0.0% -2025-07-23T19:39:15.4856548Z github.com/ava-labs/coreth/rpc/client_opt.go:151: WithBatchResponseSizeLimit 0.0% -2025-07-23T19:39:15.4856800Z github.com/ava-labs/coreth/rpc/context_headers.go:39: NewContextWithHeaders 87.5% -2025-07-23T19:39:15.4857047Z github.com/ava-labs/coreth/rpc/context_headers.go:56: headersFromContext 100.0% -2025-07-23T19:39:15.4857351Z github.com/ava-labs/coreth/rpc/context_headers.go:62: setHeaders 100.0% -2025-07-23T19:39:15.4857527Z github.com/ava-labs/coreth/rpc/errors.go:40: Error 66.7% -2025-07-23T19:39:15.4857711Z github.com/ava-labs/coreth/rpc/errors.go:89: ErrorCode 100.0% -2025-07-23T19:39:15.4857880Z github.com/ava-labs/coreth/rpc/errors.go:91: Error 100.0% -2025-07-23T19:39:15.4858055Z github.com/ava-labs/coreth/rpc/errors.go:97: Error 0.0% -2025-07-23T19:39:15.4858331Z github.com/ava-labs/coreth/rpc/errors.go:101: ErrorCode 0.0% -2025-07-23T19:39:15.4858492Z github.com/ava-labs/coreth/rpc/errors.go:111: Is 0.0% -2025-07-23T19:39:15.4858685Z github.com/ava-labs/coreth/rpc/errors.go:125: ErrorCode 100.0% -2025-07-23T19:39:15.4858857Z github.com/ava-labs/coreth/rpc/errors.go:127: Error 100.0% -2025-07-23T19:39:15.4859046Z github.com/ava-labs/coreth/rpc/errors.go:134: ErrorCode 100.0% -2025-07-23T19:39:15.4859221Z github.com/ava-labs/coreth/rpc/errors.go:136: Error 100.0% -2025-07-23T19:39:15.4859528Z github.com/ava-labs/coreth/rpc/errors.go:141: ErrorCode 100.0% -2025-07-23T19:39:15.4859708Z github.com/ava-labs/coreth/rpc/errors.go:143: Error 100.0% -2025-07-23T19:39:15.4859883Z github.com/ava-labs/coreth/rpc/errors.go:148: ErrorCode 0.0% -2025-07-23T19:39:15.4860051Z github.com/ava-labs/coreth/rpc/errors.go:150: Error 0.0% -2025-07-23T19:39:15.4860237Z github.com/ava-labs/coreth/rpc/errors.go:155: ErrorCode 100.0% -2025-07-23T19:39:15.4860406Z github.com/ava-labs/coreth/rpc/errors.go:157: Error 100.0% -2025-07-23T19:39:15.4860590Z github.com/ava-labs/coreth/rpc/errors.go:165: ErrorCode 100.0% -2025-07-23T19:39:15.4860758Z github.com/ava-labs/coreth/rpc/errors.go:167: Error 100.0% -2025-07-23T19:39:15.4860949Z github.com/ava-labs/coreth/rpc/handler.go:96: newHandler 100.0% -2025-07-23T19:39:15.4861135Z github.com/ava-labs/coreth/rpc/handler.go:130: nextCall 100.0% -2025-07-23T19:39:15.4861343Z github.com/ava-labs/coreth/rpc/handler.go:144: pushResponse 100.0% -2025-07-23T19:39:15.4861518Z github.com/ava-labs/coreth/rpc/handler.go:155: write 100.0% -2025-07-23T19:39:15.4861738Z github.com/ava-labs/coreth/rpc/handler.go:164: respondWithError 100.0% -2025-07-23T19:39:15.4861919Z github.com/ava-labs/coreth/rpc/handler.go:178: doWrite 100.0% -2025-07-23T19:39:15.4862110Z github.com/ava-labs/coreth/rpc/handler.go:193: addLimiter 66.7% -2025-07-23T19:39:15.4862300Z github.com/ava-labs/coreth/rpc/handler.go:201: handleBatch 84.1% -2025-07-23T19:39:15.4862542Z github.com/ava-labs/coreth/rpc/handler.go:283: respondWithBatchTooLarge 100.0% -2025-07-23T19:39:15.4862736Z github.com/ava-labs/coreth/rpc/handler.go:298: handleMsg 100.0% -2025-07-23T19:39:15.4862953Z github.com/ava-labs/coreth/rpc/handler.go:307: handleNonBatchCall 66.7% -2025-07-23T19:39:15.4863131Z github.com/ava-labs/coreth/rpc/handler.go:346: close 100.0% -2025-07-23T19:39:15.4863334Z github.com/ava-labs/coreth/rpc/handler.go:354: addRequestOp 100.0% -2025-07-23T19:39:15.4863543Z github.com/ava-labs/coreth/rpc/handler.go:361: removeRequestOp 100.0% -2025-07-23T19:39:15.4863761Z github.com/ava-labs/coreth/rpc/handler.go:368: cancelAllRequests 100.0% -2025-07-23T19:39:15.4863972Z github.com/ava-labs/coreth/rpc/handler.go:390: addSubscriptions 100.0% -2025-07-23T19:39:15.4864210Z github.com/ava-labs/coreth/rpc/handler.go:402: cancelServerSubscriptions 100.0% -2025-07-23T19:39:15.4864403Z github.com/ava-labs/coreth/rpc/handler.go:415: awaitLimit 22.2% -2025-07-23T19:39:15.4864599Z github.com/ava-labs/coreth/rpc/handler.go:435: consumeLimit 28.6% -2025-07-23T19:39:15.4864801Z github.com/ava-labs/coreth/rpc/handler.go:450: startCallProc 87.5% -2025-07-23T19:39:15.4865010Z github.com/ava-labs/coreth/rpc/handler.go:484: handleResponses 93.3% -2025-07-23T19:39:15.4865361Z github.com/ava-labs/coreth/rpc/handler.go:541: handleSubscriptionResult 66.7% -2025-07-23T19:39:15.4865572Z github.com/ava-labs/coreth/rpc/handler.go:553: handleCallMsg 100.0% -2025-07-23T19:39:15.4865758Z github.com/ava-labs/coreth/rpc/handler.go:595: handleCall 95.5% -2025-07-23T19:39:15.4865969Z github.com/ava-labs/coreth/rpc/handler.go:635: handleSubscribe 83.3% -2025-07-23T19:39:15.4866156Z github.com/ava-labs/coreth/rpc/handler.go:668: runMethod 100.0% -2025-07-23T19:39:15.4866347Z github.com/ava-labs/coreth/rpc/handler.go:677: unsubscribe 87.5% -2025-07-23T19:39:15.4866525Z github.com/ava-labs/coreth/rpc/handler.go:692: String 0.0% -2025-07-23T19:39:15.4866696Z github.com/ava-labs/coreth/rpc/handler.go:706: Write 66.7% -2025-07-23T19:39:15.4866902Z github.com/ava-labs/coreth/rpc/handler.go:716: formatErrorData 66.7% -2025-07-23T19:39:15.4867075Z github.com/ava-labs/coreth/rpc/http.go:68: writeJSON 0.0% -2025-07-23T19:39:15.4867363Z github.com/ava-labs/coreth/rpc/http.go:72: writeJSONSkipDeadline 0.0% -2025-07-23T19:39:15.4867539Z github.com/ava-labs/coreth/rpc/http.go:76: peerInfo 0.0% -2025-07-23T19:39:15.4867711Z github.com/ava-labs/coreth/rpc/http.go:80: remoteAddr 0.0% -2025-07-23T19:39:15.4867877Z github.com/ava-labs/coreth/rpc/http.go:84: readBatch 0.0% -2025-07-23T19:39:15.4868041Z github.com/ava-labs/coreth/rpc/http.go:89: close 0.0% -2025-07-23T19:39:15.4868298Z github.com/ava-labs/coreth/rpc/http.go:93: closed 0.0% -2025-07-23T19:39:15.4868472Z github.com/ava-labs/coreth/rpc/http.go:139: DialHTTP 100.0% -2025-07-23T19:39:15.4868681Z github.com/ava-labs/coreth/rpc/http.go:147: DialHTTPWithClient 85.7% -2025-07-23T19:39:15.4868899Z github.com/ava-labs/coreth/rpc/http.go:160: newClientTransportHTTP 90.9% -2025-07-23T19:39:15.4869076Z github.com/ava-labs/coreth/rpc/http.go:186: sendHTTP 90.9% -2025-07-23T19:39:15.4869271Z github.com/ava-labs/coreth/rpc/http.go:203: sendBatchHTTP 80.0% -2025-07-23T19:39:15.4869445Z github.com/ava-labs/coreth/rpc/http.go:219: doRequest 81.5% -2025-07-23T19:39:15.4869650Z github.com/ava-labs/coreth/rpc/http.go:271: newHTTPServerConn 47.1% -2025-07-23T19:39:15.4869812Z github.com/ava-labs/coreth/rpc/http.go:313: Close 100.0% -2025-07-23T19:39:15.4869996Z github.com/ava-labs/coreth/rpc/http.go:316: RemoteAddr 100.0% -2025-07-23T19:39:15.4870196Z github.com/ava-labs/coreth/rpc/http.go:321: SetWriteDeadline 100.0% -2025-07-23T19:39:15.4870371Z github.com/ava-labs/coreth/rpc/http.go:324: ServeHTTP 100.0% -2025-07-23T19:39:15.4870572Z github.com/ava-labs/coreth/rpc/http.go:355: validateRequest 92.3% -2025-07-23T19:39:15.4870786Z github.com/ava-labs/coreth/rpc/http.go:381: ContextRequestTimeout 50.0% -2025-07-23T19:39:15.4870971Z github.com/ava-labs/coreth/rpc/inproc.go:36: DialInProc 100.0% -2025-07-23T19:39:15.4871173Z github.com/ava-labs/coreth/rpc/json.go:82: isNotification 100.0% -2025-07-23T19:39:15.4871339Z github.com/ava-labs/coreth/rpc/json.go:86: isCall 100.0% -2025-07-23T19:39:15.4871520Z github.com/ava-labs/coreth/rpc/json.go:90: isResponse 100.0% -2025-07-23T19:39:15.4871695Z github.com/ava-labs/coreth/rpc/json.go:94: hasValidID 100.0% -2025-07-23T19:39:15.4871891Z github.com/ava-labs/coreth/rpc/json.go:98: hasValidVersion 100.0% -2025-07-23T19:39:15.4872079Z github.com/ava-labs/coreth/rpc/json.go:102: isSubscribe 100.0% -2025-07-23T19:39:15.4872269Z github.com/ava-labs/coreth/rpc/json.go:106: isUnsubscribe 100.0% -2025-07-23T19:39:15.4872440Z github.com/ava-labs/coreth/rpc/json.go:110: namespace 100.0% -2025-07-23T19:39:15.4872610Z github.com/ava-labs/coreth/rpc/json.go:115: String 0.0% -2025-07-23T19:39:15.4872801Z github.com/ava-labs/coreth/rpc/json.go:120: errorResponse 100.0% -2025-07-23T19:39:15.4872979Z github.com/ava-labs/coreth/rpc/json.go:126: response 100.0% -2025-07-23T19:39:15.4873292Z github.com/ava-labs/coreth/rpc/json.go:134: errorMessage 100.0% -2025-07-23T19:39:15.4873455Z github.com/ava-labs/coreth/rpc/json.go:156: Error 66.7% -2025-07-23T19:39:15.4873634Z github.com/ava-labs/coreth/rpc/json.go:163: ErrorCode 100.0% -2025-07-23T19:39:15.4873808Z github.com/ava-labs/coreth/rpc/json.go:167: ErrorData 100.0% -2025-07-23T19:39:15.4874000Z github.com/ava-labs/coreth/rpc/json.go:208: NewFuncCodec 100.0% -2025-07-23T19:39:15.4874173Z github.com/ava-labs/coreth/rpc/json.go:223: NewCodec 100.0% -2025-07-23T19:39:15.4874346Z github.com/ava-labs/coreth/rpc/json.go:234: peerInfo 100.0% -2025-07-23T19:39:15.4874528Z github.com/ava-labs/coreth/rpc/json.go:239: remoteAddr 100.0% -2025-07-23T19:39:15.4874702Z github.com/ava-labs/coreth/rpc/json.go:243: readBatch 100.0% -2025-07-23T19:39:15.4874873Z github.com/ava-labs/coreth/rpc/json.go:261: writeJSON 100.0% -2025-07-23T19:39:15.4875239Z github.com/ava-labs/coreth/rpc/json.go:265: writeJSONSkipDeadline 100.0% -2025-07-23T19:39:15.4875409Z github.com/ava-labs/coreth/rpc/json.go:280: close 100.0% -2025-07-23T19:39:15.4875585Z github.com/ava-labs/coreth/rpc/json.go:288: closed 100.0% -2025-07-23T19:39:15.4875776Z github.com/ava-labs/coreth/rpc/json.go:296: parseMessage 100.0% -2025-07-23T19:39:15.4875945Z github.com/ava-labs/coreth/rpc/json.go:313: isBatch 60.0% -2025-07-23T19:39:15.4876173Z github.com/ava-labs/coreth/rpc/json.go:327: parsePositionalArguments 84.6% -2025-07-23T19:39:15.4876379Z github.com/ava-labs/coreth/rpc/json.go:355: parseArgumentArray 75.0% -2025-07-23T19:39:15.4876594Z github.com/ava-labs/coreth/rpc/json.go:376: parseSubscriptionName 75.0% -2025-07-23T19:39:15.4876830Z github.com/ava-labs/coreth/rpc/metrics.go:58: updateServeTimeHistogram 0.0% -2025-07-23T19:39:15.4877011Z github.com/ava-labs/coreth/rpc/server.go:74: NewServer 100.0% -2025-07-23T19:39:15.4877223Z github.com/ava-labs/coreth/rpc/server.go:95: SetBatchLimits 100.0% -2025-07-23T19:39:15.4877425Z github.com/ava-labs/coreth/rpc/server.go:103: SetHTTPBodyLimit 0.0% -2025-07-23T19:39:15.4877622Z github.com/ava-labs/coreth/rpc/server.go:111: RegisterName 100.0% -2025-07-23T19:39:15.4877814Z github.com/ava-labs/coreth/rpc/server.go:120: ServeCodec 87.5% -2025-07-23T19:39:15.4877999Z github.com/ava-labs/coreth/rpc/server.go:138: trackCodec 83.3% -2025-07-23T19:39:15.4878293Z github.com/ava-labs/coreth/rpc/server.go:149: untrackCodec 100.0% -2025-07-23T19:39:15.4878505Z github.com/ava-labs/coreth/rpc/server.go:159: serveSingleRequest 60.0% -2025-07-23T19:39:15.4878673Z github.com/ava-labs/coreth/rpc/server.go:188: Stop 100.0% -2025-07-23T19:39:15.4878856Z github.com/ava-labs/coreth/rpc/server.go:207: Modules 100.0% -2025-07-23T19:39:15.4879076Z github.com/ava-labs/coreth/rpc/server.go:248: PeerInfoFromContext 100.0% -2025-07-23T19:39:15.4879278Z github.com/ava-labs/coreth/rpc/service.go:71: registerName 89.5% -2025-07-23T19:39:15.4879462Z github.com/ava-labs/coreth/rpc/service.go:106: callback 83.3% -2025-07-23T19:39:15.4879660Z github.com/ava-labs/coreth/rpc/service.go:117: subscription 100.0% -2025-07-23T19:39:15.4879874Z github.com/ava-labs/coreth/rpc/service.go:126: suitableCallbacks 91.7% -2025-07-23T19:39:15.4880068Z github.com/ava-labs/coreth/rpc/service.go:146: newCallback 100.0% -2025-07-23T19:39:15.4880263Z github.com/ava-labs/coreth/rpc/service.go:175: makeArgTypes 100.0% -2025-07-23T19:39:15.4880438Z github.com/ava-labs/coreth/rpc/service.go:194: call 100.0% -2025-07-23T19:39:15.4880633Z github.com/ava-labs/coreth/rpc/service.go:229: isErrorType 100.0% -2025-07-23T19:39:15.4880852Z github.com/ava-labs/coreth/rpc/service.go:234: isSubscriptionType 100.0% -2025-07-23T19:39:15.4881040Z github.com/ava-labs/coreth/rpc/service.go:243: isPubSub 100.0% -2025-07-23T19:39:15.4881364Z github.com/ava-labs/coreth/rpc/service.go:254: formatName 100.0% -2025-07-23T19:39:15.4881561Z github.com/ava-labs/coreth/rpc/subscription.go:67: NewID 100.0% -2025-07-23T19:39:15.4881787Z github.com/ava-labs/coreth/rpc/subscription.go:72: randomIDGenerator 91.7% -2025-07-23T19:39:15.4881981Z github.com/ava-labs/coreth/rpc/subscription.go:94: encodeID 80.0% -2025-07-23T19:39:15.4882229Z github.com/ava-labs/coreth/rpc/subscription.go:106: NotifierFromContext 100.0% -2025-07-23T19:39:15.4882465Z github.com/ava-labs/coreth/rpc/subscription.go:128: CreateSubscription 75.0% -2025-07-23T19:39:15.4882663Z github.com/ava-labs/coreth/rpc/subscription.go:143: Notify 80.0% -2025-07-23T19:39:15.4882858Z github.com/ava-labs/coreth/rpc/subscription.go:161: Closed 100.0% -2025-07-23T19:39:15.4883086Z github.com/ava-labs/coreth/rpc/subscription.go:167: takeSubscription 100.0% -2025-07-23T19:39:15.4883392Z github.com/ava-labs/coreth/rpc/subscription.go:177: activate 100.0% -2025-07-23T19:39:15.4883586Z github.com/ava-labs/coreth/rpc/subscription.go:190: send 100.0% -2025-07-23T19:39:15.4883771Z github.com/ava-labs/coreth/rpc/subscription.go:211: Err 100.0% -2025-07-23T19:39:15.4883989Z github.com/ava-labs/coreth/rpc/subscription.go:216: MarshalJSON 100.0% -2025-07-23T19:39:15.4884237Z github.com/ava-labs/coreth/rpc/subscription.go:248: newClientSubscription 100.0% -2025-07-23T19:39:15.4884425Z github.com/ava-labs/coreth/rpc/subscription.go:271: Err 100.0% -2025-07-23T19:39:15.4884635Z github.com/ava-labs/coreth/rpc/subscription.go:277: Unsubscribe 100.0% -2025-07-23T19:39:15.4884834Z github.com/ava-labs/coreth/rpc/subscription.go:289: deliver 100.0% -2025-07-23T19:39:15.4885030Z github.com/ava-labs/coreth/rpc/subscription.go:299: close 100.0% -2025-07-23T19:39:15.4885212Z github.com/ava-labs/coreth/rpc/subscription.go:308: run 100.0% -2025-07-23T19:39:15.4885419Z github.com/ava-labs/coreth/rpc/subscription.go:335: forward 95.7% -2025-07-23T19:39:15.4885624Z github.com/ava-labs/coreth/rpc/subscription.go:383: unmarshal 100.0% -2025-07-23T19:39:15.4885860Z github.com/ava-labs/coreth/rpc/subscription.go:389: requestUnsubscribe 100.0% -2025-07-23T19:39:15.4886055Z github.com/ava-labs/coreth/rpc/types.go:90: UnmarshalJSON 81.0% -2025-07-23T19:39:15.4886220Z github.com/ava-labs/coreth/rpc/types.go:127: Int64 0.0% -2025-07-23T19:39:15.4886405Z github.com/ava-labs/coreth/rpc/types.go:134: MarshalText 100.0% -2025-07-23T19:39:15.4886579Z github.com/ava-labs/coreth/rpc/types.go:138: String 66.7% -2025-07-23T19:39:15.4886756Z github.com/ava-labs/coreth/rpc/types.go:159: IsAccepted 0.0% -2025-07-23T19:39:15.4886929Z github.com/ava-labs/coreth/rpc/types.go:163: IsLatest 0.0% -2025-07-23T19:39:15.4887122Z github.com/ava-labs/coreth/rpc/types.go:173: UnmarshalJSON 84.4% -2025-07-23T19:39:15.4887298Z github.com/ava-labs/coreth/rpc/types.go:237: Number 100.0% -2025-07-23T19:39:15.4887469Z github.com/ava-labs/coreth/rpc/types.go:244: String 80.0% -2025-07-23T19:39:15.4887633Z github.com/ava-labs/coreth/rpc/types.go:254: Hash 100.0% -2025-07-23T19:39:15.4887872Z github.com/ava-labs/coreth/rpc/types.go:261: BlockNumberOrHashWithNumber 100.0% -2025-07-23T19:39:15.4888213Z github.com/ava-labs/coreth/rpc/types.go:269: BlockNumberOrHashWithHash 100.0% -2025-07-23T19:39:15.4888439Z github.com/ava-labs/coreth/rpc/websocket.go:61: WebsocketHandler 100.0% -2025-07-23T19:39:15.4888703Z github.com/ava-labs/coreth/rpc/websocket.go:65: WebsocketHandlerWithDuration 100.0% -2025-07-23T19:39:15.4888937Z github.com/ava-labs/coreth/rpc/websocket.go:86: wsHandshakeValidator 100.0% -2025-07-23T19:39:15.4889113Z github.com/ava-labs/coreth/rpc/websocket.go:132: Error 0.0% -2025-07-23T19:39:15.4889333Z github.com/ava-labs/coreth/rpc/websocket.go:140: originIsAllowed 100.0% -2025-07-23T19:39:15.4889662Z github.com/ava-labs/coreth/rpc/websocket.go:150: ruleAllowsOrigin 62.5% -2025-07-23T19:39:15.4889879Z github.com/ava-labs/coreth/rpc/websocket.go:178: parseOriginURL 92.9% -2025-07-23T19:39:15.4890115Z github.com/ava-labs/coreth/rpc/websocket.go:205: DialWebsocketWithDialer 0.0% -2025-07-23T19:39:15.4890319Z github.com/ava-labs/coreth/rpc/websocket.go:223: DialWebsocket 85.7% -2025-07-23T19:39:15.4890551Z github.com/ava-labs/coreth/rpc/websocket.go:235: newClientTransportWS 87.5% -2025-07-23T19:39:15.4890761Z github.com/ava-labs/coreth/rpc/websocket.go:278: wsClientHeaders 90.9% -2025-07-23T19:39:15.4890976Z github.com/ava-labs/coreth/rpc/websocket.go:305: newWebsocketCodec 84.6% -2025-07-23T19:39:15.4891166Z github.com/ava-labs/coreth/rpc/websocket.go:337: close 100.0% -2025-07-23T19:39:15.4891358Z github.com/ava-labs/coreth/rpc/websocket.go:342: peerInfo 100.0% -2025-07-23T19:39:15.4891674Z github.com/ava-labs/coreth/rpc/websocket.go:346: writeJSON 100.0% -2025-07-23T19:39:15.4891912Z github.com/ava-labs/coreth/rpc/websocket.go:350: writeJSONSkipDeadline 100.0% -2025-07-23T19:39:15.4892103Z github.com/ava-labs/coreth/rpc/websocket.go:363: pingLoop 50.0% -2025-07-23T19:39:15.4892324Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:55: Crit 0.0% -2025-07-23T19:39:15.4892578Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:58: Warn 0.0% -2025-07-23T19:39:15.4892970Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:61: Info 0.0% -2025-07-23T19:39:15.4893369Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:66: GetWarnings 0.0% -2025-07-23T19:39:15.4893606Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:103: String 0.0% -2025-07-23T19:39:15.4893864Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:112: ToTransaction 0.0% -2025-07-23T19:39:15.4894075Z github.com/ava-labs/coreth/sync/client/client.go:99: NewClient 100.0% -2025-07-23T19:39:15.4894287Z github.com/ava-labs/coreth/sync/client/client.go:114: GetLeafs 100.0% -2025-07-23T19:39:15.4894540Z github.com/ava-labs/coreth/sync/client/client.go:132: parseLeafsResponse 88.5% -2025-07-23T19:39:15.4894747Z github.com/ava-labs/coreth/sync/client/client.go:188: GetBlocks 100.0% -2025-07-23T19:39:15.4894972Z github.com/ava-labs/coreth/sync/client/client.go:207: parseBlocks 100.0% -2025-07-23T19:39:15.4895176Z github.com/ava-labs/coreth/sync/client/client.go:243: GetCode 100.0% -2025-07-23T19:39:15.4895381Z github.com/ava-labs/coreth/sync/client/client.go:257: parseCode 93.3% -2025-07-23T19:39:15.4895576Z github.com/ava-labs/coreth/sync/client/client.go:289: get 72.1% -2025-07-23T19:39:15.4895837Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:51: NewCallbackLeafSyncer 0.0% -2025-07-23T19:39:15.4896064Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:62: workerLoop 0.0% -2025-07-23T19:39:15.4896277Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:80: syncTask 0.0% -2025-07-23T19:39:15.4896480Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:149: Start 0.0% -2025-07-23T19:39:15.4896685Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:171: Done 0.0% -2025-07-23T19:39:15.4896931Z github.com/ava-labs/coreth/sync/client/stats/stats.go:42: NewMessageMetric 100.0% -2025-07-23T19:39:15.4897162Z github.com/ava-labs/coreth/sync/client/stats/stats.go:53: IncRequested 100.0% -2025-07-23T19:39:15.4897398Z github.com/ava-labs/coreth/sync/client/stats/stats.go:57: IncSucceeded 100.0% -2025-07-23T19:39:15.4897620Z github.com/ava-labs/coreth/sync/client/stats/stats.go:61: IncFailed 100.0% -2025-07-23T19:39:15.4897871Z github.com/ava-labs/coreth/sync/client/stats/stats.go:65: IncInvalidResponse 0.0% -2025-07-23T19:39:15.4898214Z github.com/ava-labs/coreth/sync/client/stats/stats.go:69: IncReceived 100.0% -2025-07-23T19:39:15.4898637Z github.com/ava-labs/coreth/sync/client/stats/stats.go:73: UpdateRequestLatency 100.0% -2025-07-23T19:39:15.4898916Z github.com/ava-labs/coreth/sync/client/stats/stats.go:84: NewClientSyncerStats 100.0% -2025-07-23T19:39:15.4899136Z github.com/ava-labs/coreth/sync/client/stats/stats.go:97: GetMetric 62.5% -2025-07-23T19:39:15.4899369Z github.com/ava-labs/coreth/sync/client/stats/stats.go:121: IncRequested 0.0% -2025-07-23T19:39:15.4899597Z github.com/ava-labs/coreth/sync/client/stats/stats.go:122: IncSucceeded 0.0% -2025-07-23T19:39:15.4899814Z github.com/ava-labs/coreth/sync/client/stats/stats.go:123: IncFailed 0.0% -2025-07-23T19:39:15.4900072Z github.com/ava-labs/coreth/sync/client/stats/stats.go:124: IncInvalidResponse 0.0% -2025-07-23T19:39:15.4900298Z github.com/ava-labs/coreth/sync/client/stats/stats.go:125: IncReceived 0.0% -2025-07-23T19:39:15.4900562Z github.com/ava-labs/coreth/sync/client/stats/stats.go:126: UpdateRequestLatency 0.0% -2025-07-23T19:39:15.4900906Z github.com/ava-labs/coreth/sync/client/stats/stats.go:128: NewNoOpStats 100.0% -2025-07-23T19:39:15.4901138Z github.com/ava-labs/coreth/sync/client/stats/stats.go:132: GetMetric 100.0% -2025-07-23T19:39:15.4901368Z github.com/ava-labs/coreth/sync/client/test_client.go:44: NewTestClient 0.0% -2025-07-23T19:39:15.4901577Z github.com/ava-labs/coreth/sync/client/test_client.go:58: GetLeafs 0.0% -2025-07-23T19:39:15.4901806Z github.com/ava-labs/coreth/sync/client/test_client.go:77: LeavesReceived 0.0% -2025-07-23T19:39:15.4902018Z github.com/ava-labs/coreth/sync/client/test_client.go:81: GetCode 0.0% -2025-07-23T19:39:15.4902242Z github.com/ava-labs/coreth/sync/client/test_client.go:105: CodeReceived 0.0% -2025-07-23T19:39:15.4902461Z github.com/ava-labs/coreth/sync/client/test_client.go:109: GetBlocks 0.0% -2025-07-23T19:39:15.4902694Z github.com/ava-labs/coreth/sync/client/test_client.go:136: BlocksReceived 0.0% -2025-07-23T19:39:15.4902953Z github.com/ava-labs/coreth/sync/client/test_client.go:142: newTestBlockParser 100.0% -2025-07-23T19:39:15.4903194Z github.com/ava-labs/coreth/sync/client/test_client.go:146: ParseEthBlock 100.0% -2025-07-23T19:39:15.4903468Z github.com/ava-labs/coreth/sync/client/test_network.go:31: SendSyncedAppRequestAny 80.0% -2025-07-23T19:39:15.4903735Z github.com/ava-labs/coreth/sync/client/test_network.go:42: SendSyncedAppRequest 75.0% -2025-07-23T19:39:15.4903962Z github.com/ava-labs/coreth/sync/client/test_network.go:52: processTest 84.6% -2025-07-23T19:39:15.4904173Z github.com/ava-labs/coreth/sync/client/test_network.go:76: Gossip 0.0% -2025-07-23T19:39:15.4904410Z github.com/ava-labs/coreth/sync/client/test_network.go:80: testResponse 100.0% -2025-07-23T19:39:15.4904644Z github.com/ava-labs/coreth/sync/client/test_network.go:89: testResponses 100.0% -2025-07-23T19:39:15.4904878Z github.com/ava-labs/coreth/sync/client/test_network.go:95: TrackBandwidth 0.0% -2025-07-23T19:39:15.4905180Z github.com/ava-labs/coreth/sync/handlers/block_request.go:36: NewBlockRequestHandler 100.0% -2025-07-23T19:39:15.4905436Z github.com/ava-labs/coreth/sync/handlers/block_request.go:49: OnBlockRequest 87.8% -2025-07-23T19:39:15.4905715Z github.com/ava-labs/coreth/sync/handlers/code_request.go:29: NewCodeRequestHandler 100.0% -2025-07-23T19:39:15.4905960Z github.com/ava-labs/coreth/sync/handlers/code_request.go:43: OnCodeRequest 82.1% -2025-07-23T19:39:15.4906185Z github.com/ava-labs/coreth/sync/handlers/code_request.go:85: isUnique 100.0% -2025-07-23T19:39:15.4906475Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:58: NewLeafsRequestHandler 100.0% -2025-07-23T19:39:15.4906723Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:81: OnLeafsRequest 89.8% -2025-07-23T19:39:15.4906976Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:186: handleRequest 73.9% -2025-07-23T19:39:15.4907324Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:230: fillFromSnapshot 69.5% -2025-07-23T19:39:15.4907593Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:333: generateRangeProof 73.3% -2025-07-23T19:39:15.4907861Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:360: verifyRangeProof 100.0% -2025-07-23T19:39:15.4908196Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:372: iterateVals 87.5% -2025-07-23T19:39:15.4908451Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:393: isRangeValid 88.9% -2025-07-23T19:39:15.4908686Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:410: nextKey 100.0% -2025-07-23T19:39:15.4908931Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:424: fillFromTrie 94.4% -2025-07-23T19:39:15.4909218Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:459: readLeafsFromSnapshot 92.3% -2025-07-23T19:39:15.4909471Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:88: IncBlockRequest 100.0% -2025-07-23T19:39:15.4909849Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:92: IncMissingBlockHash 0.0% -2025-07-23T19:39:15.4910125Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:96: UpdateBlocksReturned 100.0% -2025-07-23T19:39:15.4910443Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:100: UpdateBlockRequestProcessingTime 100.0% -2025-07-23T19:39:15.4910691Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:104: IncCodeRequest 0.0% -2025-07-23T19:39:15.4910949Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:108: IncMissingCodeHash 0.0% -2025-07-23T19:39:15.4911237Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:112: IncTooManyHashesRequested 0.0% -2025-07-23T19:39:15.4911532Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:116: IncDuplicateHashesRequested 0.0% -2025-07-23T19:39:15.4911790Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:120: UpdateCodeReadTime 0.0% -2025-07-23T19:39:15.4912081Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:124: UpdateCodeBytesReturned 0.0% -2025-07-23T19:39:15.4912334Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:128: IncLeafsRequest 100.0% -2025-07-23T19:39:15.4912609Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:132: IncInvalidLeafsRequest 0.0% -2025-07-23T19:39:15.4912927Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:136: UpdateLeafsRequestProcessingTime 100.0% -2025-07-23T19:39:15.4913198Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:140: UpdateLeafsReturned 100.0% -2025-07-23T19:39:15.4913470Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:144: UpdateReadLeafsTime 100.0% -2025-07-23T19:39:15.4913752Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:148: UpdateSnapshotReadTime 100.0% -2025-07-23T19:39:15.4914052Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:152: UpdateGenerateRangeProofTime 100.0% -2025-07-23T19:39:15.4914360Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:156: UpdateRangeProofValsReturned 100.0% -2025-07-23T19:39:15.4914603Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:160: IncMissingRoot 0.0% -2025-07-23T19:39:15.4914844Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:161: IncTrieError 0.0% -2025-07-23T19:39:15.4915087Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:162: IncProofError 0.0% -2025-07-23T19:39:15.4915353Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:163: IncSnapshotReadError 0.0% -2025-07-23T19:39:15.4915671Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:164: IncSnapshotReadAttempt 100.0% -2025-07-23T19:39:15.4916085Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:165: IncSnapshotReadSuccess 0.0% -2025-07-23T19:39:15.4916374Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:166: IncSnapshotSegmentValid 0.0% -2025-07-23T19:39:15.4916664Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:167: IncSnapshotSegmentInvalid 100.0% -2025-07-23T19:39:15.4917078Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:172: GetOrRegisterHandlerStats 66.7% -2025-07-23T19:39:15.4917353Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:214: NewNoopHandlerStats 100.0% -2025-07-23T19:39:15.4917603Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:219: IncBlockRequest 0.0% -2025-07-23T19:39:15.4917865Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:220: IncMissingBlockHash 0.0% -2025-07-23T19:39:15.4918247Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:221: UpdateBlocksReturned 0.0% -2025-07-23T19:39:15.4918559Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:222: UpdateBlockRequestProcessingTime 0.0% -2025-07-23T19:39:15.4918808Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:223: IncCodeRequest 0.0% -2025-07-23T19:39:15.4919064Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:224: IncMissingCodeHash 0.0% -2025-07-23T19:39:15.4919459Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:225: IncTooManyHashesRequested 0.0% -2025-07-23T19:39:15.4919759Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:226: IncDuplicateHashesRequested 0.0% -2025-07-23T19:39:15.4920016Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:227: UpdateCodeReadTime 0.0% -2025-07-23T19:39:15.4920299Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:228: UpdateCodeBytesReturned 0.0% -2025-07-23T19:39:15.4920548Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:229: IncLeafsRequest 0.0% -2025-07-23T19:39:15.4920820Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:230: IncInvalidLeafsRequest 0.0% -2025-07-23T19:39:15.4921130Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:231: UpdateLeafsRequestProcessingTime 0.0% -2025-07-23T19:39:15.4921425Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:232: UpdateLeafsReturned 0.0% -2025-07-23T19:39:15.4921702Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:233: UpdateReadLeafsTime 0.0% -2025-07-23T19:39:15.4921982Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:234: UpdateSnapshotReadTime 0.0% -2025-07-23T19:39:15.4922281Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:235: UpdateGenerateRangeProofTime 0.0% -2025-07-23T19:39:15.4922582Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:236: UpdateRangeProofValsReturned 0.0% -2025-07-23T19:39:15.4922827Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:237: IncMissingRoot 0.0% -2025-07-23T19:39:15.4923069Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:238: IncTrieError 0.0% -2025-07-23T19:39:15.4923313Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:239: IncProofError 0.0% -2025-07-23T19:39:15.4923580Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:240: IncSnapshotReadError 0.0% -2025-07-23T19:39:15.4923861Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:241: IncSnapshotReadAttempt 0.0% -2025-07-23T19:39:15.4924139Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:242: IncSnapshotReadSuccess 0.0% -2025-07-23T19:39:15.4924421Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:243: IncSnapshotSegmentValid 0.0% -2025-07-23T19:39:15.4924709Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:244: IncSnapshotSegmentInvalid 0.0% -2025-07-23T19:39:15.4924981Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:49: Reset 100.0% -2025-07-23T19:39:15.4925294Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:80: IncBlockRequest 100.0% -2025-07-23T19:39:15.4925618Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:86: IncMissingBlockHash 100.0% -2025-07-23T19:39:15.4925942Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:92: UpdateBlocksReturned 100.0% -2025-07-23T19:39:15.4926331Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:98: UpdateBlockRequestProcessingTime 100.0% -2025-07-23T19:39:15.4926751Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:104: IncCodeRequest 100.0% -2025-07-23T19:39:15.4927071Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:110: IncMissingCodeHash 0.0% -2025-07-23T19:39:15.4927421Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:116: IncTooManyHashesRequested 100.0% -2025-07-23T19:39:15.4927775Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:122: IncDuplicateHashesRequested 100.0% -2025-07-23T19:39:15.4928195Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:128: UpdateCodeReadTime 100.0% -2025-07-23T19:39:15.4928541Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:134: UpdateCodeBytesReturned 100.0% -2025-07-23T19:39:15.4928859Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:140: IncLeafsRequest 100.0% -2025-07-23T19:39:15.4929307Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:146: IncInvalidLeafsRequest 100.0% -2025-07-23T19:39:15.4929635Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:152: UpdateLeafsReturned 100.0% -2025-07-23T19:39:15.4930011Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:158: UpdateLeafsRequestProcessingTime 100.0% -2025-07-23T19:39:15.4930330Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:164: UpdateReadLeafsTime 100.0% -2025-07-23T19:39:15.4930693Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:170: UpdateGenerateRangeProofTime 100.0% -2025-07-23T19:39:15.4931135Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:176: UpdateSnapshotReadTime 100.0% -2025-07-23T19:39:15.4931499Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:182: UpdateRangeProofValsReturned 100.0% -2025-07-23T19:39:15.4931823Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:188: IncMissingRoot 100.0% -2025-07-23T19:39:15.4932123Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:194: IncTrieError 100.0% -2025-07-23T19:39:15.4932423Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:200: IncProofError 0.0% -2025-07-23T19:39:15.4932743Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:206: IncSnapshotReadError 0.0% -2025-07-23T19:39:15.4933081Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:212: IncSnapshotReadAttempt 100.0% -2025-07-23T19:39:15.4933422Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:218: IncSnapshotReadSuccess 100.0% -2025-07-23T19:39:15.4933764Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:224: IncSnapshotSegmentValid 100.0% -2025-07-23T19:39:15.4934114Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:230: IncSnapshotSegmentInvalid 100.0% -2025-07-23T19:39:15.4934361Z github.com/ava-labs/coreth/sync/handlers/test_providers.go:21: GetBlock 100.0% -2025-07-23T19:39:15.4934603Z github.com/ava-labs/coreth/sync/handlers/test_providers.go:29: Snapshots 100.0% -2025-07-23T19:39:15.4934858Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:63: newCodeSyncer 100.0% -2025-07-23T19:39:15.4935081Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:75: start 93.3% -2025-07-23T19:39:15.4935381Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:107: addCodeToFetchFromDBToQueue 55.0% -2025-07-23T19:39:15.4935603Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:143: work 100.0% -2025-07-23T19:39:15.4935867Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:180: fulfillCodeRequest 92.3% -2025-07-23T19:39:15.4936102Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:204: addCode 91.7% -2025-07-23T19:39:15.4936403Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:230: notifyAccountTrieCompleted 100.0% -2025-07-23T19:39:15.4936860Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:236: addHashesToQueue 100.0% -2025-07-23T19:39:15.4937093Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:249: setError 100.0% -2025-07-23T19:39:15.4937315Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:257: Done 100.0% -2025-07-23T19:39:15.4937577Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:65: NewStateSyncer 84.6% -2025-07-23T19:39:15.4937858Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:113: onStorageTrieFinished 80.0% -2025-07-23T19:39:15.4946933Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:136: onMainTrieFinished 87.5% -2025-07-23T19:39:15.4947391Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:156: onSyncComplete 100.0% -2025-07-23T19:39:15.4947749Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:165: storageTrieProducer 82.6% -2025-07-23T19:39:15.4948435Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:220: Start 100.0% -2025-07-23T19:39:15.4948704Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:247: Done 100.0% -2025-07-23T19:39:15.4948995Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:250: addTrieInProgress 100.0% -2025-07-23T19:39:15.4949284Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:259: removeTrieInProgress 85.7% -2025-07-23T19:39:15.4949544Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:274: onSyncFailure 85.7% -2025-07-23T19:39:15.4949936Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_sync.go:21: FillAccountsWithOverlappingStorage 100.0% -2025-07-23T19:39:15.4950234Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:29: GenerateTrie 66.7% -2025-07-23T19:39:15.4950513Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:39: FillTrie 95.7% -2025-07-23T19:39:15.4950859Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:78: AssertTrieConsistency 81.5% -2025-07-23T19:39:15.4951173Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:118: CorruptTrie 71.4% -2025-07-23T19:39:15.4951482Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:146: FillAccounts 77.3% -2025-07-23T19:39:15.4951772Z github.com/ava-labs/coreth/sync/statesync/sync_helpers.go:16: writeAccountSnapshot 100.0% -2025-07-23T19:39:15.4952100Z github.com/ava-labs/coreth/sync/statesync/sync_helpers.go:23: writeAccountStorageSnapshotFromTrie 0.0% -2025-07-23T19:39:15.4952353Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:20: NewTrieQueue 100.0% -2025-07-23T19:39:15.4952635Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:28: clearIfRootDoesNotMatch 66.7% -2025-07-23T19:39:15.4952906Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:50: RegisterStorageTrie 100.0% -2025-07-23T19:39:15.4953164Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:56: StorageTrieDone 100.0% -2025-07-23T19:39:15.4953408Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:65: getNextTrie 100.0% -2025-07-23T19:39:15.4953645Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:97: countTries 100.0% -2025-07-23T19:39:15.4953901Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:66: NewTrieToSync 100.0% -2025-07-23T19:39:15.4954154Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:86: loadSegments 76.0% -2025-07-23T19:39:15.4954405Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:142: startSyncing 100.0% -2025-07-23T19:39:15.4954649Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:152: addSegment 100.0% -2025-07-23T19:39:15.4954914Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:166: segmentFinished 76.9% -2025-07-23T19:39:15.4955202Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:245: createSegmentsIfNeeded 66.7% -2025-07-23T19:39:15.4955579Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:254: shouldSegment 83.3% -2025-07-23T19:39:15.4955833Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:277: createSegments 0.0% -2025-07-23T19:39:15.4956065Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:336: String 0.0% -2025-07-23T19:39:15.4956296Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:346: Root 100.0% -2025-07-23T19:39:15.4956534Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:347: Account 100.0% -2025-07-23T19:39:15.4956759Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:348: End 100.0% -2025-07-23T19:39:15.4957005Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:349: NodeType 100.0% -2025-07-23T19:39:15.4957237Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:350: OnStart 100.0% -2025-07-23T19:39:15.4957477Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:351: OnFinish 100.0% -2025-07-23T19:39:15.4957817Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:353: Start 100.0% -2025-07-23T19:39:15.4958064Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:360: OnLeafs 92.9% -2025-07-23T19:39:15.4958457Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:391: estimateSize 83.3% -2025-07-23T19:39:15.4958699Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:415: addPadding 0.0% -2025-07-23T19:39:15.4958973Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:45: newTrieSyncStats 100.0% -2025-07-23T19:39:15.4959259Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:59: incTriesSegmented 0.0% -2025-07-23T19:39:15.4959513Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:65: incLeafs 72.7% -2025-07-23T19:39:15.4959897Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:84: estimateSegmentsInProgressTime 25.0% -2025-07-23T19:39:15.4960236Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:101: trieDone 100.0% -2025-07-23T19:39:15.4963218Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:118: updateETA 76.9% -2025-07-23T19:39:15.4963523Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:145: setTriesRemaining 100.0% -2025-07-23T19:39:15.4963771Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:155: roundETA 80.0% -2025-07-23T19:39:15.4964048Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:41: NewMainTrieTask 100.0% -2025-07-23T19:39:15.4964303Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:47: IterateLeafs 100.0% -2025-07-23T19:39:15.4964554Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:53: OnStart 100.0% -2025-07-23T19:39:15.4964791Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:57: OnFinish 100.0% -2025-07-23T19:39:15.4965026Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:61: OnLeafs 92.3% -2025-07-23T19:39:15.4965314Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:97: NewStorageTrieTask 100.0% -2025-07-23T19:39:15.4965572Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:105: IterateLeafs 100.0% -2025-07-23T19:39:15.4965804Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:111: OnStart 54.5% -2025-07-23T19:39:15.4966044Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:138: OnFinish 100.0% -2025-07-23T19:39:15.4966280Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:142: OnLeafs 100.0% -2025-07-23T19:39:15.4966501Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:25: Next 85.7% -2025-07-23T19:39:15.4966711Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:37: Key 66.7% -2025-07-23T19:39:15.4966925Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:44: Value 66.7% -2025-07-23T19:39:15.4967134Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:51: Error 66.7% -2025-07-23T19:39:15.4967506Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:63: Key 100.0% -2025-07-23T19:39:15.4967733Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:67: Value 100.0% -2025-07-23T19:39:15.4967997Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:38: NewAccountTrie 100.0% -2025-07-23T19:39:15.4968373Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:53: GetAccount 87.5% -2025-07-23T19:39:15.4968615Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:87: GetStorage 72.2% -2025-07-23T19:39:15.4968869Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:123: UpdateAccount 88.9% -2025-07-23T19:39:15.4969122Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:138: UpdateStorage 92.3% -2025-07-23T19:39:15.4969375Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:159: DeleteAccount 100.0% -2025-07-23T19:39:15.4969626Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:170: DeleteStorage 100.0% -2025-07-23T19:39:15.4969975Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:186: Hash 60.0% -2025-07-23T19:39:15.4970202Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:195: hash 85.7% -2025-07-23T19:39:15.4970434Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:209: Commit 85.7% -2025-07-23T19:39:15.4970713Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:229: UpdateContractCode 100.0% -2025-07-23T19:39:15.4970941Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:234: GetKey 0.0% -2025-07-23T19:39:15.4971188Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:239: NodeIterator 0.0% -2025-07-23T19:39:15.4971419Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:244: Prove 0.0% -2025-07-23T19:39:15.4971652Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:248: Copy 57.1% -2025-07-23T19:39:15.4971913Z github.com/ava-labs/coreth/triedb/firewood/database.go:79: BackendConstructor 100.0% -2025-07-23T19:39:15.4972120Z github.com/ava-labs/coreth/triedb/firewood/database.go:97: New 66.7% -2025-07-23T19:39:15.4972356Z github.com/ava-labs/coreth/triedb/firewood/database.go:126: validatePath 50.0% -2025-07-23T19:39:15.4972577Z github.com/ava-labs/coreth/triedb/firewood/database.go:163: Scheme 100.0% -2025-07-23T19:39:15.4972807Z github.com/ava-labs/coreth/triedb/firewood/database.go:168: Initialized 66.7% -2025-07-23T19:39:15.4973029Z github.com/ava-labs/coreth/triedb/firewood/database.go:182: Update 93.8% -2025-07-23T19:39:15.4973249Z github.com/ava-labs/coreth/triedb/firewood/database.go:226: propose 82.6% -2025-07-23T19:39:15.4973465Z github.com/ava-labs/coreth/triedb/firewood/database.go:291: Commit 82.8% -2025-07-23T19:39:15.4973678Z github.com/ava-labs/coreth/triedb/firewood/database.go:353: Size 100.0% -2025-07-23T19:39:15.4973898Z github.com/ava-labs/coreth/triedb/firewood/database.go:358: Reference 0.0% -2025-07-23T19:39:15.4974133Z github.com/ava-labs/coreth/triedb/firewood/database.go:370: Dereference 0.0% -2025-07-23T19:39:15.4974336Z github.com/ava-labs/coreth/triedb/firewood/database.go:374: Cap 0.0% -2025-07-23T19:39:15.4974550Z github.com/ava-labs/coreth/triedb/firewood/database.go:378: Close 100.0% -2025-07-23T19:39:15.4974794Z github.com/ava-labs/coreth/triedb/firewood/database.go:392: createProposal 66.7% -2025-07-23T19:39:15.4975083Z github.com/ava-labs/coreth/triedb/firewood/database.go:432: cleanupCommittedProposal 100.0% -2025-07-23T19:39:15.4975312Z github.com/ava-labs/coreth/triedb/firewood/database.go:452: dereference 85.7% -2025-07-23T19:39:15.4975584Z github.com/ava-labs/coreth/triedb/firewood/database.go:471: removeProposalFromMap 100.0% -2025-07-23T19:39:15.4975800Z github.com/ava-labs/coreth/triedb/firewood/database.go:490: Reader 100.0% -2025-07-23T19:39:15.4976009Z github.com/ava-labs/coreth/triedb/firewood/database.go:505: Node 66.7% -2025-07-23T19:39:15.4976386Z github.com/ava-labs/coreth/triedb/firewood/database.go:519: getProposalHash 81.8% -2025-07-23T19:39:15.4976661Z github.com/ava-labs/coreth/triedb/firewood/database.go:563: arrangeKeyValuePairs 100.0% -2025-07-23T19:39:15.4976923Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:18: NewStorageTrie 100.0% -2025-07-23T19:39:15.4977156Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:28: Commit 100.0% -2025-07-23T19:39:15.4977377Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:33: Hash 100.0% -2025-07-23T19:39:15.4977592Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:39: Copy 0.0% -2025-07-23T19:39:15.4977851Z github.com/ava-labs/coreth/triedb/hashdb/database.go:119: BackendConstructor 100.0% -2025-07-23T19:39:15.4978078Z github.com/ava-labs/coreth/triedb/hashdb/database.go:181: forChildren 100.0% -2025-07-23T19:39:15.4978398Z github.com/ava-labs/coreth/triedb/hashdb/database.go:189: New 83.3% -2025-07-23T19:39:15.4978736Z github.com/ava-labs/coreth/triedb/hashdb/database.go:209: insert 100.0% -2025-07-23T19:39:15.4978944Z github.com/ava-labs/coreth/triedb/hashdb/database.go:239: node 89.3% -2025-07-23T19:39:15.4979169Z github.com/ava-labs/coreth/triedb/hashdb/database.go:295: Reference 100.0% -2025-07-23T19:39:15.4979389Z github.com/ava-labs/coreth/triedb/hashdb/database.go:303: reference 100.0% -2025-07-23T19:39:15.4979614Z github.com/ava-labs/coreth/triedb/hashdb/database.go:328: Dereference 88.2% -2025-07-23T19:39:15.4979842Z github.com/ava-labs/coreth/triedb/hashdb/database.go:357: dereference 100.0% -2025-07-23T19:39:15.4980082Z github.com/ava-labs/coreth/triedb/hashdb/database.go:410: writeFlushItems 71.4% -2025-07-23T19:39:15.4980288Z github.com/ava-labs/coreth/triedb/hashdb/database.go:438: Cap 0.0% -2025-07-23T19:39:15.4980497Z github.com/ava-labs/coreth/triedb/hashdb/database.go:518: Commit 87.9% -2025-07-23T19:39:15.4980710Z github.com/ava-labs/coreth/triedb/hashdb/database.go:576: commit 90.9% -2025-07-23T19:39:15.4980966Z github.com/ava-labs/coreth/triedb/hashdb/database.go:607: removeFromDirties 100.0% -2025-07-23T19:39:15.4981190Z github.com/ava-labs/coreth/triedb/hashdb/database.go:646: Initialized 100.0% -2025-07-23T19:39:15.4981401Z github.com/ava-labs/coreth/triedb/hashdb/database.go:654: Update 80.0% -2025-07-23T19:39:15.4981606Z github.com/ava-labs/coreth/triedb/hashdb/database.go:674: update 95.2% -2025-07-23T19:39:15.4981809Z github.com/ava-labs/coreth/triedb/hashdb/database.go:721: Size 100.0% -2025-07-23T19:39:15.4982019Z github.com/ava-labs/coreth/triedb/hashdb/database.go:733: Close 100.0% -2025-07-23T19:39:15.4982230Z github.com/ava-labs/coreth/triedb/hashdb/database.go:741: Scheme 100.0% -2025-07-23T19:39:15.4982444Z github.com/ava-labs/coreth/triedb/hashdb/database.go:747: Reader 100.0% -2025-07-23T19:39:15.4982648Z github.com/ava-labs/coreth/triedb/hashdb/database.go:761: Node 100.0% -2025-07-23T19:39:15.4982902Z github.com/ava-labs/coreth/triedb/pathdb/database.go:108: BackendConstructor 0.0% -2025-07-23T19:39:15.4983121Z github.com/ava-labs/coreth/triedb/pathdb/database.go:114: sanitize 60.0% -2025-07-23T19:39:15.4983321Z github.com/ava-labs/coreth/triedb/pathdb/database.go:163: New 100.0% -2025-07-23T19:39:15.4983530Z github.com/ava-labs/coreth/triedb/pathdb/database.go:231: Reader 100.0% -2025-07-23T19:39:15.4983745Z github.com/ava-labs/coreth/triedb/pathdb/database.go:246: Update 71.4% -2025-07-23T19:39:15.4983950Z github.com/ava-labs/coreth/triedb/pathdb/database.go:269: Commit 80.0% -2025-07-23T19:39:15.4984162Z github.com/ava-labs/coreth/triedb/pathdb/database.go:284: Disable 72.7% -2025-07-23T19:39:15.4984366Z github.com/ava-labs/coreth/triedb/pathdb/database.go:310: Enable 88.2% -2025-07-23T19:39:15.4984582Z github.com/ava-labs/coreth/triedb/pathdb/database.go:356: Recover 100.0% -2025-07-23T19:39:15.4984927Z github.com/ava-labs/coreth/triedb/pathdb/database.go:362: Recoverable 100.0% -2025-07-23T19:39:15.4985131Z github.com/ava-labs/coreth/triedb/pathdb/database.go:394: Close 100.0% -2025-07-23T19:39:15.4985338Z github.com/ava-labs/coreth/triedb/pathdb/database.go:416: Size 0.0% -2025-07-23T19:39:15.4985561Z github.com/ava-labs/coreth/triedb/pathdb/database.go:430: Initialized 0.0% -2025-07-23T19:39:15.4985789Z github.com/ava-labs/coreth/triedb/pathdb/database.go:445: SetBufferSize 0.0% -2025-07-23T19:39:15.4985995Z github.com/ava-labs/coreth/triedb/pathdb/database.go:458: Scheme 0.0% -2025-07-23T19:39:15.4986226Z github.com/ava-labs/coreth/triedb/pathdb/database.go:464: modifyAllowed 60.0% -2025-07-23T19:39:15.4986458Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:59: newDiffLayer 100.0% -2025-07-23T19:39:15.4986683Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:91: rootHash 100.0% -2025-07-23T19:39:15.4986978Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:96: stateID 100.0% -2025-07-23T19:39:15.4987219Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:102: parentLayer 100.0% -2025-07-23T19:39:15.4987423Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:112: node 82.4% -2025-07-23T19:39:15.4987629Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:146: Node 100.0% -2025-07-23T19:39:15.4987851Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:152: update 100.0% -2025-07-23T19:39:15.4988067Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:157: persist 77.8% -2025-07-23T19:39:15.4988510Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:179: diffToDisk 75.0% -2025-07-23T19:39:15.4988747Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:57: newDiskLayer 100.0% -2025-07-23T19:39:15.4988965Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:74: rootHash 100.0% -2025-07-23T19:39:15.4989190Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:79: stateID 100.0% -2025-07-23T19:39:15.4989425Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:85: parentLayer 100.0% -2025-07-23T19:39:15.4989642Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:91: isStale 100.0% -2025-07-23T19:39:15.4989863Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:99: markStale 80.0% -2025-07-23T19:39:15.4990067Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:111: Node 81.1% -2025-07-23T19:39:15.4990290Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:175: update 100.0% -2025-07-23T19:39:15.4990504Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:182: commit 85.7% -2025-07-23T19:39:15.4990712Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:252: revert 0.0% -2025-07-23T19:39:15.4990947Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:300: setBufferSize 0.0% -2025-07-23T19:39:15.4991148Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:311: size 0.0% -2025-07-23T19:39:15.4991383Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:322: resetCache 83.3% -2025-07-23T19:39:15.4991609Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:342: newHasher 100.0% -2025-07-23T19:39:15.4991815Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:346: hash 100.0% -2025-07-23T19:39:15.4992038Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:350: release 100.0% -2025-07-23T19:39:15.4992298Z github.com/ava-labs/coreth/triedb/pathdb/errors.go:67: newUnexpectedNodeError 0.0% -2025-07-23T19:39:15.4992507Z github.com/ava-labs/coreth/triedb/pathdb/history.go:158: encode 100.0% -2025-07-23T19:39:15.4992716Z github.com/ava-labs/coreth/triedb/pathdb/history.go:169: decode 100.0% -2025-07-23T19:39:15.4992919Z github.com/ava-labs/coreth/triedb/pathdb/history.go:185: encode 100.0% -2025-07-23T19:39:15.4993129Z github.com/ava-labs/coreth/triedb/pathdb/history.go:194: decode 100.0% -2025-07-23T19:39:15.4993459Z github.com/ava-labs/coreth/triedb/pathdb/history.go:210: encode 87.5% -2025-07-23T19:39:15.4993661Z github.com/ava-labs/coreth/triedb/pathdb/history.go:223: decode 62.5% -2025-07-23T19:39:15.4993882Z github.com/ava-labs/coreth/triedb/pathdb/history.go:263: newHistory 92.9% -2025-07-23T19:39:15.4994087Z github.com/ava-labs/coreth/triedb/pathdb/history.go:304: encode 100.0% -2025-07-23T19:39:15.4994294Z github.com/ava-labs/coreth/triedb/pathdb/history.go:365: verify 60.0% -2025-07-23T19:39:15.4994514Z github.com/ava-labs/coreth/triedb/pathdb/history.go:376: readAccount 75.0% -2025-07-23T19:39:15.4994734Z github.com/ava-labs/coreth/triedb/pathdb/history.go:409: readStorage 76.2% -2025-07-23T19:39:15.4994941Z github.com/ava-labs/coreth/triedb/pathdb/history.go:456: decode 85.0% -2025-07-23T19:39:15.4995158Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:85: loadJournal 77.3% -2025-07-23T19:39:15.4995481Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:127: loadLayers 100.0% -2025-07-23T19:39:15.4995715Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:149: loadDiskLayer 81.8% -2025-07-23T19:39:15.4995940Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:190: loadDiffLayer 83.3% -2025-07-23T19:39:15.4996154Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:257: journal 77.8% -2025-07-23T19:39:15.4996361Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:291: journal 80.0% -2025-07-23T19:39:15.4996569Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:350: Journal 76.0% -2025-07-23T19:39:15.4996805Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:52: newLayerTree 100.0% -2025-07-23T19:39:15.4997010Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:60: reset 100.0% -2025-07-23T19:39:15.4997212Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:73: get 100.0% -2025-07-23T19:39:15.4997419Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:82: forEach 0.0% -2025-07-23T19:39:15.4997624Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:92: len 100.0% -2025-07-23T19:39:15.4997829Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:100: add 81.8% -2025-07-23T19:39:15.4998028Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:125: cap 79.0% -2025-07-23T19:39:15.4998353Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:236: bottom 90.9% -2025-07-23T19:39:15.4998606Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:54: newNodeBuffer 100.0% -2025-07-23T19:39:15.4998811Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:73: node 72.7% -2025-07-23T19:39:15.4999033Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:94: commit 100.0% -2025-07-23T19:39:15.4999246Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:139: revert 0.0% -2025-07-23T19:39:15.4999472Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:189: updateSize 57.1% -2025-07-23T19:39:15.4999702Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:201: reset 100.0% -2025-07-23T19:39:15.4999910Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:209: empty 0.0% -2025-07-23T19:39:15.5000130Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:215: setSize 0.0% -2025-07-23T19:39:15.5000342Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:222: flush 88.2% -2025-07-23T19:39:15.5000573Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:254: writeNodes 100.0% -2025-07-23T19:39:15.5000805Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:283: cacheKey 100.0% -2025-07-23T19:39:15.5001036Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:55: newTestHasher 80.0% -2025-07-23T19:39:15.5001236Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:71: Get 0.0% -2025-07-23T19:39:15.5001455Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:81: Update 100.0% -2025-07-23T19:39:15.5001795Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:87: Delete 100.0% -2025-07-23T19:39:15.5002009Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:94: Commit 93.8% -2025-07-23T19:39:15.5002214Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:126: hash 100.0% -2025-07-23T19:39:15.5002453Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:152: newHashLoader 100.0% -2025-07-23T19:39:15.5002671Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:160: OpenTrie 0.0% -2025-07-23T19:39:15.5002909Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:165: OpenStorageTrie 0.0% -2025-07-23T19:39:15.5003111Z github.com/ava-labs/coreth/utils/address_range.go:20: Contains 0.0% -2025-07-23T19:39:15.5003349Z github.com/ava-labs/coreth/utils/bounded_workers.go:22: NewBoundedWorkers 0.0% -2025-07-23T19:39:15.5003567Z github.com/ava-labs/coreth/utils/bounded_workers.go:31: startWorker 0.0% -2025-07-23T19:39:15.5003774Z github.com/ava-labs/coreth/utils/bounded_workers.go:51: Execute 0.0% -2025-07-23T19:39:15.5004073Z github.com/ava-labs/coreth/utils/bounded_workers.go:75: Wait 0.0% -2025-07-23T19:39:15.5004259Z github.com/ava-labs/coreth/utils/bytes.go:9: IncrOne 100.0% -2025-07-23T19:39:15.5004469Z github.com/ava-labs/coreth/utils/bytes.go:23: HashSliceToBytes 100.0% -2025-07-23T19:39:15.5004671Z github.com/ava-labs/coreth/utils/bytes.go:33: BytesToHashSlice 100.0% -2025-07-23T19:39:15.5004899Z github.com/ava-labs/coreth/utils/metered_cache.go:37: NewMeteredCache 0.0% -2025-07-23T19:39:15.5005134Z github.com/ava-labs/coreth/utils/metered_cache.go:60: updateStatsIfNeeded 0.0% -2025-07-23T19:39:15.5005322Z github.com/ava-labs/coreth/utils/metered_cache.go:81: Del 0.0% -2025-07-23T19:39:15.5005507Z github.com/ava-labs/coreth/utils/metered_cache.go:86: Get 0.0% -2025-07-23T19:39:15.5005701Z github.com/ava-labs/coreth/utils/metered_cache.go:91: GetBig 0.0% -2025-07-23T19:39:15.5005893Z github.com/ava-labs/coreth/utils/metered_cache.go:96: Has 0.0% -2025-07-23T19:39:15.5006092Z github.com/ava-labs/coreth/utils/metered_cache.go:101: HasGet 0.0% -2025-07-23T19:39:15.5006283Z github.com/ava-labs/coreth/utils/metered_cache.go:106: Set 0.0% -2025-07-23T19:39:15.5006483Z github.com/ava-labs/coreth/utils/metered_cache.go:111: SetBig 0.0% -2025-07-23T19:39:15.5006664Z github.com/ava-labs/coreth/utils/numbers.go:11: NewUint64 0.0% -2025-07-23T19:39:15.5006869Z github.com/ava-labs/coreth/utils/numbers.go:13: TimeToNewUint64 0.0% -2025-07-23T19:39:15.5007066Z github.com/ava-labs/coreth/utils/numbers.go:18: Uint64ToTime 0.0% -2025-07-23T19:39:15.5007266Z github.com/ava-labs/coreth/utils/numbers.go:25: Uint64PtrEqual 0.0% -2025-07-23T19:39:15.5007458Z github.com/ava-labs/coreth/utils/numbers.go:34: BigEqual 100.0% -2025-07-23T19:39:15.5007664Z github.com/ava-labs/coreth/utils/numbers.go:43: BigEqualUint64 100.0% -2025-07-23T19:39:15.5007899Z github.com/ava-labs/coreth/utils/numbers.go:51: BigLessOrEqualUint64 100.0% -2025-07-23T19:39:15.5008210Z github.com/ava-labs/coreth/utils/rpc/handler.go:16: NewHandler 0.0% -2025-07-23T19:39:15.5008435Z github.com/ava-labs/coreth/utils/snow.go:17: NewTestValidatorState 0.0% -2025-07-23T19:39:15.5008637Z github.com/ava-labs/coreth/utils/utilstest/key.go:24: NewKey 100.0% -2025-07-23T19:39:15.5008839Z github.com/ava-labs/coreth/warp/backend.go:65: NewBackend 100.0% -2025-07-23T19:39:15.5009066Z github.com/ava-labs/coreth/warp/backend.go:88: initOffChainMessages 76.9% -2025-07-23T19:39:15.5009261Z github.com/ava-labs/coreth/warp/backend.go:113: AddMessage 71.4% -2025-07-23T19:39:15.5009486Z github.com/ava-labs/coreth/warp/backend.go:130: GetMessageSignature 100.0% -2025-07-23T19:39:15.5009700Z github.com/ava-labs/coreth/warp/backend.go:144: GetBlockSignature 73.3% -2025-07-23T19:39:15.5009893Z github.com/ava-labs/coreth/warp/backend.go:172: GetMessage 83.3% -2025-07-23T19:39:15.5010206Z github.com/ava-labs/coreth/warp/backend.go:194: signMessage 80.0% -2025-07-23T19:39:15.5010393Z github.com/ava-labs/coreth/warp/client.go:31: NewClient 0.0% -2025-07-23T19:39:15.5010577Z github.com/ava-labs/coreth/warp/client.go:41: GetMessage 0.0% -2025-07-23T19:39:15.5010788Z github.com/ava-labs/coreth/warp/client.go:49: GetMessageSignature 0.0% -2025-07-23T19:39:15.5011033Z github.com/ava-labs/coreth/warp/client.go:57: GetMessageAggregateSignature 0.0% -2025-07-23T19:39:15.5011238Z github.com/ava-labs/coreth/warp/client.go:65: GetBlockSignature 0.0% -2025-07-23T19:39:15.5011473Z github.com/ava-labs/coreth/warp/client.go:73: GetBlockAggregateSignature 0.0% -2025-07-23T19:39:15.5011664Z github.com/ava-labs/coreth/warp/service.go:32: NewAPI 0.0% -2025-07-23T19:39:15.5011849Z github.com/ava-labs/coreth/warp/service.go:42: GetMessage 0.0% -2025-07-23T19:39:15.5012072Z github.com/ava-labs/coreth/warp/service.go:51: GetMessageSignature 0.0% -2025-07-23T19:39:15.5012430Z github.com/ava-labs/coreth/warp/service.go:64: GetBlockSignature 0.0% -2025-07-23T19:39:15.5012678Z github.com/ava-labs/coreth/warp/service.go:73: GetMessageAggregateSignature 0.0% -2025-07-23T19:39:15.5012918Z github.com/ava-labs/coreth/warp/service.go:82: GetBlockAggregateSignature 0.0% -2025-07-23T19:39:15.5013133Z github.com/ava-labs/coreth/warp/service.go:95: aggregateSignatures 0.0% -2025-07-23T19:39:15.5013351Z github.com/ava-labs/coreth/warp/validators/state.go:31: NewState 100.0% -2025-07-23T19:39:15.5013589Z github.com/ava-labs/coreth/warp/validators/state.go:40: GetValidatorSet 100.0% -2025-07-23T19:39:15.5013792Z github.com/ava-labs/coreth/warp/verifier_backend.go:23: Verify 76.9% -2025-07-23T19:39:15.5014045Z github.com/ava-labs/coreth/warp/verifier_backend.go:58: verifyBlockMessage 100.0% -2025-07-23T19:39:15.5014273Z github.com/ava-labs/coreth/warp/verifier_stats.go:14: newVerifierStats 100.0% -2025-07-23T19:39:15.5014536Z github.com/ava-labs/coreth/warp/verifier_stats.go:21: IncBlockValidationFail 100.0% -2025-07-23T19:39:15.5014784Z github.com/ava-labs/coreth/warp/verifier_stats.go:25: IncMessageParseFail 100.0% -2025-07-23T19:39:15.5015041Z github.com/ava-labs/coreth/warp/warptest/block_client.go:23: GetAcceptedBlock 100.0% -2025-07-23T19:39:15.5015300Z github.com/ava-labs/coreth/warp/warptest/block_client.go:30: MakeBlockClient 100.0% -2025-07-23T19:39:15.5015402Z total: (statements) 60.0% -2025-07-23T19:39:15.5068982Z Post job cleanup. -2025-07-23T19:39:15.7636350Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:39:15.7681429Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:39:15.7711611Z /home/runner/go/pkg/mod -2025-07-23T19:39:15.7771677Z /home/runner/.cache/go-build -2025-07-23T19:39:15.7777386Z Cache hit occurred on the primary key setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d, not saving cache. -2025-07-23T19:39:15.7894902Z Post job cleanup. -2025-07-23T19:39:15.8866322Z [command]/usr/bin/git version -2025-07-23T19:39:15.8901688Z git version 2.50.1 -2025-07-23T19:39:15.8944148Z Temporarily overriding HOME='/home/runner/work/_temp/101d9922-e92b-4888-8039-5f9f345795cc' before making global git config changes -2025-07-23T19:39:15.8945238Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:39:15.8956709Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:39:15.8990426Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:39:15.9021345Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:39:15.9258074Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:39:15.9278974Z http.https://github.com/.extraheader -2025-07-23T19:39:15.9291554Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader -2025-07-23T19:39:15.9323388Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:39:15.9663704Z Cleaning up orphan processes diff --git a/logs_42241282643/AvalancheGo E2E Tests/11_Post Run actions_setup-go@v5.txt b/logs_42241282643/AvalancheGo E2E Tests/11_Post Run actions_setup-go@v5.txt deleted file mode 100644 index 94a009111a..0000000000 --- a/logs_42241282643/AvalancheGo E2E Tests/11_Post Run actions_setup-go@v5.txt +++ /dev/null @@ -1,6 +0,0 @@ -2025-07-23T19:36:16.5502312Z Post job cleanup. -2025-07-23T19:36:16.7055412Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:36:16.7094737Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:36:16.7119387Z /home/runner/go/pkg/mod -2025-07-23T19:36:16.7148069Z /home/runner/.cache/go-build -2025-07-23T19:36:16.7153294Z Cache hit occurred on the primary key setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d, not saving cache. diff --git a/logs_42241282643/AvalancheGo E2E Tests/12_Post Run actions_checkout@v4.txt b/logs_42241282643/AvalancheGo E2E Tests/12_Post Run actions_checkout@v4.txt deleted file mode 100644 index 91963f3195..0000000000 --- a/logs_42241282643/AvalancheGo E2E Tests/12_Post Run actions_checkout@v4.txt +++ /dev/null @@ -1,12 +0,0 @@ -2025-07-23T19:36:16.7264777Z Post job cleanup. -2025-07-23T19:36:16.8293459Z [command]/usr/bin/git version -2025-07-23T19:36:16.8331899Z git version 2.50.1 -2025-07-23T19:36:16.8384846Z Temporarily overriding HOME='/home/runner/work/_temp/f2e259d2-b225-4571-8771-c6ad4dd8d0d9' before making global git config changes -2025-07-23T19:36:16.8386230Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:36:16.8390966Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:36:16.8427225Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:36:16.8459484Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:36:16.8682878Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:36:16.8703604Z http.https://github.com/.extraheader -2025-07-23T19:36:16.8716599Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader -2025-07-23T19:36:16.8746206Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" diff --git a/logs_42241282643/AvalancheGo E2E Tests/13_Complete job.txt b/logs_42241282643/AvalancheGo E2E Tests/13_Complete job.txt deleted file mode 100644 index f2d3144f1d..0000000000 --- a/logs_42241282643/AvalancheGo E2E Tests/13_Complete job.txt +++ /dev/null @@ -1 +0,0 @@ -2025-07-23T19:36:16.9075794Z Cleaning up orphan processes diff --git a/logs_42241282643/AvalancheGo E2E Tests/1_Set up job.txt b/logs_42241282643/AvalancheGo E2E Tests/1_Set up job.txt deleted file mode 100644 index e3c17ed0cb..0000000000 --- a/logs_42241282643/AvalancheGo E2E Tests/1_Set up job.txt +++ /dev/null @@ -1,58 +0,0 @@ -2025-07-23T19:28:54.4430728Z Current runner version: '2.326.0' -2025-07-23T19:28:54.4462787Z ##[group]Runner Image Provisioner -2025-07-23T19:28:54.4464394Z Hosted Compute Agent -2025-07-23T19:28:54.4465203Z Version: 20250711.363 -2025-07-23T19:28:54.4466161Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c -2025-07-23T19:28:54.4467445Z Build Date: 2025-07-11T20:04:25Z -2025-07-23T19:28:54.4468317Z ##[endgroup] -2025-07-23T19:28:54.4469139Z ##[group]Operating System -2025-07-23T19:28:54.4470052Z Ubuntu -2025-07-23T19:28:54.4470811Z 24.04.2 -2025-07-23T19:28:54.4471448Z LTS -2025-07-23T19:28:54.4472326Z ##[endgroup] -2025-07-23T19:28:54.4473119Z ##[group]Runner Image -2025-07-23T19:28:54.4474194Z Image: ubuntu-24.04 -2025-07-23T19:28:54.4475126Z Version: 20250720.1.0 -2025-07-23T19:28:54.4476784Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md -2025-07-23T19:28:54.4479225Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 -2025-07-23T19:28:54.4481081Z ##[endgroup] -2025-07-23T19:28:54.4485448Z ##[group]GITHUB_TOKEN Permissions -2025-07-23T19:28:54.4488092Z Actions: write -2025-07-23T19:28:54.4489051Z Attestations: write -2025-07-23T19:28:54.4489997Z Checks: write -2025-07-23T19:28:54.4490729Z Contents: write -2025-07-23T19:28:54.4491560Z Deployments: write -2025-07-23T19:28:54.4492439Z Discussions: write -2025-07-23T19:28:54.4493224Z Issues: write -2025-07-23T19:28:54.4494316Z Metadata: read -2025-07-23T19:28:54.4495146Z Models: read -2025-07-23T19:28:54.4496000Z Packages: write -2025-07-23T19:28:54.4496843Z Pages: write -2025-07-23T19:28:54.4497638Z PullRequests: write -2025-07-23T19:28:54.4498436Z RepositoryProjects: write -2025-07-23T19:28:54.4499453Z SecurityEvents: write -2025-07-23T19:28:54.4500509Z Statuses: write -2025-07-23T19:28:54.4501247Z ##[endgroup] -2025-07-23T19:28:54.4504769Z Secret source: Actions -2025-07-23T19:28:54.4505836Z Prepare workflow directory -2025-07-23T19:28:54.4966786Z Prepare all required actions -2025-07-23T19:28:54.5021008Z Getting action download info -2025-07-23T19:28:54.8461134Z ##[group]Download immutable action package 'actions/checkout@v4' -2025-07-23T19:28:54.8462330Z Version: 4.2.2 -2025-07-23T19:28:54.8463424Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 -2025-07-23T19:28:54.8464902Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 -2025-07-23T19:28:54.8465670Z ##[endgroup] -2025-07-23T19:28:54.9311898Z ##[group]Download immutable action package 'actions/setup-go@v5' -2025-07-23T19:28:54.9312821Z Version: 5.5.0 -2025-07-23T19:28:54.9313661Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb -2025-07-23T19:28:54.9314926Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 -2025-07-23T19:28:54.9315686Z ##[endgroup] -2025-07-23T19:28:55.2881084Z Download action repository 'ava-labs/avalanchego@66ce7a7701db0c4b370f97b339478d5b5ebe919a' (SHA:66ce7a7701db0c4b370f97b339478d5b5ebe919a) -2025-07-23T19:28:56.0641017Z Getting action download info -2025-07-23T19:28:56.2208611Z Download action repository 'cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f' (SHA:02a151ada4993995686f9ed4f1be7cfbb229e56f) -2025-07-23T19:28:56.4585993Z ##[group]Download immutable action package 'actions/upload-artifact@v4' -2025-07-23T19:28:56.4587588Z Version: 4.6.2 -2025-07-23T19:28:56.4588969Z Digest: sha256:290722aa3281d5caf23d0acdc3dbeb3424786a1a01a9cc97e72f147225e37c38 -2025-07-23T19:28:56.4590832Z Source commit SHA: ea165f8d65b6e75b540449e92b4886f43607fa02 -2025-07-23T19:28:56.4592111Z ##[endgroup] -2025-07-23T19:28:56.6324539Z Complete job name: AvalancheGo E2E Tests diff --git a/logs_42241282643/AvalancheGo E2E Tests/2_Run actions_checkout@v4.txt b/logs_42241282643/AvalancheGo E2E Tests/2_Run actions_checkout@v4.txt deleted file mode 100644 index 247916c76b..0000000000 --- a/logs_42241282643/AvalancheGo E2E Tests/2_Run actions_checkout@v4.txt +++ /dev/null @@ -1,85 +0,0 @@ -2025-07-23T19:28:56.7103785Z ##[group]Run actions/checkout@v4 -2025-07-23T19:28:56.7105254Z with: -2025-07-23T19:28:56.7106004Z repository: ava-labs/coreth -2025-07-23T19:28:56.7107138Z token: *** -2025-07-23T19:28:56.7107858Z ssh-strict: true -2025-07-23T19:28:56.7108586Z ssh-user: git -2025-07-23T19:28:56.7109348Z persist-credentials: true -2025-07-23T19:28:56.7110192Z clean: true -2025-07-23T19:28:56.7110959Z sparse-checkout-cone-mode: true -2025-07-23T19:28:56.7112129Z fetch-depth: 1 -2025-07-23T19:28:56.7112880Z fetch-tags: false -2025-07-23T19:28:56.7113674Z show-progress: true -2025-07-23T19:28:56.7114592Z lfs: false -2025-07-23T19:28:56.7115305Z submodules: false -2025-07-23T19:28:56.7116076Z set-safe-directory: true -2025-07-23T19:28:56.7117183Z ##[endgroup] -2025-07-23T19:28:56.8200486Z Syncing repository: ava-labs/coreth -2025-07-23T19:28:56.8204318Z ##[group]Getting Git version info -2025-07-23T19:28:56.8206027Z Working directory is '/home/runner/work/coreth/coreth' -2025-07-23T19:28:56.8207794Z [command]/usr/bin/git version -2025-07-23T19:28:56.8228715Z git version 2.50.1 -2025-07-23T19:28:56.8255210Z ##[endgroup] -2025-07-23T19:28:56.8270082Z Temporarily overriding HOME='/home/runner/work/_temp/e6e1d5ba-725b-4693-bf98-a6df7228bb99' before making global git config changes -2025-07-23T19:28:56.8272690Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:28:56.8276005Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:28:56.8311951Z Deleting the contents of '/home/runner/work/coreth/coreth' -2025-07-23T19:28:56.8315831Z ##[group]Initializing the repository -2025-07-23T19:28:56.8320640Z [command]/usr/bin/git init /home/runner/work/coreth/coreth -2025-07-23T19:28:56.8379491Z hint: Using 'master' as the name for the initial branch. This default branch name -2025-07-23T19:28:56.8382122Z hint: is subject to change. To configure the initial branch name to use in all -2025-07-23T19:28:56.8384448Z hint: of your new repositories, which will suppress this warning, call: -2025-07-23T19:28:56.8386057Z hint: -2025-07-23T19:28:56.8387243Z hint: git config --global init.defaultBranch -2025-07-23T19:28:56.8388615Z hint: -2025-07-23T19:28:56.8389862Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and -2025-07-23T19:28:56.8392155Z hint: 'development'. The just-created branch can be renamed via this command: -2025-07-23T19:28:56.8393602Z hint: -2025-07-23T19:28:56.8394597Z hint: git branch -m -2025-07-23T19:28:56.8395446Z hint: -2025-07-23T19:28:56.8396550Z hint: Disable this message with "git config set advice.defaultBranchName false" -2025-07-23T19:28:56.8398334Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ -2025-07-23T19:28:56.8401060Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth -2025-07-23T19:28:56.8426216Z ##[endgroup] -2025-07-23T19:28:56.8427557Z ##[group]Disabling automatic garbage collection -2025-07-23T19:28:56.8429609Z [command]/usr/bin/git config --local gc.auto 0 -2025-07-23T19:28:56.8457931Z ##[endgroup] -2025-07-23T19:28:56.8459191Z ##[group]Setting up auth -2025-07-23T19:28:56.8464304Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:28:56.8493988Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:28:56.8746094Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:28:56.8778579Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:28:56.8995425Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** -2025-07-23T19:28:56.9030184Z ##[endgroup] -2025-07-23T19:28:56.9031500Z ##[group]Fetching the repository -2025-07-23T19:28:56.9039753Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge -2025-07-23T19:28:57.4567062Z From https://github.com/ava-labs/coreth -2025-07-23T19:28:57.4570747Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge -2025-07-23T19:28:57.4597173Z ##[endgroup] -2025-07-23T19:28:57.4599308Z ##[group]Determining the checkout info -2025-07-23T19:28:57.4601655Z ##[endgroup] -2025-07-23T19:28:57.4603103Z [command]/usr/bin/git sparse-checkout disable -2025-07-23T19:28:57.4641079Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig -2025-07-23T19:28:57.4670644Z ##[group]Checking out the ref -2025-07-23T19:28:57.4673115Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge -2025-07-23T19:28:57.5786182Z Note: switching to 'refs/remotes/pull/1065/merge'. -2025-07-23T19:28:57.5787932Z -2025-07-23T19:28:57.5789029Z You are in 'detached HEAD' state. You can look around, make experimental -2025-07-23T19:28:57.5791542Z changes and commit them, and you can discard any commits you make in this -2025-07-23T19:28:57.5795011Z state without impacting any branches by switching back to a branch. -2025-07-23T19:28:57.5796366Z -2025-07-23T19:28:57.5797262Z If you want to create a new branch to retain commits you create, you may -2025-07-23T19:28:57.5799827Z do so (now or later) by using -c with the switch command. Example: -2025-07-23T19:28:57.5801113Z -2025-07-23T19:28:57.5801703Z git switch -c -2025-07-23T19:28:57.5802685Z -2025-07-23T19:28:57.5803373Z Or undo this operation with: -2025-07-23T19:28:57.5804499Z -2025-07-23T19:28:57.5805059Z git switch - -2025-07-23T19:28:57.5805730Z -2025-07-23T19:28:57.5806715Z Turn off this advice by setting config variable advice.detachedHead to false -2025-07-23T19:28:57.5808144Z -2025-07-23T19:28:57.5809687Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 -2025-07-23T19:28:57.5813332Z ##[endgroup] -2025-07-23T19:28:57.5838894Z [command]/usr/bin/git log -1 --format=%H -2025-07-23T19:28:57.5860754Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 diff --git a/logs_42241282643/AvalancheGo E2E Tests/4_Run actions_setup-go@v5.txt b/logs_42241282643/AvalancheGo E2E Tests/4_Run actions_setup-go@v5.txt deleted file mode 100644 index 07d7881b00..0000000000 --- a/logs_42241282643/AvalancheGo E2E Tests/4_Run actions_setup-go@v5.txt +++ /dev/null @@ -1,79 +0,0 @@ -2025-07-23T19:28:57.6130274Z ##[group]Run actions/setup-go@v5 -2025-07-23T19:28:57.6131145Z with: -2025-07-23T19:28:57.6131826Z go-version-file: go.mod -2025-07-23T19:28:57.6132623Z check-latest: false -2025-07-23T19:28:57.6133582Z token: *** -2025-07-23T19:28:57.6134588Z cache: true -2025-07-23T19:28:57.6135295Z ##[endgroup] -2025-07-23T19:28:57.7711690Z Setup go version spec 1.23.9 -2025-07-23T19:28:57.7723778Z Attempting to download 1.23.9... -2025-07-23T19:28:58.0689910Z matching 1.23.9... -2025-07-23T19:28:58.0730148Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz -2025-07-23T19:28:58.6556491Z Extracting Go... -2025-07-23T19:28:58.6663452Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/e1b386e0-cf78-4423-a894-16dd3b169dd8 -f /home/runner/work/_temp/e9bce400-3df8-4e37-853e-84874916e6d1 -2025-07-23T19:29:00.3591411Z Successfully extracted go to /home/runner/work/_temp/e1b386e0-cf78-4423-a894-16dd3b169dd8 -2025-07-23T19:29:00.3592287Z Adding to the cache ... -2025-07-23T19:29:04.5969324Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 -2025-07-23T19:29:04.5970252Z Added go to the path -2025-07-23T19:29:04.5971368Z Successfully set up Go version 1.23.9 -2025-07-23T19:29:04.6158248Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:29:04.6188074Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:29:04.6219814Z /home/runner/go/pkg/mod -2025-07-23T19:29:04.6235360Z /home/runner/.cache/go-build -2025-07-23T19:29:04.6856353Z Cache hit for: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:05.7180210Z Received 209715200 of 743127682 (28.2%), 199.8 MBs/sec -2025-07-23T19:29:06.7285547Z Received 415236096 of 743127682 (55.9%), 197.0 MBs/sec -2025-07-23T19:29:07.7904404Z Received 671088640 of 743127682 (90.3%), 208.2 MBs/sec -2025-07-23T19:29:08.1520049Z Received 743127682 of 743127682 (100.0%), 206.3 MBs/sec -2025-07-23T19:29:08.1521194Z Cache Size: ~709 MB (743127682 B) -2025-07-23T19:29:08.1557819Z [command]/usr/bin/tar -xf /home/runner/work/_temp/33e68bb1-dff2-424c-a5b6-4cbc0ab6eb76/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd -2025-07-23T19:29:16.0199200Z Cache restored successfully -2025-07-23T19:29:16.1618752Z Cache restored from key: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:16.1642136Z go version go1.23.9 linux/amd64 -2025-07-23T19:29:16.1642389Z -2025-07-23T19:29:16.1642725Z ##[group]go env -2025-07-23T19:29:16.3334675Z GO111MODULE='' -2025-07-23T19:29:16.3335258Z GOARCH='amd64' -2025-07-23T19:29:16.3335691Z GOBIN='' -2025-07-23T19:29:16.3336127Z GOCACHE='/home/runner/.cache/go-build' -2025-07-23T19:29:16.3336610Z GOENV='/home/runner/.config/go/env' -2025-07-23T19:29:16.3336985Z GOEXE='' -2025-07-23T19:29:16.3337284Z GOEXPERIMENT='' -2025-07-23T19:29:16.3337584Z GOFLAGS='' -2025-07-23T19:29:16.3337993Z GOHOSTARCH='amd64' -2025-07-23T19:29:16.3338475Z GOHOSTOS='linux' -2025-07-23T19:29:16.3338857Z GOINSECURE='' -2025-07-23T19:29:16.3339273Z GOMODCACHE='/home/runner/go/pkg/mod' -2025-07-23T19:29:16.3339963Z GONOPROXY='' -2025-07-23T19:29:16.3340302Z GONOSUMDB='' -2025-07-23T19:29:16.3340575Z GOOS='linux' -2025-07-23T19:29:16.3340865Z GOPATH='/home/runner/go' -2025-07-23T19:29:16.3341191Z GOPRIVATE='' -2025-07-23T19:29:16.3341586Z GOPROXY='https://proxy.golang.org,direct' -2025-07-23T19:29:16.3342122Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' -2025-07-23T19:29:16.3342557Z GOSUMDB='sum.golang.org' -2025-07-23T19:29:16.3342889Z GOTMPDIR='' -2025-07-23T19:29:16.3343177Z GOTOOLCHAIN='auto' -2025-07-23T19:29:16.3343657Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' -2025-07-23T19:29:16.3344392Z GOVCS='' -2025-07-23T19:29:16.3344675Z GOVERSION='go1.23.9' -2025-07-23T19:29:16.3344977Z GODEBUG='' -2025-07-23T19:29:16.3345247Z GOTELEMETRY='local' -2025-07-23T19:29:16.3345650Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' -2025-07-23T19:29:16.3346398Z GCCGO='gccgo' -2025-07-23T19:29:16.3346670Z GOAMD64='v1' -2025-07-23T19:29:16.3346943Z AR='ar' -2025-07-23T19:29:16.3347193Z CC='gcc' -2025-07-23T19:29:16.3347452Z CXX='g++' -2025-07-23T19:29:16.3347716Z CGO_ENABLED='1' -2025-07-23T19:29:16.3348072Z GOMOD='/home/runner/work/coreth/coreth/go.mod' -2025-07-23T19:29:16.3348477Z GOWORK='' -2025-07-23T19:29:16.3348754Z CGO_CFLAGS='-O2 -g' -2025-07-23T19:29:16.3349057Z CGO_CPPFLAGS='' -2025-07-23T19:29:16.3349348Z CGO_CXXFLAGS='-O2 -g' -2025-07-23T19:29:16.3349669Z CGO_FFLAGS='-O2 -g' -2025-07-23T19:29:16.3349987Z CGO_LDFLAGS='-O2 -g' -2025-07-23T19:29:16.3350320Z PKG_CONFIG='pkg-config' -2025-07-23T19:29:16.3351249Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build3893342323=/tmp/go-build -gno-record-gcc-switches' -2025-07-23T19:29:16.3351906Z -2025-07-23T19:29:16.3352271Z ##[endgroup] diff --git a/logs_42241282643/AvalancheGo E2E Tests/5_Build AvalancheGo and update Coreth dependency.txt b/logs_42241282643/AvalancheGo E2E Tests/5_Build AvalancheGo and update Coreth dependency.txt deleted file mode 100644 index 2a5b18b503..0000000000 --- a/logs_42241282643/AvalancheGo E2E Tests/5_Build AvalancheGo and update Coreth dependency.txt +++ /dev/null @@ -1,46 +0,0 @@ -2025-07-23T19:29:16.3514509Z ##[group]Run ./scripts/run_task.sh build-avalanchego-with-coreth -2025-07-23T19:29:16.3515065Z ./scripts/run_task.sh build-avalanchego-with-coreth -2025-07-23T19:29:16.3548456Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:16.3548758Z ##[endgroup] -2025-07-23T19:29:17.2237048Z task: [build-avalanchego-with-coreth] ./scripts/build_avalanchego_with_coreth.sh -2025-07-23T19:29:17.2365734Z checking out target AvalancheGo version v1.13.3-rc.1 -2025-07-23T19:29:17.2366347Z creating new clone -2025-07-23T19:29:17.2378420Z Cloning into 'avalanchego'... -2025-07-23T19:29:24.4778701Z Switched to a new branch 'test-v1.13.3-rc.1' -2025-07-23T19:29:24.4793304Z updating coreth dependency to point to /home/runner/work/coreth/coreth -2025-07-23T19:29:24.5306661Z go: downloading connectrpc.com/connect v1.18.1 -2025-07-23T19:29:24.5409403Z go: downloading github.com/prometheus/client_golang v1.16.0 -2025-07-23T19:29:24.5414562Z go: downloading github.com/prometheus/client_model v0.3.0 -2025-07-23T19:29:24.5415554Z go: downloading github.com/prometheus/common v0.42.0 -2025-07-23T19:29:24.6036650Z go: downloading google.golang.org/protobuf v1.35.2 -2025-07-23T19:29:24.7943087Z go: downloading github.com/jackpal/gateway v1.0.6 -2025-07-23T19:29:24.7989040Z go: downloading github.com/ava-labs/simplex v0.0.0-20250626192006-220e6aeacdc1 -2025-07-23T19:29:24.8131426Z go: downloading github.com/antithesishq/antithesis-sdk-go v0.3.8 -2025-07-23T19:29:24.8247858Z go: downloading github.com/compose-spec/compose-go v1.20.2 -2025-07-23T19:29:24.8338441Z go: downloading github.com/ava-labs/ledger-avalanche/go v0.0.0-20241009183145-e6f90a8a1a60 -2025-07-23T19:29:24.8349461Z go: downloading github.com/tyler-smith/go-bip32 v1.0.0 -2025-07-23T19:29:24.8491121Z go: downloading github.com/nbutton23/zxcvbn-go v0.0.0-20180912185939-ae427f1e4c1d -2025-07-23T19:29:24.8588174Z go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.4 -2025-07-23T19:29:24.8670647Z go: downloading connectrpc.com/grpcreflect v1.3.0 -2025-07-23T19:29:24.8758103Z go: downloading github.com/prometheus/procfs v0.10.1 -2025-07-23T19:29:24.9214098Z go: downloading github.com/inconshreveable/mousetrap v1.1.0 -2025-07-23T19:29:24.9311038Z go: downloading github.com/zondax/ledger-go v1.0.0 -2025-07-23T19:29:24.9321236Z go: downloading github.com/FactomProject/basen v0.0.0-20150613233007-fe3947df716e -2025-07-23T19:29:24.9359211Z go: downloading github.com/FactomProject/btcutilecc v0.0.0-20130527213604-d3a63a5752ec -2025-07-23T19:29:24.9439240Z go: downloading github.com/distribution/reference v0.5.0 -2025-07-23T19:29:24.9442925Z go: downloading github.com/docker/go-connections v0.4.0 -2025-07-23T19:29:24.9462404Z go: downloading github.com/docker/go-units v0.5.0 -2025-07-23T19:29:24.9469897Z go: downloading github.com/mattn/go-shellwords v1.0.12 -2025-07-23T19:29:24.9653275Z go: downloading github.com/opencontainers/go-digest v1.0.0 -2025-07-23T19:29:24.9663137Z go: downloading gotest.tools/v3 v3.4.0 -2025-07-23T19:29:24.9753294Z go: downloading github.com/klauspost/compress v1.15.15 -2025-07-23T19:29:25.0043269Z go: downloading github.com/ava-labs/firewood-go-ethhash/ffi v0.0.8 -2025-07-23T19:29:25.0078262Z go: downloading golang.org/x/oauth2 v0.21.0 -2025-07-23T19:29:25.0106249Z go: downloading github.com/golang-jwt/jwt/v4 v4.5.0 -2025-07-23T19:29:25.0297335Z go: downloading github.com/golang-jwt/jwt v3.2.2+incompatible -2025-07-23T19:29:25.0444200Z go: downloading github.com/cmars/basen v0.0.0-20150613233007-fe3947df716e -2025-07-23T19:29:25.0530049Z go: downloading launchpad.net/gocheck v0.0.0-20140225173054-000000000087 -2025-07-23T19:29:25.0538623Z go: downloading github.com/zondax/hid v0.9.2 -2025-07-23T19:29:25.0886213Z go: downloading github.com/sirupsen/logrus v1.9.0 -2025-07-23T19:29:27.1622813Z building avalanchego -2025-07-23T19:29:27.1741516Z Building AvalancheGo with [go version go1.23.9 linux/amd64]... diff --git a/logs_42241282643/AvalancheGo E2E Tests/6_Run e2e tests.txt b/logs_42241282643/AvalancheGo E2E Tests/6_Run e2e tests.txt deleted file mode 100644 index 6b063455be..0000000000 --- a/logs_42241282643/AvalancheGo E2E Tests/6_Run e2e tests.txt +++ /dev/null @@ -1,963 +0,0 @@ -2025-07-23T19:30:43.7222424Z ##[group]Run ava-labs/avalanchego/.github/actions/run-monitored-tmpnet-cmd@66ce7a7701db0c4b370f97b339478d5b5ebe919a -2025-07-23T19:30:43.7222947Z with: -2025-07-23T19:30:43.7223134Z run: ./scripts/run_task.sh test-e2e -2025-07-23T19:30:43.7223394Z run_env: AVALANCHEGO_CLONE_PATH=avalanchego -2025-07-23T19:30:43.7223636Z runtime: process -2025-07-23T19:30:43.7223848Z repository_owner: ava-labs -2025-07-23T19:30:43.7224307Z repository_name: coreth -2025-07-23T19:30:43.7224499Z workflow: CI -2025-07-23T19:30:43.7224674Z run_id: 16480013789 -2025-07-23T19:30:43.7224852Z run_number: 5026 -2025-07-23T19:30:43.7225017Z run_attempt: 1 -2025-07-23T19:30:43.7225188Z job: avalanchego_e2e -2025-07-23T19:30:43.7225384Z ##[endgroup] -2025-07-23T19:30:43.7329515Z ##[group]Run cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f -2025-07-23T19:30:43.7329899Z with: -2025-07-23T19:30:43.7330068Z enable_kvm: true -2025-07-23T19:30:43.7330251Z ##[endgroup] -2025-07-23T19:30:43.7351860Z ##[group]Run ${GITHUB_ACTION_PATH}/install-nix.sh -2025-07-23T19:30:43.7352247Z ${GITHUB_ACTION_PATH}/install-nix.sh -2025-07-23T19:30:43.7381163Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-07-23T19:30:43.7381476Z env: -2025-07-23T19:30:43.7381659Z INPUT_EXTRA_NIX_CONFIG: -2025-07-23T19:30:43.7381876Z INPUT_GITHUB_ACCESS_TOKEN: -2025-07-23T19:30:43.7382278Z INPUT_INSTALL_OPTIONS: -2025-07-23T19:30:43.7382484Z INPUT_INSTALL_URL: -2025-07-23T19:30:43.7382670Z INPUT_NIX_PATH: -2025-07-23T19:30:43.7382854Z INPUT_ENABLE_KVM: true -2025-07-23T19:30:43.7383446Z GITHUB_TOKEN: *** -2025-07-23T19:30:43.7383642Z ##[endgroup] -2025-07-23T19:30:43.7459293Z ##[group]Enabling KVM support -2025-07-23T19:30:43.7528601Z KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm" -2025-07-23T19:30:43.7825708Z Enabled KVM -2025-07-23T19:30:43.7826302Z ##[endgroup] -2025-07-23T19:30:43.7828400Z ##[group]Installing Nix -2025-07-23T19:30:43.8115711Z installer options: --no-channel-add --darwin-use-unencrypted-nix-store-volume --nix-extra-conf-file /tmp/tmp.ms8QZXhwC8/nix.conf --daemon --daemon-user-count 8 -2025-07-23T19:30:44.0860299Z * Host releases.nixos.org:443 was resolved. -2025-07-23T19:30:44.0860958Z * IPv6: 2a04:4e42:77::729 -2025-07-23T19:30:44.0861363Z * IPv4: 146.75.30.217 -2025-07-23T19:30:44.0861741Z * Trying 146.75.30.217:443... -2025-07-23T19:30:44.0911792Z * Connected to releases.nixos.org (146.75.30.217) port 443 -2025-07-23T19:30:44.0930230Z * ALPN: curl offers h2,http/1.1 -2025-07-23T19:30:44.0932424Z } [5 bytes data] -2025-07-23T19:30:44.0932902Z * TLSv1.3 (OUT), TLS handshake, Client hello (1): -2025-07-23T19:30:44.0933424Z } [512 bytes data] -2025-07-23T19:30:44.1142928Z * CAfile: /etc/ssl/certs/ca-certificates.crt -2025-07-23T19:30:44.1143496Z * CApath: /etc/ssl/certs -2025-07-23T19:30:44.1144204Z { [5 bytes data] -2025-07-23T19:30:44.1144669Z * TLSv1.3 (IN), TLS handshake, Server hello (2): -2025-07-23T19:30:44.1145193Z { [104 bytes data] -2025-07-23T19:30:44.1145619Z * TLSv1.2 (IN), TLS handshake, Certificate (11): -2025-07-23T19:30:44.1146148Z { [2827 bytes data] -2025-07-23T19:30:44.1150438Z * TLSv1.2 (IN), TLS handshake, Server key exchange (12): -2025-07-23T19:30:44.1151010Z { [300 bytes data] -2025-07-23T19:30:44.1154414Z * TLSv1.2 (IN), TLS handshake, Server finished (14): -2025-07-23T19:30:44.1154968Z { [4 bytes data] -2025-07-23T19:30:44.1155428Z * TLSv1.2 (OUT), TLS handshake, Client key exchange (16): -2025-07-23T19:30:44.1155983Z } [37 bytes data] -2025-07-23T19:30:44.1156450Z * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1): -2025-07-23T19:30:44.1157035Z } [1 bytes data] -2025-07-23T19:30:44.1157457Z * TLSv1.2 (OUT), TLS handshake, Finished (20): -2025-07-23T19:30:44.1157940Z } [16 bytes data] -2025-07-23T19:30:44.1205620Z * TLSv1.2 (IN), TLS handshake, Finished (20): -2025-07-23T19:30:44.1206114Z { [16 bytes data] -2025-07-23T19:30:44.1206732Z * SSL connection using TLSv1.2 / ECDHE-RSA-CHACHA20-POLY1305 / X25519 / RSASSA-PSS -2025-07-23T19:30:44.1207403Z * ALPN: server accepted h2 -2025-07-23T19:30:44.1208663Z * Server certificate: -2025-07-23T19:30:44.1209092Z * subject: CN=releases.nixos.org -2025-07-23T19:30:44.1209523Z * start date: Oct 11 20:56:16 2024 GMT -2025-07-23T19:30:44.1209950Z * expire date: Nov 12 20:56:15 2025 GMT -2025-07-23T19:30:44.1210634Z * subjectAltName: host "releases.nixos.org" matched cert's "releases.nixos.org" -2025-07-23T19:30:44.1211554Z * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2024 Q4 -2025-07-23T19:30:44.1212179Z * SSL certificate verify ok. -2025-07-23T19:30:44.1212922Z * Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption -2025-07-23T19:30:44.1214203Z * Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption -2025-07-23T19:30:44.1214852Z * Certificate level 2: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption -2025-07-23T19:30:44.1215292Z } [5 bytes data] -2025-07-23T19:30:44.1215475Z * using HTTP/2 -2025-07-23T19:30:44.1215811Z * [HTTP/2] [1] OPENED stream for https://releases.nixos.org/nix/nix-2.26.3/install -2025-07-23T19:30:44.1216181Z * [HTTP/2] [1] [:method: GET] -2025-07-23T19:30:44.1216407Z * [HTTP/2] [1] [:scheme: https] -2025-07-23T19:30:44.1216677Z * [HTTP/2] [1] [:authority: releases.nixos.org] -2025-07-23T19:30:44.1216973Z * [HTTP/2] [1] [:path: /nix/nix-2.26.3/install] -2025-07-23T19:30:44.1217460Z * [HTTP/2] [1] [user-agent: curl/8.5.0] -2025-07-23T19:30:44.1217712Z * [HTTP/2] [1] [accept: */*] -2025-07-23T19:30:44.1217925Z } [5 bytes data] -2025-07-23T19:30:44.1218127Z > GET /nix/nix-2.26.3/install HTTP/2 -2025-07-23T19:30:44.1218375Z > Host: releases.nixos.org -2025-07-23T19:30:44.1218596Z > User-Agent: curl/8.5.0 -2025-07-23T19:30:44.1218799Z > Accept: */* -2025-07-23T19:30:44.1218965Z > -2025-07-23T19:30:44.1255787Z { [5 bytes data] -2025-07-23T19:30:44.1273021Z < HTTP/2 200 -2025-07-23T19:30:44.1273487Z < last-modified: Wed, 05 Mar 2025 18:21:15 GMT -2025-07-23T19:30:44.1274211Z < etag: "c6753896884bce9b95ec3ca7be157ef6" -2025-07-23T19:30:44.1274712Z < x-amz-server-side-encryption: AES256 -2025-07-23T19:30:44.1275155Z < content-type: text/plain -2025-07-23T19:30:44.1275425Z < server: AmazonS3 -2025-07-23T19:30:44.1275640Z < via: 1.1 varnish, 1.1 varnish -2025-07-23T19:30:44.1275893Z < access-control-allow-origin: * -2025-07-23T19:30:44.1276141Z < accept-ranges: bytes -2025-07-23T19:30:44.1276360Z < date: Wed, 23 Jul 2025 19:30:44 GMT -2025-07-23T19:30:44.1276589Z < age: 9620 -2025-07-23T19:30:44.1276846Z < x-served-by: cache-dub4357-DUB, cache-iad-kiad7000128-IAD -2025-07-23T19:30:44.1277150Z < x-cache: HIT, HIT -2025-07-23T19:30:44.1277341Z < x-cache-hits: 3, 1 -2025-07-23T19:30:44.1277540Z < content-length: 4267 -2025-07-23T19:30:44.1277722Z < -2025-07-23T19:30:44.1277879Z { [4267 bytes data] -2025-07-23T19:30:44.1278125Z * Connection #0 to host releases.nixos.org left intact -2025-07-23T19:30:44.1353038Z downloading Nix 2.26.3 binary tarball for x86_64-linux from 'https://releases.nixos.org/nix/nix-2.26.3/nix-2.26.3-x86_64-linux.tar.xz' to '/tmp/nix-binary-tarball-unpack.APbj8s7Zdj'... -2025-07-23T19:30:44.1402868Z % Total % Received % Xferd Average Speed Time Time Time Current -2025-07-23T19:30:44.1404401Z Dload Upload Total Spent Left Speed -2025-07-23T19:30:44.1404781Z -2025-07-23T19:30:44.3121369Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 -2025-07-23T19:30:44.3122095Z 100 22.6M 100 22.6M 0 0 131M 0 --:--:-- --:--:-- --:--:-- 132M -2025-07-23T19:30:45.8649060Z Note: a multi-user installation is possible. See https://nixos.org/manual/nix/stable/installation/installing-binary.html#multi-user-installation -2025-07-23T19:30:45.8658608Z Warning: the flag --darwin-use-unencrypted-nix-store-volume -2025-07-23T19:30:45.8659509Z is no longer needed and will be removed in the future. -2025-07-23T19:30:45.8659789Z -2025-07-23T19:30:45.8669592Z Switching to the Multi-user Installer -2025-07-23T19:30:45.8770176Z Welcome to the Multi-User Nix Installation -2025-07-23T19:30:45.8780326Z  -2025-07-23T19:30:45.8780945Z This installation tool will set up your computer with the Nix package -2025-07-23T19:30:45.8781544Z manager. This will happen in a few stages: -2025-07-23T19:30:45.8781800Z -2025-07-23T19:30:45.8782026Z 1. Make sure your computer doesn't already have Nix. If it does, I -2025-07-23T19:30:45.8782787Z will show you instructions on how to clean up your old install. -2025-07-23T19:30:45.8783284Z -2025-07-23T19:30:45.8783614Z 2. Show you what I am going to install and where. Then I will ask -2025-07-23T19:30:45.8784293Z if you are ready to continue. -2025-07-23T19:30:45.8784501Z -2025-07-23T19:30:45.8784894Z 3. Create the system users (uids [30001..30008]) and groups (gid 30000) -2025-07-23T19:30:45.8785538Z that the Nix daemon uses to run builds. To create system users -2025-07-23T19:30:45.8786066Z in a different range, exit and run this tool again with -2025-07-23T19:30:45.8786467Z NIX_FIRST_BUILD_UID set. -2025-07-23T19:30:45.8786660Z -2025-07-23T19:30:45.8786852Z 4. Perform the basic installation of the Nix files daemon. -2025-07-23T19:30:45.8787145Z -2025-07-23T19:30:45.8787384Z 5. Configure your shell to import special Nix Profile files, so you -2025-07-23T19:30:45.8787813Z can use Nix. -2025-07-23T19:30:45.8787956Z -2025-07-23T19:30:45.8788264Z 6. Start the Nix daemon. -2025-07-23T19:30:45.8788440Z -2025-07-23T19:30:45.8788758Z Would you like to see a more detailed list of what I will do? -2025-07-23T19:30:45.8789274Z No TTY, assuming you would say yes :) -2025-07-23T19:30:45.8792593Z -2025-07-23T19:30:45.8792751Z I will: -2025-07-23T19:30:45.8792945Z -2025-07-23T19:30:45.8793269Z - make sure your computer doesn't already have Nix files -2025-07-23T19:30:45.8794067Z (if it does, I will tell you how to clean them up.) -2025-07-23T19:30:45.8794608Z - create local users (see the list above for the users I'll make) -2025-07-23T19:30:45.8795052Z - create a local group (nixbld) -2025-07-23T19:30:45.8795373Z - install Nix in /nix -2025-07-23T19:30:45.8795677Z - create a configuration file in /etc/nix -2025-07-23T19:30:45.8796082Z - set up the "default profile" by creating some Nix-related files in -2025-07-23T19:30:45.8796444Z /root -2025-07-23T19:30:45.8807872Z - back up /etc/bash.bashrc to /etc/bash.bashrc.backup-before-nix -2025-07-23T19:30:45.8808732Z - update /etc/bash.bashrc to include some Nix configuration -2025-07-23T19:30:45.8819543Z - load and start a service (at /etc/systemd/system/nix-daemon.service -2025-07-23T19:30:45.8820424Z and /etc/systemd/system/nix-daemon.socket) for nix-daemon -2025-07-23T19:30:45.8820706Z -2025-07-23T19:30:45.8821567Z Ready to continue? -2025-07-23T19:30:45.8822094Z No TTY, assuming you would say yes :) -2025-07-23T19:30:45.8844843Z -2025-07-23T19:30:45.8845464Z ---- let's talk about sudo ----------------------------------------------------- -2025-07-23T19:30:45.8855841Z This script is going to call sudo a lot. Normally, it would show you -2025-07-23T19:30:45.8856629Z exactly what commands it is running and why. However, the script is -2025-07-23T19:30:45.8857096Z run in a headless fashion, like this: -2025-07-23T19:30:45.8857313Z -2025-07-23T19:30:45.8857532Z $ curl -L https://nixos.org/nix/install | sh -2025-07-23T19:30:45.8857934Z -2025-07-23T19:30:45.8858272Z or maybe in a CI pipeline. Because of that, I'm going to skip the -2025-07-23T19:30:45.8858942Z verbose output in the interest of brevity. -2025-07-23T19:30:45.8859175Z -2025-07-23T19:30:45.8859282Z If you would like to -2025-07-23T19:30:45.8859552Z see the output, try like this: -2025-07-23T19:30:45.8859744Z -2025-07-23T19:30:45.8859970Z $ curl -L -o install-nix https://nixos.org/nix/install -2025-07-23T19:30:45.8860379Z $ sh ./install-nix -2025-07-23T19:30:45.8860530Z -2025-07-23T19:30:45.8860535Z -2025-07-23T19:30:45.8860757Z ~~> Checking for artifacts of previous installs -2025-07-23T19:30:45.8868005Z Before I try to install, I'll check for signs Nix already is or has -2025-07-23T19:30:45.8868842Z been installed on this system. -2025-07-23T19:30:45.8900869Z -2025-07-23T19:30:45.8901983Z ---- Nix config report --------------------------------------------------------- -2025-07-23T19:30:45.8902860Z  Temp Dir: /tmp/tmp.CUrud6LmxM -2025-07-23T19:30:45.8903474Z  Nix Root: /nix -2025-07-23T19:30:45.8904158Z  Build Users: 8 -2025-07-23T19:30:45.8904635Z  Build Group ID: 30000 -2025-07-23T19:30:45.8904977Z Build Group Name: nixbld -2025-07-23T19:30:45.8905178Z -2025-07-23T19:30:45.8905303Z build users: -2025-07-23T19:30:45.8905589Z  Username: UID -2025-07-23T19:30:45.8931932Z  nixbld1: 30001 -2025-07-23T19:30:45.8942324Z  nixbld2: 30002 -2025-07-23T19:30:45.8952646Z  nixbld3: 30003 -2025-07-23T19:30:45.8963225Z  nixbld4: 30004 -2025-07-23T19:30:45.8973705Z  nixbld5: 30005 -2025-07-23T19:30:45.8984418Z  nixbld6: 30006 -2025-07-23T19:30:45.8994842Z  nixbld7: 30007 -2025-07-23T19:30:45.9005443Z  nixbld8: 30008 -2025-07-23T19:30:45.9005817Z -2025-07-23T19:30:45.9006128Z Ready to continue? -2025-07-23T19:30:45.9006868Z No TTY, assuming you would say yes :) -2025-07-23T19:30:45.9007332Z -2025-07-23T19:30:45.9007707Z ~~> Setting up the build group nixbld -2025-07-23T19:30:45.9627443Z  Created: Yes -2025-07-23T19:30:45.9661211Z -2025-07-23T19:30:45.9661874Z ~~> Setting up the build user nixbld1 -2025-07-23T19:30:45.9839479Z useradd warning: nixbld1's uid 30001 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:45.9937924Z  Created: Yes -2025-07-23T19:30:45.9945807Z  Hidden: Yes -2025-07-23T19:30:45.9967815Z  Home Directory: /var/empty -2025-07-23T19:30:45.9990193Z  Note: Nix build user 1 -2025-07-23T19:30:46.0010618Z  Logins Disabled: Yes -2025-07-23T19:30:46.0038258Z  Member of nixbld: Yes -2025-07-23T19:30:46.0063120Z  PrimaryGroupID: 30000 -2025-07-23T19:30:46.0076015Z -2025-07-23T19:30:46.0077412Z ~~> Setting up the build user nixbld2 -2025-07-23T19:30:46.0214593Z useradd warning: nixbld2's uid 30002 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:46.0312858Z  Created: Yes -2025-07-23T19:30:46.0320419Z  Hidden: Yes -2025-07-23T19:30:46.0347772Z  Home Directory: /var/empty -2025-07-23T19:30:46.0373219Z  Note: Nix build user 2 -2025-07-23T19:30:46.0394651Z  Logins Disabled: Yes -2025-07-23T19:30:46.0417364Z  Member of nixbld: Yes -2025-07-23T19:30:46.0435715Z  PrimaryGroupID: 30000 -2025-07-23T19:30:46.0446922Z -2025-07-23T19:30:46.0447281Z ~~> Setting up the build user nixbld3 -2025-07-23T19:30:46.0580716Z useradd warning: nixbld3's uid 30003 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:46.0679666Z  Created: Yes -2025-07-23T19:30:46.0685474Z  Hidden: Yes -2025-07-23T19:30:46.0703861Z  Home Directory: /var/empty -2025-07-23T19:30:46.0724915Z  Note: Nix build user 3 -2025-07-23T19:30:46.0742805Z  Logins Disabled: Yes -2025-07-23T19:30:46.0761907Z  Member of nixbld: Yes -2025-07-23T19:30:46.0780067Z  PrimaryGroupID: 30000 -2025-07-23T19:30:46.0791232Z -2025-07-23T19:30:46.0791688Z ~~> Setting up the build user nixbld4 -2025-07-23T19:30:46.0924314Z useradd warning: nixbld4's uid 30004 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:46.1013378Z  Created: Yes -2025-07-23T19:30:46.1019257Z  Hidden: Yes -2025-07-23T19:30:46.1037791Z  Home Directory: /var/empty -2025-07-23T19:30:46.1058449Z  Note: Nix build user 4 -2025-07-23T19:30:46.1076799Z  Logins Disabled: Yes -2025-07-23T19:30:46.1095661Z  Member of nixbld: Yes -2025-07-23T19:30:46.1113703Z  PrimaryGroupID: 30000 -2025-07-23T19:30:46.1125610Z -2025-07-23T19:30:46.1126041Z ~~> Setting up the build user nixbld5 -2025-07-23T19:30:46.1259107Z useradd warning: nixbld5's uid 30005 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:46.1351106Z  Created: Yes -2025-07-23T19:30:46.1357180Z  Hidden: Yes -2025-07-23T19:30:46.1377362Z  Home Directory: /var/empty -2025-07-23T19:30:46.1398619Z  Note: Nix build user 5 -2025-07-23T19:30:46.1416567Z  Logins Disabled: Yes -2025-07-23T19:30:46.1435732Z  Member of nixbld: Yes -2025-07-23T19:30:46.1453855Z  PrimaryGroupID: 30000 -2025-07-23T19:30:46.1464980Z -2025-07-23T19:30:46.1465415Z ~~> Setting up the build user nixbld6 -2025-07-23T19:30:46.1597846Z useradd warning: nixbld6's uid 30006 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:46.1681527Z  Created: Yes -2025-07-23T19:30:46.1687416Z  Hidden: Yes -2025-07-23T19:30:46.1705759Z  Home Directory: /var/empty -2025-07-23T19:30:46.1726435Z  Note: Nix build user 6 -2025-07-23T19:30:46.1745306Z  Logins Disabled: Yes -2025-07-23T19:30:46.1763214Z  Member of nixbld: Yes -2025-07-23T19:30:46.1781338Z  PrimaryGroupID: 30000 -2025-07-23T19:30:46.1791880Z -2025-07-23T19:30:46.1792326Z ~~> Setting up the build user nixbld7 -2025-07-23T19:30:46.1923157Z useradd warning: nixbld7's uid 30007 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:46.2013669Z  Created: Yes -2025-07-23T19:30:46.2019914Z  Hidden: Yes -2025-07-23T19:30:46.2038360Z  Home Directory: /var/empty -2025-07-23T19:30:46.2059075Z  Note: Nix build user 7 -2025-07-23T19:30:46.2077037Z  Logins Disabled: Yes -2025-07-23T19:30:46.2095636Z  Member of nixbld: Yes -2025-07-23T19:30:46.2113383Z  PrimaryGroupID: 30000 -2025-07-23T19:30:46.2124173Z -2025-07-23T19:30:46.2124711Z ~~> Setting up the build user nixbld8 -2025-07-23T19:30:46.2258160Z useradd warning: nixbld8's uid 30008 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:46.2347321Z  Created: Yes -2025-07-23T19:30:46.2353450Z  Hidden: Yes -2025-07-23T19:30:46.2374246Z  Home Directory: /var/empty -2025-07-23T19:30:46.2394845Z  Note: Nix build user 8 -2025-07-23T19:30:46.2412446Z  Logins Disabled: Yes -2025-07-23T19:30:46.2431769Z  Member of nixbld: Yes -2025-07-23T19:30:46.2450204Z  PrimaryGroupID: 30000 -2025-07-23T19:30:46.2450578Z -2025-07-23T19:30:46.2451166Z ~~> Setting up the basic directory structure -2025-07-23T19:30:46.2587139Z install: creating directory '/nix' -2025-07-23T19:30:46.2587811Z install: creating directory '/nix/var' -2025-07-23T19:30:46.2588417Z install: creating directory '/nix/var/log' -2025-07-23T19:30:46.2589106Z install: creating directory '/nix/var/log/nix' -2025-07-23T19:30:46.2589828Z install: creating directory '/nix/var/log/nix/drvs' -2025-07-23T19:30:46.2590606Z install: creating directory '/nix/var/nix' -2025-07-23T19:30:46.2591311Z install: creating directory '/nix/var/nix/db' -2025-07-23T19:30:46.2592072Z install: creating directory '/nix/var/nix/gcroots' -2025-07-23T19:30:46.2593000Z install: creating directory '/nix/var/nix/profiles' -2025-07-23T19:30:46.2594087Z install: creating directory '/nix/var/nix/temproots' -2025-07-23T19:30:46.2595111Z install: creating directory '/nix/var/nix/userpool' -2025-07-23T19:30:46.2596172Z install: creating directory '/nix/var/nix/daemon-socket' -2025-07-23T19:30:46.2597317Z install: creating directory '/nix/var/nix/gcroots/per-user' -2025-07-23T19:30:46.2598506Z install: creating directory '/nix/var/nix/profiles/per-user' -2025-07-23T19:30:46.2671530Z install: creating directory '/nix/store' -2025-07-23T19:30:46.2750133Z install: creating directory '/etc/nix' -2025-07-23T19:30:46.2760000Z -2025-07-23T19:30:46.2760313Z ~~> Installing Nix -2025-07-23T19:30:46.4754686Z  Alright! We have our first nix at /nix/store/x3235311q3n51rppm2y2ycwd7nb3mgpn-nix-2.26.3 -2025-07-23T19:30:46.5188989Z Just finished getting the nix database ready. -2025-07-23T19:30:46.5191772Z -2025-07-23T19:30:46.5193001Z ~~> Setting up shell profiles: /etc/bashrc /etc/profile.d/nix.sh /etc/zshrc /etc/bash.bashrc /etc/zsh/zshrc -2025-07-23T19:30:46.5367115Z  -2025-07-23T19:30:46.5367513Z # Nix -2025-07-23T19:30:46.5368100Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-07-23T19:30:46.5369097Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-07-23T19:30:46.5369710Z fi -2025-07-23T19:30:46.5370004Z # End Nix -2025-07-23T19:30:46.5370187Z -2025-07-23T19:30:46.5543077Z -2025-07-23T19:30:46.5543374Z # Nix -2025-07-23T19:30:46.5544190Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-07-23T19:30:46.5545083Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-07-23T19:30:46.5545466Z fi -2025-07-23T19:30:46.5545647Z # End Nix -2025-07-23T19:30:46.5545788Z -2025-07-23T19:30:46.5715264Z -2025-07-23T19:30:46.5715446Z # Nix -2025-07-23T19:30:46.5716075Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-07-23T19:30:46.5716814Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-07-23T19:30:46.5717185Z fi -2025-07-23T19:30:46.5717393Z # End Nix -2025-07-23T19:30:46.5717844Z -2025-07-23T19:30:46.5876929Z -2025-07-23T19:30:46.5877109Z # Nix -2025-07-23T19:30:46.5877706Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-07-23T19:30:46.5878614Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-07-23T19:30:46.5879241Z fi -2025-07-23T19:30:46.5879528Z # End Nix -2025-07-23T19:30:46.5879737Z -2025-07-23T19:30:46.5902073Z -2025-07-23T19:30:46.5903095Z ~~> Setting up shell profiles for Fish with conf.d/nix.fish inside /etc/fish /usr/local/etc/fish /opt/homebrew/etc/fish /opt/local/etc/fish -2025-07-23T19:30:46.5970366Z  -2025-07-23T19:30:46.5971968Z ~~> Setting up the default profile -2025-07-23T19:30:46.6275335Z installing 'nix-2.26.3' -2025-07-23T19:30:46.6410078Z building '/nix/store/5afca9ydks0pp5szkwwhi7a6m2zmgk9g-user-environment.drv'... -2025-07-23T19:30:46.6820309Z installing 'nss-cacert-3.107' -2025-07-23T19:30:46.6953201Z building '/nix/store/ilxzpc39hcw5jr229rmajjkyz1a0fym1-user-environment.drv'... -2025-07-23T19:30:46.7165967Z  -2025-07-23T19:30:46.7166530Z ~~> Setting up the nix-daemon systemd service -2025-07-23T19:30:46.7549858Z Created symlink /etc/systemd/system/nix-daemon.service → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.service. -2025-07-23T19:30:47.0366293Z Created symlink /etc/systemd/system/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. -2025-07-23T19:30:47.0368199Z Created symlink /etc/systemd/system/sockets.target.wants/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. -2025-07-23T19:30:47.6339402Z Alright! We're done! -2025-07-23T19:30:47.6363433Z Try it! Open a new terminal, and type: -2025-07-23T19:30:47.6364131Z -2025-07-23T19:30:47.6364999Z $ nix-shell -p nix-info --run "nix-info -m" -2025-07-23T19:30:47.6365483Z -2025-07-23T19:30:47.6366019Z Thank you for using this installer. If you have any feedback or need -2025-07-23T19:30:47.6366649Z help, don't hesitate: -2025-07-23T19:30:47.6366902Z -2025-07-23T19:30:47.6367070Z You can open an issue at -2025-07-23T19:30:47.6367728Z https://github.com/NixOS/nix/issues/new?labels=installer&template=installer.md -2025-07-23T19:30:47.6368209Z -2025-07-23T19:30:47.6368483Z Or get in touch with the community: https://nixos.org/community -2025-07-23T19:30:47.6386412Z -2025-07-23T19:30:47.6387360Z ---- Reminders ----------------------------------------------------------------- -2025-07-23T19:30:47.6388102Z [ 1 ] -2025-07-23T19:30:47.6388657Z Nix won't work in active shell sessions until you restart them. -2025-07-23T19:30:47.6389142Z -2025-07-23T19:30:47.7090812Z ##[endgroup] -2025-07-23T19:30:47.7168802Z ##[group]Run /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --command echo "dependencies installed" -2025-07-23T19:30:47.7170404Z /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --command echo "dependencies installed" -2025-07-23T19:30:47.7204362Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-07-23T19:30:47.7204743Z env: -2025-07-23T19:30:47.7204956Z TMPDIR: /home/runner/work/_temp -2025-07-23T19:30:47.7205227Z ##[endgroup] -2025-07-23T19:30:47.7276813Z No local flake found, will attempt to use avalanchego flake -2025-07-23T19:30:47.7364470Z Starting nix shell for github:ava-labs/avalanchego?ref=v1.13.3-rc.1 -2025-07-23T19:30:47.9648370Z unpacking 'github:ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a' into the Git cache... -2025-07-23T19:30:49.6609353Z copying path '/nix/store/i99indk3y6pc3sm0k1xx3nakm193lqzb-source' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4888737Z copying path '/nix/store/899rx4l5zz1za8nx7ijp7swv5ibc8wx2-git-2.47.2-doc' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4894813Z copying path '/nix/store/zpab59ialz19x6f65jbjf5xb8waa54av-iana-etc-20240318' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4920216Z copying path '/nix/store/dgzz9k53hz1qgklnj9667xzliyidj9cs-mailcap-2.1.54' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4926683Z copying path '/nix/store/hnpph37w6p5jfspwf5pksljpf0wqwjg3-perl5.40.0-Digest-HMAC-1.04' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4929944Z copying path '/nix/store/cnb01qfmg8c3irp630nplhwa201d7xsr-perl5.40.0-FCGI-ProcManager-0.28' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4933213Z copying path '/nix/store/v657ak4hdkixvq99rk3qvyh28in945dv-perl5.40.0-HTML-TagCloud-0.38' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4947822Z copying path '/nix/store/9qrv0d0yd9wss610gjzv3507ry6v9mzw-perl5.40.0-URI-5.21' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4951260Z copying path '/nix/store/pz7y4qd8lyhg9y6wmb9hynivx36f53zp-perl5.40.0-libnet-3.15' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4956786Z copying path '/nix/store/l6mypzy4rvkxd5kwzs18d88syirislib-tzdata-2024b' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4969874Z copying path '/nix/store/czlhi3r9b6ip4xyynwibfhm458ljwsir-gcc-13.3.0-libgcc' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4974496Z copying path '/nix/store/d8qbcrirc6jidfacy0qa50zy07i15xcz-gnu-config-2024-01-01' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4997643Z copying path '/nix/store/rscnjwdmhya0wcdmbygr3jpz6p39kvhr-perl5.40.0-Encode-Locale-1.05' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.4999886Z copying path '/nix/store/74bbxwiamv62d2l089f1r8apv295vsry-perl5.40.0-HTML-Tagset-3.20' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5003808Z copying path '/nix/store/krx6xw6wxakapdkviirq57yh3nl3227h-perl5.40.0-IO-HTML-1.004' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5008455Z copying path '/nix/store/w9yrswzdifcjhg0righ76aqb6bpslhkb-perl5.40.0-Mozilla-CA-20230821' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5010630Z copying path '/nix/store/3r0pprxsd9n52nb2yqq3idwb75d0spzd-perl5.40.0-LWP-MediaTypes-6.04' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5216395Z copying path '/nix/store/swnhrfysvmwjvibcafm0im377pcfs80v-curl-8.12.1-man' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5279884Z copying path '/nix/store/x6i8jiz3yv3h209xfbz9a3ch1sm16167-dns-root-data-2024-06-20' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5286584Z copying path '/nix/store/maxa3xhmxggrc5v2vc0c3pjb79hjlkp9-glibc-2.40-66' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5306793Z copying path '/nix/store/dvsai0ym9czjl5mcsarcdwccb70615n4-linux-headers-6.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5318008Z copying path '/nix/store/vlfgix8rcbj3l9yk0rna1damxkafbq18-perl5.40.0-Net-HTTP-6.23' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5321817Z copying path '/nix/store/5ahjfkydg49xvbr3vghhv317prgspnf3-mirrors-list' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5325295Z copying path '/nix/store/970fk2m63qra4ybkpp99rw7mld9fphlv-nghttp2-1.64.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5338879Z copying path '/nix/store/frpqzb3223826xq72s0fcjmjmj50wpyn-perl5.40.0-Authen-SASL-2.1700' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5341825Z copying path '/nix/store/ldlsmrf2rrq28s08mzjk245vr26dwwhi-perl5.40.0-Test-RequiresInternet-0.05' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5343524Z copying path '/nix/store/5xvxvpl9armf0p6y9m4g1zl1mypvr9m7-perl5.40.0-TimeDate-2.33' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5348169Z copying path '/nix/store/hz5m52dx8x6vvi5pp0yikxb3b05bmi2j-perl5.40.0-Test-Needs-0.002010' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5386052Z copying path '/nix/store/6aqxgf5ygcscqsh4p9krd0dz2hc1cn0w-perl5.40.0-WWW-RobotRules-6.02' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5388383Z copying path '/nix/store/vvjpgyk6jgd6k74pgpjrln6m6aqyiaig-perl5.40.0-Try-Tiny-0.31' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5410496Z copying path '/nix/store/lj7p9q5kgmdcq768rvsgvjndi42mjcn8-publicsuffix-list-0-unstable-2024-10-25' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5492069Z copying path '/nix/store/i9ymkbklv1q9yzl7wwx7300wbkqdln0r-update-autotools-gnu-config-scripts-hook' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5614608Z copying path '/nix/store/2h648f4xlzszyc01yf67xd2rgira65js-perl5.40.0-Test-Fatal-0.017' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.5675727Z copying path '/nix/store/shx8jax9b662cd9nlml731hh9wks24v1-perl5.40.0-HTTP-Date-6.06' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.6090359Z copying path '/nix/store/0m34prvcx3d3vd9f4djbaqji7yb9swsh-perl5.40.0-HTTP-CookieJar-0.014' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.6098443Z copying path '/nix/store/i9hiqc4dfksm9cpqvff39smfpn49zbj6-perl5.40.0-File-Listing-6.16' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.6241374Z copying path '/nix/store/19402vwa1rndilww6fpbviz0lza8846p-kind-0.24.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.6248053Z copying path '/nix/store/i7r45jjmvfxiw8j7ihjx51jachylq1si-protoc-gen-go-1.35.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.6251337Z copying path '/nix/store/1fqgvq0i498w4ynywyj224i49izzzqrk-protoc-gen-go-grpc-1.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.6255165Z copying path '/nix/store/as8g73awbgrhpf5p6qjnrd5v9anw74ix-go-task-3.39.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:05.6261744Z copying path '/nix/store/23cshhh8k7z46gadr86krv15xphggawm-kubectl-1.31.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1072195Z copying path '/nix/store/vlgwyb076hkz7yv96sjnj9msb1jn1ggz-attr-2.5.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1078584Z copying path '/nix/store/c9z2sp8dyx1k0zk374v1142hmphashd0-buf-1.47.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1080230Z copying path '/nix/store/wg9gg3zkwcqhyycj0vkfnhgk5a4z9faq-ed-1.20.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1081802Z copying path '/nix/store/qiisx6c7qpyzq522j3icsfhj8ayw6ah4-bzip2-1.0.8' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1084407Z copying path '/nix/store/83s1wqvrx7yvy3g6dmdr2icgg3qqbjcp-brotli-1.1.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1086265Z copying path '/nix/store/3p3fwczck2yn1wwfjnymzkz8w11vbvg7-gawk-5.3.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1092215Z copying path '/nix/store/mhd0rk497xm0xnip7262xdw9bylvzh99-gcc-13.3.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1094212Z copying path '/nix/store/7zv1sq1k25gk2rvgxnm262vp5hydkv1a-gdbm-1.24-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1098733Z copying path '/nix/store/fcqfyri9kljs5jd7h556f004qmci1qin-expand-response-params' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1100601Z copying path '/nix/store/2kiskq24j06g4qw3xs8zsy2dkawh4gxk-glibc-2.40-66-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1101994Z copying path '/nix/store/8vpg72ik2kgxfj05lc56hkqrdrfl8xi9-bash-5.2p37' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1103345Z copying path '/nix/store/8k19h07hh2g1w5kp5yglzddswnvdmxpy-gmp-6.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1104920Z copying path '/nix/store/m3da56j3r7h4hp0kr8v1xsnk16x900yf-gnumake-4.4.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1106351Z copying path '/nix/store/0hv5ymwkczx3ak8h3yldfbwbab33jnrw-expat-2.6.4' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1107601Z copying path '/nix/store/cfb4pxnfh2sf4csk8xh7abfqv96k66nh-glibc-2.40-66-getent' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1319332Z copying path '/nix/store/3ks7b6p43dpvnlnxgvlcy2jaf1np37p2-gnused-4.9' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1323293Z copying path '/nix/store/yyfzan4mn874v885jy6fs598gjb31c4l-bzip2-1.0.8-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1357904Z copying path '/nix/store/dyizbk50iglbibrbwbgw2mhgskwb6ham-acl-2.3.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1402397Z copying path '/nix/store/1fby1pxf0z16lgl728i2sqwqr2hrw2h8-json-c-0.17' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1405900Z copying path '/nix/store/r4p475lxvaklr9rj8l2a4sahkx5c0209-getent-glibc-2.40-66' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1471050Z copying path '/nix/store/mwwpv4k7skbx4vr2qjc89pvs7mhmgapb-k9s-0.32.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1516089Z copying path '/nix/store/79kh226vw8rrk62jbs27hdad1clwy447-keyutils-1.6.3-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1851175Z copying path '/nix/store/wnsn67xb3i072b6i496y002byvc3ipa3-kubernetes-helm-3.16.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.1937167Z copying path '/nix/store/q57zi48njdcgxy4n8d5lm5pf746drc8f-isl-0.20' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2027264Z copying path '/nix/store/bpzy7snv1xr7s1z2xi7bw0q5z9j6g1gg-libantlr3c-3.4' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2073585Z copying path '/nix/store/ky06iawcwsvxmx8yw66y2a7iy7b14yii-libapparmor-4.0.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2241357Z copying path '/nix/store/0iabf1jhsfrrxkdi599kb8m37p82yr1z-audit-4.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2246241Z copying path '/nix/store/nc394xps4al1r99ziabqvajbkrhxr5b7-gzip-1.13' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2363837Z copying path '/nix/store/81awch8mhqanda1vy0c09bflgra4cxh0-glibc-2.40-66-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2370012Z copying path '/nix/store/fx6mfndjsbb0dqn9jzf1ksz9wf1dlrq7-libcap-2.70-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2409283Z copying path '/nix/store/pmg7hw4ar16dhx5hk6jswvxy349wzsm7-gnutar-1.35' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2473076Z copying path '/nix/store/7yf5ijcl2lh90xs5nkrdpfdvcmc9fnc5-libcbor-0.11.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2597881Z copying path '/nix/store/bldybfhh9v9dvpms8kh87v1a6jp6i28p-libevent-2.1.12' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2721596Z copying path '/nix/store/wxgvd9mivxdbahxidq751gxyz7x7jb8n-libffi-3.4.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2859136Z copying path '/nix/store/p0c3g3dxr818lggbk6ms3nhm97g0pir9-libgpg-error-1.50' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.2893355Z copying path '/nix/store/2w8a5z0rcs4fk3ds3fnd03x6syjjl1hb-libmnl-1.0.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.3141650Z copying path '/nix/store/ywvi2y4yv3qyh0phw9y2ji17smh8nawj-libnfnetlink-1.0.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.3270653Z copying path '/nix/store/dg6d7zs1bwnhwb3sd3xdbldvpa163a5z-libnl-3.10.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.3354850Z copying path '/nix/store/xxc6rkndd68cq1225asn380bbj0512dg-libpsl-0.21.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.3441707Z copying path '/nix/store/qhs6zflzhdr11j6byf1c1j52z39hnaaw-db-4.8.30' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.3618291Z copying path '/nix/store/8g8wdqid20924fbppbljsl6l7gr0p21j-gettext-0.21.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.3688909Z copying path '/nix/store/dsxb6qvi21bzy21c98kb71wfbdj4lmz7-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.3948871Z copying path '/nix/store/nn7nj7xq8gdfyxqhchphzia7i34rwb0v-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.4119664Z copying path '/nix/store/96m2mjx55syyky6zymjnbl3pvgxlwchb-libnftnl-1.2.8' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.4124937Z copying path '/nix/store/rq8lq7r8vjqrbn2bgfglm9dxfi83gdg9-icu4c-74.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.4458651Z copying path '/nix/store/17195j62sjxjn0xwnmj3icr01n3d678r-libnetfilter_conntrack-1.1.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.4501040Z copying path '/nix/store/68vmpyiabh89l7hbp9z2hmwci74vnfi4-libseccomp-2.5.5-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.4723244Z copying path '/nix/store/wr7w1x0x1j4qli60wm22q3bc02dga08c-libtasn1-4.20.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.4886357Z copying path '/nix/store/hnh6ivl105y4sw0ifv4kbihrvbddmlkm-libxcrypt-4.4.36' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.5065307Z copying path '/nix/store/9yh47sg27z9263ll65d414rgcyrclk57-libxml2-2.13.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.5555145Z copying path '/nix/store/99jfkvhck3c2675n2cy71g40km6m0pf9-libassuan-2.5.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.5616502Z copying path '/nix/store/h9c111ckc8wg3ksxb7kj8cwhgaj52118-libgcrypt-1.10.3-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.5646799Z copying path '/nix/store/p9k3wzaw6d3wjgcbrfv2g1chj0mj2inb-lz4-1.10.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.5907568Z copying path '/nix/store/yh2c9f04q1vcfhpkamidrg3sdnwk5bvy-mpdecimal-4.0.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.5909216Z copying path '/nix/store/1h2yigiwy6bgpyzlywj36s5nqkgca8bv-libpcap-1.10.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.6077462Z copying path '/nix/store/9m68vvhnsq5cpkskphgw84ikl9m6wjwp-coreutils-9.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.6080493Z copying path '/nix/store/b75dbfz0gria25kn2qlfpnmp39h31spw-mpfr-4.2.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.6357218Z copying path '/nix/store/qvrp85i3yc9vw5x1vyx714m03jsf60rc-cvc4-1.8' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.6365662Z copying path '/nix/store/mgpn83jmnf37ky77a8qy6m466qqmlyqk-cln-1.3.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.7113405Z copying path '/nix/store/6s0zzvp9in28jkmzwh5p69v1zwpi5mi4-linux-pam-1.6.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.7438754Z copying path '/nix/store/z7ndn3k8zfjrf713gq443q7a2ixzaab5-ncurses-6.4.20221231' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.7917130Z copying path '/nix/store/q95qgxy40rx1ifa13j8l38sx3myvkhb9-nettle-3.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.7963161Z copying path '/nix/store/1w5jm9zaxwr5b8nvh41c7iz236my185m-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.8275011Z copying path '/nix/store/j4377imdqpm27h5hspds1skgsazyj0d9-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.8427292Z copying path '/nix/store/n9ya3i584zvcw6696326sdlg61d6lamf-npth-1.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.8541860Z copying path '/nix/store/isk8l71r4d1nl39mpv92ank2rs4cx3w9-openssl-3.3.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.8726260Z copying path '/nix/store/mqvgaq2bnb1701l7zcn0d6vd7w8b0z7l-openssl-3.3.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.8785780Z copying path '/nix/store/pbjp09wrnbklrfy7n2h5qix15fl5ylhj-libmpc-1.3.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.9293497Z copying path '/nix/store/kavgc464axad77kj4x4bza7s345nrhin-iptables-1.8.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.9302767Z copying path '/nix/store/lr3cvmq5ahqcj29p8c6m0fdl1y8krc86-diffutils-3.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.9305881Z copying path '/nix/store/vc2d1bfy1a5y1195nq7k6p0zcm6q89nx-findutils-4.10.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.9361507Z copying path '/nix/store/smd33cbgm2pwwnwj9l4b4fk39bdxfsfv-p11-kit-0.25.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.9406699Z copying path '/nix/store/w8xb93nwhnhlkqd9kwahkzqvbg98qs74-nghttp2-1.64.0-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.9592609Z copying path '/nix/store/cjg4jmnnf26367irpagiiffrni9bk7z0-gnupg-2.4.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:06.9605148Z copying path '/nix/store/zfjv48ikkqn3yhi8zi7lvqvxyscbg87n-patch-2.7.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.0196057Z copying path '/nix/store/9wwkzvmrlv43y71rbw8sbh9bamc62a16-patchelf-0.15.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.0201786Z copying path '/nix/store/5md7gyz45fm4bmkg2kb9a1hnmg8ryk9j-pcre2-10.44' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.0549746Z copying path '/nix/store/pgq4agv5wpanzr9a8mqlkncdbick7mn2-pcsclite-2.3.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.0813481Z copying path '/nix/store/9sqpmkq9fcycsrldbsdxw93hvspy8pr9-perl5.40.0-Clone-0.46' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.0899225Z copying path '/nix/store/jpk7s673pli65raimpl43jbhbg6ja4kx-perl5.40.0-FCGI-0.82' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.0954464Z copying path '/nix/store/x4kgvzlrndlsc9mn2gyrx9dla0a5y7y3-perl5.40.0-TermReadKey-2.38' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.1029665Z copying path '/nix/store/gda0f0dw64h74i98vkk7b7jwzxbkigzs-prometheus-2.55.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.1179073Z copying path '/nix/store/6hrwqlqxzvn3lry7fjyz4i6dkdmg38m6-perl5.40.0-HTTP-Message-6.45' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.1292511Z copying path '/nix/store/mfj2pd4n7vbczdx381margrm9b9jkbpq-protoc-gen-connect-go-1.17.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.1459153Z copying path '/nix/store/zwh1q2r2a1prmw4xxfpqa06ic7dl31yd-qrencode-4.1.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.1525788Z copying path '/nix/store/flw2dwllbq50954bk1qm6xwdzp8ikacl-systemd-minimal-libs-256.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.1527894Z copying path '/nix/store/mcr5gqxgkknqxa2vhnhixzd97vdsnsxi-perl5.40.0-HTML-Parser-3.81' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.1568536Z copying path '/nix/store/q73n7qdcl9yvlwh6p4n414vkxgnjjryp-perl5.40.0-HTTP-Cookies-6.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.2089206Z copying path '/nix/store/qjsj5vnbfpbg6r7jhd7znfgmcy0arn8n-gnugrep-3.11' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.2607430Z copying path '/nix/store/qxp4rv76dpjbvs37c3sfq33ial7mxgb0-perl5.40.0-HTTP-Daemon-6.16' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.3014920Z copying path '/nix/store/dwyr8xvjby2l1zz92a5pfl6bq27jhrm6-krb5-1.21.3-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.3018779Z copying path '/nix/store/q0fgny8kpagi6blmzyw15n4cmfx647kn-perl5.40.0-HTTP-Negotiate-6.01' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.3036928Z copying path '/nix/store/7f8vg8z0q721jyahy1vjbg2x3irbk5az-unbound-1.22.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.3091378Z copying path '/nix/store/6k8v1ffagipraln3nn12h1n22d5l9dvr-perl5.40.0-Net-SSLeay-1.92' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.3389212Z copying path '/nix/store/0z09m6fwgmc2a0zazp6lhyadfig10fd6-perl5.40.0-CGI-4.59' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.3886734Z copying path '/nix/store/bhvah40258cfi5sj1wiy2zmdn5xgj4m1-krb5-1.21.3-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.4114573Z copying path '/nix/store/09pyjyjdr5mwmki9gb0yf809l54xr8p2-openssl-3.3.3-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.4460802Z copying path '/nix/store/53rkjnnkbgg8pfn6ffpcdx4xbrl98yh8-readline-8.2p13' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.4516284Z copying path '/nix/store/88x6dfa5gnls0pmbvp4b9ci3bqqfja0n-util-linux-minimal-2.39.4-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5119090Z copying path '/nix/store/fvm65iknlk5kx9938xsc5485s9wzz1ig-lvm2-2.03.27-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5461446Z copying path '/nix/store/xv2bvwf6zv1hhlm9w4x0f7n0idhbsjh7-perl5.40.0-CGI-Fast-2.16' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5483366Z copying path '/nix/store/j7k6mzbdydimzw4mf23ahq6a7rz2f7w2-util-linux-minimal-2.39.4-login' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5535073Z copying path '/nix/store/73pq792gn6i9qfywsnd347vg0152w8rw-perl5.40.0-IO-Socket-SSL-2.083' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5576424Z copying path '/nix/store/pa7plncc30fhm909bis9haakh7gi0qbl-bash-interactive-5.2p37' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5578034Z copying path '/nix/store/sf31nmjhlsdp2h26vbwbpa7gwfn4i4na-xz-5.6.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5755685Z copying path '/nix/store/xxssfwyz4l32wiadvsrcf259nkb91myn-z3-4.11.2-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5759309Z copying path '/nix/store/vpg96mfr1jw5arlqg831i69g29v0sdb3-zlib-1.3.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5778113Z copying path '/nix/store/hgq0ircylcm0mx6y7ml9chcbwgrz9xg7-openssl-3.3.3-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.5908353Z copying path '/nix/store/6cf2yj12gf51jn5vdbdw01gmgvyj431s-zstd-1.5.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.6267056Z copying path '/nix/store/lmfya9by589b0qgc2pqps1zy4jhldkvq-cryptsetup-2.7.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.6279199Z copying path '/nix/store/a9vgxnafcgb1khpjgn87ixmyv4dsqlp0-util-linux-minimal-2.39.4-mount' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.6545882Z copying path '/nix/store/f2sjbvr2gbp1dl1fwak6b77j18wv2rm8-perl5.40.0-Net-SMTP-SSL-1.04' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.6796210Z copying path '/nix/store/23j515bg7lgis34f0jkm9j6g00dpp2sh-binutils-2.43.1-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.6847883Z copying path '/nix/store/yk246qv4bbmr0mmh9y3gnfdkra5nnjgi-cracklib-2.10.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.6864555Z copying path '/nix/store/p751fjd81h3926ivxsq0x20lz5j7yscc-file-5.45' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.7161688Z copying path '/nix/store/yg4ahy7gahx91nq80achmzilrjyv0scj-gcc-13.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.7588268Z copying path '/nix/store/nfdnparxrnv6sy627lw1c27pdqzpbfs2-kexec-tools-2.0.29' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.7605709Z copying path '/nix/store/1md58p5vm4dixcwwpwrs78a7kjf6nnqk-gnutls-3.8.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.7772679Z copying path '/nix/store/yr9xanc3bgp95fj9kvbrrq47zhzni2i6-kmod-31' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.8760319Z copying path '/nix/store/qdypipr8zp0nkyrwqnakn3q3xhpghsrb-kmod-31-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.8941574Z copying path '/nix/store/6m49g3aqk5d5vdxp7chpgim5l6cfm7d6-libarchive-3.7.7-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.8953574Z copying path '/nix/store/n6zw4496n0bd9r6gjwkjmf5ja6757q32-krb5-1.21.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.9909647Z copying path '/nix/store/22qnvg3zddkf7rbpckv676qpsc2najv9-binutils-2.43.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.9936378Z copying path '/nix/store/kc1sdzqnymjwy74chlnkq2xlxnmrg30x-libfido2-1.15.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:07.9978455Z copying path '/nix/store/pvyhn761hgn17fpr6fy168vcv1ciwsgl-libssh2-1.11.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.0678770Z copying path '/nix/store/qmz79v7x18zmi6g2iagxwazqfwbxzhra-libssh2-1.11.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.1304995Z copying path '/nix/store/q4j9jj8jw74216cw4chsqlwdnglwly6p-perl-5.40.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.1407809Z copying path '/nix/store/i7gfv740vcygvl9pgqwq29nkzmsp09ww-sqlite-3.46.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.1428814Z copying path '/nix/store/blkjagm7k01k9sghpyckw4y6dd6z0knl-util-linux-minimal-2.39.4-swap' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.1732281Z copying path '/nix/store/17rp2wzkp8xfhxcd5zihx6qmnbaadlhs-libmicrohttpd-1.0.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.2275239Z copying path '/nix/store/zfk4v9lxal3ch98qnf7zlciwgmk4w1ij-krb5-1.21.3-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.2407976Z copying path '/nix/store/w2m5p0fb6pmqq6dz2jqlvnyw7n4vcbpx-curl-8.12.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.2450067Z copying path '/nix/store/sh26c2jcz7w2gii2px77bqy64fd026jd-boost-1.81.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.2957243Z copying path '/nix/store/rbns8mzghhqxih4hj2js4mb4s6ivy5d1-xz-5.6.3-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.3241438Z copying path '/nix/store/ccrjbcfl5zcdp0n5mh69f4airrb9g8m4-zlib-1.3.1-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.3562067Z copying path '/nix/store/lgfp6sl5hpykmld29rqvi9pam8ji8k24-curl-8.12.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.4958445Z copying path '/nix/store/gnnac2vpa466p2lpzskmbj5vjr6ikzhg-libpwquality-1.4.5-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.5028971Z copying path '/nix/store/0rg4nqym82ngd29dy8qm1bggm94dkry3-libssh2-1.11.1-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.5137109Z copying path '/nix/store/hsxp8g7zdr6wxk1mp812g8nbzvajzn4w-stdenv-linux' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.5422575Z copying path '/nix/store/xmmli2ijsz2br6573z3sqsgg0spnj7i9-zstd-1.5.6-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.5809040Z copying path '/nix/store/lhpwdis5hkyljz1d200bj1s6g51ljq9k-python3-3.12.8' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.6148148Z copying path '/nix/store/awbfciyq3cjvw6x8wd8wdjy8z2qxm98n-elfutils-0.191' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.6661987Z copying path '/nix/store/3hgwjb5hp0jm8fyi4vx9s4f3hjvp0n1r-tpm2-tss-4.1.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.7079169Z copying path '/nix/store/8qf68jid6rr2f4c8ppyp0ixdlv0axnpn-curl-8.12.1-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.7523318Z copying path '/nix/store/z9lnvmqymg80hk671fm2533ncczkf7z2-kbd-2.6.4' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.8224717Z copying path '/nix/store/04shrm4bvxw1yam87da7y9k872kqn777-curl-8.12.1-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.8917150Z copying path '/nix/store/007wiy8x5irdxzsdx3bdqx0k0a8hp6ji-shellcheck-0.10.0-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.8919039Z copying path '/nix/store/f95nqmgp2vaz1h68n36k605ay1ixnj0a-libbpf-1.4.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:08.9926653Z building '/nix/store/rkn5fk95kmnbxk65bxlyzqnmsmafh1f1-kind-with-registry.sh.drv'... -2025-07-23T19:31:09.2408492Z copying path '/nix/store/00x4qvjp4kcm932rv281v8n9y4xk9dv1-solc-0.8.21' from 'https://cache.nixos.org'... -2025-07-23T19:31:09.3243271Z copying path '/nix/store/w9qcpyhjrxsqrps91wkz8r4mqvg9zrxc-systemd-256.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:09.3953663Z copying path '/nix/store/1mv8pj4nxwnd9bbxshljc9p4cnl3rakj-binutils-wrapper-2.43.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:09.3972151Z copying path '/nix/store/ch1brsi5xwxgyv23csmvw1am9l40rf1c-shellcheck-0.10.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:10.2051318Z copying path '/nix/store/99accs107rzm78z74cj1wns59d0m1nh8-perl5.40.0-libwww-perl-6.72' from 'https://cache.nixos.org'... -2025-07-23T19:31:10.3334998Z copying path '/nix/store/7s649psqfmp6bf2ij6kba3nbwjp50z0w-promtail-3.2.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:11.2474225Z copying path '/nix/store/1fwh9nv8n93rjc7i7j9gcm3whdqpgy84-git-2.47.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:12.1379906Z copying path '/nix/store/gnd8f9h2ycxrfrvrga508c4n9cxy6720-gcc-wrapper-13.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:12.1522600Z copying path '/nix/store/szfi0xd0cwdaldhkp8vlgi7jfv662nmd-stdenv-linux' from 'https://cache.nixos.org'... -2025-07-23T19:31:12.2111949Z building '/nix/store/mbmxfdxryq3wr2wxm5brh42mcad1gvzy-kind-with-registry-1.0.0.drv'... -2025-07-23T19:31:12.3023593Z building '/nix/store/gvy0rwami6li8s64cb1q1hv75mnglnjn-nix-shell-env.drv'... -2025-07-23T19:31:12.7581977Z this path will be fetched (0.10 MiB download, 0.10 MiB unpacked): -2025-07-23T19:31:12.7583756Z /nix/store/hlv28jlwzk6kqj6vljm9cn8i7pw030nx-bash-interactive-5.2p37-man -2025-07-23T19:31:12.7594113Z copying path '/nix/store/hlv28jlwzk6kqj6vljm9cn8i7pw030nx-bash-interactive-5.2p37-man' from 'https://cache.nixos.org'... -2025-07-23T19:31:12.8902336Z dependencies installed -2025-07-23T19:31:12.8946303Z ##[group]Run echo "::warning::Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch?" -2025-07-23T19:31:12.8947038Z echo "::warning::Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch?" -2025-07-23T19:31:12.8975890Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-07-23T19:31:12.8976209Z env: -2025-07-23T19:31:12.8976397Z TMPDIR: /home/runner/work/_temp -2025-07-23T19:31:12.8976629Z ##[endgroup] -2025-07-23T19:31:12.9039775Z ##[warning]Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch? -2025-07-23T19:31:12.9060964Z ##[group]Run AVALANCHEGO_CLONE_PATH=avalanchego /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --impure --command bash -x ./scripts/run_task.sh test-e2e -2025-07-23T19:31:12.9062728Z AVALANCHEGO_CLONE_PATH=avalanchego /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --impure --command bash -x ./scripts/run_task.sh test-e2e -2025-07-23T19:31:12.9088978Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-07-23T19:31:12.9089303Z env: -2025-07-23T19:31:12.9089483Z TMPDIR: /home/runner/work/_temp -2025-07-23T19:31:12.9089735Z TMPNET_START_METRICS_COLLECTOR: false -2025-07-23T19:31:12.9089991Z TMPNET_START_LOGS_COLLECTOR: false -2025-07-23T19:31:12.9090232Z TMPNET_CHECK_METRICS_COLLECTED: false -2025-07-23T19:31:12.9090495Z TMPNET_CHECK_LOGS_COLLECTED: false -2025-07-23T19:31:12.9090725Z LOKI_USERNAME: -2025-07-23T19:31:12.9090898Z LOKI_PASSWORD: -2025-07-23T19:31:12.9091082Z PROMETHEUS_USERNAME: -2025-07-23T19:31:12.9091286Z PROMETHEUS_PASSWORD: -2025-07-23T19:31:12.9091481Z GH_REPO: ava-labs/coreth -2025-07-23T19:31:12.9091682Z GH_WORKFLOW: CI -2025-07-23T19:31:12.9091857Z GH_RUN_ID: 16480013789 -2025-07-23T19:31:12.9092044Z GH_RUN_NUMBER: 5026 -2025-07-23T19:31:12.9092228Z GH_RUN_ATTEMPT: 1 -2025-07-23T19:31:12.9092413Z GH_JOB_ID: avalanchego_e2e -2025-07-23T19:31:12.9092617Z ##[endgroup] -2025-07-23T19:31:12.9158353Z No local flake found, will attempt to use avalanchego flake -2025-07-23T19:31:12.9250894Z Starting nix shell for github:ava-labs/avalanchego?ref=v1.13.3-rc.1 -2025-07-23T19:31:15.2910753Z + set -euo pipefail -2025-07-23T19:31:15.2911141Z + command -v task -2025-07-23T19:31:15.2911431Z + exec task test-e2e -2025-07-23T19:31:15.3097836Z task: [test-e2e] ./scripts/tests.e2e.sh -2025-07-23T19:31:15.3162735Z running AvalancheGo e2e tests -2025-07-23T19:31:15.3392016Z task: [build-race] ./scripts/build.sh -r -2025-07-23T19:31:15.3431140Z Building with race detection enabled -2025-07-23T19:31:15.3540758Z Building AvalancheGo with [go version go1.23.9 linux/amd64]... -2025-07-23T19:32:40.6626206Z task: [build-xsvm] ./scripts/build_xsvm.sh -2025-07-23T19:32:40.6689430Z Building xsvm plugin... -2025-07-23T19:33:26.6500964Z Symlinking ./build/xsvm to /home/runner/.avalanchego/plugins/v3m4wPxaHpvGr8qfMeyK6PRW3idZrPHmYcMTt7oXdK47yurVH -2025-07-23T19:33:26.6530699Z Symlinking ./build/xsvm to /home/runner/work/coreth/coreth/avalanchego/build/plugins/v3m4wPxaHpvGr8qfMeyK6PRW3idZrPHmYcMTt7oXdK47yurVH -2025-07-23T19:33:26.6557996Z task: [test-e2e-ci] bash -x ./scripts/tests.e2e.sh '--ginkgo.label-filter=c || uses-c' -2025-07-23T19:33:26.6589332Z + set -euo pipefail -2025-07-23T19:33:26.6589824Z + [[ ./scripts/tests.e2e.sh =~ scripts/tests.e2e.sh ]] -2025-07-23T19:33:26.6590388Z + source ./scripts/constants.sh -2025-07-23T19:33:26.6590824Z ++ set -euo pipefail -2025-07-23T19:33:26.6595860Z ++++ dirname ./scripts/constants.sh -2025-07-23T19:33:26.6607901Z +++ cd ./scripts -2025-07-23T19:33:26.6608236Z +++ cd .. -2025-07-23T19:33:26.6608526Z +++ pwd -2025-07-23T19:33:26.6610666Z ++ AVALANCHE_PATH=/home/runner/work/coreth/coreth/avalanchego -2025-07-23T19:33:26.6611462Z ++ avalanchego_path=/home/runner/work/coreth/coreth/avalanchego/build/avalanchego -2025-07-23T19:33:26.6612157Z ++ static_ld_flags= -2025-07-23T19:33:26.6612474Z ++ '[' '' = 1 ']' -2025-07-23T19:33:26.6612977Z ++ export 'CGO_CFLAGS=-O2 -D__BLST_PORTABLE__' -2025-07-23T19:33:26.6613827Z ++ CGO_CFLAGS='-O2 -D__BLST_PORTABLE__' -2025-07-23T19:33:26.6614489Z ++ export CGO_ENABLED=1 -2025-07-23T19:33:26.6614831Z ++ CGO_ENABLED=1 -2025-07-23T19:33:26.6615236Z ++ export GOPROXY=https://proxy.golang.org -2025-07-23T19:33:26.6615752Z ++ GOPROXY=https://proxy.golang.org -2025-07-23T19:33:26.6616177Z + E2E_ARGS=("${@}") -2025-07-23T19:33:26.6618070Z + [[ --ginkgo.label-filter=c || uses-c =~ --runtime=kube ]] -2025-07-23T19:33:26.6619003Z ++ realpath ./build/avalanchego -2025-07-23T19:33:26.6631277Z + AVALANCHEGO_PATH=/home/runner/work/coreth/coreth/avalanchego/build/avalanchego -2025-07-23T19:33:26.6632323Z + E2E_ARGS+=("--avalanchego-path=${AVALANCHEGO_PATH}") -2025-07-23T19:33:26.6632901Z + GINKGO_ARGS= -2025-07-23T19:33:26.6633244Z + [[ -n 1 ]] -2025-07-23T19:33:26.6633669Z + echo 'tests will be executed serially to minimize resource requirements' -2025-07-23T19:33:26.6634318Z + [[ -n '' ]] -2025-07-23T19:33:26.6634558Z + GINKGO_ARGS+=' --randomize-all' -2025-07-23T19:33:26.6635370Z + ./bin/ginkgo --randomize-all -v ./tests/e2e -- '--ginkgo.label-filter=c || uses-c' --avalanchego-path=/home/runner/work/coreth/coreth/avalanchego/build/avalanchego -2025-07-23T19:33:26.6636270Z tests will be executed serially to minimize resource requirements -2025-07-23T19:33:47.7357852Z Running Suite: e2e test suites - /home/runner/work/coreth/coreth/avalanchego/tests/e2e -2025-07-23T19:33:47.7358651Z ====================================================================================== -2025-07-23T19:33:47.7359351Z Random Seed: 1753299207 - will randomize all specs -2025-07-23T19:33:47.7359604Z -2025-07-23T19:33:47.7359775Z Will run 4 of 14 specs -2025-07-23T19:33:47.7360127Z ------------------------------ -2025-07-23T19:33:47.7360487Z [SynchronizedBeforeSuite]  -2025-07-23T19:33:47.7361093Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/e2e_test.go:40 -2025-07-23T19:33:47.7449151Z [07-23|19:33:47.744] INFO e2e/e2e_test.go:56 setting upgrades {"upgrades": {"apricotPhase1Time":"2020-12-05T05:00:00Z","apricotPhase2Time":"2020-12-05T05:00:00Z","apricotPhase3Time":"2020-12-05T05:00:00Z","apricotPhase4Time":"2020-12-05T05:00:00Z","apricotPhase4MinPChainHeight":0,"apricotPhase5Time":"2020-12-05T05:00:00Z","apricotPhasePre6Time":"2020-12-05T05:00:00Z","apricotPhase6Time":"2020-12-05T05:00:00Z","apricotPhasePost6Time":"2020-12-05T05:00:00Z","banffTime":"2020-12-05T05:00:00Z","cortinaTime":"2020-12-05T05:00:00Z","cortinaXChainStopVertexID":"11111111111111111111111111111111LpoYY","durangoTime":"2020-12-05T05:00:00Z","etnaTime":"2020-12-05T05:00:00Z","fortunaTime":"2020-12-05T05:00:00Z","graniteTime":"9999-12-01T00:00:00Z"}} -2025-07-23T19:33:47.7454720Z [07-23|19:33:47.744] INFO e2e/helpers.go:287 waiting for network to start {"timeoutSeconds": 120} -2025-07-23T19:33:50.4809486Z [07-23|19:33:50.480] INFO tmpnet/network.go:238 preparing configuration for new network {"runtimeConfig": {"process":{"avalancheGoPath":"/home/runner/work/coreth/coreth/avalanchego/build/avalanchego","pluginDir":"/home/runner/.avalanchego/plugins"}}} -2025-07-23T19:33:50.4859407Z [07-23|19:33:50.485] INFO tmpnet/network.go:430 starting a single-node network with sybil protection disabled for quicker subnet creation -2025-07-23T19:33:50.4860960Z [07-23|19:33:50.485] INFO tmpnet/network.go:369 starting network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e", "uuid": "4a81e2e0-9ddd-4e4b-9042-64c43cc0602a"} -2025-07-23T19:33:55.0910496Z [07-23|19:33:55.090] INFO tmpnet/process_runtime.go:147 started local node {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "isEphemeral": false} -2025-07-23T19:33:55.0913677Z [07-23|19:33:55.091] INFO tmpnet/network.go:384 waiting for nodes to report healthy -2025-07-23T19:33:57.0932579Z [07-23|19:33:57.092] INFO tmpnet/network.go:955 node is healthy {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "uri": "http://127.0.0.1:41211"} -2025-07-23T19:33:57.0937442Z [07-23|19:33:57.092] INFO tmpnet/network.go:388 started network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e", "uuid": "4a81e2e0-9ddd-4e4b-9042-64c43cc0602a"} -2025-07-23T19:33:57.0944204Z [07-23|19:33:57.093] INFO tmpnet/network.go:402 metrics and logs available via grafana (collectors must be running) {"url": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299230485&to=now", "linkPath": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/metrics.txt"} -2025-07-23T19:33:57.0946634Z [07-23|19:33:57.093] INFO tmpnet/network.go:620 creating subnet {"name": "xsvm-a"} -2025-07-23T19:33:57.3579413Z [07-23|19:33:57.357] INFO tmpnet/network.go:639 created subnet {"name": "xsvm-a", "id": "azXA5XPTPqjPYN4pzBaHofqZLC3ZrEY13eM1iuYp3oVdRxV69"} -2025-07-23T19:33:57.3581528Z [07-23|19:33:57.357] INFO tmpnet/network.go:649 wrote subnet configuration {"name": "xsvm-a"} -2025-07-23T19:33:57.3582960Z [07-23|19:33:57.357] INFO tmpnet/network.go:620 creating subnet {"name": "xsvm-b"} -2025-07-23T19:33:57.4806169Z [07-23|19:33:57.480] INFO tmpnet/network.go:639 created subnet {"name": "xsvm-b", "id": "2DhzsRdU1B2qy2BZ4WgR2AKmHMfPSSmd8djFkH1y9edhMMrAD8"} -2025-07-23T19:33:57.4808254Z [07-23|19:33:57.480] INFO tmpnet/network.go:649 wrote subnet configuration {"name": "xsvm-b"} -2025-07-23T19:33:57.4817462Z [07-23|19:33:57.481] INFO tmpnet/network.go:697 adding validators for subnet {"name": "xsvm-a"} -2025-07-23T19:33:57.6071046Z [07-23|19:33:57.606] INFO tmpnet/subnet.go:196 added validator to subnet {"subnet": "xsvm-a", "nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi"} -2025-07-23T19:33:57.6072541Z [07-23|19:33:57.606] INFO tmpnet/network.go:697 adding validators for subnet {"name": "xsvm-b"} -2025-07-23T19:33:57.7309324Z [07-23|19:33:57.730] INFO tmpnet/subnet.go:196 added validator to subnet {"subnet": "xsvm-b", "nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y"} -2025-07-23T19:33:57.7311693Z [07-23|19:33:57.730] INFO tmpnet/subnet.go:261 waiting for subnet validators to become active {"subnet": "xsvm-a"} -2025-07-23T19:33:57.7319704Z [07-23|19:33:57.731] INFO tmpnet/subnet.go:281 saw the expected active validators of the subnet {"subnet": "xsvm-a"} -2025-07-23T19:33:57.7478793Z [07-23|19:33:57.747] INFO tmpnet/subnet.go:127 creating chains for subnet {"subnet": "xsvm-a"} -2025-07-23T19:33:57.8558467Z [07-23|19:33:57.855] INFO tmpnet/subnet.go:145 created chain {"chain": "SbBAb8nfj4xoTe6k1e7vhVWJ88bLNCtFEp1vPhCmKSjC9T1tc", "subnet": "xsvm-a", "vm": "v3m4wPxaHpvGr8qfMeyK6PRW3idZrPHmYcMTt7oXdK47yurVH"} -2025-07-23T19:33:57.8560997Z [07-23|19:33:57.855] INFO tmpnet/network.go:733 wrote subnet configuration {"name": "xsvm-a", "id": "azXA5XPTPqjPYN4pzBaHofqZLC3ZrEY13eM1iuYp3oVdRxV69"} -2025-07-23T19:33:57.8562660Z [07-23|19:33:57.855] INFO tmpnet/subnet.go:261 waiting for subnet validators to become active {"subnet": "xsvm-b"} -2025-07-23T19:33:57.8569697Z [07-23|19:33:57.856] INFO tmpnet/subnet.go:281 saw the expected active validators of the subnet {"subnet": "xsvm-b"} -2025-07-23T19:33:57.8749651Z [07-23|19:33:57.874] INFO tmpnet/subnet.go:127 creating chains for subnet {"subnet": "xsvm-b"} -2025-07-23T19:33:57.9852388Z [07-23|19:33:57.984] INFO tmpnet/subnet.go:145 created chain {"chain": "UtRoikpD9kByqTNfMq4xyERctyq8YyXg9nqQtmNzVRRyGbLzm", "subnet": "xsvm-b", "vm": "v3m4wPxaHpvGr8qfMeyK6PRW3idZrPHmYcMTt7oXdK47yurVH"} -2025-07-23T19:33:57.9855575Z [07-23|19:33:57.985] INFO tmpnet/network.go:733 wrote subnet configuration {"name": "xsvm-b", "id": "2DhzsRdU1B2qy2BZ4WgR2AKmHMfPSSmd8djFkH1y9edhMMrAD8"} -2025-07-23T19:33:57.9857385Z [07-23|19:33:57.985] INFO tmpnet/network.go:455 re-enabling sybil protection {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi"} -2025-07-23T19:33:57.9859259Z [07-23|19:33:57.985] INFO tmpnet/network.go:472 restarting bootstrap node {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi"} -2025-07-23T19:34:02.7079228Z [07-23|19:34:02.707] INFO tmpnet/process_runtime.go:147 started local node {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "isEphemeral": false} -2025-07-23T19:34:02.7085306Z [07-23|19:34:02.707] INFO tmpnet/network.go:483 starting remaining nodes -2025-07-23T19:34:07.3640499Z [07-23|19:34:07.363] INFO tmpnet/process_runtime.go:147 started local node {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "isEphemeral": false} -2025-07-23T19:34:07.3643726Z [07-23|19:34:07.363] INFO tmpnet/network.go:384 waiting for nodes to report healthy -2025-07-23T19:34:09.3683531Z [07-23|19:34:09.368] INFO tmpnet/network.go:955 node is healthy {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "uri": "http://127.0.0.1:34983"} -2025-07-23T19:34:12.7662833Z [07-23|19:34:12.765] INFO tmpnet/network.go:955 node is healthy {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "uri": "http://127.0.0.1:43559"} -2025-07-23T19:34:12.7665484Z [07-23|19:34:12.766] INFO tmpnet/network.go:388 started network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e", "uuid": "4a81e2e0-9ddd-4e4b-9042-64c43cc0602a"} -2025-07-23T19:34:12.7671155Z [07-23|19:34:12.766] INFO tmpnet/network.go:402 metrics and logs available via grafana (collectors must be running) {"url": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299242707&to=now", "linkPath": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/metrics.txt"} -2025-07-23T19:34:12.7674322Z [07-23|19:34:12.766] INFO e2e/helpers.go:308 network started successfully -2025-07-23T19:34:12.7680774Z [07-23|19:34:12.767] INFO e2e/env.go:229 network nodes are available {"uris": [{"NodeID":"NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y","URI":"http://127.0.0.1:34983"},{"NodeID":"NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi","URI":"http://127.0.0.1:43559"}]} -2025-07-23T19:34:12.7691585Z [SynchronizedBeforeSuite] PASSED [25.033 seconds] -2025-07-23T19:34:12.7692275Z ------------------------------ -2025-07-23T19:34:12.7692888Z SSSS -2025-07-23T19:34:12.7693478Z ------------------------------ -2025-07-23T19:34:12.7694889Z [C-Chain] [Interchain Workflow] should ensure that funds can be transferred from the C-Chain to the X-Chain and the P-Chain [c] -2025-07-23T19:34:12.7696429Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/c/interchain_workflow.go:28 -2025-07-23T19:34:12.7697385Z STEP: initializing a new eth client @ 07/23/25 19:34:12.769 -2025-07-23T19:34:12.7706381Z INFO targeting random node {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "uri": "http://127.0.0.1:34983"} -2025-07-23T19:34:12.7708052Z INFO initializing a new eth client {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "URI": "http://127.0.0.1:34983"} -2025-07-23T19:34:12.7713067Z STEP: allocating a pre-funded key to send from and a recipient key to deliver to @ 07/23/25 19:34:12.771 -2025-07-23T19:34:12.7714679Z STEP: sending funds from one address to another on the C-Chain @ 07/23/25 19:34:12.771 -2025-07-23T19:34:12.7730612Z INFO suggested gas price {"price": "2"} -2025-07-23T19:34:12.7737223Z INFO sending eth transaction {"txID": "0x5407ba46e9f63cc2fc094478fabd80fd54b68f233a34c02de7b93d529f3d42af"} -2025-07-23T19:34:13.2776975Z INFO eth transaction accepted {"txID": "0x5407ba46e9f63cc2fc094478fabd80fd54b68f233a34c02de7b93d529f3d42af", "gasUsed": 21000, "gasPrice": "4", "blockNumber": "1"} -2025-07-23T19:34:13.2780183Z STEP: waiting for the C-Chain recipient address to have received the sent funds @ 07/23/25 19:34:13.277 -2025-07-23T19:34:13.2783653Z STEP: initializing a keychain and associated wallet @ 07/23/25 19:34:13.278 -2025-07-23T19:34:13.2785762Z INFO initializing a new wallet {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "URI": "http://127.0.0.1:34983"} -2025-07-23T19:34:13.2958369Z INFO wallet balances in nAVAX {"xChain": 30000000000000000, "pChain": 20000000000000000} -2025-07-23T19:34:13.2959557Z STEP: defining common configuration @ 07/23/25 19:34:13.295 -2025-07-23T19:34:13.2960676Z STEP: exporting AVAX from the C-Chain to the X-Chain @ 07/23/25 19:34:13.295 -2025-07-23T19:34:13.2967419Z INFO suggested gas price {"price": "2"} -2025-07-23T19:34:13.4557531Z INFO issued transaction {"chainAlias": "C", "txID": "2uUxFDhG8ruqfKpxJuLq68HbAJtWgzUKMHMu9MeedJcKtT76d", "duration": "158.523888ms"} -2025-07-23T19:34:14.1777311Z INFO confirmed transaction {"chainAlias": "C", "txID": "2uUxFDhG8ruqfKpxJuLq68HbAJtWgzUKMHMu9MeedJcKtT76d", "totalDuration": "880.572225ms", "confirmationDuration": "722.048337ms"} -2025-07-23T19:34:14.1779578Z STEP: importing AVAX from the C-Chain to the X-Chain @ 07/23/25 19:34:14.177 -2025-07-23T19:34:14.1837184Z INFO issued transaction {"chainAlias": "X", "txID": "KgJHaeFk7kKLkS35bCEu4Yv5p6Ja6b34N8gKE1xDEvA396BHF", "duration": "5.767616ms"} -2025-07-23T19:34:14.2351604Z INFO confirmed transaction {"chainAlias": "X", "txID": "KgJHaeFk7kKLkS35bCEu4Yv5p6Ja6b34N8gKE1xDEvA396BHF", "totalDuration": "57.167164ms", "confirmationDuration": "51.399548ms"} -2025-07-23T19:34:14.2352970Z STEP: checking that the recipient address has received imported funds on the X-Chain @ 07/23/25 19:34:14.234 -2025-07-23T19:34:14.2353815Z STEP: exporting AVAX from the C-Chain to the P-Chain @ 07/23/25 19:34:14.234 -2025-07-23T19:34:14.2356915Z INFO suggested gas price {"price": "2"} -2025-07-23T19:34:14.2461672Z INFO issued transaction {"chainAlias": "C", "txID": "2HxdBSFBNJtEJcg2hquiwbF6z6uVzuWpGpnsKvTXvhabUP1WiQ", "duration": "10.113417ms"} -2025-07-23T19:34:16.1793006Z INFO confirmed transaction {"chainAlias": "C", "txID": "2HxdBSFBNJtEJcg2hquiwbF6z6uVzuWpGpnsKvTXvhabUP1WiQ", "totalDuration": "1.94258288s", "confirmationDuration": "1.932469463s"} -2025-07-23T19:34:16.1795402Z STEP: importing AVAX from the C-Chain to the P-Chain @ 07/23/25 19:34:16.178 -2025-07-23T19:34:16.1851377Z INFO issued transaction {"chainAlias": "P", "txID": "fBiCpBcpJ1oBL21CmxLb7bhksfYhAGtwwi8ek61qUQCtQK43R", "duration": "6.199959ms"} -2025-07-23T19:34:16.3466786Z INFO confirmed transaction {"chainAlias": "P", "txID": "fBiCpBcpJ1oBL21CmxLb7bhksfYhAGtwwi8ek61qUQCtQK43R", "totalDuration": "167.535408ms", "confirmationDuration": "161.335449ms"} -2025-07-23T19:34:16.3469709Z STEP: checking that the recipient address has received imported funds on the P-Chain @ 07/23/25 19:34:16.346 -2025-07-23T19:34:16.3478853Z STEP: checking if bootstrap is possible with the current network state @ 07/23/25 19:34:16.347 -2025-07-23T19:34:21.1576975Z INFO started local node {"nodeID": "NodeID-QAv9x5ptL42tbpP8ojrEcjYQNEEbpCB2B", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-QAv9x5ptL42tbpP8ojrEcjYQNEEbpCB2B", "isEphemeral": true} -2025-07-23T19:34:23.0636672Z INFO metrics and logs available via grafana (collectors must be running) {"uri": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299252769&to=1753299275062"} -2025-07-23T19:34:23.2756637Z • [10.506 seconds] -2025-07-23T19:34:23.2757627Z ------------------------------ -2025-07-23T19:34:23.2759918Z [P-Chain] [Interchain Workflow] should ensure that funds can be transferred from the P-Chain to the X-Chain and the C-Chain [uses-c, p] -2025-07-23T19:34:23.2762148Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/p/interchain_workflow.go:34 -2025-07-23T19:34:23.2772730Z STEP: checking that the network has a compatible minimum stake duration @ 07/23/25 19:34:23.277 -2025-07-23T19:34:23.2774534Z STEP: creating wallet with a funded key to send from and recipient key to deliver to @ 07/23/25 19:34:23.277 -2025-07-23T19:34:23.2789671Z INFO targeting random node {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "uri": "http://127.0.0.1:34983"} -2025-07-23T19:34:23.2791498Z INFO initializing a new wallet {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "URI": "http://127.0.0.1:34983"} -2025-07-23T19:34:23.2971723Z INFO wallet balances in nAVAX {"xChain": 30000000000000000, "pChain": 20000000000000000} -2025-07-23T19:34:23.2972945Z STEP: defining common configuration @ 07/23/25 19:34:23.296 -2025-07-23T19:34:23.2980373Z STEP: adding new node and waiting for it to report healthy @ 07/23/25 19:34:23.296 -2025-07-23T19:34:28.1179084Z INFO started local node {"nodeID": "NodeID-8zk2K7Bj2G9iZznu7zywcz1Z76x8bsmGj", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-8zk2K7Bj2G9iZznu7zywcz1Z76x8bsmGj", "isEphemeral": true} -2025-07-23T19:34:30.0190888Z STEP: retrieving new node's id and pop @ 07/23/25 19:34:30.018 -2025-07-23T19:34:30.0200225Z STEP: adding the new node as a validator @ 07/23/25 19:34:30.019 -2025-07-23T19:34:30.0296785Z INFO issued transaction {"chainAlias": "P", "txID": "2MsXTphp868AE3cYav2MjXuD2N6gFp3Z33Vjx5Pjit937aF9SN", "duration": "9.275622ms"} -2025-07-23T19:34:30.3536912Z INFO confirmed transaction {"chainAlias": "P", "txID": "2MsXTphp868AE3cYav2MjXuD2N6gFp3Z33Vjx5Pjit937aF9SN", "totalDuration": "331.877623ms", "confirmationDuration": "322.602001ms"} -2025-07-23T19:34:30.3539177Z STEP: adding a delegator to the new node @ 07/23/25 19:34:30.352 -2025-07-23T19:34:30.3647150Z INFO issued transaction {"chainAlias": "P", "txID": "cixyaagzkWQHbhMee9RGYAa4RKiyFCNbKYVnBvPzX3QQ81Hu7", "duration": "12.016242ms"} -2025-07-23T19:34:30.8463163Z INFO confirmed transaction {"chainAlias": "P", "txID": "cixyaagzkWQHbhMee9RGYAa4RKiyFCNbKYVnBvPzX3QQ81Hu7", "totalDuration": "493.497018ms", "confirmationDuration": "481.480776ms"} -2025-07-23T19:34:30.8464568Z STEP: exporting AVAX from the P-Chain to the X-Chain @ 07/23/25 19:34:30.846 -2025-07-23T19:34:30.8526235Z INFO issued transaction {"chainAlias": "P", "txID": "PvhrWKfrL49y26v9Lo6PNYLFbbauSig4fsyDwJx5jyVuzJXnx", "duration": "6.120529ms"} -2025-07-23T19:34:30.9161450Z INFO confirmed transaction {"chainAlias": "P", "txID": "PvhrWKfrL49y26v9Lo6PNYLFbbauSig4fsyDwJx5jyVuzJXnx", "totalDuration": "68.311332ms", "confirmationDuration": "62.190803ms"} -2025-07-23T19:34:30.9164062Z STEP: importing AVAX from the P-Chain to the X-Chain @ 07/23/25 19:34:30.914 -2025-07-23T19:34:30.9244909Z INFO issued transaction {"chainAlias": "X", "txID": "zJrgtN1tRQvWS4tC2wKvfoNJCvze4oZLbWLLWs8FFC9WdgdAS", "duration": "9.206996ms"} -2025-07-23T19:34:30.9969216Z INFO confirmed transaction {"chainAlias": "X", "txID": "zJrgtN1tRQvWS4tC2wKvfoNJCvze4oZLbWLLWs8FFC9WdgdAS", "totalDuration": "80.550747ms", "confirmationDuration": "71.343751ms"} -2025-07-23T19:34:30.9971598Z STEP: checking that the recipient address has received imported funds on the X-Chain @ 07/23/25 19:34:30.995 -2025-07-23T19:34:30.9973289Z STEP: exporting AVAX from the P-Chain to the C-Chain @ 07/23/25 19:34:30.995 -2025-07-23T19:34:31.0040078Z INFO issued transaction {"chainAlias": "P", "txID": "uk8oAgAT8VEvSmtEXhbjGyazLe8UC4vg7hFxYjYr6CvPYYZxu", "duration": "7.842388ms"} -2025-07-23T19:34:31.0883047Z INFO confirmed transaction {"chainAlias": "P", "txID": "uk8oAgAT8VEvSmtEXhbjGyazLe8UC4vg7hFxYjYr6CvPYYZxu", "totalDuration": "91.799036ms", "confirmationDuration": "83.956648ms"} -2025-07-23T19:34:31.0893634Z STEP: initializing a new eth client @ 07/23/25 19:34:31.087 -2025-07-23T19:34:31.0895845Z INFO initializing a new eth client {"nodeID": "NodeID-7M6iNA916wdJqJnumsXZL5pRwLyyANV1y", "URI": "http://127.0.0.1:34983"} -2025-07-23T19:34:31.0897846Z STEP: importing AVAX from the P-Chain to the C-Chain @ 07/23/25 19:34:31.089 -2025-07-23T19:34:31.0930522Z INFO suggested gas price {"price": "2"} -2025-07-23T19:34:31.1016917Z INFO issued transaction {"chainAlias": "C", "txID": "22SdoY9fepXtuoW6Jbe8MF98iQcHpTQWHSTQAJ8AoF3yXxJoC3", "duration": "8.609553ms"} -2025-07-23T19:34:31.1656268Z INFO confirmed transaction {"chainAlias": "C", "txID": "22SdoY9fepXtuoW6Jbe8MF98iQcHpTQWHSTQAJ8AoF3yXxJoC3", "totalDuration": "70.189424ms", "confirmationDuration": "61.579871ms"} -2025-07-23T19:34:31.1659204Z STEP: checking that the recipient address has received imported funds on the C-Chain @ 07/23/25 19:34:31.163 -2025-07-23T19:34:31.1666865Z STEP: stopping validator node to free up resources for a bootstrap check @ 07/23/25 19:34:31.166 -2025-07-23T19:34:31.3460803Z STEP: checking if bootstrap is possible with the current network state @ 07/23/25 19:34:31.345 -2025-07-23T19:34:36.0866850Z INFO started local node {"nodeID": "NodeID-LTVxsGkZ8smzUCEVMEmaxQbE2g2SyWoY5", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-LTVxsGkZ8smzUCEVMEmaxQbE2g2SyWoY5", "isEphemeral": true} -2025-07-23T19:34:43.9932858Z INFO metrics and logs available via grafana (collectors must be running) {"uri": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299263275&to=1753299295990"} -2025-07-23T19:34:44.1868002Z INFO shutting down ephemeral node {"nodeID": "NodeID-8zk2K7Bj2G9iZznu7zywcz1Z76x8bsmGj"} -2025-07-23T19:34:44.1869408Z • [20.911 seconds] -2025-07-23T19:34:44.1870194Z ------------------------------ -2025-07-23T19:34:44.1871094Z SSS -2025-07-23T19:34:44.1871962Z ------------------------------ -2025-07-23T19:34:44.1873797Z [C-Chain] [Dynamic Fees] should ensure that the gas price is affected by load [c] -2025-07-23T19:34:44.1876198Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/c/dynamic_fees.go:58 -2025-07-23T19:34:44.1877815Z STEP: creating a new private network to ensure isolation from other tests @ 07/23/25 19:34:44.186 -2025-07-23T19:34:44.1906215Z INFO waiting for network to start {"timeoutSeconds": 120} -2025-07-23T19:34:44.1908616Z INFO preparing configuration for new network {"runtimeConfig": {"process":{"avalancheGoPath":"/home/runner/work/coreth/coreth/avalanchego/build/avalanchego","pluginDir":"/home/runner/.avalanchego/plugins"}}} -2025-07-23T19:34:44.1956723Z INFO starting network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees", "uuid": "bfb8e363-92fb-4e6b-a37c-4d53693fdcce"} -2025-07-23T19:34:46.1471689Z INFO started local node {"nodeID": "NodeID-JuB2rckCL8FLYwVy1N5fcwdUvEtCvzdNd", "dataDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees/NodeID-JuB2rckCL8FLYwVy1N5fcwdUvEtCvzdNd", "isEphemeral": false} -2025-07-23T19:34:48.0493579Z INFO started local node {"nodeID": "NodeID-Dz4rLAGba3Mnd9d7gUMvx8VxutZxXY5C4", "dataDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees/NodeID-Dz4rLAGba3Mnd9d7gUMvx8VxutZxXY5C4", "isEphemeral": false} -2025-07-23T19:34:48.0497224Z INFO waiting for nodes to report healthy -2025-07-23T19:34:50.0525144Z INFO node is healthy {"nodeID": "NodeID-Dz4rLAGba3Mnd9d7gUMvx8VxutZxXY5C4", "uri": "http://127.0.0.1:35543"} -2025-07-23T19:34:54.0519188Z INFO node is healthy {"nodeID": "NodeID-JuB2rckCL8FLYwVy1N5fcwdUvEtCvzdNd", "uri": "http://127.0.0.1:36927"} -2025-07-23T19:34:54.0522715Z INFO started network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees", "uuid": "bfb8e363-92fb-4e6b-a37c-4d53693fdcce"} -2025-07-23T19:34:54.0529962Z INFO metrics and logs available via grafana (collectors must be running) {"url": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7Cbfb8e363-92fb-4e6b-a37c-4d53693fdcce&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299284195&to=now", "linkPath": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees/metrics.txt"} -2025-07-23T19:34:54.0534161Z INFO network started successfully -2025-07-23T19:34:54.0535042Z STEP: allocating a pre-funded key @ 07/23/25 19:34:54.051 -2025-07-23T19:34:54.0536062Z STEP: initializing a coreth client @ 07/23/25 19:34:54.051 -2025-07-23T19:34:54.0537692Z INFO initializing a new eth client {"nodeID": "NodeID-JuB2rckCL8FLYwVy1N5fcwdUvEtCvzdNd", "URI": "http://127.0.0.1:36927"} -2025-07-23T19:34:54.0538988Z STEP: initializing a transaction signer @ 07/23/25 19:34:54.052 -2025-07-23T19:34:54.0540148Z STEP: checking if Fortuna is activated @ 07/23/25 19:34:54.053 -2025-07-23T19:34:54.0548069Z INFO set gas limit {"gasLimit": 10000000} -2025-07-23T19:34:54.0548936Z STEP: deploying an expensive contract @ 07/23/25 19:34:54.054 -2025-07-23T19:34:54.0558817Z INFO sending eth transaction {"txID": "0x3fecd6016dfff7e035adf798f9687c45aba5fa5a0254ccb2cf1f8e69474a8c82"} -2025-07-23T19:34:54.5598210Z INFO eth transaction accepted {"txID": "0x3fecd6016dfff7e035adf798f9687c45aba5fa5a0254ccb2cf1f8e69474a8c82", "gasUsed": 79365, "gasPrice": "2", "blockNumber": "1"} -2025-07-23T19:34:54.5601782Z INFO initializing gas prices {"initialPrice": "1", "targetPrice": "2"} -2025-07-23T19:34:54.5603082Z STEP: calling the contract repeatedly until a sufficient gas price increase is detected @ 07/23/25 19:34:54.56 -2025-07-23T19:34:54.5609084Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:34:54.5616728Z INFO sending eth transaction {"txID": "0x3dd9f7ff4dcbab12d2b65af8b7aaae3f1e410c53a1abb0122a86fc1a9252432c"} -2025-07-23T19:34:57.5656774Z INFO eth transaction accepted {"txID": "0x3dd9f7ff4dcbab12d2b65af8b7aaae3f1e410c53a1abb0122a86fc1a9252432c", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "2"} -2025-07-23T19:34:57.5659790Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:34:57.5668457Z INFO sending eth transaction {"txID": "0x0d407c5d1067a2139ad301731c6a62a93c0e8c800f1cb9818f736d226e12693a"} -2025-07-23T19:35:02.5709491Z INFO eth transaction accepted {"txID": "0x0d407c5d1067a2139ad301731c6a62a93c0e8c800f1cb9818f736d226e12693a", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "3"} -2025-07-23T19:35:02.5713743Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:02.5720920Z INFO sending eth transaction {"txID": "0xa4135274bdb8ebae625783f21673c746acfa8e4785d9646b7566f96aa92a6729"} -2025-07-23T19:35:07.5760117Z INFO eth transaction accepted {"txID": "0xa4135274bdb8ebae625783f21673c746acfa8e4785d9646b7566f96aa92a6729", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "4"} -2025-07-23T19:35:07.5764693Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:07.5772038Z INFO sending eth transaction {"txID": "0x22759d8e43ecbb528caeabf8131f99541bfe2c557df068a0fb670dd19c6a42bd"} -2025-07-23T19:35:12.5812938Z INFO eth transaction accepted {"txID": "0x22759d8e43ecbb528caeabf8131f99541bfe2c557df068a0fb670dd19c6a42bd", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "5"} -2025-07-23T19:35:12.5816576Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:12.5823124Z INFO sending eth transaction {"txID": "0xacd2073e0db59b33c9dcd24716a09257121fe4644e7acb2e2ba0a60c350141dc"} -2025-07-23T19:35:17.0887138Z INFO eth transaction accepted {"txID": "0xacd2073e0db59b33c9dcd24716a09257121fe4644e7acb2e2ba0a60c350141dc", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "6"} -2025-07-23T19:35:17.0897005Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:17.0906015Z INFO sending eth transaction {"txID": "0x2399d91a6ccf44e852b5bf752067910f02400363116ff702466c9e7fb7be1a8b"} -2025-07-23T19:35:22.5944396Z INFO eth transaction accepted {"txID": "0x2399d91a6ccf44e852b5bf752067910f02400363116ff702466c9e7fb7be1a8b", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "7"} -2025-07-23T19:35:22.5952936Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:22.5961653Z INFO sending eth transaction {"txID": "0xa5ad42c9657853d0306332feaf6b077f9b0f87bb7b15c9e4b709c299fb64d271"} -2025-07-23T19:35:27.5996059Z INFO eth transaction accepted {"txID": "0xa5ad42c9657853d0306332feaf6b077f9b0f87bb7b15c9e4b709c299fb64d271", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "8"} -2025-07-23T19:35:27.6000601Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:27.6008886Z INFO sending eth transaction {"txID": "0x873fbd4217601bc5f7f68668f2f963d76e432cf4b059af71e1cc693edfec9e15"} -2025-07-23T19:35:32.6041137Z INFO eth transaction accepted {"txID": "0x873fbd4217601bc5f7f68668f2f963d76e432cf4b059af71e1cc693edfec9e15", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "9"} -2025-07-23T19:35:32.6044409Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:32.6052141Z INFO sending eth transaction {"txID": "0x6528cb3bb120573c71b298b40003ee25fec891026b46b38273472825a1884e7f"} -2025-07-23T19:35:37.6084533Z INFO eth transaction accepted {"txID": "0x6528cb3bb120573c71b298b40003ee25fec891026b46b38273472825a1884e7f", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "10"} -2025-07-23T19:35:37.6088178Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:37.6094766Z INFO sending eth transaction {"txID": "0x106e6cb6e0ca075337548329e16b002658a1bd6d866af4676227227e6733e028"} -2025-07-23T19:35:42.1126558Z INFO eth transaction accepted {"txID": "0x106e6cb6e0ca075337548329e16b002658a1bd6d866af4676227227e6733e028", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "11"} -2025-07-23T19:35:42.1130002Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:42.1137117Z INFO sending eth transaction {"txID": "0xc8a4fdb11a27e1aafc69d48c7bba2c71ebc4ca2b2f8a258f1191bbb0466a6cc0"} -2025-07-23T19:35:47.6183861Z INFO eth transaction accepted {"txID": "0xc8a4fdb11a27e1aafc69d48c7bba2c71ebc4ca2b2f8a258f1191bbb0466a6cc0", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "12"} -2025-07-23T19:35:47.6189060Z INFO gas price hasn't sufficiently increased {"initialPrice": "1", "newPrice": "1", "targetPrice": "2"} -2025-07-23T19:35:47.6195328Z INFO sending eth transaction {"txID": "0xdfefbf7ba237069e65f75c54fbdd9c8f1744fc543ff6c9f330d4da0f4a36b4ca"} -2025-07-23T19:35:52.6230817Z INFO eth transaction accepted {"txID": "0xdfefbf7ba237069e65f75c54fbdd9c8f1744fc543ff6c9f330d4da0f4a36b4ca", "gasUsed": 10000000, "gasPrice": "2", "blockNumber": "13"} -2025-07-23T19:35:52.6234339Z INFO gas price has increased {"initialPrice": "1", "targetPrice": "2", "newPrice": "2"} -2025-07-23T19:35:52.6236188Z STEP: sending small transactions until a sufficient gas price decrease is detected @ 07/23/25 19:35:52.623 -2025-07-23T19:35:52.6239818Z INFO gas price hasn't sufficiently decreased {"initialPrice": "1", "newPrice": "2"} -2025-07-23T19:35:52.6247988Z INFO sending eth transaction {"txID": "0x6ee6c0a4e194c46c958beff957b484edacb4e4cbb30ffa08a6609057b3bd73f3"} -2025-07-23T19:35:54.6288217Z INFO eth transaction accepted {"txID": "0x6ee6c0a4e194c46c958beff957b484edacb4e4cbb30ffa08a6609057b3bd73f3", "gasUsed": 21000, "gasPrice": "3", "blockNumber": "14"} -2025-07-23T19:35:54.6292193Z INFO gas price hasn't sufficiently decreased {"initialPrice": "1", "newPrice": "2"} -2025-07-23T19:35:54.6299486Z INFO sending eth transaction {"txID": "0x3c0ee96a4070a08e6f9722e1473d45f88ef93623181536112594404cb2f55df5"} -2025-07-23T19:35:56.6339830Z INFO eth transaction accepted {"txID": "0x3c0ee96a4070a08e6f9722e1473d45f88ef93623181536112594404cb2f55df5", "gasUsed": 21000, "gasPrice": "2", "blockNumber": "15"} -2025-07-23T19:35:56.6344279Z INFO gas price has decreased {"initialPrice": "1", "newPrice": "1"} -2025-07-23T19:35:56.6346621Z STEP: checking if bootstrap is possible with the current network state @ 07/23/25 19:35:56.634 -2025-07-23T19:35:58.6365825Z INFO started local node {"nodeID": "NodeID-L9kznVCrLKpnSNVGhs7Q9AjyxXnALFs1z", "dataDir": "/home/runner/.tmpnet/networks/20250723-193444.19061-avalanchego-e2e-dynamic-fees/NodeID-L9kznVCrLKpnSNVGhs7Q9AjyxXnALFs1z", "isEphemeral": true} -2025-07-23T19:36:06.7039428Z INFO shutting down network -2025-07-23T19:36:06.9767739Z • [82.790 seconds] -2025-07-23T19:36:06.9768580Z ------------------------------ -2025-07-23T19:36:06.9770714Z [X-Chain] [Interchain Workflow] should ensure that funds can be transferred from the X-Chain to the C-Chain and the P-Chain [uses-c, x] -2025-07-23T19:36:06.9773223Z /home/runner/work/coreth/coreth/avalanchego/tests/e2e/x/interchain_workflow.go:28 -2025-07-23T19:36:06.9790510Z INFO targeting random node {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "uri": "http://127.0.0.1:43559"} -2025-07-23T19:36:06.9792283Z STEP: creating wallet with a funded key to send from and recipient key to deliver to @ 07/23/25 19:36:06.978 -2025-07-23T19:36:06.9794369Z INFO initializing a new wallet {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "URI": "http://127.0.0.1:43559"} -2025-07-23T19:36:06.9981103Z INFO wallet balances in nAVAX {"xChain": 30000000000000000, "pChain": 19999979999918852} -2025-07-23T19:36:06.9982289Z STEP: defining common configuration @ 07/23/25 19:36:06.997 -2025-07-23T19:36:06.9983684Z STEP: sending funds from one address to another on the X-Chain @ 07/23/25 19:36:06.998 -2025-07-23T19:36:07.0036150Z INFO issued transaction {"chainAlias": "X", "txID": "2agMtTCCVt5pYgY86u1XAP4P9T6pQo7ByGaZMuJsPm2HC3oWiZ", "duration": "5.170109ms"} -2025-07-23T19:36:07.0450873Z INFO confirmed transaction {"chainAlias": "X", "txID": "2agMtTCCVt5pYgY86u1XAP4P9T6pQo7ByGaZMuJsPm2HC3oWiZ", "totalDuration": "46.549486ms", "confirmationDuration": "41.379377ms"} -2025-07-23T19:36:07.0454258Z STEP: checking that the X-Chain recipient address has received the sent funds @ 07/23/25 19:36:07.044 -2025-07-23T19:36:07.0456185Z STEP: exporting AVAX from the X-Chain to the C-Chain @ 07/23/25 19:36:07.044 -2025-07-23T19:36:07.0564809Z INFO issued transaction {"chainAlias": "X", "txID": "2MNiwCxtDiuWKPD8hVe6DazmMiJjMLn9z8A46B44nTJrW9MSdG", "duration": "10.870273ms"} -2025-07-23T19:36:07.1125085Z INFO confirmed transaction {"chainAlias": "X", "txID": "2MNiwCxtDiuWKPD8hVe6DazmMiJjMLn9z8A46B44nTJrW9MSdG", "totalDuration": "66.102652ms", "confirmationDuration": "55.232379ms"} -2025-07-23T19:36:07.1127081Z STEP: initializing a new eth client @ 07/23/25 19:36:07.111 -2025-07-23T19:36:07.1129137Z INFO initializing a new eth client {"nodeID": "NodeID-HAjmX7sB1oJbFDEng3Cn2VssF7TqPeMWi", "URI": "http://127.0.0.1:43559"} -2025-07-23T19:36:07.1130836Z STEP: importing AVAX from the X-Chain to the C-Chain @ 07/23/25 19:36:07.111 -2025-07-23T19:36:07.1133245Z INFO suggested gas price {"price": "2"} -2025-07-23T19:36:07.1204882Z INFO issued transaction {"chainAlias": "C", "txID": "2g4rUn1YRdmGyP5vcEEvVWyAuq3amXSgT675x1MxWQmpruVV3c", "duration": "6.980125ms"} -2025-07-23T19:36:07.1719323Z INFO confirmed transaction {"chainAlias": "C", "txID": "2g4rUn1YRdmGyP5vcEEvVWyAuq3amXSgT675x1MxWQmpruVV3c", "totalDuration": "58.376929ms", "confirmationDuration": "51.396804ms"} -2025-07-23T19:36:07.1721036Z STEP: checking that the recipient address has received imported funds on the C-Chain @ 07/23/25 19:36:07.171 -2025-07-23T19:36:07.1725348Z STEP: exporting AVAX from the X-Chain to the P-Chain @ 07/23/25 19:36:07.172 -2025-07-23T19:36:07.1787012Z INFO issued transaction {"chainAlias": "X", "txID": "UJdMohTjLmQnbGqSCLGDDkpzvECpDQDybUMnoBGWRKmautcmz", "duration": "5.908658ms"} -2025-07-23T19:36:07.7204406Z INFO confirmed transaction {"chainAlias": "X", "txID": "UJdMohTjLmQnbGqSCLGDDkpzvECpDQDybUMnoBGWRKmautcmz", "totalDuration": "547.497751ms", "confirmationDuration": "541.589093ms"} -2025-07-23T19:36:07.7205870Z STEP: importing AVAX from the X-Chain to the P-Chain @ 07/23/25 19:36:07.72 -2025-07-23T19:36:07.7290180Z INFO issued transaction {"chainAlias": "P", "txID": "gug3S9tdw2ZAFCBcNkD5dMrNCNd9gKNpdk8DKaF6sAC1zrkjD", "duration": "5.735355ms"} -2025-07-23T19:36:08.1603350Z INFO confirmed transaction {"chainAlias": "P", "txID": "gug3S9tdw2ZAFCBcNkD5dMrNCNd9gKNpdk8DKaF6sAC1zrkjD", "totalDuration": "439.524931ms", "confirmationDuration": "433.789576ms"} -2025-07-23T19:36:08.1606087Z STEP: checking that the recipient address has received imported funds on the P-Chain @ 07/23/25 19:36:08.159 -2025-07-23T19:36:08.1622548Z STEP: checking if bootstrap is possible with the current network state @ 07/23/25 19:36:08.162 -2025-07-23T19:36:12.9117326Z INFO started local node {"nodeID": "NodeID-Mrw4ywPLFpxivCZyoGELNcNnFqiyAbEhK", "dataDir": "/home/runner/.tmpnet/networks/20250723-193350.480869-avalanchego-e2e/NodeID-Mrw4ywPLFpxivCZyoGELNcNnFqiyAbEhK", "isEphemeral": true} -2025-07-23T19:36:14.8187674Z INFO metrics and logs available via grafana (collectors must be running) {"uri": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C4a81e2e0-9ddd-4e4b-9042-64c43cc0602a&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299366976&to=1753299386816"} -2025-07-23T19:36:15.0137304Z • [8.037 seconds] -2025-07-23T19:36:15.0138290Z ------------------------------ -2025-07-23T19:36:15.0139155Z SSS -2025-07-23T19:36:15.0140231Z ------------------------------ -2025-07-23T19:36:15.0140977Z [DeferCleanup (Suite)]  -2025-07-23T19:36:15.0142430Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:36:15.0145327Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:36:15.0146279Z ------------------------------ -2025-07-23T19:36:15.0146866Z [DeferCleanup (Suite)]  -2025-07-23T19:36:15.0148193Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:36:15.0149434Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:36:15.0150517Z ------------------------------ -2025-07-23T19:36:15.0151504Z [DeferCleanup (Suite)]  -2025-07-23T19:36:15.0153227Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:36:15.0154719Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:36:15.0155300Z ------------------------------ -2025-07-23T19:36:15.0155772Z [DeferCleanup (Suite)]  -2025-07-23T19:36:15.0156686Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:36:15.0157961Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:36:15.0158606Z ------------------------------ -2025-07-23T19:36:15.0159067Z [DeferCleanup (Suite)]  -2025-07-23T19:36:15.0159946Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:36:15.0161001Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:36:15.0161811Z ------------------------------ -2025-07-23T19:36:15.0162449Z [DeferCleanup (Suite)]  -2025-07-23T19:36:15.0163698Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:36:15.0165603Z [07-23|19:36:15.013] INFO e2e/helpers.go:346 shutting down network -2025-07-23T19:36:15.3482533Z [DeferCleanup (Suite)] PASSED [0.334 seconds] -2025-07-23T19:36:15.3483824Z ------------------------------ -2025-07-23T19:36:15.3484837Z [DeferCleanup (Suite)]  -2025-07-23T19:36:15.3486017Z /home/runner/work/coreth/coreth/avalanchego/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:36:15.3487195Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:36:15.3487893Z ------------------------------ -2025-07-23T19:36:15.3488520Z -2025-07-23T19:36:15.3488852Z Ran 4 of 14 Specs in 147.613 seconds -2025-07-23T19:36:15.3490046Z SUCCESS! -- 4 Passed | 0 Failed | 0 Pending | 10 Skipped -2025-07-23T19:36:15.3490891Z PASS -2025-07-23T19:36:15.3648398Z -2025-07-23T19:36:15.3648753Z Ginkgo ran 1 suite in 2m47.789871904s -2025-07-23T19:36:15.3649247Z Test Suite Passed -2025-07-23T19:36:15.3730149Z ##[group]Run actions/upload-artifact@v4 -2025-07-23T19:36:15.3730422Z with: -2025-07-23T19:36:15.3730596Z name: -tmpnet-data -2025-07-23T19:36:15.3731000Z path: ~/.tmpnet/networks -~/.tmpnet/prometheus/prometheus.log -~/.tmpnet/promtail/promtail.log - -2025-07-23T19:36:15.3731464Z if-no-files-found: error -2025-07-23T19:36:15.3731678Z compression-level: 6 -2025-07-23T19:36:15.3731877Z overwrite: false -2025-07-23T19:36:15.3732080Z include-hidden-files: false -2025-07-23T19:36:15.3732307Z env: -2025-07-23T19:36:15.3732482Z TMPDIR: /home/runner/work/_temp -2025-07-23T19:36:15.3732711Z ##[endgroup] -2025-07-23T19:36:15.6468510Z Multiple search paths detected. Calculating the least common ancestor of all paths -2025-07-23T19:36:15.6471127Z The least common ancestor is /home/runner/.tmpnet. This will be the root directory of the artifact -2025-07-23T19:36:15.6472414Z With the provided path, there will be 139 files uploaded -2025-07-23T19:36:15.6478146Z Artifact name is valid! -2025-07-23T19:36:15.6479262Z Root directory input is valid! -2025-07-23T19:36:15.7712922Z Beginning upload of artifact content to blob storage -2025-07-23T19:36:16.4020060Z Uploaded bytes 2284192 -2025-07-23T19:36:16.4154911Z Finished uploading artifact content to blob storage! -2025-07-23T19:36:16.4158599Z SHA256 digest of uploaded artifact zip is adccef765d38c6f02b712eea815ea5cadf242aa659cc869ec5b99c6fca674942 -2025-07-23T19:36:16.4160709Z Finalizing artifact upload -2025-07-23T19:36:16.5300822Z Artifact -tmpnet-data.zip successfully finalized. Artifact ID 3600349177 -2025-07-23T19:36:16.5302552Z Artifact -tmpnet-data has been successfully uploaded! Final size is 2284192 bytes. Artifact ID is 3600349177 -2025-07-23T19:36:16.5309742Z Artifact download URL: https://github.com/ava-labs/coreth/actions/runs/16480013789/artifacts/3600349177 diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/10_Run ._scripts_run_task.sh build-test.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/10_Run ._scripts_run_task.sh build-test.txt deleted file mode 100644 index c1a621fbab..0000000000 --- a/logs_42241282643/Golang Unit Tests (macos-latest)/10_Run ._scripts_run_task.sh build-test.txt +++ /dev/null @@ -1,16 +0,0 @@ -2025-07-23T19:29:51.2280730Z ##[group]Run ./scripts/run_task.sh build-test -2025-07-23T19:29:51.2281080Z ./scripts/run_task.sh build-test -2025-07-23T19:29:51.2415470Z shell: /bin/bash -e {0} -2025-07-23T19:29:51.2415660Z env: -2025-07-23T19:29:51.2415810Z TIMEOUT: -2025-07-23T19:29:51.2415930Z ##[endgroup] -2025-07-23T19:29:51.8737350Z task: [build-test] ./scripts/build_test.sh -2025-07-23T19:29:51.9016910Z Using branch: d85ec03 -2025-07-23T19:29:52.2501390Z Test run 1 of 4 -2025-07-23T19:29:52.2501750Z Getting expected test list... -2025-07-23T19:29:58.6019610Z Expected tests: 1 tests -2025-07-23T19:29:58.6019970Z Running tests... -2025-07-23T19:35:29.6858340Z jq: parse error: Invalid numeric literal at line 1, column 2 -2025-07-23T19:35:29.6980780Z task: Failed to run task "build-test": exit status 5 -2025-07-23T19:35:29.7011040Z exit status 201 -2025-07-23T19:35:29.7081660Z ##[error]Process completed with exit code 1. diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/1_Set up job.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/1_Set up job.txt deleted file mode 100644 index 114448cf31..0000000000 --- a/logs_42241282643/Golang Unit Tests (macos-latest)/1_Set up job.txt +++ /dev/null @@ -1,47 +0,0 @@ -2025-07-23T19:28:55.6469440Z Current runner version: '2.326.0' -2025-07-23T19:28:55.6485610Z ##[group]Operating System -2025-07-23T19:28:55.6486070Z macOS -2025-07-23T19:28:55.6486460Z 14.7.6 -2025-07-23T19:28:55.6486750Z 23H626 -2025-07-23T19:28:55.6487130Z ##[endgroup] -2025-07-23T19:28:55.6487440Z ##[group]Runner Image -2025-07-23T19:28:55.6487770Z Image: macos-14-arm64 -2025-07-23T19:28:55.6488090Z Version: 20250715.1663 -2025-07-23T19:28:55.6488820Z Included Software: https://github.com/actions/runner-images/blob/macos-14-arm64/20250715.1663/images/macos/macos-14-arm64-Readme.md -2025-07-23T19:28:55.6489720Z Image Release: https://github.com/actions/runner-images/releases/tag/macos-14-arm64%2F20250715.1663 -2025-07-23T19:28:55.6490280Z ##[endgroup] -2025-07-23T19:28:55.6490600Z ##[group]Runner Image Provisioner -2025-07-23T19:28:55.6490980Z 2.0.449.1+6d46f4794670abc677653e70ad733fc4b7478209 -2025-07-23T19:28:55.6491360Z ##[endgroup] -2025-07-23T19:28:55.6492780Z ##[group]GITHUB_TOKEN Permissions -2025-07-23T19:28:55.6493700Z Actions: write -2025-07-23T19:28:55.6494080Z Attestations: write -2025-07-23T19:28:55.6494420Z Checks: write -2025-07-23T19:28:55.6494710Z Contents: write -2025-07-23T19:28:55.6494990Z Deployments: write -2025-07-23T19:28:55.6495400Z Discussions: write -2025-07-23T19:28:55.6495700Z Issues: write -2025-07-23T19:28:55.6495980Z Metadata: read -2025-07-23T19:28:55.6496270Z Models: read -2025-07-23T19:28:55.6496550Z Packages: write -2025-07-23T19:28:55.6496860Z Pages: write -2025-07-23T19:28:55.6497140Z PullRequests: write -2025-07-23T19:28:55.6497450Z RepositoryProjects: write -2025-07-23T19:28:55.6497770Z SecurityEvents: write -2025-07-23T19:28:55.6498070Z Statuses: write -2025-07-23T19:28:55.6498370Z ##[endgroup] -2025-07-23T19:28:55.6499510Z Secret source: Actions -2025-07-23T19:28:55.6499910Z Prepare workflow directory -2025-07-23T19:28:55.6698640Z Prepare all required actions -2025-07-23T19:28:55.6723790Z Getting action download info -2025-07-23T19:28:55.9826770Z ##[group]Download immutable action package 'actions/checkout@v4' -2025-07-23T19:28:55.9827440Z Version: 4.2.2 -2025-07-23T19:28:55.9828010Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 -2025-07-23T19:28:55.9828760Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 -2025-07-23T19:28:55.9829220Z ##[endgroup] -2025-07-23T19:28:56.3134370Z ##[group]Download immutable action package 'actions/setup-go@v5' -2025-07-23T19:28:56.3135560Z Version: 5.5.0 -2025-07-23T19:28:56.3136060Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb -2025-07-23T19:28:56.3136680Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 -2025-07-23T19:28:56.3137140Z ##[endgroup] -2025-07-23T19:28:57.0637990Z Complete job name: Golang Unit Tests (macos-latest) diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/22_Post Run actions_checkout@v4.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/22_Post Run actions_checkout@v4.txt deleted file mode 100644 index fda7809a3e..0000000000 --- a/logs_42241282643/Golang Unit Tests (macos-latest)/22_Post Run actions_checkout@v4.txt +++ /dev/null @@ -1,13 +0,0 @@ -2025-07-23T19:35:29.7511660Z Post job cleanup. -2025-07-23T19:35:30.1818880Z [command]/opt/homebrew/bin/git version -2025-07-23T19:35:30.2110940Z git version 2.50.1 -2025-07-23T19:35:30.2156290Z Copying '/Users/runner/.gitconfig' to '/Users/runner/work/_temp/804fb9a9-4f08-41b4-aae6-898a7bc2f756/.gitconfig' -2025-07-23T19:35:30.2168300Z Temporarily overriding HOME='/Users/runner/work/_temp/804fb9a9-4f08-41b4-aae6-898a7bc2f756' before making global git config changes -2025-07-23T19:35:30.2170470Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:35:30.2171790Z [command]/opt/homebrew/bin/git config --global --add safe.directory /Users/runner/work/coreth/coreth -2025-07-23T19:35:30.2281140Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:35:30.2345830Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:35:30.3922300Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:35:30.3957320Z http.https://github.com/.extraheader -2025-07-23T19:35:30.3989730Z [command]/opt/homebrew/bin/git config --local --unset-all http.https://github.com/.extraheader -2025-07-23T19:35:30.4115650Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/23_Complete job.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/23_Complete job.txt deleted file mode 100644 index feca883a51..0000000000 --- a/logs_42241282643/Golang Unit Tests (macos-latest)/23_Complete job.txt +++ /dev/null @@ -1 +0,0 @@ -2025-07-23T19:35:30.5740930Z Cleaning up orphan processes diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/2_Run actions_checkout@v4.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/2_Run actions_checkout@v4.txt deleted file mode 100644 index a2ec74b771..0000000000 --- a/logs_42241282643/Golang Unit Tests (macos-latest)/2_Run actions_checkout@v4.txt +++ /dev/null @@ -1,69 +0,0 @@ -2025-07-23T19:28:57.0964760Z ##[group]Run actions/checkout@v4 -2025-07-23T19:28:57.0965280Z with: -2025-07-23T19:28:57.0965580Z repository: ava-labs/coreth -2025-07-23T19:28:57.0966010Z token: *** -2025-07-23T19:28:57.0966290Z ssh-strict: true -2025-07-23T19:28:57.0966580Z ssh-user: git -2025-07-23T19:28:57.0966890Z persist-credentials: true -2025-07-23T19:28:57.0967210Z clean: true -2025-07-23T19:28:57.0967500Z sparse-checkout-cone-mode: true -2025-07-23T19:28:57.0967850Z fetch-depth: 1 -2025-07-23T19:28:57.0968130Z fetch-tags: false -2025-07-23T19:28:57.0968500Z show-progress: true -2025-07-23T19:28:57.0968800Z lfs: false -2025-07-23T19:28:57.0969080Z submodules: false -2025-07-23T19:28:57.0969390Z set-safe-directory: true -2025-07-23T19:28:57.0969810Z ##[endgroup] -2025-07-23T19:28:57.3790870Z Syncing repository: ava-labs/coreth -2025-07-23T19:28:57.3792270Z ##[group]Getting Git version info -2025-07-23T19:28:57.3792780Z Working directory is '/Users/runner/work/coreth/coreth' -2025-07-23T19:28:57.3814460Z [command]/opt/homebrew/bin/git version -2025-07-23T19:28:57.4339210Z git version 2.50.1 -2025-07-23T19:28:57.4362640Z ##[endgroup] -2025-07-23T19:28:57.4368250Z Copying '/Users/runner/.gitconfig' to '/Users/runner/work/_temp/8fdf0996-2c77-4556-aa33-ff5ddfd5426f/.gitconfig' -2025-07-23T19:28:57.4374240Z Temporarily overriding HOME='/Users/runner/work/_temp/8fdf0996-2c77-4556-aa33-ff5ddfd5426f' before making global git config changes -2025-07-23T19:28:57.4375240Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:28:57.4377800Z [command]/opt/homebrew/bin/git config --global --add safe.directory /Users/runner/work/coreth/coreth -2025-07-23T19:28:57.4445230Z Deleting the contents of '/Users/runner/work/coreth/coreth' -2025-07-23T19:28:57.4447090Z ##[group]Initializing the repository -2025-07-23T19:28:57.4450950Z [command]/opt/homebrew/bin/git init /Users/runner/work/coreth/coreth -2025-07-23T19:28:57.4585140Z hint: Using 'master' as the name for the initial branch. This default branch name -2025-07-23T19:28:57.4586550Z hint: is subject to change. To configure the initial branch name to use in all -2025-07-23T19:28:57.4587440Z hint: of your new repositories, which will suppress this warning, call: -2025-07-23T19:28:57.4587960Z hint: -2025-07-23T19:28:57.4588360Z hint: git config --global init.defaultBranch -2025-07-23T19:28:57.4588900Z hint: -2025-07-23T19:28:57.4589330Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and -2025-07-23T19:28:57.4589980Z hint: 'development'. The just-created branch can be renamed via this command: -2025-07-23T19:28:57.4590510Z hint: -2025-07-23T19:28:57.4590800Z hint: git branch -m -2025-07-23T19:28:57.4591140Z hint: -2025-07-23T19:28:57.4591590Z hint: Disable this message with "git config set advice.defaultBranchName false" -2025-07-23T19:28:57.4592280Z Initialized empty Git repository in /Users/runner/work/coreth/coreth/.git/ -2025-07-23T19:28:57.4593630Z [command]/opt/homebrew/bin/git remote add origin https://github.com/ava-labs/coreth -2025-07-23T19:28:57.4643780Z ##[endgroup] -2025-07-23T19:28:57.4644350Z ##[group]Disabling automatic garbage collection -2025-07-23T19:28:57.4646240Z [command]/opt/homebrew/bin/git config --local gc.auto 0 -2025-07-23T19:28:57.4688290Z ##[endgroup] -2025-07-23T19:28:57.4689010Z ##[group]Setting up auth -2025-07-23T19:28:57.4691920Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:28:57.4729790Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:28:57.5272140Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:28:57.5306370Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:28:57.6710280Z [command]/opt/homebrew/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** -2025-07-23T19:28:57.6712310Z ##[endgroup] -2025-07-23T19:28:57.6713540Z ##[group]Fetching the repository -2025-07-23T19:28:57.6714730Z [command]/opt/homebrew/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge -2025-07-23T19:28:58.8014880Z From https://github.com/ava-labs/coreth -2025-07-23T19:28:58.8015850Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge -2025-07-23T19:28:58.8062930Z ##[endgroup] -2025-07-23T19:28:58.8063590Z ##[group]Determining the checkout info -2025-07-23T19:28:58.8064360Z ##[endgroup] -2025-07-23T19:28:58.8067130Z [command]/opt/homebrew/bin/git sparse-checkout disable -2025-07-23T19:28:58.8121760Z [command]/opt/homebrew/bin/git config --local --unset-all extensions.worktreeConfig -2025-07-23T19:28:58.8161680Z ##[group]Checking out the ref -2025-07-23T19:28:58.8163650Z [command]/opt/homebrew/bin/git checkout --progress --force refs/remotes/pull/1065/merge -2025-07-23T19:28:58.9380720Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 -2025-07-23T19:28:58.9628690Z ##[endgroup] -2025-07-23T19:28:58.9933230Z [command]/opt/homebrew/bin/git log -1 --format=%H -2025-07-23T19:28:58.9996160Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/4_Run actions_setup-go@v5.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/4_Run actions_setup-go@v5.txt deleted file mode 100644 index 81b461074e..0000000000 --- a/logs_42241282643/Golang Unit Tests (macos-latest)/4_Run actions_setup-go@v5.txt +++ /dev/null @@ -1,81 +0,0 @@ -2025-07-23T19:28:59.0333800Z ##[group]Run actions/setup-go@v5 -2025-07-23T19:28:59.0335490Z with: -2025-07-23T19:28:59.0336150Z go-version-file: go.mod -2025-07-23T19:28:59.0336850Z check-latest: false -2025-07-23T19:28:59.0337670Z token: *** -2025-07-23T19:28:59.0338220Z cache: true -2025-07-23T19:28:59.0338780Z ##[endgroup] -2025-07-23T19:28:59.1634380Z Setup go version spec 1.23.9 -2025-07-23T19:28:59.1662390Z Attempting to download 1.23.9... -2025-07-23T19:29:00.0309840Z matching 1.23.9... -2025-07-23T19:29:00.1350450Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-darwin-arm64.tar.gz -2025-07-23T19:29:00.9474640Z Extracting Go... -2025-07-23T19:29:00.9555840Z [command]/usr/bin/tar xz -C /Users/runner/work/_temp/aabfc34d-b18f-416a-b458-a6f7e344f159 -f /Users/runner/work/_temp/5cbcbaac-4a4d-4d9b-a417-f79fb5e4419b -2025-07-23T19:29:03.3391600Z Successfully extracted go to /Users/runner/work/_temp/aabfc34d-b18f-416a-b458-a6f7e344f159 -2025-07-23T19:29:03.3392160Z Adding to the cache ... -2025-07-23T19:29:07.9882190Z Successfully cached go to /Users/runner/hostedtoolcache/go/1.23.9/arm64 -2025-07-23T19:29:07.9889210Z Added go to the path -2025-07-23T19:29:07.9919140Z Successfully set up Go version 1.23.9 -2025-07-23T19:29:08.1129900Z [command]/Users/runner/hostedtoolcache/go/1.23.9/arm64/bin/go env GOMODCACHE -2025-07-23T19:29:08.1167070Z [command]/Users/runner/hostedtoolcache/go/1.23.9/arm64/bin/go env GOCACHE -2025-07-23T19:29:08.1167650Z /Users/runner/go/pkg/mod -2025-07-23T19:29:08.1170190Z /Users/runner/Library/Caches/go-build -2025-07-23T19:29:08.2655650Z Cache hit for: setup-go-macOS-arm64-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:09.4201380Z Received 71303168 of 665833561 (10.7%), 67.9 MBs/sec -2025-07-23T19:29:10.4306280Z Received 192937984 of 665833561 (29.0%), 91.4 MBs/sec -2025-07-23T19:29:11.4348480Z Received 301989888 of 665833561 (45.4%), 95.6 MBs/sec -2025-07-23T19:29:12.4426820Z Received 406847488 of 665833561 (61.1%), 96.6 MBs/sec -2025-07-23T19:29:13.4343830Z Received 536870912 of 665833561 (80.6%), 102.0 MBs/sec -2025-07-23T19:29:14.4293850Z Received 665833561 of 665833561 (100.0%), 105.6 MBs/sec -2025-07-23T19:29:14.4299350Z Cache Size: ~635 MB (665833561 B) -2025-07-23T19:29:14.4342590Z [command]/opt/homebrew/bin/gtar -xf /Users/runner/work/_temp/d7820235-272a-4fb0-a9c1-f98db5fee222/cache.tzst -P -C /Users/runner/work/coreth/coreth --delay-directory-restore --use-compress-program unzstd -2025-07-23T19:29:24.0727180Z Cache restored successfully -2025-07-23T19:29:24.0932010Z Cache restored from key: setup-go-macOS-arm64-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:24.1086700Z go version go1.23.9 darwin/arm64 -2025-07-23T19:29:24.1086910Z -2025-07-23T19:29:24.1087310Z ##[group]go env -2025-07-23T19:29:25.8943890Z GO111MODULE='' -2025-07-23T19:29:25.9045090Z GOARCH='arm64' -2025-07-23T19:29:25.9102380Z GOBIN='' -2025-07-23T19:29:25.9103460Z GOCACHE='/Users/runner/Library/Caches/go-build' -2025-07-23T19:29:25.9105780Z GOENV='/Users/runner/Library/Application Support/go/env' -2025-07-23T19:29:25.9107060Z GOEXE='' -2025-07-23T19:29:25.9108750Z GOEXPERIMENT='' -2025-07-23T19:29:25.9110050Z GOFLAGS='' -2025-07-23T19:29:25.9111460Z GOHOSTARCH='arm64' -2025-07-23T19:29:25.9112000Z GOHOSTOS='darwin' -2025-07-23T19:29:25.9112480Z GOINSECURE='' -2025-07-23T19:29:25.9113120Z GOMODCACHE='/Users/runner/go/pkg/mod' -2025-07-23T19:29:25.9114010Z GONOPROXY='' -2025-07-23T19:29:25.9116090Z GONOSUMDB='' -2025-07-23T19:29:25.9118500Z GOOS='darwin' -2025-07-23T19:29:25.9119080Z GOPATH='/Users/runner/go' -2025-07-23T19:29:25.9120780Z GOPRIVATE='' -2025-07-23T19:29:25.9122040Z GOPROXY='https://proxy.golang.org,direct' -2025-07-23T19:29:25.9122520Z GOROOT='/Users/runner/hostedtoolcache/go/1.23.9/arm64' -2025-07-23T19:29:25.9128930Z GOSUMDB='sum.golang.org' -2025-07-23T19:29:25.9129490Z GOTMPDIR='' -2025-07-23T19:29:25.9129720Z GOTOOLCHAIN='auto' -2025-07-23T19:29:25.9130220Z GOTOOLDIR='/Users/runner/hostedtoolcache/go/1.23.9/arm64/pkg/tool/darwin_arm64' -2025-07-23T19:29:25.9131950Z GOVCS='' -2025-07-23T19:29:25.9132170Z GOVERSION='go1.23.9' -2025-07-23T19:29:25.9132500Z GODEBUG='' -2025-07-23T19:29:25.9132730Z GOTELEMETRY='local' -2025-07-23T19:29:25.9133210Z GOTELEMETRYDIR='/Users/runner/Library/Application Support/go/telemetry' -2025-07-23T19:29:25.9133610Z GCCGO='gccgo' -2025-07-23T19:29:25.9133860Z GOARM64='v8.0' -2025-07-23T19:29:25.9134080Z AR='ar' -2025-07-23T19:29:25.9134330Z CC='clang' -2025-07-23T19:29:25.9134600Z CXX='clang++' -2025-07-23T19:29:25.9134820Z CGO_ENABLED='1' -2025-07-23T19:29:25.9135110Z GOMOD='/Users/runner/work/coreth/coreth/go.mod' -2025-07-23T19:29:25.9135500Z GOWORK='' -2025-07-23T19:29:25.9135700Z CGO_CFLAGS='-O2 -g' -2025-07-23T19:29:25.9135920Z CGO_CPPFLAGS='' -2025-07-23T19:29:25.9136240Z CGO_CXXFLAGS='-O2 -g' -2025-07-23T19:29:25.9136470Z CGO_FFLAGS='-O2 -g' -2025-07-23T19:29:25.9136740Z CGO_LDFLAGS='-O2 -g' -2025-07-23T19:29:25.9137050Z PKG_CONFIG='pkg-config' -2025-07-23T19:29:25.9138200Z GOGCCFLAGS='-fPIC -arch arm64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -ffile-prefix-map=/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/go-build963083595=/tmp/go-build -gno-record-gcc-switches -fno-common' -2025-07-23T19:29:25.9139170Z -2025-07-23T19:29:25.9139570Z ##[endgroup] diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/6_Run go mod download.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/6_Run go mod download.txt deleted file mode 100644 index b4d76d2153..0000000000 --- a/logs_42241282643/Golang Unit Tests (macos-latest)/6_Run go mod download.txt +++ /dev/null @@ -1,4 +0,0 @@ -2025-07-23T19:29:25.9246490Z ##[group]Run go mod download -2025-07-23T19:29:25.9246870Z go mod download -2025-07-23T19:29:25.9424250Z shell: /bin/bash -e {0} -2025-07-23T19:29:25.9424590Z ##[endgroup] diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/7_Check generated codec files are up to date.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/7_Check generated codec files are up to date.txt deleted file mode 100644 index f3cdcfe021..0000000000 --- a/logs_42241282643/Golang Unit Tests (macos-latest)/7_Check generated codec files are up to date.txt +++ /dev/null @@ -1,10 +0,0 @@ -2025-07-23T19:29:26.1558900Z ##[group]Run ./scripts/run_task.sh check-generate-codec -2025-07-23T19:29:26.1559250Z ./scripts/run_task.sh check-generate-codec -2025-07-23T19:29:26.1636030Z shell: /bin/bash -e {0} -2025-07-23T19:29:26.1636290Z ##[endgroup] -2025-07-23T19:29:28.1177100Z task: [generate-codec] grep -lr -E '^// Code generated by github\.com\/fjl\/gencodec\. DO NOT EDIT\.$' . | xargs -r rm -2025-07-23T19:29:28.3630560Z task: [generate-codec] go generate -run "github.com/fjl/gencodec" ./... -2025-07-23T19:29:35.3968670Z task: [check-clean-branch] git add --all -2025-07-23T19:29:35.5080040Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null -2025-07-23T19:29:35.5157500Z task: [check-clean-branch] git status --short -2025-07-23T19:29:35.5286050Z task: [check-clean-branch] git diff-index --quiet HEAD diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/8_Check generated mocks are up to date.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/8_Check generated mocks are up to date.txt deleted file mode 100644 index b034b8dc12..0000000000 --- a/logs_42241282643/Golang Unit Tests (macos-latest)/8_Check generated mocks are up to date.txt +++ /dev/null @@ -1,10 +0,0 @@ -2025-07-23T19:29:35.5411700Z ##[group]Run ./scripts/run_task.sh check-generate-mocks -2025-07-23T19:29:35.5412010Z ./scripts/run_task.sh check-generate-mocks -2025-07-23T19:29:35.5538800Z shell: /bin/bash -e {0} -2025-07-23T19:29:35.5539020Z ##[endgroup] -2025-07-23T19:29:36.1478890Z task: [generate-mocks] grep -lr -E '^// Code generated by MockGen\. DO NOT EDIT\.$' . | xargs -r rm -2025-07-23T19:29:36.2869110Z task: [generate-mocks] go generate -run "go.uber.org/mock/mockgen" ./... -2025-07-23T19:29:41.7072260Z task: [check-clean-branch] git add --all -2025-07-23T19:29:41.7167930Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null -2025-07-23T19:29:41.7225610Z task: [check-clean-branch] git status --short -2025-07-23T19:29:41.7322610Z task: [check-clean-branch] git diff-index --quiet HEAD diff --git a/logs_42241282643/Golang Unit Tests (macos-latest)/9_Run ._scripts_run_task.sh build.txt b/logs_42241282643/Golang Unit Tests (macos-latest)/9_Run ._scripts_run_task.sh build.txt deleted file mode 100644 index 355b01d07e..0000000000 --- a/logs_42241282643/Golang Unit Tests (macos-latest)/9_Run ._scripts_run_task.sh build.txt +++ /dev/null @@ -1,7 +0,0 @@ -2025-07-23T19:29:41.7437810Z ##[group]Run ./scripts/run_task.sh build -2025-07-23T19:29:41.7438070Z ./scripts/run_task.sh build -2025-07-23T19:29:41.7487190Z shell: /bin/bash -e {0} -2025-07-23T19:29:41.7487370Z ##[endgroup] -2025-07-23T19:29:42.3282000Z task: [build] ./scripts/build.sh -2025-07-23T19:29:42.3605880Z Using branch: d85ec03 -2025-07-23T19:29:42.3639400Z Building Coreth @ GitCommit: d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 at /Users/runner/.avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/10_Run ._scripts_run_task.sh build-test.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/10_Run ._scripts_run_task.sh build-test.txt deleted file mode 100644 index 54f6800b74..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/10_Run ._scripts_run_task.sh build-test.txt +++ /dev/null @@ -1,13 +0,0 @@ -2025-07-23T19:29:42.1473107Z ##[group]Run ./scripts/run_task.sh build-test -2025-07-23T19:29:42.1473472Z ./scripts/run_task.sh build-test -2025-07-23T19:29:42.1505924Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:42.1506157Z env: -2025-07-23T19:29:42.1506319Z TIMEOUT: -2025-07-23T19:29:42.1506490Z ##[endgroup] -2025-07-23T19:29:42.5341202Z task: [build-test] ./scripts/build_test.sh -2025-07-23T19:29:42.5463557Z Using branch: d85ec03 -2025-07-23T19:29:42.9322512Z Test run 1 of 4 -2025-07-23T19:29:42.9322804Z Getting expected test list... -2025-07-23T19:29:51.3588514Z Expected tests: 1 tests -2025-07-23T19:29:51.3588921Z Running tests... -2025-07-23T19:36:52.7662676Z All tests passed! diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/11_Run ._scripts_run_task.sh coverage.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/11_Run ._scripts_run_task.sh coverage.txt deleted file mode 100644 index a214054ab6..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/11_Run ._scripts_run_task.sh coverage.txt +++ /dev/null @@ -1,2929 +0,0 @@ -2025-07-23T19:36:52.7808739Z ##[group]Run ./scripts/run_task.sh coverage -2025-07-23T19:36:52.7809334Z ./scripts/run_task.sh coverage -2025-07-23T19:36:52.7884638Z shell: /usr/bin/bash -e {0} -2025-07-23T19:36:52.7885234Z ##[endgroup] -2025-07-23T19:36:53.8544166Z task: [coverage] ./scripts/coverage.sh -2025-07-23T19:36:54.3320827Z Current test coverage : 0.0 -2025-07-23T19:36:54.3321297Z 60.0 % -2025-07-23T19:36:54.3321611Z ======================================== -2025-07-23T19:36:54.7656303Z github.com/ava-labs/coreth/accounts/abi/abi.go:59: JSON 100.0% -2025-07-23T19:36:54.7657417Z github.com/ava-labs/coreth/accounts/abi/abi.go:74: Pack 91.7% -2025-07-23T19:36:54.7658484Z github.com/ava-labs/coreth/accounts/abi/abi.go:103: PackEvent 81.8% -2025-07-23T19:36:54.7659574Z github.com/ava-labs/coreth/accounts/abi/abi.go:147: PackOutput 71.4% -2025-07-23T19:36:54.7660606Z github.com/ava-labs/coreth/accounts/abi/abi.go:162: getInputs 80.0% -2025-07-23T19:36:54.7661618Z github.com/ava-labs/coreth/accounts/abi/abi.go:182: getArguments 90.0% -2025-07-23T19:36:54.7662488Z github.com/ava-labs/coreth/accounts/abi/abi.go:205: UnpackInput 0.0% -2025-07-23T19:36:54.7663296Z github.com/ava-labs/coreth/accounts/abi/abi.go:214: Unpack 75.0% -2025-07-23T19:36:54.7664164Z github.com/ava-labs/coreth/accounts/abi/abi.go:228: UnpackInputIntoInterface 85.7% -2025-07-23T19:36:54.7665287Z github.com/ava-labs/coreth/accounts/abi/abi.go:243: UnpackIntoInterface 85.7% -2025-07-23T19:36:54.7666179Z github.com/ava-labs/coreth/accounts/abi/abi.go:256: UnpackIntoMap 100.0% -2025-07-23T19:36:54.7667042Z github.com/ava-labs/coreth/accounts/abi/abi.go:265: UnmarshalJSON 85.7% -2025-07-23T19:36:54.7667858Z github.com/ava-labs/coreth/accounts/abi/abi.go:330: MethodById 100.0% -2025-07-23T19:36:54.7668631Z github.com/ava-labs/coreth/accounts/abi/abi.go:344: EventByID 100.0% -2025-07-23T19:36:54.7669427Z github.com/ava-labs/coreth/accounts/abi/abi.go:355: ErrorByID 100.0% -2025-07-23T19:36:54.7670245Z github.com/ava-labs/coreth/accounts/abi/abi.go:365: HasFallback 100.0% -2025-07-23T19:36:54.7671053Z github.com/ava-labs/coreth/accounts/abi/abi.go:370: HasReceive 100.0% -2025-07-23T19:36:54.7671863Z github.com/ava-labs/coreth/accounts/abi/abi.go:402: UnpackRevert 81.8% -2025-07-23T19:36:54.7672712Z github.com/ava-labs/coreth/accounts/abi/argument.go:57: UnmarshalJSON 90.0% -2025-07-23T19:36:54.7673637Z github.com/ava-labs/coreth/accounts/abi/argument.go:75: NonIndexed 100.0% -2025-07-23T19:36:54.7674544Z github.com/ava-labs/coreth/accounts/abi/argument.go:86: isTuple 100.0% -2025-07-23T19:36:54.7676223Z github.com/ava-labs/coreth/accounts/abi/argument.go:91: Unpack 100.0% -2025-07-23T19:36:54.7677124Z github.com/ava-labs/coreth/accounts/abi/argument.go:102: UnpackIntoMap 58.3% -2025-07-23T19:36:54.7678002Z github.com/ava-labs/coreth/accounts/abi/argument.go:124: Copy 77.8% -2025-07-23T19:36:54.7678865Z github.com/ava-labs/coreth/accounts/abi/argument.go:142: copyAtomic 100.0% -2025-07-23T19:36:54.7679774Z github.com/ava-labs/coreth/accounts/abi/argument.go:153: copyTuple 95.7% -2025-07-23T19:36:54.7680594Z github.com/ava-labs/coreth/accounts/abi/argument.go:195: UnpackValues 100.0% -2025-07-23T19:36:54.7681448Z github.com/ava-labs/coreth/accounts/abi/argument.go:228: PackValues 0.0% -2025-07-23T19:36:54.7682550Z github.com/ava-labs/coreth/accounts/abi/argument.go:233: Pack 100.0% -2025-07-23T19:36:54.7683270Z github.com/ava-labs/coreth/accounts/abi/argument.go:276: ToCamelCase 100.0% -2025-07-23T19:36:54.7684239Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:56: NewTransactor 0.0% -2025-07-23T19:36:54.7685382Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:73: NewKeyStoreTransactor 0.0% -2025-07-23T19:36:54.7686337Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:96: NewKeyedTransactor 0.0% -2025-07-23T19:36:54.7687292Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:118: NewTransactorWithChainID 0.0% -2025-07-23T19:36:54.7688273Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:132: NewKeyStoreTransactorWithChainID 0.0% -2025-07-23T19:36:54.7688941Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:155: NewKeyedTransactorWithChainID 72.7% -2025-07-23T19:36:54.7689551Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:179: NewClefTransactor 0.0% -2025-07-23T19:36:54.7690116Z github.com/ava-labs/coreth/accounts/abi/bind/backends/simulated.go:67: Fork 0.0% -2025-07-23T19:36:54.7691122Z github.com/ava-labs/coreth/accounts/abi/bind/backends/simulated.go:78: NewSimulatedBackend 0.0% -2025-07-23T19:36:54.7692106Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:128: GetAbi 0.0% -2025-07-23T19:36:54.7692971Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:155: NewBoundContract 100.0% -2025-07-23T19:36:54.7693853Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:167: DeployContract 77.8% -2025-07-23T19:36:54.7694457Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:187: Call 100.0% -2025-07-23T19:36:54.7695440Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:265: Transact 75.0% -2025-07-23T19:36:54.7696251Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:278: RawTransact 0.0% -2025-07-23T19:36:54.7697036Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:286: Transfer 0.0% -2025-07-23T19:36:54.7697872Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:294: wrapNativeAssetCall 83.3% -2025-07-23T19:36:54.7698755Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:324: createDynamicTx 84.0% -2025-07-23T19:36:54.7699619Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:376: createLegacyTx 81.8% -2025-07-23T19:36:54.7700469Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:419: estimateGasLimit 71.4% -2025-07-23T19:36:54.7701280Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:440: getNonce 75.0% -2025-07-23T19:36:54.7702120Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:451: transact 66.7% -2025-07-23T19:36:54.7702904Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:502: FilterLogs 0.0% -2025-07-23T19:36:54.7703725Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:551: WatchLogs 0.0% -2025-07-23T19:36:54.7704520Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:581: UnpackLog 0.0% -2025-07-23T19:36:54.7705537Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:604: UnpackLogIntoMap 83.3% -2025-07-23T19:36:54.7706393Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:628: ensureContext 100.0% -2025-07-23T19:36:54.7707534Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:54: isKeyWord 100.0% -2025-07-23T19:36:54.7708373Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:95: Bind 92.2% -2025-07-23T19:36:54.7709244Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:323: bindBasicTypeGo 100.0% -2025-07-23T19:36:54.7709992Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:349: bindTypeGo 100.0% -2025-07-23T19:36:54.7710905Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:370: bindTopicTypeGo 100.0% -2025-07-23T19:36:54.7711989Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:394: bindStructTypeGo 100.0% -2025-07-23T19:36:54.7712870Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:445: alias 100.0% -2025-07-23T19:36:54.7713668Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:462: decapitalise 75.0% -2025-07-23T19:36:54.7714486Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:473: structured 100.0% -2025-07-23T19:36:54.7715533Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:496: hasStruct 100.0% -2025-07-23T19:36:54.7716411Z github.com/ava-labs/coreth/accounts/abi/bind/util.go:43: WaitMined 91.7% -2025-07-23T19:36:54.7717300Z github.com/ava-labs/coreth/accounts/abi/bind/util.go:71: WaitDeployed 90.9% -2025-07-23T19:36:54.7718149Z github.com/ava-labs/coreth/accounts/abi/error.go:54: NewError 92.9% -2025-07-23T19:36:54.7719229Z github.com/ava-labs/coreth/accounts/abi/error.go:91: String 100.0% -2025-07-23T19:36:54.7720014Z github.com/ava-labs/coreth/accounts/abi/error.go:95: Unpack 0.0% -2025-07-23T19:36:54.7720911Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:50: formatSliceString 66.7% -2025-07-23T19:36:54.7721901Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:59: sliceTypeCheck 90.0% -2025-07-23T19:36:54.7722847Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:82: typeCheck 100.0% -2025-07-23T19:36:54.7723768Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:98: typeErr 100.0% -2025-07-23T19:36:54.7724628Z github.com/ava-labs/coreth/accounts/abi/event.go:73: NewEvent 100.0% -2025-07-23T19:36:54.7725603Z github.com/ava-labs/coreth/accounts/abi/event.go:112: String 100.0% -2025-07-23T19:36:54.7726429Z github.com/ava-labs/coreth/accounts/abi/method.go:105: NewMethod 100.0% -2025-07-23T19:36:54.7727262Z github.com/ava-labs/coreth/accounts/abi/method.go:164: String 100.0% -2025-07-23T19:36:54.7728082Z github.com/ava-labs/coreth/accounts/abi/method.go:169: IsConstant 0.0% -2025-07-23T19:36:54.7728893Z github.com/ava-labs/coreth/accounts/abi/method.go:175: IsPayable 0.0% -2025-07-23T19:36:54.7729750Z github.com/ava-labs/coreth/accounts/abi/pack.go:42: packBytesSlice 100.0% -2025-07-23T19:36:54.7730599Z github.com/ava-labs/coreth/accounts/abi/pack.go:49: packElement 83.3% -2025-07-23T19:36:54.7731410Z github.com/ava-labs/coreth/accounts/abi/pack.go:85: packNum 80.0% -2025-07-23T19:36:54.7732291Z github.com/ava-labs/coreth/accounts/abi/reflect.go:52: ConvertType 83.3% -2025-07-23T19:36:54.7733139Z github.com/ava-labs/coreth/accounts/abi/reflect.go:66: indirect 100.0% -2025-07-23T19:36:54.7734017Z github.com/ava-labs/coreth/accounts/abi/reflect.go:75: reflectIntType 100.0% -2025-07-23T19:36:54.7735107Z github.com/ava-labs/coreth/accounts/abi/reflect.go:103: mustArrayToByteSlice 100.0% -2025-07-23T19:36:54.7736015Z github.com/ava-labs/coreth/accounts/abi/reflect.go:113: set 100.0% -2025-07-23T19:36:54.7736827Z github.com/ava-labs/coreth/accounts/abi/reflect.go:137: setSlice 75.0% -2025-07-23T19:36:54.7737642Z github.com/ava-labs/coreth/accounts/abi/reflect.go:151: setArray 84.6% -2025-07-23T19:36:54.7738481Z github.com/ava-labs/coreth/accounts/abi/reflect.go:172: setStruct 75.0% -2025-07-23T19:36:54.7739416Z github.com/ava-labs/coreth/accounts/abi/reflect.go:195: mapArgNamesToStructFields 100.0% -2025-07-23T19:36:54.7740463Z github.com/ava-labs/coreth/accounts/abi/topics.go:45: packTopic 96.4% -2025-07-23T19:36:54.7741202Z github.com/ava-labs/coreth/accounts/abi/topics.go:111: PackTopics 85.7% -2025-07-23T19:36:54.7741997Z github.com/ava-labs/coreth/accounts/abi/topics.go:125: MakeTopics 87.5% -2025-07-23T19:36:54.7742856Z github.com/ava-labs/coreth/accounts/abi/topics.go:139: genIntType 100.0% -2025-07-23T19:36:54.7743728Z github.com/ava-labs/coreth/accounts/abi/topics.go:153: ParseTopics 100.0% -2025-07-23T19:36:54.7744639Z github.com/ava-labs/coreth/accounts/abi/topics.go:162: ParseTopicsIntoMap 100.0% -2025-07-23T19:36:54.7745753Z github.com/ava-labs/coreth/accounts/abi/topics.go:174: parseTopicWithSetter 95.0% -2025-07-23T19:36:54.7746639Z github.com/ava-labs/coreth/accounts/abi/type.go:81: NewType 93.1% -2025-07-23T19:36:54.7747423Z github.com/ava-labs/coreth/accounts/abi/type.go:239: GetType 80.0% -2025-07-23T19:36:54.7748226Z github.com/ava-labs/coreth/accounts/abi/type.go:275: String 100.0% -2025-07-23T19:36:54.7749008Z github.com/ava-labs/coreth/accounts/abi/type.go:279: pack 90.9% -2025-07-23T19:36:54.7749868Z github.com/ava-labs/coreth/accounts/abi/type.go:362: requiresLengthPrefix 100.0% -2025-07-23T19:36:54.7750780Z github.com/ava-labs/coreth/accounts/abi/type.go:373: isDynamicType 100.0% -2025-07-23T19:36:54.7751815Z github.com/ava-labs/coreth/accounts/abi/type.go:393: getTypeSize 100.0% -2025-07-23T19:36:54.7752645Z github.com/ava-labs/coreth/accounts/abi/type.go:412: isLetter 100.0% -2025-07-23T19:36:54.7753486Z github.com/ava-labs/coreth/accounts/abi/type.go:423: isValidFieldName 66.7% -2025-07-23T19:36:54.7754348Z github.com/ava-labs/coreth/accounts/abi/unpack.go:49: ReadInteger 100.0% -2025-07-23T19:36:54.7755378Z github.com/ava-labs/coreth/accounts/abi/unpack.go:119: readBool 100.0% -2025-07-23T19:36:54.7756308Z github.com/ava-labs/coreth/accounts/abi/unpack.go:138: readFunctionType 66.7% -2025-07-23T19:36:54.7757261Z github.com/ava-labs/coreth/accounts/abi/unpack.go:151: ReadFixedBytes 80.0% -2025-07-23T19:36:54.7757926Z github.com/ava-labs/coreth/accounts/abi/unpack.go:163: forEachUnpack 81.2% -2025-07-23T19:36:54.7758462Z github.com/ava-labs/coreth/accounts/abi/unpack.go:203: forTupleUnpack 83.3% -2025-07-23T19:36:54.7758998Z github.com/ava-labs/coreth/accounts/abi/unpack.go:235: toGoType 83.9% -2025-07-23T19:36:54.7759548Z github.com/ava-labs/coreth/accounts/abi/unpack.go:299: lengthPrefixPointsTo 94.1% -2025-07-23T19:36:54.7760099Z github.com/ava-labs/coreth/accounts/abi/unpack.go:329: tuplePointsTo 71.4% -2025-07-23T19:36:54.7760642Z github.com/ava-labs/coreth/accounts/abi/utils.go:43: ResolveNameConflict 100.0% -2025-07-23T19:36:54.7761137Z github.com/ava-labs/coreth/cmd/abigen/main.go:90: init 100.0% -2025-07-23T19:36:54.7761572Z github.com/ava-labs/coreth/cmd/abigen/main.go:106: abigen 0.0% -2025-07-23T19:36:54.7762007Z github.com/ava-labs/coreth/cmd/abigen/main.go:245: main 0.0% -2025-07-23T19:36:54.7762496Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:24: newNameFilter 100.0% -2025-07-23T19:36:54.7762998Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:38: add 100.0% -2025-07-23T19:36:54.7763482Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:57: Matches 100.0% -2025-07-23T19:36:54.7764007Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:53: BuildConfig 0.0% -2025-07-23T19:36:54.7764554Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:86: BuildViper 0.0% -2025-07-23T19:36:54.7765432Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:109: BuildFlagSet 0.0% -2025-07-23T19:36:54.7766017Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:115: addSimulatorFlags 0.0% -2025-07-23T19:36:54.7766563Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:22: CreateKey 0.0% -2025-07-23T19:36:54.7767227Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:27: Load 0.0% -2025-07-23T19:36:54.7767698Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:36: LoadAll 0.0% -2025-07-23T19:36:54.7768169Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:73: Save 0.0% -2025-07-23T19:36:54.7768640Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:79: Generate 0.0% -2025-07-23T19:36:54.7769166Z github.com/ava-labs/coreth/cmd/simulator/load/funder.go:25: DistributeFunds 0.0% -2025-07-23T19:36:54.7769693Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:46: New 0.0% -2025-07-23T19:36:54.7770184Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:60: Execute 0.0% -2025-07-23T19:36:54.7770724Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:89: ConfirmReachedTip 0.0% -2025-07-23T19:36:54.7771281Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:125: ExecuteLoader 0.0% -2025-07-23T19:36:54.7771888Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:30: NewSingleAddressTxWorker 0.0% -2025-07-23T19:36:54.7772493Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:50: NewTxReceiptWorker 0.0% -2025-07-23T19:36:54.7773039Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:67: IssueTx 0.0% -2025-07-23T19:36:54.7773545Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:71: ConfirmTx 0.0% -2025-07-23T19:36:54.7774406Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:78: confirmTxByNonce 0.0% -2025-07-23T19:36:54.7775466Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:103: confirmTxByReceipt 0.0% -2025-07-23T19:36:54.7776424Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:120: LatestHeight 0.0% -2025-07-23T19:36:54.7777308Z github.com/ava-labs/coreth/cmd/simulator/main/main.go:19: main 0.0% -2025-07-23T19:36:54.7777948Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:29: NewDefaultMetrics 0.0% -2025-07-23T19:36:54.7778549Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:35: NewMetrics 0.0% -2025-07-23T19:36:54.7779096Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:68: Serve 0.0% -2025-07-23T19:36:54.7779631Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:106: Shutdown 0.0% -2025-07-23T19:36:54.7780164Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:111: Print 0.0% -2025-07-23T19:36:54.7780700Z github.com/ava-labs/coreth/cmd/simulator/txs/agent.go:51: NewIssueNAgent 0.0% -2025-07-23T19:36:54.7781215Z github.com/ava-labs/coreth/cmd/simulator/txs/agent.go:61: Execute 0.0% -2025-07-23T19:36:54.7781784Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:20: GenerateTxSequence 0.0% -2025-07-23T19:36:54.7782400Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:43: GenerateTxSequences 0.0% -2025-07-23T19:36:54.7782975Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:55: addTxs 0.0% -2025-07-23T19:36:54.7783574Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:76: ConvertTxSliceToSequence 0.0% -2025-07-23T19:36:54.7784158Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:88: Chan 0.0% -2025-07-23T19:36:54.7784634Z github.com/ava-labs/coreth/cmd/utils/cmd.go:33: Fatalf 0.0% -2025-07-23T19:36:54.7785278Z github.com/ava-labs/coreth/cmd/utils/flags.go:33: CheckExclusive 0.0% -2025-07-23T19:36:54.7785810Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:81: NewDummyEngine 0.0% -2025-07-23T19:36:54.7786354Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:95: NewETHFaker 0.0% -2025-07-23T19:36:54.7786883Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:102: NewFaker 100.0% -2025-07-23T19:36:54.7787434Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:108: NewFakerWithClock 0.0% -2025-07-23T19:36:54.7788034Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:115: NewFakerWithCallbacks 0.0% -2025-07-23T19:36:54.7788788Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:122: NewFakerWithMode 0.0% -2025-07-23T19:36:54.7789398Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:130: NewFakerWithModeAndClock 0.0% -2025-07-23T19:36:54.7789995Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:137: NewCoinbaseFaker 0.0% -2025-07-23T19:36:54.7790553Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:144: NewFullFaker 0.0% -2025-07-23T19:36:54.7791141Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:151: verifyHeaderGasFields 0.0% -2025-07-23T19:36:54.7791714Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:203: verifyHeader 0.0% -2025-07-23T19:36:54.7792243Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:263: Author 0.0% -2025-07-23T19:36:54.7792770Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:267: VerifyHeader 0.0% -2025-07-23T19:36:54.7793307Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:285: VerifyUncles 0.0% -2025-07-23T19:36:54.7793837Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:292: Prepare 0.0% -2025-07-23T19:36:54.7794379Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:297: verifyBlockFee 81.0% -2025-07-23T19:36:54.7795170Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:367: Finalize 0.0% -2025-07-23T19:36:54.7795907Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:419: FinalizeAndAssemble 0.0% -2025-07-23T19:36:54.7796492Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:477: CalcDifficulty 0.0% -2025-07-23T19:36:54.7797028Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:481: Close 0.0% -2025-07-23T19:36:54.7797595Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:47: VerifyEIP4844Header 0.0% -2025-07-23T19:36:54.7798209Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:81: CalcExcessBlobGas 100.0% -2025-07-23T19:36:54.7798810Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:90: CalcBlobFee 100.0% -2025-07-23T19:36:54.7799397Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:96: fakeExponential 100.0% -2025-07-23T19:36:54.7799974Z github.com/ava-labs/coreth/core/block_validator.go:53: NewBlockValidator 100.0% -2025-07-23T19:36:54.7800499Z github.com/ava-labs/coreth/core/block_validator.go:65: ValidateBody 62.5% -2025-07-23T19:36:54.7801017Z github.com/ava-labs/coreth/core/block_validator.go:122: ValidateState 66.7% -2025-07-23T19:36:54.7801529Z github.com/ava-labs/coreth/core/block_validator.go:150: CalcGasLimit 85.7% -2025-07-23T19:36:54.7802056Z github.com/ava-labs/coreth/core/blockchain.go:210: triedbConfig 90.0% -2025-07-23T19:36:54.7802601Z github.com/ava-labs/coreth/core/blockchain.go:260: DefaultCacheConfigWithScheme 100.0% -2025-07-23T19:36:54.7803145Z github.com/ava-labs/coreth/core/blockchain.go:385: NewBlockChain 81.8% -2025-07-23T19:36:54.7803678Z github.com/ava-labs/coreth/core/blockchain.go:507: writeBlockAcceptedIndices 66.7% -2025-07-23T19:36:54.7804243Z github.com/ava-labs/coreth/core/blockchain.go:518: batchBlockAcceptedIndices 80.0% -2025-07-23T19:36:54.7804954Z github.com/ava-labs/coreth/core/blockchain.go:529: flattenSnapshot 87.5% -2025-07-23T19:36:54.7805830Z github.com/ava-labs/coreth/core/blockchain.go:558: warmAcceptedCaches 84.2% -2025-07-23T19:36:54.7806643Z github.com/ava-labs/coreth/core/blockchain.go:595: startAcceptor 92.0% -2025-07-23T19:36:54.7807517Z github.com/ava-labs/coreth/core/blockchain.go:646: addAcceptorQueue 100.0% -2025-07-23T19:36:54.7808332Z github.com/ava-labs/coreth/core/blockchain.go:663: DrainAcceptorQueue 80.0% -2025-07-23T19:36:54.7809251Z github.com/ava-labs/coreth/core/blockchain.go:677: stopAcceptor 100.0% -2025-07-23T19:36:54.7810175Z github.com/ava-labs/coreth/core/blockchain.go:699: InitializeSnapshots 0.0% -2025-07-23T19:36:54.7811346Z github.com/ava-labs/coreth/core/blockchain.go:708: SenderCacher 0.0% -2025-07-23T19:36:54.7812240Z github.com/ava-labs/coreth/core/blockchain.go:714: loadLastState 81.8% -2025-07-23T19:36:54.7813108Z github.com/ava-labs/coreth/core/blockchain.go:762: loadGenesisState 90.0% -2025-07-23T19:36:54.7813774Z github.com/ava-labs/coreth/core/blockchain.go:780: Export 0.0% -2025-07-23T19:36:54.7814235Z github.com/ava-labs/coreth/core/blockchain.go:785: ExportN 0.0% -2025-07-23T19:36:54.7814712Z github.com/ava-labs/coreth/core/blockchain.go:792: ExportCallback 0.0% -2025-07-23T19:36:54.7815549Z github.com/ava-labs/coreth/core/blockchain.go:828: writeHeadBlock 87.5% -2025-07-23T19:36:54.7816085Z github.com/ava-labs/coreth/core/blockchain.go:847: ValidateCanonicalChain 66.7% -2025-07-23T19:36:54.7816650Z github.com/ava-labs/coreth/core/blockchain.go:956: stopWithoutSaving 100.0% -2025-07-23T19:36:54.7817138Z github.com/ava-labs/coreth/core/blockchain.go:988: Stop 100.0% -2025-07-23T19:36:54.7817616Z github.com/ava-labs/coreth/core/blockchain.go:1022: SetPreference 100.0% -2025-07-23T19:36:54.7818123Z github.com/ava-labs/coreth/core/blockchain.go:1034: setPreference 87.5% -2025-07-23T19:36:54.7818670Z github.com/ava-labs/coreth/core/blockchain.go:1060: LastConsensusAcceptedBlock 100.0% -2025-07-23T19:36:54.7819235Z github.com/ava-labs/coreth/core/blockchain.go:1071: LastAcceptedBlock 100.0% -2025-07-23T19:36:54.7819959Z github.com/ava-labs/coreth/core/blockchain.go:1083: Accept 84.6% -2025-07-23T19:36:54.7820441Z github.com/ava-labs/coreth/core/blockchain.go:1132: Reject 76.9% -2025-07-23T19:36:54.7820949Z github.com/ava-labs/coreth/core/blockchain.go:1162: writeKnownBlock 83.3% -2025-07-23T19:36:54.7821519Z github.com/ava-labs/coreth/core/blockchain.go:1175: writeCanonicalBlockWithLogs 100.0% -2025-07-23T19:36:54.7822049Z github.com/ava-labs/coreth/core/blockchain.go:1186: newTip 100.0% -2025-07-23T19:36:54.7822558Z github.com/ava-labs/coreth/core/blockchain.go:1195: writeBlockAndSetHead 83.3% -2025-07-23T19:36:54.7823102Z github.com/ava-labs/coreth/core/blockchain.go:1213: writeBlockWithState 61.1% -2025-07-23T19:36:54.7823607Z github.com/ava-labs/coreth/core/blockchain.go:1260: InsertChain 86.7% -2025-07-23T19:36:54.7824091Z github.com/ava-labs/coreth/core/blockchain.go:1296: InsertBlock 100.0% -2025-07-23T19:36:54.7824607Z github.com/ava-labs/coreth/core/blockchain.go:1300: InsertBlockManual 100.0% -2025-07-23T19:36:54.7825371Z github.com/ava-labs/coreth/core/blockchain.go:1311: insertBlock 88.7% -2025-07-23T19:36:54.7825994Z github.com/ava-labs/coreth/core/blockchain.go:1448: collectUnflattenedLogs 81.2% -2025-07-23T19:36:54.7826517Z github.com/ava-labs/coreth/core/blockchain.go:1477: collectLogs 100.0% -2025-07-23T19:36:54.7826988Z github.com/ava-labs/coreth/core/blockchain.go:1485: reorg 67.2% -2025-07-23T19:36:54.7827439Z github.com/ava-labs/coreth/core/blockchain.go:1642: String 75.0% -2025-07-23T19:36:54.7827905Z github.com/ava-labs/coreth/core/blockchain.go:1668: BadBlocks 0.0% -2025-07-23T19:36:54.7828377Z github.com/ava-labs/coreth/core/blockchain.go:1681: addBadBlock 100.0% -2025-07-23T19:36:54.7828860Z github.com/ava-labs/coreth/core/blockchain.go:1689: reportBlock 100.0% -2025-07-23T19:36:54.7829352Z github.com/ava-labs/coreth/core/blockchain.go:1705: reprocessBlock 77.8% -2025-07-23T19:36:54.7829862Z github.com/ava-labs/coreth/core/blockchain.go:1747: commitWithSnap 75.0% -2025-07-23T19:36:54.7830353Z github.com/ava-labs/coreth/core/blockchain.go:1783: initSnapshot 90.0% -2025-07-23T19:36:54.7830846Z github.com/ava-labs/coreth/core/blockchain.go:1814: reprocessState 83.1% -2025-07-23T19:36:54.7831352Z github.com/ava-labs/coreth/core/blockchain.go:1956: protectTrieIndex 60.0% -2025-07-23T19:36:54.7831919Z github.com/ava-labs/coreth/core/blockchain.go:1978: populateMissingTries 74.3% -2025-07-23T19:36:54.7832706Z github.com/ava-labs/coreth/core/blockchain.go:2059: CleanBlockRootsAboveLastAccepted 85.7% -2025-07-23T19:36:54.7833330Z github.com/ava-labs/coreth/core/blockchain.go:2102: gatherBlockRootsAboveLastAccepted 90.9% -2025-07-23T19:36:54.7833926Z github.com/ava-labs/coreth/core/blockchain.go:2132: ResetToStateSyncedBlock 0.0% -2025-07-23T19:36:54.7834457Z github.com/ava-labs/coreth/core/blockchain.go:2187: CacheConfig 100.0% -2025-07-23T19:36:54.7835120Z github.com/ava-labs/coreth/core/blockchain.go:2191: repairTxIndexTail 100.0% -2025-07-23T19:36:54.7835709Z github.com/ava-labs/coreth/core/blockchain_ext.go:15: getOrOverrideAsRegisteredCounter 83.3% -2025-07-23T19:36:54.7836329Z github.com/ava-labs/coreth/core/blockchain_iterator.go:60: newBlockChainIterator 85.0% -2025-07-23T19:36:54.7836915Z github.com/ava-labs/coreth/core/blockchain_iterator.go:120: populateReaders 88.9% -2025-07-23T19:36:54.7837444Z github.com/ava-labs/coreth/core/blockchain_iterator.go:139: Next 75.0% -2025-07-23T19:36:54.7837938Z github.com/ava-labs/coreth/core/blockchain_iterator.go:180: Stop 100.0% -2025-07-23T19:36:54.7838458Z github.com/ava-labs/coreth/core/blockchain_reader.go:45: CurrentHeader 100.0% -2025-07-23T19:36:54.7838984Z github.com/ava-labs/coreth/core/blockchain_reader.go:51: CurrentBlock 100.0% -2025-07-23T19:36:54.7839495Z github.com/ava-labs/coreth/core/blockchain_reader.go:57: HasHeader 100.0% -2025-07-23T19:36:54.7840156Z github.com/ava-labs/coreth/core/blockchain_reader.go:63: GetHeader 100.0% -2025-07-23T19:36:54.7840682Z github.com/ava-labs/coreth/core/blockchain_reader.go:69: GetHeaderByHash 100.0% -2025-07-23T19:36:54.7841231Z github.com/ava-labs/coreth/core/blockchain_reader.go:75: GetHeaderByNumber 100.0% -2025-07-23T19:36:54.7841753Z github.com/ava-labs/coreth/core/blockchain_reader.go:81: GetBody 0.0% -2025-07-23T19:36:54.7842242Z github.com/ava-labs/coreth/core/blockchain_reader.go:100: HasBlock 60.0% -2025-07-23T19:36:54.7842757Z github.com/ava-labs/coreth/core/blockchain_reader.go:111: HasFastBlock 0.0% -2025-07-23T19:36:54.7843264Z github.com/ava-labs/coreth/core/blockchain_reader.go:123: GetBlock 100.0% -2025-07-23T19:36:54.7843779Z github.com/ava-labs/coreth/core/blockchain_reader.go:138: GetBlockByHash 75.0% -2025-07-23T19:36:54.7844320Z github.com/ava-labs/coreth/core/blockchain_reader.go:148: GetBlockByNumber 100.0% -2025-07-23T19:36:54.7845001Z github.com/ava-labs/coreth/core/blockchain_reader.go:158: GetBlocksFromHash 0.0% -2025-07-23T19:36:54.7845557Z github.com/ava-labs/coreth/core/blockchain_reader.go:176: GetReceiptsByHash 76.9% -2025-07-23T19:36:54.7846118Z github.com/ava-labs/coreth/core/blockchain_reader.go:197: GetCanonicalHash 100.0% -2025-07-23T19:36:54.7846700Z github.com/ava-labs/coreth/core/blockchain_reader.go:211: GetTransactionLookup 87.5% -2025-07-23T19:36:54.7847252Z github.com/ava-labs/coreth/core/blockchain_reader.go:235: HasState 100.0% -2025-07-23T19:36:54.7847785Z github.com/ava-labs/coreth/core/blockchain_reader.go:242: HasBlockAndState 100.0% -2025-07-23T19:36:54.7848304Z github.com/ava-labs/coreth/core/blockchain_reader.go:252: State 100.0% -2025-07-23T19:36:54.7848800Z github.com/ava-labs/coreth/core/blockchain_reader.go:257: StateAt 100.0% -2025-07-23T19:36:54.7849297Z github.com/ava-labs/coreth/core/blockchain_reader.go:262: Config 100.0% -2025-07-23T19:36:54.7849788Z github.com/ava-labs/coreth/core/blockchain_reader.go:265: Engine 100.0% -2025-07-23T19:36:54.7850281Z github.com/ava-labs/coreth/core/blockchain_reader.go:268: Snapshots 0.0% -2025-07-23T19:36:54.7850772Z github.com/ava-labs/coreth/core/blockchain_reader.go:273: Validator 0.0% -2025-07-23T19:36:54.7851265Z github.com/ava-labs/coreth/core/blockchain_reader.go:278: Processor 0.0% -2025-07-23T19:36:54.7851759Z github.com/ava-labs/coreth/core/blockchain_reader.go:283: StateCache 0.0% -2025-07-23T19:36:54.7852460Z github.com/ava-labs/coreth/core/blockchain_reader.go:288: GasLimit 0.0% -2025-07-23T19:36:54.7852955Z github.com/ava-labs/coreth/core/blockchain_reader.go:293: Genesis 100.0% -2025-07-23T19:36:54.7853458Z github.com/ava-labs/coreth/core/blockchain_reader.go:298: GetVMConfig 0.0% -2025-07-23T19:36:54.7853956Z github.com/ava-labs/coreth/core/blockchain_reader.go:303: TrieDB 100.0% -2025-07-23T19:36:54.7854463Z github.com/ava-labs/coreth/core/blockchain_reader.go:308: HeaderChain 0.0% -2025-07-23T19:36:54.7855129Z github.com/ava-labs/coreth/core/blockchain_reader.go:313: SubscribeRemovedLogsEvent 0.0% -2025-07-23T19:36:54.7855721Z github.com/ava-labs/coreth/core/blockchain_reader.go:318: SubscribeChainEvent 0.0% -2025-07-23T19:36:54.7856305Z github.com/ava-labs/coreth/core/blockchain_reader.go:323: SubscribeChainHeadEvent 0.0% -2025-07-23T19:36:54.7856898Z github.com/ava-labs/coreth/core/blockchain_reader.go:328: SubscribeChainSideEvent 0.0% -2025-07-23T19:36:54.7857478Z github.com/ava-labs/coreth/core/blockchain_reader.go:333: SubscribeLogsEvent 0.0% -2025-07-23T19:36:54.7858072Z github.com/ava-labs/coreth/core/blockchain_reader.go:339: SubscribeBlockProcessingEvent 0.0% -2025-07-23T19:36:54.7858706Z github.com/ava-labs/coreth/core/blockchain_reader.go:344: SubscribeChainAcceptedEvent 100.0% -2025-07-23T19:36:54.7859329Z github.com/ava-labs/coreth/core/blockchain_reader.go:349: SubscribeAcceptedLogsEvent 100.0% -2025-07-23T19:36:54.7860117Z github.com/ava-labs/coreth/core/blockchain_reader.go:354: SubscribeAcceptedTransactionEvent 0.0% -2025-07-23T19:36:54.7860694Z github.com/ava-labs/coreth/core/blockchain_reader.go:359: GetLogs 0.0% -2025-07-23T19:36:54.7861197Z github.com/ava-labs/coreth/core/bloom_indexer.go:60: NewBloomIndexer 0.0% -2025-07-23T19:36:54.7861677Z github.com/ava-labs/coreth/core/bloom_indexer.go:72: Reset 0.0% -2025-07-23T19:36:54.7862137Z github.com/ava-labs/coreth/core/bloom_indexer.go:80: Process 0.0% -2025-07-23T19:36:54.7862602Z github.com/ava-labs/coreth/core/bloom_indexer.go:88: Commit 0.0% -2025-07-23T19:36:54.7863053Z github.com/ava-labs/coreth/core/bloom_indexer.go:101: Prune 0.0% -2025-07-23T19:36:54.7863552Z github.com/ava-labs/coreth/core/bloombits/generator.go:56: NewGenerator 83.3% -2025-07-23T19:36:54.7864075Z github.com/ava-labs/coreth/core/bloombits/generator.go:69: AddBloom 90.5% -2025-07-23T19:36:54.7864589Z github.com/ava-labs/coreth/core/bloombits/generator.go:101: Bitset 60.0% -2025-07-23T19:36:54.7865387Z github.com/ava-labs/coreth/core/bloombits/matcher.go:49: calcBloomIndexes 100.0% -2025-07-23T19:36:54.7865924Z github.com/ava-labs/coreth/core/bloombits/matcher.go:103: NewMatcher 100.0% -2025-07-23T19:36:54.7866451Z github.com/ava-labs/coreth/core/bloombits/matcher.go:148: addScheduler 100.0% -2025-07-23T19:36:54.7866957Z github.com/ava-labs/coreth/core/bloombits/matcher.go:158: Start 97.0% -2025-07-23T19:36:54.7867443Z github.com/ava-labs/coreth/core/bloombits/matcher.go:235: run 100.0% -2025-07-23T19:36:54.7867930Z github.com/ava-labs/coreth/core/bloombits/matcher.go:270: subMatch 98.3% -2025-07-23T19:36:54.7868440Z github.com/ava-labs/coreth/core/bloombits/matcher.go:392: distributor 100.0% -2025-07-23T19:36:54.7868946Z github.com/ava-labs/coreth/core/bloombits/matcher.go:534: Close 100.0% -2025-07-23T19:36:54.7869433Z github.com/ava-labs/coreth/core/bloombits/matcher.go:543: Error 0.0% -2025-07-23T19:36:54.7869950Z github.com/ava-labs/coreth/core/bloombits/matcher.go:553: allocateRetrieval 100.0% -2025-07-23T19:36:54.7870513Z github.com/ava-labs/coreth/core/bloombits/matcher.go:567: pendingSections 100.0% -2025-07-23T19:36:54.7871073Z github.com/ava-labs/coreth/core/bloombits/matcher.go:581: allocateSections 100.0% -2025-07-23T19:36:54.7871613Z github.com/ava-labs/coreth/core/bloombits/matcher.go:599: deliverSections 100.0% -2025-07-23T19:36:54.7872307Z github.com/ava-labs/coreth/core/bloombits/matcher.go:609: Multiplex 81.8% -2025-07-23T19:36:54.7872839Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:60: newScheduler 100.0% -2025-07-23T19:36:54.7873354Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:70: run 100.0% -2025-07-23T19:36:54.7873838Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:84: reset 100.0% -2025-07-23T19:36:54.7874377Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:98: scheduleRequests 100.0% -2025-07-23T19:36:54.7875078Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:145: scheduleDeliveries 100.0% -2025-07-23T19:36:54.7875644Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:182: deliver 100.0% -2025-07-23T19:36:54.7876166Z github.com/ava-labs/coreth/core/bounded_buffer.go:21: NewBoundedBuffer 100.0% -2025-07-23T19:36:54.7876663Z github.com/ava-labs/coreth/core/bounded_buffer.go:32: Insert 90.0% -2025-07-23T19:36:54.7877132Z github.com/ava-labs/coreth/core/bounded_buffer.go:55: Last 100.0% -2025-07-23T19:36:54.7877621Z github.com/ava-labs/coreth/core/chain_indexer.go:115: NewChainIndexer 100.0% -2025-07-23T19:36:54.7878133Z github.com/ava-labs/coreth/core/chain_indexer.go:142: AddCheckpoint 0.0% -2025-07-23T19:36:54.7878609Z github.com/ava-labs/coreth/core/chain_indexer.go:160: Start 0.0% -2025-07-23T19:36:54.7879195Z github.com/ava-labs/coreth/core/chain_indexer.go:169: Close 58.8% -2025-07-23T19:36:54.7879652Z github.com/ava-labs/coreth/core/chain_indexer.go:209: eventLoop 0.0% -2025-07-23T19:36:54.7880119Z github.com/ava-labs/coreth/core/chain_indexer.go:255: newHead 78.1% -2025-07-23T19:36:54.7880597Z github.com/ava-labs/coreth/core/chain_indexer.go:316: updateLoop 95.2% -2025-07-23T19:36:54.7881098Z github.com/ava-labs/coreth/core/chain_indexer.go:400: processSection 68.4% -2025-07-23T19:36:54.7881600Z github.com/ava-labs/coreth/core/chain_indexer.go:434: verifyLastHead 75.0% -2025-07-23T19:36:54.7882095Z github.com/ava-labs/coreth/core/chain_indexer.go:446: Sections 100.0% -2025-07-23T19:36:54.7882590Z github.com/ava-labs/coreth/core/chain_indexer.go:455: AddChildIndexer 70.0% -2025-07-23T19:36:54.7883070Z github.com/ava-labs/coreth/core/chain_indexer.go:477: Prune 0.0% -2025-07-23T19:36:54.7883559Z github.com/ava-labs/coreth/core/chain_indexer.go:483: loadValidSections 66.7% -2025-07-23T19:36:54.7884089Z github.com/ava-labs/coreth/core/chain_indexer.go:491: setValidSections 100.0% -2025-07-23T19:36:54.7884595Z github.com/ava-labs/coreth/core/chain_indexer.go:507: SectionHead 100.0% -2025-07-23T19:36:54.7885198Z github.com/ava-labs/coreth/core/chain_indexer.go:520: setSectionHead 100.0% -2025-07-23T19:36:54.7885719Z github.com/ava-labs/coreth/core/chain_indexer.go:529: removeSectionHead 100.0% -2025-07-23T19:36:54.7886227Z github.com/ava-labs/coreth/core/chain_makers.go:68: SetCoinbase 50.0% -2025-07-23T19:36:54.7886695Z github.com/ava-labs/coreth/core/chain_makers.go:80: SetExtra 0.0% -2025-07-23T19:36:54.7887152Z github.com/ava-labs/coreth/core/chain_makers.go:85: AppendExtra 0.0% -2025-07-23T19:36:54.7887614Z github.com/ava-labs/coreth/core/chain_makers.go:90: SetNonce 0.0% -2025-07-23T19:36:54.7888084Z github.com/ava-labs/coreth/core/chain_makers.go:97: SetDifficulty 100.0% -2025-07-23T19:36:54.7888566Z github.com/ava-labs/coreth/core/chain_makers.go:102: Difficulty 0.0% -2025-07-23T19:36:54.7889066Z github.com/ava-labs/coreth/core/chain_makers.go:108: SetParentBeaconRoot 0.0% -2025-07-23T19:36:54.7889558Z github.com/ava-labs/coreth/core/chain_makers.go:124: addTx 90.9% -2025-07-23T19:36:54.7890006Z github.com/ava-labs/coreth/core/chain_makers.go:149: AddTx 100.0% -2025-07-23T19:36:54.7890477Z github.com/ava-labs/coreth/core/chain_makers.go:160: AddTxWithChain 0.0% -2025-07-23T19:36:54.7890985Z github.com/ava-labs/coreth/core/chain_makers.go:167: AddTxWithVMConfig 100.0% -2025-07-23T19:36:54.7891665Z github.com/ava-labs/coreth/core/chain_makers.go:172: GetBalance 0.0% -2025-07-23T19:36:54.7892145Z github.com/ava-labs/coreth/core/chain_makers.go:180: AddUncheckedTx 0.0% -2025-07-23T19:36:54.7892616Z github.com/ava-labs/coreth/core/chain_makers.go:185: Number 0.0% -2025-07-23T19:36:54.7893077Z github.com/ava-labs/coreth/core/chain_makers.go:190: Timestamp 100.0% -2025-07-23T19:36:54.7893551Z github.com/ava-labs/coreth/core/chain_makers.go:195: BaseFee 100.0% -2025-07-23T19:36:54.7893995Z github.com/ava-labs/coreth/core/chain_makers.go:200: Gas 0.0% -2025-07-23T19:36:54.7894434Z github.com/ava-labs/coreth/core/chain_makers.go:205: Signer 0.0% -2025-07-23T19:36:54.7895048Z github.com/ava-labs/coreth/core/chain_makers.go:214: AddUncheckedReceipt 0.0% -2025-07-23T19:36:54.7895555Z github.com/ava-labs/coreth/core/chain_makers.go:220: TxNonce 66.7% -2025-07-23T19:36:54.7896025Z github.com/ava-labs/coreth/core/chain_makers.go:228: AddUncle 100.0% -2025-07-23T19:36:54.7896494Z github.com/ava-labs/coreth/core/chain_makers.go:235: PrevBlock 60.0% -2025-07-23T19:36:54.7896958Z github.com/ava-labs/coreth/core/chain_makers.go:248: OffsetTime 0.0% -2025-07-23T19:36:54.7897450Z github.com/ava-labs/coreth/core/chain_makers.go:257: SetOnBlockGenerated 0.0% -2025-07-23T19:36:54.7898099Z github.com/ava-labs/coreth/core/chain_makers.go:273: GenerateChain 79.2% -2025-07-23T19:36:54.7898630Z github.com/ava-labs/coreth/core/chain_makers.go:362: GenerateChainWithGenesis 87.5% -2025-07-23T19:36:54.7899148Z github.com/ava-labs/coreth/core/chain_makers.go:374: makeHeader 89.5% -2025-07-23T19:36:54.7899634Z github.com/ava-labs/coreth/core/chain_makers.go:425: newChainMaker 100.0% -2025-07-23T19:36:54.7900113Z github.com/ava-labs/coreth/core/chain_makers.go:434: add 100.0% -2025-07-23T19:36:54.7900579Z github.com/ava-labs/coreth/core/chain_makers.go:440: blockByNumber 0.0% -2025-07-23T19:36:54.7901057Z github.com/ava-labs/coreth/core/chain_makers.go:455: Config 100.0% -2025-07-23T19:36:54.7901510Z github.com/ava-labs/coreth/core/chain_makers.go:460: Engine 0.0% -2025-07-23T19:36:54.7901978Z github.com/ava-labs/coreth/core/chain_makers.go:464: CurrentHeader 0.0% -2025-07-23T19:36:54.7902482Z github.com/ava-labs/coreth/core/chain_makers.go:471: GetHeaderByNumber 0.0% -2025-07-23T19:36:54.7902991Z github.com/ava-labs/coreth/core/chain_makers.go:479: GetHeaderByHash 0.0% -2025-07-23T19:36:54.7903475Z github.com/ava-labs/coreth/core/chain_makers.go:487: GetHeader 0.0% -2025-07-23T19:36:54.7903933Z github.com/ava-labs/coreth/core/chain_makers.go:491: GetBlock 0.0% -2025-07-23T19:36:54.7904448Z github.com/ava-labs/coreth/core/coretest/test_indices.go:21: CheckTxIndices 100.0% -2025-07-23T19:36:54.7905200Z github.com/ava-labs/coreth/core/evm.go:47: init 100.0% -2025-07-23T19:36:54.7905667Z github.com/ava-labs/coreth/core/evm.go:61: OverrideNewEVMArgs 100.0% -2025-07-23T19:36:54.7906165Z github.com/ava-labs/coreth/core/evm.go:74: OverrideEVMResetArgs 100.0% -2025-07-23T19:36:54.7906630Z github.com/ava-labs/coreth/core/evm.go:79: wrapStateDB 100.0% -2025-07-23T19:36:54.7907082Z github.com/ava-labs/coreth/core/evm.go:90: GetCommittedState 100.0% -2025-07-23T19:36:54.7907567Z github.com/ava-labs/coreth/core/evm.go:106: NewEVMBlockContext 100.0% -2025-07-23T19:36:54.7908109Z github.com/ava-labs/coreth/core/evm.go:147: NewEVMBlockContextWithPredicateResults 0.0% -2025-07-23T19:36:54.7908633Z github.com/ava-labs/coreth/core/evm.go:160: NewEVMTxContext 100.0% -2025-07-23T19:36:54.7909079Z github.com/ava-labs/coreth/core/evm.go:173: GetHashFn 10.0% -2025-07-23T19:36:54.7909509Z github.com/ava-labs/coreth/core/evm.go:213: CanTransfer 100.0% -2025-07-23T19:36:54.7909937Z github.com/ava-labs/coreth/core/evm.go:218: Transfer 100.0% -2025-07-23T19:36:54.7910528Z github.com/ava-labs/coreth/core/extstate/statedb.go:38: New 100.0% -2025-07-23T19:36:54.7911023Z github.com/ava-labs/coreth/core/extstate/statedb.go:45: Prepare 100.0% -2025-07-23T19:36:54.7911583Z github.com/ava-labs/coreth/core/extstate/statedb.go:61: GetPredicateStorageSlots 75.0% -2025-07-23T19:36:54.7912124Z github.com/ava-labs/coreth/core/fifo_cache.go:24: NewFIFOCache 100.0% -2025-07-23T19:36:54.7912583Z github.com/ava-labs/coreth/core/fifo_cache.go:43: Put 100.0% -2025-07-23T19:36:54.7913004Z github.com/ava-labs/coreth/core/fifo_cache.go:51: Get 100.0% -2025-07-23T19:36:54.7913427Z github.com/ava-labs/coreth/core/fifo_cache.go:61: remove 0.0% -2025-07-23T19:36:54.7913842Z github.com/ava-labs/coreth/core/fifo_cache.go:68: Put 0.0% -2025-07-23T19:36:54.7914254Z github.com/ava-labs/coreth/core/fifo_cache.go:69: Get 100.0% -2025-07-23T19:36:54.7914679Z github.com/ava-labs/coreth/core/gaspool.go:40: AddGas 75.0% -2025-07-23T19:36:54.7915221Z github.com/ava-labs/coreth/core/gaspool.go:50: SubGas 100.0% -2025-07-23T19:36:54.7915636Z github.com/ava-labs/coreth/core/gaspool.go:59: Gas 0.0% -2025-07-23T19:36:54.7916048Z github.com/ava-labs/coreth/core/gaspool.go:64: SetGas 0.0% -2025-07-23T19:36:54.7916463Z github.com/ava-labs/coreth/core/gaspool.go:68: String 0.0% -2025-07-23T19:36:54.7917035Z github.com/ava-labs/coreth/core/gen_genesis.go:20: MarshalJSON 0.0% -2025-07-23T19:36:54.7917512Z github.com/ava-labs/coreth/core/gen_genesis.go:63: UnmarshalJSON 0.0% -2025-07-23T19:36:54.7917965Z github.com/ava-labs/coreth/core/genesis.go:109: Error 0.0% -2025-07-23T19:36:54.7918418Z github.com/ava-labs/coreth/core/genesis.go:128: SetupGenesisBlock 77.8% -2025-07-23T19:36:54.7918899Z github.com/ava-labs/coreth/core/genesis.go:212: IsVerkle 100.0% -2025-07-23T19:36:54.7919346Z github.com/ava-labs/coreth/core/genesis.go:217: ToBlock 100.0% -2025-07-23T19:36:54.7919802Z github.com/ava-labs/coreth/core/genesis.go:222: trieConfig 100.0% -2025-07-23T19:36:54.7920243Z github.com/ava-labs/coreth/core/genesis.go:233: toBlock 90.5% -2025-07-23T19:36:54.7920673Z github.com/ava-labs/coreth/core/genesis.go:321: Commit 80.0% -2025-07-23T19:36:54.7921115Z github.com/ava-labs/coreth/core/genesis.go:344: MustCommit 75.0% -2025-07-23T19:36:54.7921621Z github.com/ava-labs/coreth/core/genesis.go:353: GenesisBlockForTesting 100.0% -2025-07-23T19:36:54.7922130Z github.com/ava-labs/coreth/core/genesis.go:363: ReadBlockByHash 75.0% -2025-07-23T19:36:54.7922630Z github.com/ava-labs/coreth/core/headerchain.go:84: NewHeaderChain 85.7% -2025-07-23T19:36:54.7923137Z github.com/ava-labs/coreth/core/headerchain.go:121: GetBlockNumber 100.0% -2025-07-23T19:36:54.7923627Z github.com/ava-labs/coreth/core/headerchain.go:134: GetHeader 100.0% -2025-07-23T19:36:54.7924116Z github.com/ava-labs/coreth/core/headerchain.go:150: GetHeaderByHash 75.0% -2025-07-23T19:36:54.7924611Z github.com/ava-labs/coreth/core/headerchain.go:161: HasHeader 66.7% -2025-07-23T19:36:54.7925240Z github.com/ava-labs/coreth/core/headerchain.go:170: GetHeaderByNumber 100.0% -2025-07-23T19:36:54.7925764Z github.com/ava-labs/coreth/core/headerchain.go:181: GetCanonicalHash 100.0% -2025-07-23T19:36:54.7926284Z github.com/ava-labs/coreth/core/headerchain.go:187: CurrentHeader 100.0% -2025-07-23T19:36:54.7926786Z github.com/ava-labs/coreth/core/headerchain.go:193: SetCurrentHeader 100.0% -2025-07-23T19:36:54.7927277Z github.com/ava-labs/coreth/core/headerchain.go:199: SetGenesis 100.0% -2025-07-23T19:36:54.7927743Z github.com/ava-labs/coreth/core/headerchain.go:204: Config 0.0% -2025-07-23T19:36:54.7928190Z github.com/ava-labs/coreth/core/headerchain.go:207: Engine 0.0% -2025-07-23T19:36:54.7928640Z github.com/ava-labs/coreth/core/headerchain.go:211: GetBlock 0.0% -2025-07-23T19:36:54.7929278Z github.com/ava-labs/coreth/core/predicate_check.go:22: CheckPredicates 100.0% -2025-07-23T19:36:54.7929820Z github.com/ava-labs/coreth/core/sender_cacher.go:61: NewTxSenderCacher 100.0% -2025-07-23T19:36:54.7930312Z github.com/ava-labs/coreth/core/sender_cacher.go:78: cache 100.0% -2025-07-23T19:36:54.7930774Z github.com/ava-labs/coreth/core/sender_cacher.go:89: Recover 90.9% -2025-07-23T19:36:54.7931244Z github.com/ava-labs/coreth/core/sender_cacher.go:119: Shutdown 100.0% -2025-07-23T19:36:54.7931765Z github.com/ava-labs/coreth/core/state/database.go:42: NewDatabase 100.0% -2025-07-23T19:36:54.7932308Z github.com/ava-labs/coreth/core/state/database.go:46: NewDatabaseWithConfig 100.0% -2025-07-23T19:36:54.7932881Z github.com/ava-labs/coreth/core/state/database.go:51: NewDatabaseWithNodeDB 0.0% -2025-07-23T19:36:54.7933432Z github.com/ava-labs/coreth/core/state/database.go:55: wrapIfFirewood 100.0% -2025-07-23T19:36:54.7933974Z github.com/ava-labs/coreth/core/state/firewood_database.go:25: OpenTrie 100.0% -2025-07-23T19:36:54.7934539Z github.com/ava-labs/coreth/core/state/firewood_database.go:30: OpenStorageTrie 75.0% -2025-07-23T19:36:54.7935190Z github.com/ava-labs/coreth/core/state/firewood_database.go:40: CopyTrie 0.0% -2025-07-23T19:36:54.7935733Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:42: stateBloomHash 100.0% -2025-07-23T19:36:54.7936452Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:69: newStateBloomWithSize 80.0% -2025-07-23T19:36:54.7937054Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:80: NewStateBloomFromDisk 0.0% -2025-07-23T19:36:54.7937592Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:90: Commit 63.6% -2025-07-23T19:36:54.7938087Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:112: Put 37.5% -2025-07-23T19:36:54.7938578Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:128: Delete 0.0% -2025-07-23T19:36:54.7939078Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:134: Contain 100.0% -2025-07-23T19:36:54.7939591Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:96: NewPruner 66.7% -2025-07-23T19:36:54.7940098Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:136: prune 38.2% -2025-07-23T19:36:54.7940595Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:261: Prune 66.7% -2025-07-23T19:36:54.7941126Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:315: RecoverPruning 26.7% -2025-07-23T19:36:54.7941683Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:344: extractGenesis 48.6% -2025-07-23T19:36:54.7942246Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:403: bloomFilterName 100.0% -2025-07-23T19:36:54.7942806Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:407: isBloomFilter 0.0% -2025-07-23T19:36:54.7943423Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:415: findBloomFilter 50.0% -2025-07-23T19:36:54.7943983Z github.com/ava-labs/coreth/core/state/snapshot/context.go:55: Info 100.0% -2025-07-23T19:36:54.7944508Z github.com/ava-labs/coreth/core/state/snapshot/context.go:61: Debug 100.0% -2025-07-23T19:36:54.7945132Z github.com/ava-labs/coreth/core/state/snapshot/context.go:67: log 45.0% -2025-07-23T19:36:54.7945717Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:65: GenerateAccountTrieRoot 0.0% -2025-07-23T19:36:54.7946393Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:70: GenerateStorageTrieRoot 0.0% -2025-07-23T19:36:54.7947008Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:77: GenerateTrie 0.0% -2025-07-23T19:36:54.7947604Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:134: newGenerateStats 100.0% -2025-07-23T19:36:54.7948227Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:143: progressAccounts 0.0% -2025-07-23T19:36:54.7948839Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:152: finishAccounts 100.0% -2025-07-23T19:36:54.7949594Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:160: progressContract 0.0% -2025-07-23T19:36:54.7950206Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:172: finishContract 100.0% -2025-07-23T19:36:54.7950786Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:182: report 42.9% -2025-07-23T19:36:54.7951357Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:222: reportDone 100.0% -2025-07-23T19:36:54.7951931Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:236: runReport 100.0% -2025-07-23T19:36:54.7952516Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:257: generateTrieRoot 79.4% -2025-07-23T19:36:54.7953127Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:375: stackTrieGenerate 75.0% -2025-07-23T19:36:54.7953701Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:92: init 80.0% -2025-07-23T19:36:54.7954285Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:140: destructBloomHash 100.0% -2025-07-23T19:36:54.7955003Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:145: accountBloomHash 100.0% -2025-07-23T19:36:54.7955614Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:150: storageBloomHash 100.0% -2025-07-23T19:36:54.7956203Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:157: newDiffLayer 83.3% -2025-07-23T19:36:54.7956907Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:201: rebloom 100.0% -2025-07-23T19:36:54.7957453Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:242: Root 100.0% -2025-07-23T19:36:54.7958001Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:247: BlockHash 100.0% -2025-07-23T19:36:54.7958560Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:252: Parent 100.0% -2025-07-23T19:36:54.7959098Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:261: Stale 100.0% -2025-07-23T19:36:54.7959645Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:267: Account 88.9% -2025-07-23T19:36:54.7960199Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:286: AccountRLP 86.7% -2025-07-23T19:36:54.7960754Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:318: accountRLP 95.0% -2025-07-23T19:36:54.7961299Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:357: Storage 60.0% -2025-07-23T19:36:54.7961845Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:389: storage 69.6% -2025-07-23T19:36:54.7962380Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:431: Update 100.0% -2025-07-23T19:36:54.7962913Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:438: flatten 95.5% -2025-07-23T19:36:54.7963471Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:497: AccountList 100.0% -2025-07-23T19:36:54.7964042Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:533: StorageList 100.0% -2025-07-23T19:36:54.7964606Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:70: Release 0.0% -2025-07-23T19:36:54.7965240Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:78: Root 100.0% -2025-07-23T19:36:54.7965784Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:83: BlockHash 100.0% -2025-07-23T19:36:54.7966331Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:88: Parent 100.0% -2025-07-23T19:36:54.7966876Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:94: Stale 100.0% -2025-07-23T19:36:54.7967406Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:103: Account 88.9% -2025-07-23T19:36:54.7967968Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:120: AccountRLP 100.0% -2025-07-23T19:36:54.7968526Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:158: Storage 100.0% -2025-07-23T19:36:54.7969075Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:199: Update 100.0% -2025-07-23T19:36:54.7969829Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:55: generateSnapshot 91.7% -2025-07-23T19:36:54.7970433Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:90: journalProgress 88.2% -2025-07-23T19:36:54.7971026Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:127: checkAndFlush 50.0% -2025-07-23T19:36:54.7971592Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:178: generate 68.9% -2025-07-23T19:36:54.7972206Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:335: newMeteredSnapshotCache 100.0% -2025-07-23T19:36:54.7972839Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:69: AccountIterator 100.0% -2025-07-23T19:36:54.7973398Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:83: Next 70.0% -2025-07-23T19:36:54.7973922Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:108: Error 100.0% -2025-07-23T19:36:54.7974458Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:113: Hash 100.0% -2025-07-23T19:36:54.7975094Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:125: Account 81.8% -2025-07-23T19:36:54.7975650Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:143: Release 0.0% -2025-07-23T19:36:54.7976229Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:153: AccountIterator 100.0% -2025-07-23T19:36:54.7976929Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:162: Next 90.0% -2025-07-23T19:36:54.7977461Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:186: Error 100.0% -2025-07-23T19:36:54.7977990Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:194: Hash 100.0% -2025-07-23T19:36:54.7978525Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:199: Account 100.0% -2025-07-23T19:36:54.7979065Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:204: Release 33.3% -2025-07-23T19:36:54.7979647Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:233: StorageIterator 100.0% -2025-07-23T19:36:54.7980206Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:250: Next 70.0% -2025-07-23T19:36:54.7980735Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:275: Error 100.0% -2025-07-23T19:36:54.7981262Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:280: Hash 100.0% -2025-07-23T19:36:54.7981788Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:292: Slot 72.7% -2025-07-23T19:36:54.7982313Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:311: Release 0.0% -2025-07-23T19:36:54.7982894Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:325: StorageIterator 100.0% -2025-07-23T19:36:54.7983456Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:341: Next 90.0% -2025-07-23T19:36:54.7983978Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:365: Error 100.0% -2025-07-23T19:36:54.7984508Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:373: Hash 100.0% -2025-07-23T19:36:54.7985144Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:378: Slot 100.0% -2025-07-23T19:36:54.7985697Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:383: Release 33.3% -2025-07-23T19:36:54.7986321Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:53: initBinaryAccountIterator 100.0% -2025-07-23T19:36:54.7987044Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:78: initBinaryStorageIterator 82.6% -2025-07-23T19:36:54.7987683Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:130: Next 100.0% -2025-07-23T19:36:54.7988258Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:162: Error 100.0% -2025-07-23T19:36:54.7988822Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:167: Hash 100.0% -2025-07-23T19:36:54.7989403Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:176: Account 57.1% -2025-07-23T19:36:54.7990107Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:194: Slot 57.1% -2025-07-23T19:36:54.7990679Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:207: Release 0.0% -2025-07-23T19:36:54.7991319Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:214: newBinaryAccountIterator 100.0% -2025-07-23T19:36:54.7992030Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:221: newBinaryStorageIterator 100.0% -2025-07-23T19:36:54.7992652Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:47: Cmp 50.0% -2025-07-23T19:36:54.7993241Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:86: newFastIterator 92.9% -2025-07-23T19:36:54.7993826Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:124: init 87.5% -2025-07-23T19:36:54.7994383Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:179: Next 83.3% -2025-07-23T19:36:54.7995045Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:235: next 100.0% -2025-07-23T19:36:54.7995596Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:296: move 100.0% -2025-07-23T19:36:54.7996156Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:304: Error 100.0% -2025-07-23T19:36:54.7996716Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:309: Hash 100.0% -2025-07-23T19:36:54.7997501Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:315: Account 100.0% -2025-07-23T19:36:54.7998070Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:321: Slot 100.0% -2025-07-23T19:36:54.7998644Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:327: Release 100.0% -2025-07-23T19:36:54.7999205Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:335: Debug 0.0% -2025-07-23T19:36:54.7999828Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:345: newFastAccountIterator 100.0% -2025-07-23T19:36:54.8000508Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:352: newFastStorageIterator 100.0% -2025-07-23T19:36:54.8001123Z github.com/ava-labs/coreth/core/state/snapshot/journal.go:61: loadSnapshot 0.0% -2025-07-23T19:36:54.8001733Z github.com/ava-labs/coreth/core/state/snapshot/journal.go:143: ResetSnapshotGeneration 0.0% -2025-07-23T19:36:54.8002320Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:205: New 0.0% -2025-07-23T19:36:54.8002856Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:254: insertSnap 100.0% -2025-07-23T19:36:54.8003415Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:266: Snapshot 100.0% -2025-07-23T19:36:54.8003974Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:272: getSnapshot 85.7% -2025-07-23T19:36:54.8004525Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:288: Snapshots 0.0% -2025-07-23T19:36:54.8005231Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:323: WithBlockHashes 0.0% -2025-07-23T19:36:54.8005852Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:329: Update 0.0% -2025-07-23T19:36:54.8006449Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:350: UpdateWithBlockHashes 81.8% -2025-07-23T19:36:54.8007072Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:386: verifyIntegrity 57.1% -2025-07-23T19:36:54.8007637Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:413: Cap 0.0% -2025-07-23T19:36:54.8008170Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:433: Flatten 83.1% -2025-07-23T19:36:54.8008747Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:533: NumStateLayers 100.0% -2025-07-23T19:36:54.8009339Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:540: NumBlockLayers 100.0% -2025-07-23T19:36:54.8009924Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:548: Discard 100.0% -2025-07-23T19:36:54.8010641Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:560: discard 78.6% -2025-07-23T19:36:54.8011208Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:592: AbortGeneration 0.0% -2025-07-23T19:36:54.8011814Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:603: abortGeneration 63.6% -2025-07-23T19:36:54.8012402Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:631: diffToDisk 75.4% -2025-07-23T19:36:54.8012954Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:779: Release 0.0% -2025-07-23T19:36:54.8013490Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:788: Rebuild 0.0% -2025-07-23T19:36:54.8014061Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:842: AccountIterator 71.4% -2025-07-23T19:36:54.8014663Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:859: StorageIterator 100.0% -2025-07-23T19:36:54.8015412Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:863: StorageIteratorWithForce 71.4% -2025-07-23T19:36:54.8016011Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:878: Verify 0.0% -2025-07-23T19:36:54.8016545Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:886: verify 66.7% -2025-07-23T19:36:54.8017086Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:918: disklayer 83.3% -2025-07-23T19:36:54.8017764Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:941: diskRoot 0.0% -2025-07-23T19:36:54.8018312Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:951: generating 87.5% -2025-07-23T19:36:54.8018855Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:965: DiskRoot 0.0% -2025-07-23T19:36:54.8019387Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:977: Size 0.0% -2025-07-23T19:36:54.8019971Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:14: DiskAccountIterator 0.0% -2025-07-23T19:36:54.8020810Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:21: DiskStorageIterator 0.0% -2025-07-23T19:36:54.8021526Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:41: NewDiskLayer 0.0% -2025-07-23T19:36:54.8022357Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:53: NewTestTree 100.0% -2025-07-23T19:36:54.8023101Z github.com/ava-labs/coreth/core/state/snapshot/utils.go:43: CheckDanglingStorage 50.0% -2025-07-23T19:36:54.8023836Z github.com/ava-labs/coreth/core/state/snapshot/utils.go:53: checkDanglingDiskStorage 76.5% -2025-07-23T19:36:54.8024525Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:45: WipeSnapshot 80.0% -2025-07-23T19:36:54.8040009Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:68: wipeContent 60.0% -2025-07-23T19:36:54.8040711Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:84: wipeKeyRange 59.4% -2025-07-23T19:36:54.8041236Z github.com/ava-labs/coreth/core/state/statedb.go:65: New 75.0% -2025-07-23T19:36:54.8041710Z github.com/ava-labs/coreth/core/state/statedb.go:81: Done 0.0% -2025-07-23T19:36:54.8042239Z github.com/ava-labs/coreth/core/state/statedb.go:87: WithConcurrentWorkers 0.0% -2025-07-23T19:36:54.8042813Z github.com/ava-labs/coreth/core/state/statedb.go:95: GetBalanceMultiCoin 100.0% -2025-07-23T19:36:54.8043344Z github.com/ava-labs/coreth/core/state/statedb.go:101: GetState 100.0% -2025-07-23T19:36:54.8043875Z github.com/ava-labs/coreth/core/state/statedb.go:107: AddBalanceMultiCoin 75.0% -2025-07-23T19:36:54.8044423Z github.com/ava-labs/coreth/core/state/statedb.go:121: SubBalanceMultiCoin 71.4% -2025-07-23T19:36:54.8045052Z github.com/ava-labs/coreth/core/state/statedb.go:136: SetState 100.0% -2025-07-23T19:36:54.8045551Z github.com/ava-labs/coreth/core/state/statedb.go:144: SetTxContext 0.0% -2025-07-23T19:36:54.8046027Z github.com/ava-labs/coreth/core/state/statedb.go:151: GetTxHash 0.0% -2025-07-23T19:36:54.8046711Z github.com/ava-labs/coreth/core/state/statedb.go:155: Copy 0.0% -2025-07-23T19:36:54.8047213Z github.com/ava-labs/coreth/core/state/statedb.go:169: NormalizeCoinID 100.0% -2025-07-23T19:36:54.8047747Z github.com/ava-labs/coreth/core/state/statedb.go:177: NormalizeStateKey 100.0% -2025-07-23T19:36:54.8048249Z github.com/ava-labs/coreth/core/state_manager.go:41: init 100.0% -2025-07-23T19:36:54.8048738Z github.com/ava-labs/coreth/core/state_manager.go:67: NewTrieWriter 100.0% -2025-07-23T19:36:54.8049233Z github.com/ava-labs/coreth/core/state_manager.go:91: InsertTrie 100.0% -2025-07-23T19:36:54.8049708Z github.com/ava-labs/coreth/core/state_manager.go:97: AcceptTrie 100.0% -2025-07-23T19:36:54.8050193Z github.com/ava-labs/coreth/core/state_manager.go:103: RejectTrie 100.0% -2025-07-23T19:36:54.8050673Z github.com/ava-labs/coreth/core/state_manager.go:107: Shutdown 100.0% -2025-07-23T19:36:54.8051153Z github.com/ava-labs/coreth/core/state_manager.go:120: InsertTrie 50.0% -2025-07-23T19:36:54.8051622Z github.com/ava-labs/coreth/core/state_manager.go:134: AcceptTrie 68.4% -2025-07-23T19:36:54.8052098Z github.com/ava-labs/coreth/core/state_manager.go:182: RejectTrie 100.0% -2025-07-23T19:36:54.8052568Z github.com/ava-labs/coreth/core/state_manager.go:187: Shutdown 100.0% -2025-07-23T19:36:54.8053208Z github.com/ava-labs/coreth/core/state_processor.go:55: NewStateProcessor 100.0% -2025-07-23T19:36:54.8053752Z github.com/ava-labs/coreth/core/state_processor.go:70: Process 90.9% -2025-07-23T19:36:54.8054267Z github.com/ava-labs/coreth/core/state_processor.go:120: applyTransaction 92.6% -2025-07-23T19:36:54.8054910Z github.com/ava-labs/coreth/core/state_processor.go:174: ApplyTransaction 83.3% -2025-07-23T19:36:54.8055476Z github.com/ava-labs/coreth/core/state_processor.go:187: ProcessBeaconBlockRoot 100.0% -2025-07-23T19:36:54.8056096Z github.com/ava-labs/coreth/core/state_processor_ext.go:24: ApplyPrecompileActivations 23.8% -2025-07-23T19:36:54.8056683Z github.com/ava-labs/coreth/core/state_processor_ext.go:77: ApplyUpgrades 100.0% -2025-07-23T19:36:54.8057232Z github.com/ava-labs/coreth/core/state_processor_ext.go:91: NewBlockContext 100.0% -2025-07-23T19:36:54.8057743Z github.com/ava-labs/coreth/core/state_processor_ext.go:98: Number 0.0% -2025-07-23T19:36:54.8058248Z github.com/ava-labs/coreth/core/state_processor_ext.go:99: Timestamp 100.0% -2025-07-23T19:36:54.8058741Z github.com/ava-labs/coreth/core/state_transition.go:56: Unwrap 0.0% -2025-07-23T19:36:54.8059213Z github.com/ava-labs/coreth/core/state_transition.go:61: Failed 100.0% -2025-07-23T19:36:54.8059685Z github.com/ava-labs/coreth/core/state_transition.go:65: Return 0.0% -2025-07-23T19:36:54.8060146Z github.com/ava-labs/coreth/core/state_transition.go:74: Revert 0.0% -2025-07-23T19:36:54.8060633Z github.com/ava-labs/coreth/core/state_transition.go:82: IntrinsicGas 88.2% -2025-07-23T19:36:54.8061145Z github.com/ava-labs/coreth/core/state_transition.go:139: accessListGas 91.3% -2025-07-23T19:36:54.8061655Z github.com/ava-labs/coreth/core/state_transition.go:179: toWordSize 66.7% -2025-07-23T19:36:54.8062193Z github.com/ava-labs/coreth/core/state_transition.go:210: TransactionToMessage 100.0% -2025-07-23T19:36:54.8062742Z github.com/ava-labs/coreth/core/state_transition.go:241: ApplyMessage 100.0% -2025-07-23T19:36:54.8063279Z github.com/ava-labs/coreth/core/state_transition.go:277: NewStateTransition 100.0% -2025-07-23T19:36:54.8063782Z github.com/ava-labs/coreth/core/state_transition.go:287: to 66.7% -2025-07-23T19:36:54.8064242Z github.com/ava-labs/coreth/core/state_transition.go:294: buyGas 77.8% -2025-07-23T19:36:54.8064717Z github.com/ava-labs/coreth/core/state_transition.go:333: preCheck 89.5% -2025-07-23T19:36:54.8065513Z github.com/ava-labs/coreth/core/state_transition.go:426: TransitionDb 88.2% -2025-07-23T19:36:54.8066214Z github.com/ava-labs/coreth/core/state_transition.go:514: refundGas 100.0% -2025-07-23T19:36:54.8066717Z github.com/ava-labs/coreth/core/state_transition.go:539: gasUsed 100.0% -2025-07-23T19:36:54.8067211Z github.com/ava-labs/coreth/core/state_transition.go:544: blobGasUsed 100.0% -2025-07-23T19:36:54.8067682Z github.com/ava-labs/coreth/core/txindexer.go:46: Done 0.0% -2025-07-23T19:36:54.8068139Z github.com/ava-labs/coreth/core/txindexer.go:68: newTxIndexer 90.9% -2025-07-23T19:36:54.8068591Z github.com/ava-labs/coreth/core/txindexer.go:97: run 90.9% -2025-07-23T19:36:54.8069009Z github.com/ava-labs/coreth/core/txindexer.go:124: loop 91.7% -2025-07-23T19:36:54.8069437Z github.com/ava-labs/coreth/core/txindexer.go:191: report 0.0% -2025-07-23T19:36:54.8069874Z github.com/ava-labs/coreth/core/txindexer.go:213: close 100.0% -2025-07-23T19:36:54.8070316Z github.com/ava-labs/coreth/core/txindexer.go:224: lockedRun 100.0% -2025-07-23T19:36:54.8070863Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:124: newBlobTxMeta 100.0% -2025-07-23T19:36:54.8071431Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:333: New 100.0% -2025-07-23T19:36:54.8071960Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:349: Filter 0.0% -2025-07-23T19:36:54.8072483Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:356: Init 78.8% -2025-07-23T19:36:54.8073136Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:458: Close 60.0% -2025-07-23T19:36:54.8073711Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:480: parseTransaction 88.0% -2025-07-23T19:36:54.8074291Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:528: recheck 90.9% -2025-07-23T19:36:54.8074986Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:779: offload 0.0% -2025-07-23T19:36:54.8075515Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:803: Reset 0.0% -2025-07-23T19:36:54.8076036Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:875: reorg 0.0% -2025-07-23T19:36:54.8076558Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1003: reinject 0.0% -2025-07-23T19:36:54.8077108Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1047: SetGasTip 97.2% -2025-07-23T19:36:54.8077673Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1112: validateTx 100.0% -2025-07-23T19:36:54.8078221Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1197: Has 0.0% -2025-07-23T19:36:54.8078740Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1205: HasLocal 0.0% -2025-07-23T19:36:54.8079259Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1211: Get 0.0% -2025-07-23T19:36:54.8079767Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1243: Add 0.0% -2025-07-23T19:36:54.8080275Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1263: add 89.3% -2025-07-23T19:36:54.8080793Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1430: drop 54.5% -2025-07-23T19:36:54.8081326Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1485: Pending 0.0% -2025-07-23T19:36:54.8081896Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1547: IteratePending 0.0% -2025-07-23T19:36:54.8082465Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1565: SetMinFee 0.0% -2025-07-23T19:36:54.8083069Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1569: updateStorageMetrics 100.0% -2025-07-23T19:36:54.8083721Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1616: updateLimboMetrics 100.0% -2025-07-23T19:36:54.8084365Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1644: SubscribeTransactions 0.0% -2025-07-23T19:36:54.8085043Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1654: Nonce 0.0% -2025-07-23T19:36:54.8085766Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1666: Stats 0.0% -2025-07-23T19:36:54.8086318Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1682: Content 0.0% -2025-07-23T19:36:54.8086871Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1691: ContentFrom 0.0% -2025-07-23T19:36:54.8087418Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1698: Locals 0.0% -2025-07-23T19:36:54.8087960Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1704: Status 0.0% -2025-07-23T19:36:54.8088520Z github.com/ava-labs/coreth/core/txpool/blobpool/config.go:50: sanitize 100.0% -2025-07-23T19:36:54.8089092Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:60: newPriceHeap 100.0% -2025-07-23T19:36:54.8089670Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:84: reinit 85.7% -2025-07-23T19:36:54.8090216Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:101: Len 100.0% -2025-07-23T19:36:54.8090760Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:107: Less 100.0% -2025-07-23T19:36:54.8091291Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:131: Swap 100.0% -2025-07-23T19:36:54.8091821Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:138: Push 100.0% -2025-07-23T19:36:54.8092352Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:148: Pop 100.0% -2025-07-23T19:36:54.8093037Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:62: newLimbo 50.0% -2025-07-23T19:36:54.8093557Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:93: Close 100.0% -2025-07-23T19:36:54.8094079Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:99: parseBlob 0.0% -2025-07-23T19:36:54.8094616Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:126: finalize 0.0% -2025-07-23T19:36:54.8095231Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:149: push 0.0% -2025-07-23T19:36:54.8095741Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:166: pull 0.0% -2025-07-23T19:36:54.8096241Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:190: update 0.0% -2025-07-23T19:36:54.8096760Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:221: getAndDrop 0.0% -2025-07-23T19:36:54.8097299Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:243: setAndIndex 0.0% -2025-07-23T19:36:54.8097894Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:45: evictionPriority 100.0% -2025-07-23T19:36:54.8098529Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:58: evictionPriority1D 100.0% -2025-07-23T19:36:54.8099154Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:77: dynamicFeeJumps 100.0% -2025-07-23T19:36:54.8099726Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:87: intLog2 50.0% -2025-07-23T19:36:54.8100280Z github.com/ava-labs/coreth/core/txpool/blobpool/slotter.go:39: newSlotter 100.0% -2025-07-23T19:36:54.8100830Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:52: Write 100.0% -2025-07-23T19:36:54.8101354Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:53: Close 0.0% -2025-07-23T19:36:54.8101910Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:63: newTxJournal 100.0% -2025-07-23T19:36:54.8102465Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:71: load 87.1% -2025-07-23T19:36:54.8102998Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:132: insert 60.0% -2025-07-23T19:36:54.8103535Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:144: rotate 76.9% -2025-07-23T19:36:54.8104087Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:189: close 100.0% -2025-07-23T19:36:54.8104666Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:186: sanitize 46.2% -2025-07-23T19:36:54.8105346Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:275: New 80.0% -2025-07-23T19:36:54.8106048Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:312: Filter 0.0% -2025-07-23T19:36:54.8106613Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:325: Init 81.0% -2025-07-23T19:36:54.8107168Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:371: loop 96.8% -2025-07-23T19:36:54.8107730Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:439: Close 100.0% -2025-07-23T19:36:54.8108292Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:455: Reset 0.0% -2025-07-23T19:36:54.8108913Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:462: SubscribeTransactions 0.0% -2025-07-23T19:36:54.8109565Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:472: SetGasTip 100.0% -2025-07-23T19:36:54.8110161Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:493: SetMinFee 0.0% -2025-07-23T19:36:54.8110745Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:502: Nonce 100.0% -2025-07-23T19:36:54.8111319Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:511: Stats 100.0% -2025-07-23T19:36:54.8111884Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:520: stats 100.0% -2025-07-23T19:36:54.8112450Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:534: Content 88.9% -2025-07-23T19:36:54.8113192Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:551: ContentFrom 0.0% -2025-07-23T19:36:54.8113789Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:571: Pending 0.0% -2025-07-23T19:36:54.8114397Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:631: IteratePending 0.0% -2025-07-23T19:36:54.8115085Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:646: Locals 0.0% -2025-07-23T19:36:54.8115654Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:656: local 100.0% -2025-07-23T19:36:54.8116264Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:673: validateTxBasics 100.0% -2025-07-23T19:36:54.8116901Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:694: validateTx 100.0% -2025-07-23T19:36:54.8117473Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:743: add 88.3% -2025-07-23T19:36:54.8118051Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:893: isGapped 100.0% -2025-07-23T19:36:54.8118654Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:919: enqueueTx 95.0% -2025-07-23T19:36:54.8119249Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:958: journalTx 75.0% -2025-07-23T19:36:54.8119832Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:972: promoteTx 58.8% -2025-07-23T19:36:54.8120429Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1009: addLocals 100.0% -2025-07-23T19:36:54.8121026Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1015: addLocal 100.0% -2025-07-23T19:36:54.8121631Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1024: addRemotes 100.0% -2025-07-23T19:36:54.8122235Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1030: addRemote 100.0% -2025-07-23T19:36:54.8122860Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1035: addRemotesSync 100.0% -2025-07-23T19:36:54.8123505Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1040: addRemoteSync 100.0% -2025-07-23T19:36:54.8124105Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1049: Add 100.0% -2025-07-23T19:36:54.8124708Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1104: addTxsLocked 100.0% -2025-07-23T19:36:54.8125408Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1120: Status 90.9% -2025-07-23T19:36:54.8125977Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1139: Get 0.0% -2025-07-23T19:36:54.8126679Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1148: get 100.0% -2025-07-23T19:36:54.8127233Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1154: Has 0.0% -2025-07-23T19:36:54.8127794Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1158: HasLocal 0.0% -2025-07-23T19:36:54.8128375Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1171: removeTx 93.3% -2025-07-23T19:36:54.8128982Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1236: requestReset 66.7% -2025-07-23T19:36:54.8129658Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1247: requestPromoteExecutables 66.7% -2025-07-23T19:36:54.8130330Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1257: queueTxEvent 100.0% -2025-07-23T19:36:54.8130975Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1267: scheduleReorgLoop 96.6% -2025-07-23T19:36:54.8131603Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1337: runReorg 84.1% -2025-07-23T19:36:54.8132211Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1420: reset 23.1% -2025-07-23T19:36:54.8132831Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1520: promoteExecutables 100.0% -2025-07-23T19:36:54.8133488Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1590: truncatePending 69.6% -2025-07-23T19:36:54.8134266Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1675: truncateQueue 100.0% -2025-07-23T19:36:54.8135016Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1726: demoteUnexecutables 96.9% -2025-07-23T19:36:54.8135708Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1781: startPeriodicFeeUpdate 85.7% -2025-07-23T19:36:54.8136405Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1797: periodicBaseFeeUpdate 100.0% -2025-07-23T19:36:54.8137065Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1820: updateBaseFee 80.0% -2025-07-23T19:36:54.8137702Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1831: updateBaseFeeAt 83.3% -2025-07-23T19:36:54.8138307Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1849: Len 100.0% -2025-07-23T19:36:54.8138869Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1850: Less 100.0% -2025-07-23T19:36:54.8139438Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1851: Swap 100.0% -2025-07-23T19:36:54.8140028Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1863: newAccountSet 100.0% -2025-07-23T19:36:54.8140640Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1875: contains 100.0% -2025-07-23T19:36:54.8141242Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1882: containsTx 66.7% -2025-07-23T19:36:54.8141818Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1890: add 100.0% -2025-07-23T19:36:54.8142387Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1896: addTx 100.0% -2025-07-23T19:36:54.8142972Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1904: flatten 100.0% -2025-07-23T19:36:54.8143557Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1916: merge 100.0% -2025-07-23T19:36:54.8144146Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1943: newLookup 100.0% -2025-07-23T19:36:54.8144738Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1953: Range 60.0% -2025-07-23T19:36:54.8145399Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1974: Get 80.0% -2025-07-23T19:36:54.8145967Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1985: GetLocal 0.0% -2025-07-23T19:36:54.8146546Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1993: GetRemote 100.0% -2025-07-23T19:36:54.8147129Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2001: Count 100.0% -2025-07-23T19:36:54.8147860Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2009: LocalCount 0.0% -2025-07-23T19:36:54.8148471Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2017: RemoteCount 100.0% -2025-07-23T19:36:54.8149064Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2025: Slots 100.0% -2025-07-23T19:36:54.8149631Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2033: Add 100.0% -2025-07-23T19:36:54.8150193Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2048: Remove 83.3% -2025-07-23T19:36:54.8150796Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2069: RemoteToLocals 66.7% -2025-07-23T19:36:54.8151441Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2085: RemotesBelowTip 100.0% -2025-07-23T19:36:54.8152063Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2097: numSlots 100.0% -2025-07-23T19:36:54.8152627Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:49: Len 100.0% -2025-07-23T19:36:54.8153157Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:50: Less 100.0% -2025-07-23T19:36:54.8153666Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:51: Swap 100.0% -2025-07-23T19:36:54.8154174Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:53: Push 100.0% -2025-07-23T19:36:54.8154956Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:57: Pop 100.0% -2025-07-23T19:36:54.8155501Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:76: newSortedMap 100.0% -2025-07-23T19:36:54.8156037Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:84: Get 100.0% -2025-07-23T19:36:54.8156541Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:90: Put 100.0% -2025-07-23T19:36:54.8157063Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:103: Forward 100.0% -2025-07-23T19:36:54.8157606Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:126: Filter 100.0% -2025-07-23T19:36:54.8158140Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:135: reheap 100.0% -2025-07-23T19:36:54.8158677Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:148: filter 100.0% -2025-07-23T19:36:54.8159198Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:168: Cap 92.3% -2025-07-23T19:36:54.8159712Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:195: Remove 100.0% -2025-07-23T19:36:54.8160242Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:223: Ready 100.0% -2025-07-23T19:36:54.8160760Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:243: Len 100.0% -2025-07-23T19:36:54.8161278Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:247: flatten 100.0% -2025-07-23T19:36:54.8161816Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:264: Flatten 100.0% -2025-07-23T19:36:54.8162373Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:274: LastElement 100.0% -2025-07-23T19:36:54.8162921Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:294: newList 100.0% -2025-07-23T19:36:54.8163452Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:305: Contains 100.0% -2025-07-23T19:36:54.8163972Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:314: Add 100.0% -2025-07-23T19:36:54.8164495Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:361: Forward 100.0% -2025-07-23T19:36:54.8165120Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:376: Filter 95.0% -2025-07-23T19:36:54.8165631Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:412: Cap 100.0% -2025-07-23T19:36:54.8166148Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:421: Remove 100.0% -2025-07-23T19:36:54.8166673Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:444: Ready 100.0% -2025-07-23T19:36:54.8167323Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:451: Len 100.0% -2025-07-23T19:36:54.8167835Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:456: Empty 100.0% -2025-07-23T19:36:54.8168361Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:463: Flatten 100.0% -2025-07-23T19:36:54.8168910Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:469: LastElement 100.0% -2025-07-23T19:36:54.8169470Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:475: subTotalCost 75.0% -2025-07-23T19:36:54.8170001Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:493: Len 100.0% -2025-07-23T19:36:54.8170513Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:494: Swap 100.0% -2025-07-23T19:36:54.8171029Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:496: Less 100.0% -2025-07-23T19:36:54.8171528Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:507: cmp 100.0% -2025-07-23T19:36:54.8172039Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:522: Push 100.0% -2025-07-23T19:36:54.8172548Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:527: Pop 100.0% -2025-07-23T19:36:54.8173088Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:563: newPricedList 100.0% -2025-07-23T19:36:54.8173637Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:570: Put 100.0% -2025-07-23T19:36:54.8174294Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:581: Removed 100.0% -2025-07-23T19:36:54.8174948Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:593: Underpriced 100.0% -2025-07-23T19:36:54.8175520Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:603: underpricedFor 70.0% -2025-07-23T19:36:54.8176080Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:628: Discard 61.9% -2025-07-23T19:36:54.8176613Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:667: Reheap 100.0% -2025-07-23T19:36:54.8177161Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:695: SetBaseFee 100.0% -2025-07-23T19:36:54.8177713Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:47: newNoncer 100.0% -2025-07-23T19:36:54.8178247Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:56: get 100.0% -2025-07-23T19:36:54.8178762Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:72: set 100.0% -2025-07-23T19:36:54.8179293Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:81: setIfLower 62.5% -2025-07-23T19:36:54.8179840Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:97: setAll 100.0% -2025-07-23T19:36:54.8180355Z github.com/ava-labs/coreth/core/txpool/subpool.go:65: Resolve 66.7% -2025-07-23T19:36:54.8180824Z github.com/ava-labs/coreth/core/txpool/txpool.go:103: New 76.9% -2025-07-23T19:36:54.8181282Z github.com/ava-labs/coreth/core/txpool/txpool.go:143: reserver 69.2% -2025-07-23T19:36:54.8181757Z github.com/ava-labs/coreth/core/txpool/txpool.go:186: Close 76.9% -2025-07-23T19:36:54.8182217Z github.com/ava-labs/coreth/core/txpool/txpool.go:215: loop 92.6% -2025-07-23T19:36:54.8182678Z github.com/ava-labs/coreth/core/txpool/txpool.go:308: GasTip 100.0% -2025-07-23T19:36:54.8183159Z github.com/ava-labs/coreth/core/txpool/txpool.go:314: SetGasTip 100.0% -2025-07-23T19:36:54.8183633Z github.com/ava-labs/coreth/core/txpool/txpool.go:323: MinFee 0.0% -2025-07-23T19:36:54.8184101Z github.com/ava-labs/coreth/core/txpool/txpool.go:329: SetMinFee 100.0% -2025-07-23T19:36:54.8184574Z github.com/ava-labs/coreth/core/txpool/txpool.go:339: Has 75.0% -2025-07-23T19:36:54.8185139Z github.com/ava-labs/coreth/core/txpool/txpool.go:350: HasLocal 0.0% -2025-07-23T19:36:54.8185607Z github.com/ava-labs/coreth/core/txpool/txpool.go:360: Get 0.0% -2025-07-23T19:36:54.8186052Z github.com/ava-labs/coreth/core/txpool/txpool.go:372: Add 90.0% -2025-07-23T19:36:54.8186667Z github.com/ava-labs/coreth/core/txpool/txpool.go:415: AddRemotesSync 100.0% -2025-07-23T19:36:54.8187178Z github.com/ava-labs/coreth/core/txpool/txpool.go:425: Pending 100.0% -2025-07-23T19:36:54.8187676Z github.com/ava-labs/coreth/core/txpool/txpool.go:439: PendingSize 100.0% -2025-07-23T19:36:54.8188186Z github.com/ava-labs/coreth/core/txpool/txpool.go:451: IteratePending 66.7% -2025-07-23T19:36:54.8188739Z github.com/ava-labs/coreth/core/txpool/txpool.go:461: SubscribeTransactions 85.7% -2025-07-23T19:36:54.8189315Z github.com/ava-labs/coreth/core/txpool/txpool.go:475: SubscribeNewReorgEvent 100.0% -2025-07-23T19:36:54.8189838Z github.com/ava-labs/coreth/core/txpool/txpool.go:481: Nonce 100.0% -2025-07-23T19:36:54.8190297Z github.com/ava-labs/coreth/core/txpool/txpool.go:496: Stats 0.0% -2025-07-23T19:36:54.8190760Z github.com/ava-labs/coreth/core/txpool/txpool.go:509: Content 0.0% -2025-07-23T19:36:54.8191245Z github.com/ava-labs/coreth/core/txpool/txpool.go:529: ContentFrom 0.0% -2025-07-23T19:36:54.8191715Z github.com/ava-labs/coreth/core/txpool/txpool.go:540: Locals 75.0% -2025-07-23T19:36:54.8192168Z github.com/ava-labs/coreth/core/txpool/txpool.go:558: Status 0.0% -2025-07-23T19:36:54.8192622Z github.com/ava-labs/coreth/core/txpool/txpool.go:574: Sync 75.0% -2025-07-23T19:36:54.8193259Z github.com/ava-labs/coreth/core/txpool/validation.go:67: ValidateTransaction 73.9% -2025-07-23T19:36:54.8193831Z github.com/ava-labs/coreth/core/txpool/validation.go:160: validateBlobSidecar 66.7% -2025-07-23T19:36:54.8194443Z github.com/ava-labs/coreth/core/txpool/validation.go:222: ValidateTransactionWithState 88.9% -2025-07-23T19:36:54.8195128Z github.com/ava-labs/coreth/core/vm/runtime/env.go:35: NewEnv 100.0% -2025-07-23T19:36:54.8195627Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:71: setDefaults 94.7% -2025-07-23T19:36:54.8196141Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:134: Execute 100.0% -2025-07-23T19:36:54.8196645Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:169: Create 77.8% -2025-07-23T19:36:54.8197134Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:203: Call 100.0% -2025-07-23T19:36:54.8197598Z github.com/ava-labs/coreth/eth/api.go:40: NewEthereumAPI 0.0% -2025-07-23T19:36:54.8198018Z github.com/ava-labs/coreth/eth/api.go:45: Etherbase 0.0% -2025-07-23T19:36:54.8198424Z github.com/ava-labs/coreth/eth/api.go:50: Coinbase 0.0% -2025-07-23T19:36:54.8198850Z github.com/ava-labs/coreth/eth/api_admin.go:50: NewAdminAPI 0.0% -2025-07-23T19:36:54.8199293Z github.com/ava-labs/coreth/eth/api_admin.go:56: ExportChain 0.0% -2025-07-23T19:36:54.8199748Z github.com/ava-labs/coreth/eth/api_admin.go:93: hasAllBlocks 0.0% -2025-07-23T19:36:54.8200196Z github.com/ava-labs/coreth/eth/api_admin.go:104: ImportChain 0.0% -2025-07-23T19:36:54.8200648Z github.com/ava-labs/coreth/eth/api_backend.go:72: ChainConfig 0.0% -2025-07-23T19:36:54.8201093Z github.com/ava-labs/coreth/eth/api_backend.go:77: IsArchive 0.0% -2025-07-23T19:36:54.8201595Z github.com/ava-labs/coreth/eth/api_backend.go:83: HistoricalProofQueryWindow 0.0% -2025-07-23T19:36:54.8202146Z github.com/ava-labs/coreth/eth/api_backend.go:87: IsAllowUnfinalizedQueries 0.0% -2025-07-23T19:36:54.8202691Z github.com/ava-labs/coreth/eth/api_backend.go:91: SetAllowUnfinalizedQueries 0.0% -2025-07-23T19:36:54.8203189Z github.com/ava-labs/coreth/eth/api_backend.go:95: CurrentBlock 0.0% -2025-07-23T19:36:54.8203670Z github.com/ava-labs/coreth/eth/api_backend.go:99: LastAcceptedBlock 0.0% -2025-07-23T19:36:54.8204158Z github.com/ava-labs/coreth/eth/api_backend.go:103: HeaderByNumber 0.0% -2025-07-23T19:36:54.8204629Z github.com/ava-labs/coreth/eth/api_backend.go:126: HeaderByHash 0.0% -2025-07-23T19:36:54.8205221Z github.com/ava-labs/coreth/eth/api_backend.go:149: HeaderByNumberOrHash 0.0% -2025-07-23T19:36:54.8205874Z github.com/ava-labs/coreth/eth/api_backend.go:166: BlockByNumber 0.0% -2025-07-23T19:36:54.8206342Z github.com/ava-labs/coreth/eth/api_backend.go:190: BlockByHash 0.0% -2025-07-23T19:36:54.8206790Z github.com/ava-labs/coreth/eth/api_backend.go:215: GetBody 0.0% -2025-07-23T19:36:54.8207282Z github.com/ava-labs/coreth/eth/api_backend.go:225: BlockByNumberOrHash 0.0% -2025-07-23T19:36:54.8207774Z github.com/ava-labs/coreth/eth/api_backend.go:245: BadBlocks 0.0% -2025-07-23T19:36:54.8208265Z github.com/ava-labs/coreth/eth/api_backend.go:249: StateAndHeaderByNumber 0.0% -2025-07-23T19:36:54.8208825Z github.com/ava-labs/coreth/eth/api_backend.go:265: StateAndHeaderByNumberOrHash 0.0% -2025-07-23T19:36:54.8209350Z github.com/ava-labs/coreth/eth/api_backend.go:289: GetReceipts 0.0% -2025-07-23T19:36:54.8209813Z github.com/ava-labs/coreth/eth/api_backend.go:296: GetLogs 0.0% -2025-07-23T19:36:54.8210259Z github.com/ava-labs/coreth/eth/api_backend.go:303: GetEVM 0.0% -2025-07-23T19:36:54.8210759Z github.com/ava-labs/coreth/eth/api_backend.go:317: SubscribeRemovedLogsEvent 0.0% -2025-07-23T19:36:54.8211307Z github.com/ava-labs/coreth/eth/api_backend.go:321: SubscribePendingLogsEvent 0.0% -2025-07-23T19:36:54.8211838Z github.com/ava-labs/coreth/eth/api_backend.go:325: SubscribeChainEvent 0.0% -2025-07-23T19:36:54.8212512Z github.com/ava-labs/coreth/eth/api_backend.go:329: SubscribeChainAcceptedEvent 0.0% -2025-07-23T19:36:54.8213065Z github.com/ava-labs/coreth/eth/api_backend.go:333: SubscribeChainHeadEvent 0.0% -2025-07-23T19:36:54.8213603Z github.com/ava-labs/coreth/eth/api_backend.go:337: SubscribeChainSideEvent 0.0% -2025-07-23T19:36:54.8214121Z github.com/ava-labs/coreth/eth/api_backend.go:341: SubscribeLogsEvent 0.0% -2025-07-23T19:36:54.8214654Z github.com/ava-labs/coreth/eth/api_backend.go:345: SubscribeAcceptedLogsEvent 0.0% -2025-07-23T19:36:54.8215347Z github.com/ava-labs/coreth/eth/api_backend.go:349: SubscribeAcceptedTransactionEvent 0.0% -2025-07-23T19:36:54.8215867Z github.com/ava-labs/coreth/eth/api_backend.go:353: SendTx 0.0% -2025-07-23T19:36:54.8216340Z github.com/ava-labs/coreth/eth/api_backend.go:367: GetPoolTransactions 0.0% -2025-07-23T19:36:54.8216849Z github.com/ava-labs/coreth/eth/api_backend.go:380: GetPoolTransaction 0.0% -2025-07-23T19:36:54.8217349Z github.com/ava-labs/coreth/eth/api_backend.go:384: GetTransaction 0.0% -2025-07-23T19:36:54.8217827Z github.com/ava-labs/coreth/eth/api_backend.go:407: GetPoolNonce 0.0% -2025-07-23T19:36:54.8218288Z github.com/ava-labs/coreth/eth/api_backend.go:411: Stats 0.0% -2025-07-23T19:36:54.8218758Z github.com/ava-labs/coreth/eth/api_backend.go:415: TxPoolContent 0.0% -2025-07-23T19:36:54.8219257Z github.com/ava-labs/coreth/eth/api_backend.go:419: TxPoolContentFrom 0.0% -2025-07-23T19:36:54.8219771Z github.com/ava-labs/coreth/eth/api_backend.go:423: SubscribeNewTxsEvent 0.0% -2025-07-23T19:36:54.8220289Z github.com/ava-labs/coreth/eth/api_backend.go:427: EstimateBaseFee 0.0% -2025-07-23T19:36:54.8220772Z github.com/ava-labs/coreth/eth/api_backend.go:431: SuggestPrice 0.0% -2025-07-23T19:36:54.8221256Z github.com/ava-labs/coreth/eth/api_backend.go:435: SuggestGasTipCap 0.0% -2025-07-23T19:36:54.8221735Z github.com/ava-labs/coreth/eth/api_backend.go:439: FeeHistory 0.0% -2025-07-23T19:36:54.8222200Z github.com/ava-labs/coreth/eth/api_backend.go:443: ChainDb 0.0% -2025-07-23T19:36:54.8222643Z github.com/ava-labs/coreth/eth/api_backend.go:447: EventMux 0.0% -2025-07-23T19:36:54.8223105Z github.com/ava-labs/coreth/eth/api_backend.go:451: AccountManager 0.0% -2025-07-23T19:36:54.8223576Z github.com/ava-labs/coreth/eth/api_backend.go:455: ExtRPCEnabled 0.0% -2025-07-23T19:36:54.8224071Z github.com/ava-labs/coreth/eth/api_backend.go:459: UnprotectedAllowed 75.0% -2025-07-23T19:36:54.8224696Z github.com/ava-labs/coreth/eth/api_backend.go:479: RPCGasCap 0.0% -2025-07-23T19:36:54.8225260Z github.com/ava-labs/coreth/eth/api_backend.go:483: RPCEVMTimeout 0.0% -2025-07-23T19:36:54.8225733Z github.com/ava-labs/coreth/eth/api_backend.go:487: RPCTxFeeCap 0.0% -2025-07-23T19:36:54.8226222Z github.com/ava-labs/coreth/eth/api_backend.go:491: PriceOptionsConfig 0.0% -2025-07-23T19:36:54.8226711Z github.com/ava-labs/coreth/eth/api_backend.go:495: BloomStatus 0.0% -2025-07-23T19:36:54.8227172Z github.com/ava-labs/coreth/eth/api_backend.go:500: ServiceFilter 0.0% -2025-07-23T19:36:54.8227629Z github.com/ava-labs/coreth/eth/api_backend.go:506: Engine 0.0% -2025-07-23T19:36:54.8228081Z github.com/ava-labs/coreth/eth/api_backend.go:510: CurrentHeader 0.0% -2025-07-23T19:36:54.8228578Z github.com/ava-labs/coreth/eth/api_backend.go:514: GetMaxBlocksPerRequest 0.0% -2025-07-23T19:36:54.8229082Z github.com/ava-labs/coreth/eth/api_backend.go:518: StateAtBlock 0.0% -2025-07-23T19:36:54.8229566Z github.com/ava-labs/coreth/eth/api_backend.go:522: StateAtNextBlock 0.0% -2025-07-23T19:36:54.8230062Z github.com/ava-labs/coreth/eth/api_backend.go:526: StateAtTransaction 0.0% -2025-07-23T19:36:54.8230551Z github.com/ava-labs/coreth/eth/api_backend.go:530: MinRequiredTip 0.0% -2025-07-23T19:36:54.8231034Z github.com/ava-labs/coreth/eth/api_backend.go:535: isLatestAndAllowed 0.0% -2025-07-23T19:36:54.8231671Z github.com/ava-labs/coreth/eth/api_debug.go:56: NewDebugAPI 0.0% -2025-07-23T19:36:54.8232155Z github.com/ava-labs/coreth/eth/api_debug.go:61: DumpBlock 0.0% -2025-07-23T19:36:54.8232584Z github.com/ava-labs/coreth/eth/api_debug.go:91: Preimage 0.0% -2025-07-23T19:36:54.8233033Z github.com/ava-labs/coreth/eth/api_debug.go:100: GetBadBlocks 0.0% -2025-07-23T19:36:54.8233488Z github.com/ava-labs/coreth/eth/api_debug.go:109: AccountRange 0.0% -2025-07-23T19:36:54.8233944Z github.com/ava-labs/coreth/eth/api_debug.go:175: StorageRangeAt 0.0% -2025-07-23T19:36:54.8234414Z github.com/ava-labs/coreth/eth/api_debug.go:194: storageRangeAt 84.0% -2025-07-23T19:36:54.8235075Z github.com/ava-labs/coreth/eth/api_debug.go:235: GetModifiedAccountsByNumber 0.0% -2025-07-23T19:36:54.8235620Z github.com/ava-labs/coreth/eth/api_debug.go:263: GetModifiedAccountsByHash 0.0% -2025-07-23T19:36:54.8236138Z github.com/ava-labs/coreth/eth/api_debug.go:285: getModifiedAccounts 0.0% -2025-07-23T19:36:54.8236634Z github.com/ava-labs/coreth/eth/api_debug.go:326: GetAccessibleState 0.0% -2025-07-23T19:36:54.8237114Z github.com/ava-labs/coreth/eth/backend.go:121: roundUpCacheSize 0.0% -2025-07-23T19:36:54.8237553Z github.com/ava-labs/coreth/eth/backend.go:128: New 0.0% -2025-07-23T19:36:54.8237955Z github.com/ava-labs/coreth/eth/backend.go:309: APIs 0.0% -2025-07-23T19:36:54.8238371Z github.com/ava-labs/coreth/eth/backend.go:349: Etherbase 0.0% -2025-07-23T19:36:54.8238814Z github.com/ava-labs/coreth/eth/backend.go:361: SetEtherbase 0.0% -2025-07-23T19:36:54.8239244Z github.com/ava-labs/coreth/eth/backend.go:369: Miner 0.0% -2025-07-23T19:36:54.8239684Z github.com/ava-labs/coreth/eth/backend.go:371: AccountManager 0.0% -2025-07-23T19:36:54.8240141Z github.com/ava-labs/coreth/eth/backend.go:372: BlockChain 0.0% -2025-07-23T19:36:54.8240574Z github.com/ava-labs/coreth/eth/backend.go:373: TxPool 0.0% -2025-07-23T19:36:54.8240987Z github.com/ava-labs/coreth/eth/backend.go:374: EventMux 0.0% -2025-07-23T19:36:54.8241401Z github.com/ava-labs/coreth/eth/backend.go:375: Engine 0.0% -2025-07-23T19:36:54.8241808Z github.com/ava-labs/coreth/eth/backend.go:376: ChainDb 0.0% -2025-07-23T19:36:54.8242226Z github.com/ava-labs/coreth/eth/backend.go:378: NetVersion 0.0% -2025-07-23T19:36:54.8242666Z github.com/ava-labs/coreth/eth/backend.go:379: ArchiveMode 0.0% -2025-07-23T19:36:54.8243326Z github.com/ava-labs/coreth/eth/backend.go:380: BloomIndexer 0.0% -2025-07-23T19:36:54.8243761Z github.com/ava-labs/coreth/eth/backend.go:384: Start 0.0% -2025-07-23T19:36:54.8244166Z github.com/ava-labs/coreth/eth/backend.go:395: Stop 0.0% -2025-07-23T19:36:54.8244611Z github.com/ava-labs/coreth/eth/backend.go:413: LastAcceptedBlock 0.0% -2025-07-23T19:36:54.8245242Z github.com/ava-labs/coreth/eth/backend.go:423: precheckPopulateMissingTries 0.0% -2025-07-23T19:36:54.8245779Z github.com/ava-labs/coreth/eth/backend.go:447: handleOfflinePruning 0.0% -2025-07-23T19:36:54.8246284Z github.com/ava-labs/coreth/eth/bloombits.go:57: startBloomHandlers 0.0% -2025-07-23T19:36:54.8246820Z github.com/ava-labs/coreth/eth/chain_with_final_block.go:20: CurrentFinalBlock 0.0% -2025-07-23T19:36:54.8247376Z github.com/ava-labs/coreth/eth/ethconfig/config.go:58: NewDefaultConfig 100.0% -2025-07-23T19:36:54.8247902Z github.com/ava-labs/coreth/eth/ethconfig/gen_config.go:18: MarshalTOML 0.0% -2025-07-23T19:36:54.8248432Z github.com/ava-labs/coreth/eth/ethconfig/gen_config.go:108: UnmarshalTOML 0.0% -2025-07-23T19:36:54.8248938Z github.com/ava-labs/coreth/eth/filters/api.go:87: NewFilterAPI 100.0% -2025-07-23T19:36:54.8249420Z github.com/ava-labs/coreth/eth/filters/api.go:101: timeoutLoop 100.0% -2025-07-23T19:36:54.8249956Z github.com/ava-labs/coreth/eth/filters/api.go:134: NewPendingTransactionFilter 100.0% -2025-07-23T19:36:54.8250770Z github.com/ava-labs/coreth/eth/filters/api.go:168: NewPendingTransactions 0.0% -2025-07-23T19:36:54.8251314Z github.com/ava-labs/coreth/eth/filters/api.go:211: NewAcceptedTransactions 0.0% -2025-07-23T19:36:54.8251827Z github.com/ava-labs/coreth/eth/filters/api.go:253: NewBlockFilter 0.0% -2025-07-23T19:36:54.8252297Z github.com/ava-labs/coreth/eth/filters/api.go:291: NewHeads 0.0% -2025-07-23T19:36:54.8252734Z github.com/ava-labs/coreth/eth/filters/api.go:328: Logs 0.0% -2025-07-23T19:36:54.8253177Z github.com/ava-labs/coreth/eth/filters/api.go:387: NewFilter 87.0% -2025-07-23T19:36:54.8253627Z github.com/ava-labs/coreth/eth/filters/api.go:432: GetLogs 90.0% -2025-07-23T19:36:54.8254105Z github.com/ava-labs/coreth/eth/filters/api.go:470: UninstallFilter 100.0% -2025-07-23T19:36:54.8254598Z github.com/ava-labs/coreth/eth/filters/api.go:486: GetFilterLogs 0.0% -2025-07-23T19:36:54.8255201Z github.com/ava-labs/coreth/eth/filters/api.go:528: GetFilterChanges 80.0% -2025-07-23T19:36:54.8255687Z github.com/ava-labs/coreth/eth/filters/api.go:581: returnHashes 0.0% -2025-07-23T19:36:54.8256153Z github.com/ava-labs/coreth/eth/filters/api.go:590: returnLogs 66.7% -2025-07-23T19:36:54.8256629Z github.com/ava-labs/coreth/eth/filters/api.go:598: UnmarshalJSON 75.5% -2025-07-23T19:36:54.8257106Z github.com/ava-labs/coreth/eth/filters/api.go:703: decodeAddress 75.0% -2025-07-23T19:36:54.8257576Z github.com/ava-labs/coreth/eth/filters/api.go:711: decodeTopic 75.0% -2025-07-23T19:36:54.8258077Z github.com/ava-labs/coreth/eth/filters/filter.go:58: NewRangeFilter 100.0% -2025-07-23T19:36:54.8258593Z github.com/ava-labs/coreth/eth/filters/filter.go:91: NewBlockFilter 100.0% -2025-07-23T19:36:54.8259091Z github.com/ava-labs/coreth/eth/filters/filter.go:100: newFilter 100.0% -2025-07-23T19:36:54.8259556Z github.com/ava-labs/coreth/eth/filters/filter.go:110: Logs 80.4% -2025-07-23T19:36:54.8260042Z github.com/ava-labs/coreth/eth/filters/filter.go:222: rangeLogsAsync 70.6% -2025-07-23T19:36:54.8260535Z github.com/ava-labs/coreth/eth/filters/filter.go:263: indexedLogs 0.0% -2025-07-23T19:36:54.8261025Z github.com/ava-labs/coreth/eth/filters/filter.go:309: unindexedLogs 81.8% -2025-07-23T19:36:54.8261515Z github.com/ava-labs/coreth/eth/filters/filter.go:331: blockLogs 100.0% -2025-07-23T19:36:54.8262003Z github.com/ava-labs/coreth/eth/filters/filter.go:340: checkMatches 82.4% -2025-07-23T19:36:54.8262626Z github.com/ava-labs/coreth/eth/filters/filter.go:370: includes 100.0% -2025-07-23T19:36:54.8263113Z github.com/ava-labs/coreth/eth/filters/filter.go:380: filterLogs 100.0% -2025-07-23T19:36:54.8263611Z github.com/ava-labs/coreth/eth/filters/filter.go:414: bloomFilter 100.0% -2025-07-23T19:36:54.8264128Z github.com/ava-labs/coreth/eth/filters/filter_system.go:55: withDefaults 100.0% -2025-07-23T19:36:54.8264691Z github.com/ava-labs/coreth/eth/filters/filter_system.go:101: NewFilterSystem 100.0% -2025-07-23T19:36:54.8265330Z github.com/ava-labs/coreth/eth/filters/filter_system.go:111: getLogs 66.7% -2025-07-23T19:36:54.8265861Z github.com/ava-labs/coreth/eth/filters/filter_system.go:209: NewEventSystem 92.3% -2025-07-23T19:36:54.8266385Z github.com/ava-labs/coreth/eth/filters/filter_system.go:253: Err 100.0% -2025-07-23T19:36:54.8266896Z github.com/ava-labs/coreth/eth/filters/filter_system.go:258: Unsubscribe 100.0% -2025-07-23T19:36:54.8267437Z github.com/ava-labs/coreth/eth/filters/filter_system.go:283: subscribe 100.0% -2025-07-23T19:36:54.8267980Z github.com/ava-labs/coreth/eth/filters/filter_system.go:292: SubscribeLogs 100.0% -2025-07-23T19:36:54.8268556Z github.com/ava-labs/coreth/eth/filters/filter_system.go:334: SubscribeAcceptedLogs 0.0% -2025-07-23T19:36:54.8269158Z github.com/ava-labs/coreth/eth/filters/filter_system.go:359: subscribeAcceptedLogs 0.0% -2025-07-23T19:36:54.8269908Z github.com/ava-labs/coreth/eth/filters/filter_system.go:376: subscribeMinedPendingLogs 100.0% -2025-07-23T19:36:54.8270507Z github.com/ava-labs/coreth/eth/filters/filter_system.go:393: subscribeLogs 100.0% -2025-07-23T19:36:54.8271080Z github.com/ava-labs/coreth/eth/filters/filter_system.go:410: subscribePendingLogs 100.0% -2025-07-23T19:36:54.8271676Z github.com/ava-labs/coreth/eth/filters/filter_system.go:427: SubscribeNewHeads 100.0% -2025-07-23T19:36:54.8272272Z github.com/ava-labs/coreth/eth/filters/filter_system.go:443: SubscribeAcceptedHeads 0.0% -2025-07-23T19:36:54.8272876Z github.com/ava-labs/coreth/eth/filters/filter_system.go:459: SubscribePendingTxs 100.0% -2025-07-23T19:36:54.8273463Z github.com/ava-labs/coreth/eth/filters/filter_system.go:475: SubscribeAcceptedTxs 0.0% -2025-07-23T19:36:54.8274025Z github.com/ava-labs/coreth/eth/filters/filter_system.go:491: handleLogs 83.3% -2025-07-23T19:36:54.8274587Z github.com/ava-labs/coreth/eth/filters/filter_system.go:503: handleAcceptedLogs 33.3% -2025-07-23T19:36:54.8275254Z github.com/ava-labs/coreth/eth/filters/filter_system.go:515: handlePendingLogs 83.3% -2025-07-23T19:36:54.8275816Z github.com/ava-labs/coreth/eth/filters/filter_system.go:527: handleTxsEvent 100.0% -2025-07-23T19:36:54.8276397Z github.com/ava-labs/coreth/eth/filters/filter_system.go:533: handleTxsAcceptedEvent 0.0% -2025-07-23T19:36:54.8276979Z github.com/ava-labs/coreth/eth/filters/filter_system.go:539: handleChainEvent 100.0% -2025-07-23T19:36:54.8277575Z github.com/ava-labs/coreth/eth/filters/filter_system.go:545: handleChainAcceptedEvent 0.0% -2025-07-23T19:36:54.8278148Z github.com/ava-labs/coreth/eth/filters/filter_system.go:552: eventLoop 53.8% -2025-07-23T19:36:54.8278692Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:63: Estimate 73.4% -2025-07-23T19:36:54.8279238Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:199: execute 88.9% -2025-07-23T19:36:54.8279774Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:218: run 91.7% -2025-07-23T19:36:54.8280340Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:63: newFeeInfoProvider 100.0% -2025-07-23T19:36:54.8280918Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:92: addHeader 100.0% -2025-07-23T19:36:54.8281450Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:125: get 100.0% -2025-07-23T19:36:54.8281995Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:136: populateCache 83.3% -2025-07-23T19:36:54.8282703Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:68: processBlock 84.6% -2025-07-23T19:36:54.8283268Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:89: processPercentiles 72.2% -2025-07-23T19:36:54.8283842Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:124: resolveBlockRange 100.0% -2025-07-23T19:36:54.8284406Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:177: FeeHistory 74.4% -2025-07-23T19:36:54.8285034Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:132: NewOracle 83.3% -2025-07-23T19:36:54.8285565Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:211: EstimateBaseFee 0.0% -2025-07-23T19:36:54.8286121Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:220: estimateNextBaseFee 57.1% -2025-07-23T19:36:54.8286667Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:239: SuggestPrice 60.0% -2025-07-23T19:36:54.8287196Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:266: SuggestTipCap 100.0% -2025-07-23T19:36:54.8287726Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:271: suggestTip 85.7% -2025-07-23T19:36:54.8288226Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:347: getFeeInfo 42.9% -2025-07-23T19:36:54.8288716Z github.com/ava-labs/coreth/eth/state_accessor.go:53: hashState 0.0% -2025-07-23T19:36:54.8289189Z github.com/ava-labs/coreth/eth/state_accessor.go:193: pathState 0.0% -2025-07-23T19:36:54.8289812Z github.com/ava-labs/coreth/eth/state_accessor.go:227: stateAtBlock 0.0% -2025-07-23T19:36:54.8290324Z github.com/ava-labs/coreth/eth/state_accessor.go:240: stateAtTransaction 0.0% -2025-07-23T19:36:54.8290847Z github.com/ava-labs/coreth/eth/state_accessor.go:287: StateAtNextBlock 0.0% -2025-07-23T19:36:54.8291335Z github.com/ava-labs/coreth/eth/tracers/api.go:115: NewAPI 100.0% -2025-07-23T19:36:54.8291814Z github.com/ava-labs/coreth/eth/tracers/api.go:127: NewFileTracerAPI 0.0% -2025-07-23T19:36:54.8292308Z github.com/ava-labs/coreth/eth/tracers/api.go:133: chainContext 100.0% -2025-07-23T19:36:54.8292791Z github.com/ava-labs/coreth/eth/tracers/api.go:139: blockByNumber 83.3% -2025-07-23T19:36:54.8293267Z github.com/ava-labs/coreth/eth/tracers/api.go:152: blockByHash 0.0% -2025-07-23T19:36:54.8293764Z github.com/ava-labs/coreth/eth/tracers/api.go:168: blockByNumberAndHash 66.7% -2025-07-23T19:36:54.8294255Z github.com/ava-labs/coreth/eth/tracers/api.go:213: String 0.0% -2025-07-23T19:36:54.8294708Z github.com/ava-labs/coreth/eth/tracers/api.go:243: TraceChain 0.0% -2025-07-23T19:36:54.8295264Z github.com/ava-labs/coreth/eth/tracers/api.go:276: traceChain 76.8% -2025-07-23T19:36:54.8295761Z github.com/ava-labs/coreth/eth/tracers/api.go:467: TraceBlockByNumber 100.0% -2025-07-23T19:36:54.8296270Z github.com/ava-labs/coreth/eth/tracers/api.go:477: TraceBlockByHash 0.0% -2025-07-23T19:36:54.8296749Z github.com/ava-labs/coreth/eth/tracers/api.go:487: TraceBlock 0.0% -2025-07-23T19:36:54.8297235Z github.com/ava-labs/coreth/eth/tracers/api.go:497: TraceBlockFromFile 0.0% -2025-07-23T19:36:54.8297732Z github.com/ava-labs/coreth/eth/tracers/api.go:508: TraceBadBlock 0.0% -2025-07-23T19:36:54.8298244Z github.com/ava-labs/coreth/eth/tracers/api.go:529: StandardTraceBlockToFile 0.0% -2025-07-23T19:36:54.8298771Z github.com/ava-labs/coreth/eth/tracers/api.go:539: IntermediateRoots 0.0% -2025-07-23T19:36:54.8299307Z github.com/ava-labs/coreth/eth/tracers/api.go:598: StandardTraceBadBlockToFile 0.0% -2025-07-23T19:36:54.8299822Z github.com/ava-labs/coreth/eth/tracers/api.go:619: traceBlock 76.0% -2025-07-23T19:36:54.8300311Z github.com/ava-labs/coreth/eth/tracers/api.go:679: traceBlockParallel 0.0% -2025-07-23T19:36:54.8300833Z github.com/ava-labs/coreth/eth/tracers/api.go:756: standardTraceBlockToFile 0.0% -2025-07-23T19:36:54.8301332Z github.com/ava-labs/coreth/eth/tracers/api.go:866: containsTx 0.0% -2025-07-23T19:36:54.8301985Z github.com/ava-labs/coreth/eth/tracers/api.go:877: TraceTransaction 73.7% -2025-07-23T19:36:54.8302465Z github.com/ava-labs/coreth/eth/tracers/api.go:920: TraceCall 80.6% -2025-07-23T19:36:54.8302911Z github.com/ava-labs/coreth/eth/tracers/api.go:996: traceTx 69.6% -2025-07-23T19:36:54.8303352Z github.com/ava-labs/coreth/eth/tracers/api.go:1042: APIs 0.0% -2025-07-23T19:36:54.8303819Z github.com/ava-labs/coreth/eth/tracers/api.go:1060: overrideConfig 0.0% -2025-07-23T19:36:54.8304330Z github.com/ava-labs/coreth/eth/tracers/tracker.go:49: newStateTracker 100.0% -2025-07-23T19:36:54.8304952Z github.com/ava-labs/coreth/eth/tracers/tracker.go:62: releaseState 100.0% -2025-07-23T19:36:54.8305456Z github.com/ava-labs/coreth/eth/tracers/tracker.go:95: callReleases 100.0% -2025-07-23T19:36:54.8305933Z github.com/ava-labs/coreth/eth/tracers/tracker.go:106: wait 87.5% -2025-07-23T19:36:54.8306442Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:53: New 0.0% -2025-07-23T19:36:54.8307047Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:59: CreateAccessList 0.0% -2025-07-23T19:36:54.8307671Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:92: GetProof 0.0% -2025-07-23T19:36:54.8308282Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:156: CallContract 0.0% -2025-07-23T19:36:54.8309024Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:166: GCStats 0.0% -2025-07-23T19:36:54.8309614Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:173: MemStats 0.0% -2025-07-23T19:36:54.8310283Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:180: SubscribePendingTransactions 0.0% -2025-07-23T19:36:54.8310960Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:184: toCallArg 0.0% -2025-07-23T19:36:54.8311575Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:219: toOverrideMap 0.0% -2025-07-23T19:36:54.8312122Z github.com/ava-labs/coreth/ethclient/ethclient.go:53: Dial 0.0% -2025-07-23T19:36:54.8312597Z github.com/ava-labs/coreth/ethclient/ethclient.go:58: DialContext 0.0% -2025-07-23T19:36:54.8313082Z github.com/ava-labs/coreth/ethclient/ethclient.go:67: NewClient 100.0% -2025-07-23T19:36:54.8313560Z github.com/ava-labs/coreth/ethclient/ethclient.go:72: Close 100.0% -2025-07-23T19:36:54.8314033Z github.com/ava-labs/coreth/ethclient/ethclient.go:77: Client 0.0% -2025-07-23T19:36:54.8314501Z github.com/ava-labs/coreth/ethclient/ethclient.go:84: ChainID 80.0% -2025-07-23T19:36:54.8315073Z github.com/ava-labs/coreth/ethclient/ethclient.go:97: BlockByHash 0.0% -2025-07-23T19:36:54.8315583Z github.com/ava-labs/coreth/ethclient/ethclient.go:106: BlockByNumber 100.0% -2025-07-23T19:36:54.8316104Z github.com/ava-labs/coreth/ethclient/ethclient.go:111: BlockNumber 100.0% -2025-07-23T19:36:54.8316621Z github.com/ava-labs/coreth/ethclient/ethclient.go:125: BlockReceipts 0.0% -2025-07-23T19:36:54.8317110Z github.com/ava-labs/coreth/ethclient/ethclient.go:141: getBlock 51.2% -2025-07-23T19:36:54.8317603Z github.com/ava-labs/coreth/ethclient/ethclient.go:221: HeaderByHash 80.0% -2025-07-23T19:36:54.8318117Z github.com/ava-labs/coreth/ethclient/ethclient.go:232: HeaderByNumber 80.0% -2025-07-23T19:36:54.8318645Z github.com/ava-labs/coreth/ethclient/ethclient.go:252: UnmarshalJSON 66.7% -2025-07-23T19:36:54.8319172Z github.com/ava-labs/coreth/ethclient/ethclient.go:260: TransactionByHash 0.0% -2025-07-23T19:36:54.8319706Z github.com/ava-labs/coreth/ethclient/ethclient.go:282: TransactionSender 0.0% -2025-07-23T19:36:54.8320238Z github.com/ava-labs/coreth/ethclient/ethclient.go:304: TransactionCount 0.0% -2025-07-23T19:36:54.8320766Z github.com/ava-labs/coreth/ethclient/ethclient.go:311: TransactionInBlock 0.0% -2025-07-23T19:36:54.8321452Z github.com/ava-labs/coreth/ethclient/ethclient.go:330: TransactionReceipt 80.0% -2025-07-23T19:36:54.8321988Z github.com/ava-labs/coreth/ethclient/ethclient.go:341: SyncProgress 0.0% -2025-07-23T19:36:54.8322513Z github.com/ava-labs/coreth/ethclient/ethclient.go:357: SubscribeNewHead 0.0% -2025-07-23T19:36:54.8323021Z github.com/ava-labs/coreth/ethclient/ethclient.go:371: NetworkID 0.0% -2025-07-23T19:36:54.8323512Z github.com/ava-labs/coreth/ethclient/ethclient.go:385: BalanceAt 0.0% -2025-07-23T19:36:54.8324011Z github.com/ava-labs/coreth/ethclient/ethclient.go:392: BalanceAtHash 0.0% -2025-07-23T19:36:54.8324503Z github.com/ava-labs/coreth/ethclient/ethclient.go:400: StorageAt 0.0% -2025-07-23T19:36:54.8325099Z github.com/ava-labs/coreth/ethclient/ethclient.go:407: StorageAtHash 0.0% -2025-07-23T19:36:54.8325591Z github.com/ava-labs/coreth/ethclient/ethclient.go:415: CodeAt 0.0% -2025-07-23T19:36:54.8326074Z github.com/ava-labs/coreth/ethclient/ethclient.go:422: CodeAtHash 0.0% -2025-07-23T19:36:54.8326560Z github.com/ava-labs/coreth/ethclient/ethclient.go:430: NonceAt 100.0% -2025-07-23T19:36:54.8327049Z github.com/ava-labs/coreth/ethclient/ethclient.go:437: NonceAtHash 0.0% -2025-07-23T19:36:54.8327537Z github.com/ava-labs/coreth/ethclient/ethclient.go:446: FilterLogs 0.0% -2025-07-23T19:36:54.8328059Z github.com/ava-labs/coreth/ethclient/ethclient.go:457: SubscribeFilterLogs 0.0% -2025-07-23T19:36:54.8328727Z github.com/ava-labs/coreth/ethclient/ethclient.go:472: toFilterArg 0.0% -2025-07-23T19:36:54.8329233Z github.com/ava-labs/coreth/ethclient/ethclient.go:539: CallContract 80.0% -2025-07-23T19:36:54.8329762Z github.com/ava-labs/coreth/ethclient/ethclient.go:550: CallContractAtHash 0.0% -2025-07-23T19:36:54.8330299Z github.com/ava-labs/coreth/ethclient/ethclient.go:572: SuggestGasPrice 0.0% -2025-07-23T19:36:54.8330832Z github.com/ava-labs/coreth/ethclient/ethclient.go:582: SuggestGasTipCap 0.0% -2025-07-23T19:36:54.8331346Z github.com/ava-labs/coreth/ethclient/ethclient.go:598: FeeHistory 0.0% -2025-07-23T19:36:54.8331864Z github.com/ava-labs/coreth/ethclient/ethclient.go:626: EstimateGas 0.0% -2025-07-23T19:36:54.8332546Z github.com/ava-labs/coreth/ethclient/ethclient.go:639: SendTransaction 75.0% -2025-07-23T19:36:54.8333072Z github.com/ava-labs/coreth/ethclient/ethclient.go:647: toBlockNumArg 85.7% -2025-07-23T19:36:54.8333579Z github.com/ava-labs/coreth/ethclient/ethclient.go:662: toCallArg 60.0% -2025-07-23T19:36:54.8334079Z github.com/ava-labs/coreth/ethclient/ethclient.go:722: toSyncProgress 0.0% -2025-07-23T19:36:54.8334609Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:44: NewClientWithHook 0.0% -2025-07-23T19:36:54.8335321Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:61: SubscribeNewAcceptedTransactions 0.0% -2025-07-23T19:36:54.8335974Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:73: SubscribeNewPendingTransactions 0.0% -2025-07-23T19:36:54.8336561Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:85: AcceptedCodeAt 0.0% -2025-07-23T19:36:54.8337098Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:91: AcceptedNonceAt 0.0% -2025-07-23T19:36:54.8337675Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:97: AcceptedCallContract 0.0% -2025-07-23T19:36:54.8338251Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:104: EstimateBaseFee 0.0% -2025-07-23T19:36:54.8338794Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:113: ToBlockNumArg 0.0% -2025-07-23T19:36:54.8339335Z github.com/ava-labs/coreth/ethclient/signer.go:48: setSenderFromServer 100.0% -2025-07-23T19:36:54.8339824Z github.com/ava-labs/coreth/ethclient/signer.go:53: Equal 0.0% -2025-07-23T19:36:54.8340268Z github.com/ava-labs/coreth/ethclient/signer.go:58: Sender 66.7% -2025-07-23T19:36:54.8340712Z github.com/ava-labs/coreth/ethclient/signer.go:65: ChainID 0.0% -2025-07-23T19:36:54.8341294Z github.com/ava-labs/coreth/ethclient/signer.go:68: Hash 0.0% -2025-07-23T19:36:54.8341756Z github.com/ava-labs/coreth/ethclient/signer.go:71: SignatureValues 0.0% -2025-07-23T19:36:54.8342259Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:48: Add 0.0% -2025-07-23T19:36:54.8342784Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:87: NewBackend 88.9% -2025-07-23T19:36:54.8343343Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:122: newWithNode 83.3% -2025-07-23T19:36:54.8343889Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:154: Close 100.0% -2025-07-23T19:36:54.8344417Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:163: Commit 75.0% -2025-07-23T19:36:54.8345061Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:171: buildBlock 73.3% -2025-07-23T19:36:54.8345639Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:196: acceptAncestors 83.3% -2025-07-23T19:36:54.8346219Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:219: Rollback 100.0% -2025-07-23T19:36:54.8346741Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:239: Fork 76.5% -2025-07-23T19:36:54.8347283Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:274: AdjustTime 100.0% -2025-07-23T19:36:54.8347831Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:280: Client 100.0% -2025-07-23T19:36:54.8348542Z github.com/ava-labs/coreth/ethclient/simulated/options.go:29: WithBlockGasLimit 100.0% -2025-07-23T19:36:54.8349145Z github.com/ava-labs/coreth/ethclient/simulated/options.go:37: WithCallGasLimit 100.0% -2025-07-23T19:36:54.8349715Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:51: NewHasher 100.0% -2025-07-23T19:36:54.8350251Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:56: Reset 100.0% -2025-07-23T19:36:54.8350769Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:61: Update 100.0% -2025-07-23T19:36:54.8351294Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:68: Hash 100.0% -2025-07-23T19:36:54.8351792Z github.com/ava-labs/coreth/internal/debug/api.go:70: Verbosity 0.0% -2025-07-23T19:36:54.8352424Z github.com/ava-labs/coreth/internal/debug/api.go:76: Vmodule 0.0% -2025-07-23T19:36:54.8352891Z github.com/ava-labs/coreth/internal/debug/api.go:81: MemStats 0.0% -2025-07-23T19:36:54.8353359Z github.com/ava-labs/coreth/internal/debug/api.go:88: GcStats 0.0% -2025-07-23T19:36:54.8353846Z github.com/ava-labs/coreth/internal/debug/api.go:96: CpuProfile 0.0% -2025-07-23T19:36:54.8354356Z github.com/ava-labs/coreth/internal/debug/api.go:106: StartCPUProfile 0.0% -2025-07-23T19:36:54.8354982Z github.com/ava-labs/coreth/internal/debug/api.go:127: StopCPUProfile 0.0% -2025-07-23T19:36:54.8355498Z github.com/ava-labs/coreth/internal/debug/api.go:143: GoTrace 0.0% -2025-07-23T19:36:54.8355991Z github.com/ava-labs/coreth/internal/debug/api.go:155: BlockProfile 0.0% -2025-07-23T19:36:54.8356518Z github.com/ava-labs/coreth/internal/debug/api.go:164: SetBlockProfileRate 0.0% -2025-07-23T19:36:54.8357060Z github.com/ava-labs/coreth/internal/debug/api.go:169: WriteBlockProfile 0.0% -2025-07-23T19:36:54.8357572Z github.com/ava-labs/coreth/internal/debug/api.go:176: MutexProfile 0.0% -2025-07-23T19:36:54.8358117Z github.com/ava-labs/coreth/internal/debug/api.go:184: SetMutexProfileFraction 0.0% -2025-07-23T19:36:54.8358668Z github.com/ava-labs/coreth/internal/debug/api.go:189: WriteMutexProfile 0.0% -2025-07-23T19:36:54.8359193Z github.com/ava-labs/coreth/internal/debug/api.go:196: WriteMemProfile 0.0% -2025-07-23T19:36:54.8359687Z github.com/ava-labs/coreth/internal/debug/api.go:203: Stacks 0.0% -2025-07-23T19:36:54.8360162Z github.com/ava-labs/coreth/internal/debug/api.go:242: FreeOSMemory 0.0% -2025-07-23T19:36:54.8360656Z github.com/ava-labs/coreth/internal/debug/api.go:248: SetGCPercent 0.0% -2025-07-23T19:36:54.8361305Z github.com/ava-labs/coreth/internal/debug/api.go:252: writeProfile 0.0% -2025-07-23T19:36:54.8361800Z github.com/ava-labs/coreth/internal/debug/api.go:265: expandHome 0.0% -2025-07-23T19:36:54.8362282Z github.com/ava-labs/coreth/internal/debug/flags.go:181: init 100.0% -2025-07-23T19:36:54.8362755Z github.com/ava-labs/coreth/internal/debug/flags.go:187: Setup 0.0% -2025-07-23T19:36:54.8363251Z github.com/ava-labs/coreth/internal/debug/flags.go:314: StartPProf 0.0% -2025-07-23T19:36:54.8363727Z github.com/ava-labs/coreth/internal/debug/flags.go:325: Exit 0.0% -2025-07-23T19:36:54.8364236Z github.com/ava-labs/coreth/internal/debug/flags.go:333: validateLogLocation 0.0% -2025-07-23T19:36:54.8364880Z github.com/ava-labs/coreth/internal/debug/loudpanic.go:33: LoudPanic 0.0% -2025-07-23T19:36:54.8365396Z github.com/ava-labs/coreth/internal/debug/trace.go:39: StartGoTrace 0.0% -2025-07-23T19:36:54.8365896Z github.com/ava-labs/coreth/internal/debug/trace.go:60: StopGoTrace 0.0% -2025-07-23T19:36:54.8366384Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:42: lock 0.0% -2025-07-23T19:36:54.8366872Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:57: LockAddr 0.0% -2025-07-23T19:36:54.8367382Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:62: UnlockAddr 0.0% -2025-07-23T19:36:54.8368090Z github.com/ava-labs/coreth/internal/ethapi/api.coreth.go:46: SuggestPriceOptions 86.7% -2025-07-23T19:36:54.8368705Z github.com/ava-labs/coreth/internal/ethapi/api.coreth.go:104: calculateFeeSpeeds 100.0% -2025-07-23T19:36:54.8369277Z github.com/ava-labs/coreth/internal/ethapi/api.go:76: NewEthereumAPI 100.0% -2025-07-23T19:36:54.8369775Z github.com/ava-labs/coreth/internal/ethapi/api.go:81: GasPrice 0.0% -2025-07-23T19:36:54.8370245Z github.com/ava-labs/coreth/internal/ethapi/api.go:91: BaseFee 0.0% -2025-07-23T19:36:54.8370764Z github.com/ava-labs/coreth/internal/ethapi/api.go:100: MaxPriorityFeePerGas 0.0% -2025-07-23T19:36:54.8371290Z github.com/ava-labs/coreth/internal/ethapi/api.go:116: FeeHistory 0.0% -2025-07-23T19:36:54.8371765Z github.com/ava-labs/coreth/internal/ethapi/api.go:148: Syncing 0.0% -2025-07-23T19:36:54.8372255Z github.com/ava-labs/coreth/internal/ethapi/api.go:158: NewTxPoolAPI 0.0% -2025-07-23T19:36:54.8372748Z github.com/ava-labs/coreth/internal/ethapi/api.go:163: Content 0.0% -2025-07-23T19:36:54.8373235Z github.com/ava-labs/coreth/internal/ethapi/api.go:191: ContentFrom 0.0% -2025-07-23T19:36:54.8373712Z github.com/ava-labs/coreth/internal/ethapi/api.go:215: Status 0.0% -2025-07-23T19:36:54.8374182Z github.com/ava-labs/coreth/internal/ethapi/api.go:225: Inspect 0.0% -2025-07-23T19:36:54.8374703Z github.com/ava-labs/coreth/internal/ethapi/api.go:265: NewEthereumAccountAPI 0.0% -2025-07-23T19:36:54.8375320Z github.com/ava-labs/coreth/internal/ethapi/api.go:270: Accounts 0.0% -2025-07-23T19:36:54.8375846Z github.com/ava-labs/coreth/internal/ethapi/api.go:284: NewPersonalAccountAPI 0.0% -2025-07-23T19:36:54.8376386Z github.com/ava-labs/coreth/internal/ethapi/api.go:293: ListAccounts 0.0% -2025-07-23T19:36:54.8376884Z github.com/ava-labs/coreth/internal/ethapi/api.go:307: ListWallets 0.0% -2025-07-23T19:36:54.8377368Z github.com/ava-labs/coreth/internal/ethapi/api.go:329: OpenWallet 0.0% -2025-07-23T19:36:54.8377874Z github.com/ava-labs/coreth/internal/ethapi/api.go:343: DeriveAccount 0.0% -2025-07-23T19:36:54.8378376Z github.com/ava-labs/coreth/internal/ethapi/api.go:359: NewAccount 0.0% -2025-07-23T19:36:54.8378870Z github.com/ava-labs/coreth/internal/ethapi/api.go:376: fetchKeystore 0.0% -2025-07-23T19:36:54.8379368Z github.com/ava-labs/coreth/internal/ethapi/api.go:385: ImportRawKey 0.0% -2025-07-23T19:36:54.8379594Z github.com/ava-labs/coreth/internal/ethapi/api.go:401: UnlockAccount 0.0% -2025-07-23T19:36:54.8379979Z github.com/ava-labs/coreth/internal/ethapi/api.go:430: LockAccount 0.0% -2025-07-23T19:36:54.8380216Z github.com/ava-labs/coreth/internal/ethapi/api.go:440: signTransaction 0.0% -2025-07-23T19:36:54.8380450Z github.com/ava-labs/coreth/internal/ethapi/api.go:460: SendTransaction 0.0% -2025-07-23T19:36:54.8380678Z github.com/ava-labs/coreth/internal/ethapi/api.go:482: SignTransaction 0.0% -2025-07-23T19:36:54.8380885Z github.com/ava-labs/coreth/internal/ethapi/api.go:526: Sign 0.0% -2025-07-23T19:36:54.8381096Z github.com/ava-labs/coreth/internal/ethapi/api.go:554: EcRecover 0.0% -2025-07-23T19:36:54.8381324Z github.com/ava-labs/coreth/internal/ethapi/api.go:571: InitializeWallet 0.0% -2025-07-23T19:36:54.8381527Z github.com/ava-labs/coreth/internal/ethapi/api.go:598: Unpair 0.0% -2025-07-23T19:36:54.8381767Z github.com/ava-labs/coreth/internal/ethapi/api.go:618: NewBlockChainAPI 100.0% -2025-07-23T19:36:54.8381978Z github.com/ava-labs/coreth/internal/ethapi/api.go:628: ChainId 0.0% -2025-07-23T19:36:54.8382192Z github.com/ava-labs/coreth/internal/ethapi/api.go:633: BlockNumber 0.0% -2025-07-23T19:36:54.8382397Z github.com/ava-labs/coreth/internal/ethapi/api.go:641: GetBalance 0.0% -2025-07-23T19:36:54.8382598Z github.com/ava-labs/coreth/internal/ethapi/api.go:671: Put 0.0% -2025-07-23T19:36:54.8382912Z github.com/ava-labs/coreth/internal/ethapi/api.go:676: Delete 0.0% -2025-07-23T19:36:54.8383115Z github.com/ava-labs/coreth/internal/ethapi/api.go:683: GetProof 0.0% -2025-07-23T19:36:54.8383330Z github.com/ava-labs/coreth/internal/ethapi/api.go:766: decodeHash 0.0% -2025-07-23T19:36:54.8383570Z github.com/ava-labs/coreth/internal/ethapi/api.go:788: GetHeaderByNumber 100.0% -2025-07-23T19:36:54.8383811Z github.com/ava-labs/coreth/internal/ethapi/api.go:805: GetHeaderByHash 100.0% -2025-07-23T19:36:54.8384043Z github.com/ava-labs/coreth/internal/ethapi/api.go:820: GetBlockByNumber 100.0% -2025-07-23T19:36:54.8384280Z github.com/ava-labs/coreth/internal/ethapi/api.go:838: GetBlockByHash 100.0% -2025-07-23T19:36:54.8384567Z github.com/ava-labs/coreth/internal/ethapi/api.go:847: GetUncleByBlockNumberAndIndex 0.0% -2025-07-23T19:36:54.8384978Z github.com/ava-labs/coreth/internal/ethapi/api.go:862: GetUncleByBlockHashAndIndex 0.0% -2025-07-23T19:36:54.8385261Z github.com/ava-labs/coreth/internal/ethapi/api.go:877: GetUncleCountByBlockNumber 0.0% -2025-07-23T19:36:54.8385522Z github.com/ava-labs/coreth/internal/ethapi/api.go:886: GetUncleCountByBlockHash 0.0% -2025-07-23T19:36:54.8385727Z github.com/ava-labs/coreth/internal/ethapi/api.go:895: GetCode 0.0% -2025-07-23T19:36:54.8385951Z github.com/ava-labs/coreth/internal/ethapi/api.go:907: GetStorageAt 0.0% -2025-07-23T19:36:54.8386187Z github.com/ava-labs/coreth/internal/ethapi/api.go:921: GetBlockReceipts 85.7% -2025-07-23T19:36:54.8386387Z github.com/ava-labs/coreth/internal/ethapi/api.go:966: Apply 84.2% -2025-07-23T19:36:54.8386600Z github.com/ava-labs/coreth/internal/ethapi/api.go:1017: Apply 56.2% -2025-07-23T19:36:54.8386838Z github.com/ava-labs/coreth/internal/ethapi/api.go:1058: NewChainContext 100.0% -2025-07-23T19:36:54.8387051Z github.com/ava-labs/coreth/internal/ethapi/api.go:1062: Engine 100.0% -2025-07-23T19:36:54.8387256Z github.com/ava-labs/coreth/internal/ethapi/api.go:1066: GetHeader 0.0% -2025-07-23T19:36:54.8387465Z github.com/ava-labs/coreth/internal/ethapi/api.go:1076: doCall 80.8% -2025-07-23T19:36:54.8387674Z github.com/ava-labs/coreth/internal/ethapi/api.go:1128: DoCall 43.8% -2025-07-23T19:36:54.8387870Z github.com/ava-labs/coreth/internal/ethapi/api.go:1163: Call 66.7% -2025-07-23T19:36:54.8388103Z github.com/ava-labs/coreth/internal/ethapi/api.go:1183: DoEstimateGas 77.8% -2025-07-23T19:36:54.8388327Z github.com/ava-labs/coreth/internal/ethapi/api.go:1227: EstimateGas 100.0% -2025-07-23T19:36:54.8388698Z github.com/ava-labs/coreth/internal/ethapi/api.go:1236: RPCMarshalHeader 80.0% -2025-07-23T19:36:54.8388942Z github.com/ava-labs/coreth/internal/ethapi/api.go:1281: RPCMarshalBlock 95.0% -2025-07-23T19:36:54.8389181Z github.com/ava-labs/coreth/internal/ethapi/api.go:1313: rpcMarshalHeader 100.0% -2025-07-23T19:36:54.8389416Z github.com/ava-labs/coreth/internal/ethapi/api.go:1323: rpcMarshalBlock 100.0% -2025-07-23T19:36:54.8389663Z github.com/ava-labs/coreth/internal/ethapi/api.go:1361: newRPCTransaction 94.9% -2025-07-23T19:36:54.8389896Z github.com/ava-labs/coreth/internal/ethapi/api.go:1438: effectiveGasPrice 0.0% -2025-07-23T19:36:54.8390136Z github.com/ava-labs/coreth/internal/ethapi/api.go:1450: NewRPCTransaction 0.0% -2025-07-23T19:36:54.8390431Z github.com/ava-labs/coreth/internal/ethapi/api.go:1463: newRPCTransactionFromBlockIndex 75.0% -2025-07-23T19:36:54.8390727Z github.com/ava-labs/coreth/internal/ethapi/api.go:1472: newRPCRawTransactionFromBlockIndex 0.0% -2025-07-23T19:36:54.8390975Z github.com/ava-labs/coreth/internal/ethapi/api.go:1492: CreateAccessList 0.0% -2025-07-23T19:36:54.8391186Z github.com/ava-labs/coreth/internal/ethapi/api.go:1511: AccessList 0.0% -2025-07-23T19:36:54.8391435Z github.com/ava-labs/coreth/internal/ethapi/api.go:1573: NewTransactionAPI 100.0% -2025-07-23T19:36:54.8391839Z github.com/ava-labs/coreth/internal/ethapi/api.go:1581: GetBlockTransactionCountByNumber 0.0% -2025-07-23T19:36:54.8392123Z github.com/ava-labs/coreth/internal/ethapi/api.go:1590: GetBlockTransactionCountByHash 0.0% -2025-07-23T19:36:54.8392426Z github.com/ava-labs/coreth/internal/ethapi/api.go:1599: GetTransactionByBlockNumberAndIndex 0.0% -2025-07-23T19:36:54.8392719Z github.com/ava-labs/coreth/internal/ethapi/api.go:1607: GetTransactionByBlockHashAndIndex 0.0% -2025-07-23T19:36:54.8393034Z github.com/ava-labs/coreth/internal/ethapi/api.go:1615: GetRawTransactionByBlockNumberAndIndex 0.0% -2025-07-23T19:36:54.8393349Z github.com/ava-labs/coreth/internal/ethapi/api.go:1623: GetRawTransactionByBlockHashAndIndex 0.0% -2025-07-23T19:36:54.8393604Z github.com/ava-labs/coreth/internal/ethapi/api.go:1631: GetTransactionCount 0.0% -2025-07-23T19:36:54.8393866Z github.com/ava-labs/coreth/internal/ethapi/api.go:1650: GetTransactionByHash 0.0% -2025-07-23T19:36:54.8394136Z github.com/ava-labs/coreth/internal/ethapi/api.go:1672: GetRawTransactionByHash 0.0% -2025-07-23T19:36:54.8394402Z github.com/ava-labs/coreth/internal/ethapi/api.go:1688: GetTransactionReceipt 75.0% -2025-07-23T19:36:54.8394634Z github.com/ava-labs/coreth/internal/ethapi/api.go:1715: marshalReceipt 84.6% -2025-07-23T19:36:54.8394953Z github.com/ava-labs/coreth/internal/ethapi/api.go:1757: sign 80.0% -2025-07-23T19:36:54.8395199Z github.com/ava-labs/coreth/internal/ethapi/api.go:1770: SubmitTransaction 0.0% -2025-07-23T19:36:54.8395433Z github.com/ava-labs/coreth/internal/ethapi/api.go:1802: SendTransaction 37.5% -2025-07-23T19:36:54.8395668Z github.com/ava-labs/coreth/internal/ethapi/api.go:1838: FillTransaction 87.5% -2025-07-23T19:36:54.8395915Z github.com/ava-labs/coreth/internal/ethapi/api.go:1856: SendRawTransaction 0.0% -2025-07-23T19:36:54.8396113Z github.com/ava-labs/coreth/internal/ethapi/api.go:1873: Sign 0.0% -2025-07-23T19:36:54.8396352Z github.com/ava-labs/coreth/internal/ethapi/api.go:1898: SignTransaction 65.0% -2025-07-23T19:36:54.8396599Z github.com/ava-labs/coreth/internal/ethapi/api.go:1932: PendingTransactions 0.0% -2025-07-23T19:36:54.8396805Z github.com/ava-labs/coreth/internal/ethapi/api.go:1957: Resend 0.0% -2025-07-23T19:36:54.8397032Z github.com/ava-labs/coreth/internal/ethapi/api.go:2014: NewDebugAPI 0.0% -2025-07-23T19:36:54.8397260Z github.com/ava-labs/coreth/internal/ethapi/api.go:2019: GetRawHeader 0.0% -2025-07-23T19:36:54.8397481Z github.com/ava-labs/coreth/internal/ethapi/api.go:2038: GetRawBlock 0.0% -2025-07-23T19:36:54.8397842Z github.com/ava-labs/coreth/internal/ethapi/api.go:2057: GetRawReceipts 0.0% -2025-07-23T19:36:54.8398076Z github.com/ava-labs/coreth/internal/ethapi/api.go:2084: GetRawTransaction 0.0% -2025-07-23T19:36:54.8398296Z github.com/ava-labs/coreth/internal/ethapi/api.go:2100: PrintBlock 0.0% -2025-07-23T19:36:54.8398507Z github.com/ava-labs/coreth/internal/ethapi/api.go:2114: NewNetAPI 0.0% -2025-07-23T19:36:54.8398719Z github.com/ava-labs/coreth/internal/ethapi/api.go:2119: Listening 0.0% -2025-07-23T19:36:54.8398931Z github.com/ava-labs/coreth/internal/ethapi/api.go:2124: PeerCount 0.0% -2025-07-23T19:36:54.8399142Z github.com/ava-labs/coreth/internal/ethapi/api.go:2129: Version 0.0% -2025-07-23T19:36:54.8399364Z github.com/ava-labs/coreth/internal/ethapi/api.go:2135: checkTxFee 28.6% -2025-07-23T19:36:54.8399604Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:20: GetChainConfig 0.0% -2025-07-23T19:36:54.8399847Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:32: CallDetailed 0.0% -2025-07-23T19:36:54.8400086Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:71: GetBadBlocks 0.0% -2025-07-23T19:36:54.8400381Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:103: stateQueryBlockNumberAllowed 90.5% -2025-07-23T19:36:54.8400604Z github.com/ava-labs/coreth/internal/ethapi/backend.go:115: GetAPIs 0.0% -2025-07-23T19:36:54.8400941Z github.com/ava-labs/coreth/internal/ethapi/errors.go:47: ErrorCode 0.0% -2025-07-23T19:36:54.8401154Z github.com/ava-labs/coreth/internal/ethapi/errors.go:52: ErrorData 0.0% -2025-07-23T19:36:54.8401392Z github.com/ava-labs/coreth/internal/ethapi/errors.go:57: newRevertError 0.0% -2025-07-23T19:36:54.8401635Z github.com/ava-labs/coreth/internal/ethapi/errors.go:75: NewTxIndexingError 0.0% -2025-07-23T19:36:54.8401835Z github.com/ava-labs/coreth/internal/ethapi/errors.go:78: Error 0.0% -2025-07-23T19:36:54.8402054Z github.com/ava-labs/coreth/internal/ethapi/errors.go:84: ErrorCode 0.0% -2025-07-23T19:36:54.8402264Z github.com/ava-labs/coreth/internal/ethapi/errors.go:89: ErrorData 0.0% -2025-07-23T19:36:54.8402506Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:91: from 100.0% -2025-07-23T19:36:54.8402743Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:99: data 100.0% -2025-07-23T19:36:54.8403015Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:110: setDefaults 61.9% -2025-07-23T19:36:54.8403302Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:203: setFeeDefaults 89.7% -2025-07-23T19:36:54.8403599Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:263: setCancunFeeDefaults 100.0% -2025-07-23T19:36:54.8403926Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:282: setApricotPhase3FeeDefault 90.9% -2025-07-23T19:36:54.8404212Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:310: setBlobTxSidecar 90.5% -2025-07-23T19:36:54.8404476Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:387: ToMessage 78.6% -2025-07-23T19:36:54.8404752Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:476: toTransaction 73.3% -2025-07-23T19:36:54.8405109Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:548: IsEIP4844 100.0% -2025-07-23T19:36:54.8405337Z github.com/ava-labs/coreth/internal/flags/categories.go:53: init 100.0% -2025-07-23T19:36:54.8405548Z github.com/ava-labs/coreth/internal/flags/helpers.go:47: NewApp 80.0% -2025-07-23T19:36:54.8405748Z github.com/ava-labs/coreth/internal/flags/helpers.go:62: Merge 0.0% -2025-07-23T19:36:54.8405998Z github.com/ava-labs/coreth/internal/flags/helpers.go:87: MigrateGlobalFlags 0.0% -2025-07-23T19:36:54.8406231Z github.com/ava-labs/coreth/internal/flags/helpers.go:114: doMigrateFlags 0.0% -2025-07-23T19:36:54.8406433Z github.com/ava-labs/coreth/internal/flags/helpers.go:149: init 50.0% -2025-07-23T19:36:54.8406794Z github.com/ava-labs/coreth/internal/flags/helpers.go:162: FlagString 0.0% -2025-07-23T19:36:54.8407004Z github.com/ava-labs/coreth/internal/flags/helpers.go:194: indent 0.0% -2025-07-23T19:36:54.8407223Z github.com/ava-labs/coreth/internal/flags/helpers.go:199: wordWrap 0.0% -2025-07-23T19:36:54.8407430Z github.com/ava-labs/coreth/internal/reexec/reexec.go:31: Register 0.0% -2025-07-23T19:36:54.8407634Z github.com/ava-labs/coreth/internal/reexec/reexec.go:40: Init 0.0% -2025-07-23T19:36:54.8407847Z github.com/ava-labs/coreth/internal/reexec/self_linux.go:23: Self 0.0% -2025-07-23T19:36:54.8408164Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:49: NewShutdownTracker 100.0% -2025-07-23T19:36:54.8408458Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:59: MarkStartup 71.4% -2025-07-23T19:36:54.8408727Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:75: Start 85.7% -2025-07-23T19:36:54.8408993Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:91: Stop 100.0% -2025-07-23T19:36:54.8409224Z github.com/ava-labs/coreth/internal/version/vcs.go:43: buildInfoVCS 36.4% -2025-07-23T19:36:54.8409429Z github.com/ava-labs/coreth/internal/version/version.go:54: VCS 83.3% -2025-07-23T19:36:54.8409792Z github.com/ava-labs/coreth/internal/version/version.go:69: ClientName 0.0% -2025-07-23T19:36:54.8410006Z github.com/ava-labs/coreth/internal/version/version.go:85: Info 42.9% -2025-07-23T19:36:54.8410241Z github.com/ava-labs/coreth/internal/version/version.go:112: versionInfo 50.0% -2025-07-23T19:36:54.8410474Z github.com/ava-labs/coreth/internal/version/version.go:142: findModule 50.0% -2025-07-23T19:36:54.8410650Z github.com/ava-labs/coreth/log/format.go:45: format 66.7% -2025-07-23T19:36:54.8410852Z github.com/ava-labs/coreth/log/format.go:103: formatAttributes 82.1% -2025-07-23T19:36:54.8411065Z github.com/ava-labs/coreth/log/format.go:150: FormatSlogValue 84.0% -2025-07-23T19:36:54.8411260Z github.com/ava-labs/coreth/log/format.go:206: appendInt64 100.0% -2025-07-23T19:36:54.8411458Z github.com/ava-labs/coreth/log/format.go:214: appendUint64 88.2% -2025-07-23T19:36:54.8411663Z github.com/ava-labs/coreth/log/format.go:249: FormatLogfmtUint64 0.0% -2025-07-23T19:36:54.8411859Z github.com/ava-labs/coreth/log/format.go:254: appendBigInt 12.5% -2025-07-23T19:36:54.8412054Z github.com/ava-labs/coreth/log/format.go:288: appendU256 50.0% -2025-07-23T19:36:54.8412268Z github.com/ava-labs/coreth/log/format.go:298: appendEscapeString 100.0% -2025-07-23T19:36:54.8412467Z github.com/ava-labs/coreth/log/format.go:331: escapeMessage 60.0% -2025-07-23T19:36:54.8412687Z github.com/ava-labs/coreth/log/format.go:352: writeTimeTermFormat 100.0% -2025-07-23T19:36:54.8412892Z github.com/ava-labs/coreth/log/format.go:372: writePosIntWidth 91.7% -2025-07-23T19:36:54.8413099Z github.com/ava-labs/coreth/log/handler.go:22: DiscardHandler 0.0% -2025-07-23T19:36:54.8413272Z github.com/ava-labs/coreth/log/handler.go:26: Handle 0.0% -2025-07-23T19:36:54.8413451Z github.com/ava-labs/coreth/log/handler.go:30: Enabled 0.0% -2025-07-23T19:36:54.8413639Z github.com/ava-labs/coreth/log/handler.go:34: WithGroup 0.0% -2025-07-23T19:36:54.8413820Z github.com/ava-labs/coreth/log/handler.go:38: WithAttrs 0.0% -2025-07-23T19:36:54.8414042Z github.com/ava-labs/coreth/log/handler.go:67: NewTerminalHandler 0.0% -2025-07-23T19:36:54.8414283Z github.com/ava-labs/coreth/log/handler.go:73: NewTerminalHandlerWithLevel 100.0% -2025-07-23T19:36:54.8414461Z github.com/ava-labs/coreth/log/handler.go:82: Handle 100.0% -2025-07-23T19:36:54.8414652Z github.com/ava-labs/coreth/log/handler.go:91: Enabled 100.0% -2025-07-23T19:36:54.8414929Z github.com/ava-labs/coreth/log/handler.go:95: WithGroup 0.0% -2025-07-23T19:36:54.8415253Z github.com/ava-labs/coreth/log/handler.go:99: WithAttrs 100.0% -2025-07-23T19:36:54.8415470Z github.com/ava-labs/coreth/log/handler.go:110: ResetFieldPadding 0.0% -2025-07-23T19:36:54.8415662Z github.com/ava-labs/coreth/log/handler.go:117: JSONHandler 0.0% -2025-07-23T19:36:54.8415892Z github.com/ava-labs/coreth/log/handler.go:123: JSONHandlerWithLevel 100.0% -2025-07-23T19:36:54.8416095Z github.com/ava-labs/coreth/log/handler.go:134: LogfmtHandler 0.0% -2025-07-23T19:36:54.8416324Z github.com/ava-labs/coreth/log/handler.go:142: LogfmtHandlerWithLevel 0.0% -2025-07-23T19:36:54.8416550Z github.com/ava-labs/coreth/log/handler.go:149: builtinReplaceLogfmt 0.0% -2025-07-23T19:36:54.8416763Z github.com/ava-labs/coreth/log/handler.go:153: builtinReplaceJSON 0.0% -2025-07-23T19:36:54.8416970Z github.com/ava-labs/coreth/log/handler.go:157: builtinReplace 0.0% -2025-07-23T19:36:54.8417255Z github.com/ava-labs/coreth/log/logger.go:46: LvlFromString 37.5% -2025-07-23T19:36:54.8417488Z github.com/ava-labs/coreth/log/logger.go:67: FromLegacyLevel 0.0% -2025-07-23T19:36:54.8417769Z github.com/ava-labs/coreth/log/logger.go:93: LevelAlignedString 37.5% -2025-07-23T19:36:54.8417991Z github.com/ava-labs/coreth/log/logger.go:113: LevelString 0.0% -2025-07-23T19:36:54.8418384Z github.com/ava-labs/coreth/log/logger.go:173: NewLogger 0.0% -2025-07-23T19:36:54.8418770Z github.com/ava-labs/coreth/log/logger.go:180: Write 0.0% -2025-07-23T19:36:54.8419022Z github.com/ava-labs/coreth/log/logger.go:196: Log 0.0% -2025-07-23T19:36:54.8419234Z github.com/ava-labs/coreth/log/logger.go:200: With 0.0% -2025-07-23T19:36:54.8419468Z github.com/ava-labs/coreth/log/logger.go:204: New 0.0% -2025-07-23T19:36:54.8419689Z github.com/ava-labs/coreth/log/logger.go:209: Enabled 0.0% -2025-07-23T19:36:54.8419949Z github.com/ava-labs/coreth/log/logger.go:213: Trace 0.0% -2025-07-23T19:36:54.8420210Z github.com/ava-labs/coreth/log/logger.go:217: Debug 0.0% -2025-07-23T19:36:54.8420407Z github.com/ava-labs/coreth/log/logger.go:221: Info 0.0% -2025-07-23T19:36:54.8420600Z github.com/ava-labs/coreth/log/logger.go:225: Warn 0.0% -2025-07-23T19:36:54.8420853Z github.com/ava-labs/coreth/log/logger.go:229: Error 0.0% -2025-07-23T19:36:54.8421036Z github.com/ava-labs/coreth/log/logger.go:233: Crit 0.0% -2025-07-23T19:36:54.8421436Z github.com/ava-labs/coreth/metrics/metricstest/metrics.go:15: WithMetrics 40.0% -2025-07-23T19:36:54.8421746Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:28: NewGatherer 100.0% -2025-07-23T19:36:54.8422025Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:36: Gather 100.0% -2025-07-23T19:36:54.8422339Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:64: ptrTo 100.0% -2025-07-23T19:36:54.8422650Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:66: metricFamily 94.1% -2025-07-23T19:36:54.8422921Z github.com/ava-labs/coreth/miner/miner.go:59: New 0.0% -2025-07-23T19:36:54.8423167Z github.com/ava-labs/coreth/miner/miner.go:65: SetEtherbase 0.0% -2025-07-23T19:36:54.8423399Z github.com/ava-labs/coreth/miner/miner.go:69: GenerateBlock 0.0% -2025-07-23T19:36:54.8423694Z github.com/ava-labs/coreth/miner/miner.go:75: SubscribePendingLogs 0.0% -2025-07-23T19:36:54.8423977Z github.com/ava-labs/coreth/miner/ordering.go:50: newTxWithMinerFee 100.0% -2025-07-23T19:36:54.8424206Z github.com/ava-labs/coreth/miner/ordering.go:72: Len 100.0% -2025-07-23T19:36:54.8424464Z github.com/ava-labs/coreth/miner/ordering.go:73: Less 100.0% -2025-07-23T19:36:54.8424700Z github.com/ava-labs/coreth/miner/ordering.go:82: Swap 100.0% -2025-07-23T19:36:54.8425260Z github.com/ava-labs/coreth/miner/ordering.go:84: Push 0.0% -2025-07-23T19:36:54.8425676Z github.com/ava-labs/coreth/miner/ordering.go:88: Pop 100.0% -2025-07-23T19:36:54.8425995Z github.com/ava-labs/coreth/miner/ordering.go:112: newTransactionsByPriceAndNonce 100.0% -2025-07-23T19:36:54.8426240Z github.com/ava-labs/coreth/miner/ordering.go:141: Peek 100.0% -2025-07-23T19:36:54.8426534Z github.com/ava-labs/coreth/miner/ordering.go:149: Shift 100.0% -2025-07-23T19:36:54.8426799Z github.com/ava-labs/coreth/miner/ordering.go:164: Pop 0.0% -2025-07-23T19:36:54.8427036Z github.com/ava-labs/coreth/miner/ordering.go:170: Empty 0.0% -2025-07-23T19:36:54.8427244Z github.com/ava-labs/coreth/miner/ordering.go:175: Clear 0.0% -2025-07-23T19:36:54.8427500Z github.com/ava-labs/coreth/miner/worker.go:116: newWorker 0.0% -2025-07-23T19:36:54.8427720Z github.com/ava-labs/coreth/miner/worker.go:133: setEtherbase 0.0% -2025-07-23T19:36:54.8428058Z github.com/ava-labs/coreth/miner/worker.go:140: commitNewWork 0.0% -2025-07-23T19:36:54.8428338Z github.com/ava-labs/coreth/miner/worker.go:264: createCurrentEnvironment 0.0% -2025-07-23T19:36:54.8428605Z github.com/ava-labs/coreth/miner/worker.go:313: commitTransaction 0.0% -2025-07-23T19:36:54.8428907Z github.com/ava-labs/coreth/miner/worker.go:327: commitBlobTransaction 0.0% -2025-07-23T19:36:54.8429152Z github.com/ava-labs/coreth/miner/worker.go:352: applyTransaction 0.0% -2025-07-23T19:36:54.8429603Z github.com/ava-labs/coreth/miner/worker.go:386: commitTransactions 0.0% -2025-07-23T19:36:54.8429851Z github.com/ava-labs/coreth/miner/worker.go:493: commit 0.0% -2025-07-23T19:36:54.8430085Z github.com/ava-labs/coreth/miner/worker.go:511: handleResult 0.0% -2025-07-23T19:36:54.8430354Z github.com/ava-labs/coreth/miner/worker.go:557: copyReceipts 0.0% -2025-07-23T19:36:54.8430571Z github.com/ava-labs/coreth/miner/worker.go:567: totalFees 0.0% -2025-07-23T19:36:54.8430893Z github.com/ava-labs/coreth/nativeasset/contract.go:36: PackNativeAssetBalanceInput 100.0% -2025-07-23T19:36:54.8431282Z github.com/ava-labs/coreth/nativeasset/contract.go:44: UnpackNativeAssetBalanceInput 100.0% -2025-07-23T19:36:54.8431546Z github.com/ava-labs/coreth/nativeasset/contract.go:55: Run 90.0% -2025-07-23T19:36:54.8431928Z github.com/ava-labs/coreth/nativeasset/contract.go:84: PackNativeAssetCallInput 100.0% -2025-07-23T19:36:54.8432240Z github.com/ava-labs/coreth/nativeasset/contract.go:94: UnpackNativeAssetCallInput 100.0% -2025-07-23T19:36:54.8432481Z github.com/ava-labs/coreth/nativeasset/contract.go:106: Run 100.0% -2025-07-23T19:36:54.8432733Z github.com/ava-labs/coreth/nativeasset/contract.go:123: run 81.0% -2025-07-23T19:36:54.8433015Z github.com/ava-labs/coreth/nativeasset/contract.go:168: Run 100.0% -2025-07-23T19:36:54.8433320Z github.com/ava-labs/coreth/network/network.go:125: NewNetwork 75.0% -2025-07-23T19:36:54.8433584Z github.com/ava-labs/coreth/network/network.go:155: SendAppRequestAny 90.0% -2025-07-23T19:36:54.8433839Z github.com/ava-labs/coreth/network/network.go:177: SendAppRequest 88.9% -2025-07-23T19:36:54.8434128Z github.com/ava-labs/coreth/network/network.go:204: sendAppRequest 70.0% -2025-07-23T19:36:54.8434344Z github.com/ava-labs/coreth/network/network.go:259: AppRequest 81.8% -2025-07-23T19:36:54.8434697Z github.com/ava-labs/coreth/network/network.go:304: AppResponse 100.0% -2025-07-23T19:36:54.8435087Z github.com/ava-labs/coreth/network/network.go:325: AppRequestFailed 71.4% -2025-07-23T19:36:54.8435386Z github.com/ava-labs/coreth/network/network.go:343: calculateTimeUntilDeadline 100.0% -2025-07-23T19:36:54.8435700Z github.com/ava-labs/coreth/network/network.go:365: markRequestFulfilled 100.0% -2025-07-23T19:36:54.8435932Z github.com/ava-labs/coreth/network/network.go:382: AppGossip 100.0% -2025-07-23T19:36:54.8436246Z github.com/ava-labs/coreth/network/network.go:387: Connected 87.5% -2025-07-23T19:36:54.8436653Z github.com/ava-labs/coreth/network/network.go:406: Disconnected 0.0% -2025-07-23T19:36:54.8436890Z github.com/ava-labs/coreth/network/network.go:424: Shutdown 100.0% -2025-07-23T19:36:54.8437192Z github.com/ava-labs/coreth/network/network.go:438: SetRequestHandler 100.0% -2025-07-23T19:36:54.8437413Z github.com/ava-labs/coreth/network/network.go:445: Size 100.0% -2025-07-23T19:36:54.8437674Z github.com/ava-labs/coreth/network/network.go:452: TrackBandwidth 0.0% -2025-07-23T19:36:54.8438044Z github.com/ava-labs/coreth/network/network.go:463: SendSyncedAppRequestAny 100.0% -2025-07-23T19:36:54.8450407Z github.com/ava-labs/coreth/network/network.go:475: SendSyncedAppRequest 75.0% -2025-07-23T19:36:54.8450698Z github.com/ava-labs/coreth/network/network.go:483: NewClient 0.0% -2025-07-23T19:36:54.8450931Z github.com/ava-labs/coreth/network/network.go:487: AddHandler 100.0% -2025-07-23T19:36:54.8451170Z github.com/ava-labs/coreth/network/network.go:492: P2PValidators 0.0% -2025-07-23T19:36:54.8451419Z github.com/ava-labs/coreth/network/network.go:501: nextRequestID 100.0% -2025-07-23T19:36:54.8451658Z github.com/ava-labs/coreth/network/network.go:511: IsNetworkRequest 100.0% -2025-07-23T19:36:54.8451908Z github.com/ava-labs/coreth/network/peer_tracker.go:55: NewPeerTracker 100.0% -2025-07-23T19:36:54.8452163Z github.com/ava-labs/coreth/network/peer_tracker.go:70: shouldTrackNewPeer 100.0% -2025-07-23T19:36:54.8452611Z github.com/ava-labs/coreth/network/peer_tracker.go:85: getResponsivePeer 75.0% -2025-07-23T19:36:54.8452841Z github.com/ava-labs/coreth/network/peer_tracker.go:98: GetAnyPeer 100.0% -2025-07-23T19:36:54.8453056Z github.com/ava-labs/coreth/network/peer_tracker.go:133: TrackPeer 100.0% -2025-07-23T19:36:54.8453290Z github.com/ava-labs/coreth/network/peer_tracker.go:138: TrackBandwidth 86.7% -2025-07-23T19:36:54.8453502Z github.com/ava-labs/coreth/network/peer_tracker.go:165: Connected 71.4% -2025-07-23T19:36:54.8453737Z github.com/ava-labs/coreth/network/peer_tracker.go:188: Disconnected 100.0% -2025-07-23T19:36:54.8453937Z github.com/ava-labs/coreth/network/peer_tracker.go:198: Size 100.0% -2025-07-23T19:36:54.8454225Z github.com/ava-labs/coreth/network/stats/stats.go:23: IncDeadlineDroppedRequest 100.0% -2025-07-23T19:36:54.8454509Z github.com/ava-labs/coreth/network/stats/stats.go:27: UpdateTimeUntilDeadline 100.0% -2025-07-23T19:36:54.8454912Z github.com/ava-labs/coreth/network/stats/stats.go:31: NewRequestHandlerStats 100.0% -2025-07-23T19:36:54.8455204Z github.com/ava-labs/coreth/network/waiting_handler.go:29: newWaitingResponseHandler 100.0% -2025-07-23T19:36:54.8455441Z github.com/ava-labs/coreth/network/waiting_handler.go:39: OnResponse 100.0% -2025-07-23T19:36:54.8455663Z github.com/ava-labs/coreth/network/waiting_handler.go:46: OnFailure 100.0% -2025-07-23T19:36:54.8455902Z github.com/ava-labs/coreth/network/waiting_handler.go:52: WaitForResult 100.0% -2025-07-23T19:36:54.8456075Z github.com/ava-labs/coreth/node/api.go:38: apis 100.0% -2025-07-23T19:36:54.8456264Z github.com/ava-labs/coreth/node/api.go:59: ClientVersion 0.0% -2025-07-23T19:36:54.8456426Z github.com/ava-labs/coreth/node/api.go:65: Sha3 0.0% -2025-07-23T19:36:54.8456636Z github.com/ava-labs/coreth/node/config.go:75: ExtRPCEnabled 100.0% -2025-07-23T19:36:54.8456841Z github.com/ava-labs/coreth/node/config.go:81: KeyDirConfig 60.0% -2025-07-23T19:36:54.8457042Z github.com/ava-labs/coreth/node/config.go:97: GetKeyStoreDir 75.0% -2025-07-23T19:36:54.8457262Z github.com/ava-labs/coreth/node/config.go:119: makeAccountManager 58.8% -2025-07-23T19:36:54.8457426Z github.com/ava-labs/coreth/node/node.go:42: New 87.5% -2025-07-23T19:36:54.8457600Z github.com/ava-labs/coreth/node/node.go:62: Config 100.0% -2025-07-23T19:36:54.8457797Z github.com/ava-labs/coreth/node/node.go:67: AccountManager 100.0% -2025-07-23T19:36:54.8458103Z github.com/ava-labs/coreth/node/node.go:72: APIs 100.0% -2025-07-23T19:36:54.8458341Z github.com/ava-labs/coreth/params/config_extra.go:34: SetEthUpgrades 79.3% -2025-07-23T19:36:54.8458549Z github.com/ava-labs/coreth/params/config_extra.go:91: GetExtra 60.0% -2025-07-23T19:36:54.8458740Z github.com/ava-labs/coreth/params/config_extra.go:100: Copy 0.0% -2025-07-23T19:36:54.8458957Z github.com/ava-labs/coreth/params/config_extra.go:107: WithExtra 100.0% -2025-07-23T19:36:54.8459168Z github.com/ava-labs/coreth/params/config_extra.go:122: MarshalJSON 0.0% -2025-07-23T19:36:54.8459388Z github.com/ava-labs/coreth/params/config_extra.go:152: UnmarshalJSON 0.0% -2025-07-23T19:36:54.8459629Z github.com/ava-labs/coreth/params/config_extra.go:174: ToWithUpgradesJSON 0.0% -2025-07-23T19:36:54.8459844Z github.com/ava-labs/coreth/params/config_libevm.go:18: libevmInit 100.0% -2025-07-23T19:36:54.8460088Z github.com/ava-labs/coreth/params/config_libevm.go:31: constructRulesExtra 53.3% -2025-07-23T19:36:54.8460314Z github.com/ava-labs/coreth/params/extras/config.go:96: copyAndSet 100.0% -2025-07-23T19:36:54.8460571Z github.com/ava-labs/coreth/params/extras/config.go:123: CheckConfigCompatible 0.0% -2025-07-23T19:36:54.8460783Z github.com/ava-labs/coreth/params/extras/config.go:145: Description 0.0% -2025-07-23T19:36:54.8461181Z github.com/ava-labs/coreth/params/extras/config.go:166: isForkTimestampIncompatible 0.0% -2025-07-23T19:36:54.8461425Z github.com/ava-labs/coreth/params/extras/config.go:172: isTimestampForked 100.0% -2025-07-23T19:36:54.8461677Z github.com/ava-labs/coreth/params/extras/config.go:179: configTimestampEqual 0.0% -2025-07-23T19:36:54.8461903Z github.com/ava-labs/coreth/params/extras/config.go:194: UnmarshalJSON 0.0% -2025-07-23T19:36:54.8462115Z github.com/ava-labs/coreth/params/extras/config.go:210: MarshalJSON 0.0% -2025-07-23T19:36:54.8462372Z github.com/ava-labs/coreth/params/extras/config.go:223: CheckConfigForkOrder 0.0% -2025-07-23T19:36:54.8462582Z github.com/ava-labs/coreth/params/extras/config.go:240: checkForks 0.0% -2025-07-23T19:36:54.8462787Z github.com/ava-labs/coreth/params/extras/config.go:281: Verify 0.0% -2025-07-23T19:36:54.8463030Z github.com/ava-labs/coreth/params/extras/config.go:291: IsPrecompileEnabled 0.0% -2025-07-23T19:36:54.8463272Z github.com/ava-labs/coreth/params/extras/config.go:303: IsForkTransition 100.0% -2025-07-23T19:36:54.8463501Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:61: Equal 0.0% -2025-07-23T19:36:54.8463820Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:65: checkNetworkUpgradesCompatible 0.0% -2025-07-23T19:36:54.8464062Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:112: forkOrder 0.0% -2025-07-23T19:36:54.8464333Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:133: IsApricotPhase1 0.0% -2025-07-23T19:36:54.8464593Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:139: IsApricotPhase2 0.0% -2025-07-23T19:36:54.8465103Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:145: IsApricotPhase3 0.0% -2025-07-23T19:36:54.8465459Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:151: IsApricotPhase4 0.0% -2025-07-23T19:36:54.8465730Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:157: IsApricotPhase5 0.0% -2025-07-23T19:36:54.8466016Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:163: IsApricotPhasePre6 0.0% -2025-07-23T19:36:54.8466273Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:169: IsApricotPhase6 0.0% -2025-07-23T19:36:54.8466555Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:175: IsApricotPhasePost6 0.0% -2025-07-23T19:36:54.8466794Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:181: IsBanff 0.0% -2025-07-23T19:36:54.8467032Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:187: IsCortina 0.0% -2025-07-23T19:36:54.8467449Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:193: IsDurango 0.0% -2025-07-23T19:36:54.8467698Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:199: IsEtna 0.0% -2025-07-23T19:36:54.8467956Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:205: IsFortuna 0.0% -2025-07-23T19:36:54.8468212Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:211: IsGranite 0.0% -2025-07-23T19:36:54.8468466Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:215: Description 0.0% -2025-07-23T19:36:54.8468754Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:234: GetNetworkUpgrades 0.0% -2025-07-23T19:36:54.8469036Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:264: GetAvalancheRules 0.0% -2025-07-23T19:36:54.8469292Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:283: ptrToString 0.0% -2025-07-23T19:36:54.8469572Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:32: UnmarshalJSON 0.0% -2025-07-23T19:36:54.8469829Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:59: MarshalJSON 0.0% -2025-07-23T19:36:54.8470141Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:71: verifyPrecompileUpgrades 0.0% -2025-07-23T19:36:54.8470460Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:137: GetActivePrecompileConfig 0.0% -2025-07-23T19:36:54.8470952Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:147: GetActivatingPrecompileConfigs 0.0% -2025-07-23T19:36:54.8471278Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:176: checkPrecompilesCompatible 0.0% -2025-07-23T19:36:54.8471586Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:192: checkPrecompileCompatible 0.0% -2025-07-23T19:36:54.8471901Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:230: EnabledStatefulPrecompiles 0.0% -2025-07-23T19:36:54.8472157Z github.com/ava-labs/coreth/params/extras/precompiles.go:18: UnmarshalJSON 0.0% -2025-07-23T19:36:54.8472389Z github.com/ava-labs/coreth/params/extras/rules.go:28: PredicatersExist 0.0% -2025-07-23T19:36:54.8472621Z github.com/ava-labs/coreth/params/extras/rules.go:32: PredicaterExists 0.0% -2025-07-23T19:36:54.8472862Z github.com/ava-labs/coreth/params/extras/rules.go:38: IsPrecompileEnabled 0.0% -2025-07-23T19:36:54.8473097Z github.com/ava-labs/coreth/params/hooks_libevm.go:28: GetRulesExtra 100.0% -2025-07-23T19:36:54.8473325Z github.com/ava-labs/coreth/params/hooks_libevm.go:33: CanCreateContract 0.0% -2025-07-23T19:36:54.8473580Z github.com/ava-labs/coreth/params/hooks_libevm.go:37: CanExecuteTransaction 0.0% -2025-07-23T19:36:54.8473828Z github.com/ava-labs/coreth/params/hooks_libevm.go:42: MinimumGasConsumption 0.0% -2025-07-23T19:36:54.8474057Z github.com/ava-labs/coreth/params/hooks_libevm.go:70: ActivePrecompiles 0.0% -2025-07-23T19:36:54.8474327Z github.com/ava-labs/coreth/params/hooks_libevm.go:92: precompileOverrideBuiltin 0.0% -2025-07-23T19:36:54.8474551Z github.com/ava-labs/coreth/params/hooks_libevm.go:113: makePrecompile 0.0% -2025-07-23T19:36:54.8474953Z github.com/ava-labs/coreth/params/hooks_libevm.go:140: PrecompileOverride 0.0% -2025-07-23T19:36:54.8475176Z github.com/ava-labs/coreth/params/hooks_libevm.go:160: GetStateDB 0.0% -2025-07-23T19:36:54.8475410Z github.com/ava-labs/coreth/params/hooks_libevm.go:172: GetBlockContext 0.0% -2025-07-23T19:36:54.8475629Z github.com/ava-labs/coreth/params/hooks_libevm.go:176: GetChainConfig 0.0% -2025-07-23T19:36:54.8475850Z github.com/ava-labs/coreth/params/hooks_libevm.go:180: GetSnowContext 0.0% -2025-07-23T19:36:54.8476074Z github.com/ava-labs/coreth/params/hooks_libevm.go:184: GetPrecompileEnv 0.0% -2025-07-23T19:36:54.8476282Z github.com/ava-labs/coreth/params/hooks_libevm.go:194: Number 0.0% -2025-07-23T19:36:54.8476622Z github.com/ava-labs/coreth/params/hooks_libevm.go:198: Timestamp 0.0% -2025-07-23T19:36:54.8476862Z github.com/ava-labs/coreth/params/hooks_libevm.go:202: GetPredicateResults 0.0% -2025-07-23T19:36:54.8477085Z github.com/ava-labs/coreth/params/version.go:53: VersionWithCommit 0.0% -2025-07-23T19:36:54.8477304Z github.com/ava-labs/coreth/plugin/evm/admin.go:22: NewAdminService 0.0% -2025-07-23T19:36:54.8477526Z github.com/ava-labs/coreth/plugin/evm/admin.go:30: StartCPUProfiler 0.0% -2025-07-23T19:36:54.8477740Z github.com/ava-labs/coreth/plugin/evm/admin.go:40: StopCPUProfiler 0.0% -2025-07-23T19:36:54.8477945Z github.com/ava-labs/coreth/plugin/evm/admin.go:50: MemoryProfile 0.0% -2025-07-23T19:36:54.8478152Z github.com/ava-labs/coreth/plugin/evm/admin.go:60: LockProfile 0.0% -2025-07-23T19:36:54.8478350Z github.com/ava-labs/coreth/plugin/evm/admin.go:69: SetLogLevel 0.0% -2025-07-23T19:36:54.8478548Z github.com/ava-labs/coreth/plugin/evm/admin.go:81: GetVMConfig 0.0% -2025-07-23T19:36:54.8478851Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/ops.go:12: ConvertToAtomicOps 75.0% -2025-07-23T19:36:54.8479239Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:26: AddItemsToBeRemovedToPeerChain 87.5% -2025-07-23T19:36:54.8479574Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:40: AssertOpsApplied 100.0% -2025-07-23T19:36:54.8480040Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:58: AssertOpsNotApplied 100.0% -2025-07-23T19:36:54.8480370Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:76: NewSharedMemories 100.0% -2025-07-23T19:36:54.8480697Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:85: TestSharedMemory 100.0% -2025-07-23T19:36:54.8480931Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:28: init 83.3% -2025-07-23T19:36:54.8481183Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:58: GasUsed 100.0% -2025-07-23T19:36:54.8481428Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:61: Verify 0.0% -2025-07-23T19:36:54.8481680Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:64: AtomicOps 100.0% -2025-07-23T19:36:54.8481929Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:69: Initialize 0.0% -2025-07-23T19:36:54.8482161Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:72: ID 100.0% -2025-07-23T19:36:54.8482404Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:75: Burned 100.0% -2025-07-23T19:36:54.8482633Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:78: Bytes 0.0% -2025-07-23T19:36:54.8482880Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:81: SignedBytes 0.0% -2025-07-23T19:36:54.8483143Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:84: InputUTXOs 100.0% -2025-07-23T19:36:54.8483375Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:87: Visit 0.0% -2025-07-23T19:36:54.8483655Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:92: EVMStateTransfer 0.0% -2025-07-23T19:36:54.8483973Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:98: GenerateTestImportTxWithGas 100.0% -2025-07-23T19:36:54.8484273Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:115: GenerateTestImportTx 100.0% -2025-07-23T19:36:54.8484575Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:130: GenerateTestExportTx 100.0% -2025-07-23T19:36:54.8484938Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:151: NewTestTx 80.0% -2025-07-23T19:36:54.8485199Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:163: NewTestTxs 100.0% -2025-07-23T19:36:54.8485412Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:25: init 85.7% -2025-07-23T19:36:54.8485649Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:57: ExtractAtomicTxs 0.0% -2025-07-23T19:36:54.8486086Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:76: ExtractAtomicTx 66.7% -2025-07-23T19:36:54.8486453Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:89: ExtractAtomicTxsBatch 0.0% -2025-07-23T19:36:54.8486779Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:60: InputUTXOs 0.0% -2025-07-23T19:36:54.8487044Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:75: Verify 0.0% -2025-07-23T19:36:54.8487326Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:134: GasUsed 0.0% -2025-07-23T19:36:54.8487570Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:156: Burned 0.0% -2025-07-23T19:36:54.8487793Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:182: Visit 0.0% -2025-07-23T19:36:54.8488029Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:185: AtomicOps 0.0% -2025-07-23T19:36:54.8488275Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:219: NewExportTx 0.0% -2025-07-23T19:36:54.8488538Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:313: EVMStateTransfer 0.0% -2025-07-23T19:36:54.8488806Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:352: getSpendableFunds 0.0% -2025-07-23T19:36:54.8489093Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:409: getSpendableAVAXWithFee 0.0% -2025-07-23T19:36:54.8489496Z github.com/ava-labs/coreth/plugin/evm/atomic/gossip.go:12: MarshalGossip 100.0% -2025-07-23T19:36:54.8489756Z github.com/ava-labs/coreth/plugin/evm/atomic/gossip.go:16: UnmarshalGossip 100.0% -2025-07-23T19:36:54.8489989Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:63: InputUTXOs 0.0% -2025-07-23T19:36:54.8490214Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:72: Verify 0.0% -2025-07-23T19:36:54.8490451Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:136: GasUsed 0.0% -2025-07-23T19:36:54.8490674Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:161: Burned 0.0% -2025-07-23T19:36:54.8490915Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:192: AtomicOps 0.0% -2025-07-23T19:36:54.8491153Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:202: NewImportTx 0.0% -2025-07-23T19:36:54.8491409Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:335: EVMStateTransfer 0.0% -2025-07-23T19:36:54.8491640Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:352: Visit 0.0% -2025-07-23T19:36:54.8491876Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:18: Initialize 100.0% -2025-07-23T19:36:54.8492096Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:25: ID 100.0% -2025-07-23T19:36:54.8492315Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:30: Bytes 0.0% -2025-07-23T19:36:54.8492553Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:35: SignedBytes 100.0% -2025-07-23T19:36:54.8492855Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:42: NewAtomicBackend 75.0% -2025-07-23T19:36:54.8493134Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:79: initialize 72.0% -2025-07-23T19:36:54.8493459Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:182: ApplyToSharedMemory 63.3% -2025-07-23T19:36:54.8493820Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:303: MarkApplyToSharedMemoryCursor 100.0% -2025-07-23T19:36:54.8494145Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:309: GetVerifiedAtomicState 0.0% -2025-07-23T19:36:54.8494442Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:320: getAtomicRootAt 0.0% -2025-07-23T19:36:54.8494732Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:332: SetLastAccepted 0.0% -2025-07-23T19:36:54.8495129Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:343: InsertTxs 0.0% -2025-07-23T19:36:54.8495539Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:393: IsBonus 0.0% -2025-07-23T19:36:54.8495822Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:400: AtomicTrie 100.0% -2025-07-23T19:36:54.8496116Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:406: mergeAtomicOps 91.7% -2025-07-23T19:36:54.8496434Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:428: mergeAtomicOpsToMap 100.0% -2025-07-23T19:36:54.8496725Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:438: AddBonusBlock 0.0% -2025-07-23T19:36:54.8497062Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:65: NewAtomicTxRepository 75.0% -2025-07-23T19:36:54.8497389Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:85: initializeHeightIndex 59.6% -2025-07-23T19:36:54.8497694Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:185: GetIndexHeight 0.0% -2025-07-23T19:36:54.8497981Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:201: GetByTxID 0.0% -2025-07-23T19:36:54.8498281Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:229: GetByHeight 100.0% -2025-07-23T19:36:54.8498602Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:236: getByHeightBytes 100.0% -2025-07-23T19:36:54.8498879Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:248: Write 100.0% -2025-07-23T19:36:54.8499289Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:254: WriteBonus 0.0% -2025-07-23T19:36:54.8499562Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:258: write 72.2% -2025-07-23T19:36:54.8499854Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:300: indexTxByID 80.0% -2025-07-23T19:36:54.8500168Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:320: indexTxsAtHeight 66.7% -2025-07-23T19:36:54.8500506Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:335: appendTxToHeightIndex 75.0% -2025-07-23T19:36:54.8500820Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:356: IterateByHeight 100.0% -2025-07-23T19:36:54.8501068Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:28: Root 0.0% -2025-07-23T19:36:54.8501326Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:35: Accept 0.0% -2025-07-23T19:36:54.8501587Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:78: Reject 0.0% -2025-07-23T19:36:54.8501866Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:52: newAtomicTrie 58.3% -2025-07-23T19:36:54.8502197Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:103: lastCommittedRootIfExists 72.7% -2025-07-23T19:36:54.8502502Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:126: nearestCommitHeight 100.0% -2025-07-23T19:36:54.8502769Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:130: OpenTrie 100.0% -2025-07-23T19:36:54.8503031Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:135: Commit 75.0% -2025-07-23T19:36:54.8503300Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:143: UpdateTrie 80.0% -2025-07-23T19:36:54.8503592Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:165: LastCommitted 100.0% -2025-07-23T19:36:54.8503901Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:171: updateLastCommitted 75.0% -2025-07-23T19:36:54.8504163Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:191: Iterator 75.0% -2025-07-23T19:36:54.8504419Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:205: TrieDB 0.0% -2025-07-23T19:36:54.8504665Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:212: Root 100.0% -2025-07-23T19:36:54.8505172Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:218: getRoot 62.5% -2025-07-23T19:36:54.8505634Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:237: LastAcceptedRoot 100.0% -2025-07-23T19:36:54.8505907Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:241: InsertTrie 55.6% -2025-07-23T19:36:54.8506178Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:263: AcceptTrie 83.3% -2025-07-23T19:36:54.8506444Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:293: RejectTrie 0.0% -2025-07-23T19:36:54.8506788Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:28: NewAtomicTrieIterator 100.0% -2025-07-23T19:36:54.8507076Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:33: Error 100.0% -2025-07-23T19:36:54.8507350Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:42: Next 81.0% -2025-07-23T19:36:54.8507655Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:81: resetFields 100.0% -2025-07-23T19:36:54.8507957Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:90: BlockNumber 100.0% -2025-07-23T19:36:54.8508261Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:95: BlockchainID 100.0% -2025-07-23T19:36:54.8508562Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:101: AtomicOps 100.0% -2025-07-23T19:36:54.8508991Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:107: Key 0.0% -2025-07-23T19:36:54.8509282Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:112: Value 0.0% -2025-07-23T19:36:54.8509515Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:29: MarshalJSON 0.0% -2025-07-23T19:36:54.8509751Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:37: UnmarshalJSON 0.0% -2025-07-23T19:36:54.8509966Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:58: Valid 0.0% -2025-07-23T19:36:54.8510183Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:67: String 0.0% -2025-07-23T19:36:54.8510436Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:29: Initialize 0.0% -2025-07-23T19:36:54.8510663Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:36: Sync 0.0% -2025-07-23T19:36:54.8510950Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:69: OnFinishBeforeCommit 0.0% -2025-07-23T19:36:54.8511239Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:81: OnFinishAfterCommit 0.0% -2025-07-23T19:36:54.8511512Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:28: OnLeafsRequest 0.0% -2025-07-23T19:36:54.8511783Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:38: NewLeafHandler 0.0% -2025-07-23T19:36:54.8512050Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:45: Initialize 0.0% -2025-07-23T19:36:54.8512297Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:32: NewSummary 80.0% -2025-07-23T19:36:54.8512539Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:57: Bytes 100.0% -2025-07-23T19:36:54.8512762Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:61: ID 100.0% -2025-07-23T19:36:54.8512992Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:65: String 0.0% -2025-07-23T19:36:54.8513234Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:69: Accept 66.7% -2025-07-23T19:36:54.8513535Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_parser.go:17: NewSummaryParser 100.0% -2025-07-23T19:36:54.8513799Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_parser.go:21: Parse 80.0% -2025-07-23T19:36:54.8514073Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_provider.go:25: Initialize 0.0% -2025-07-23T19:36:54.8514377Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_provider.go:30: StateSummaryAtBlock 0.0% -2025-07-23T19:36:54.8514711Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:88: Validate 100.0% -2025-07-23T19:36:54.8515131Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:162: addZeroes 100.0% -2025-07-23T19:36:54.8515381Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:170: newSyncer 86.7% -2025-07-23T19:36:54.8515613Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:211: Start 100.0% -2025-07-23T19:36:54.8515852Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:219: onLeafs 70.8% -2025-07-23T19:36:54.8516093Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:267: onFinish 58.3% -2025-07-23T19:36:54.8516352Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:293: onSyncFailure 100.0% -2025-07-23T19:36:54.8516582Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:300: Wait 100.0% -2025-07-23T19:36:54.8516814Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:318: Start 100.0% -2025-07-23T19:36:54.8517042Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:319: End 100.0% -2025-07-23T19:36:54.8517285Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:320: NodeType 100.0% -2025-07-23T19:36:54.8517521Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:321: OnFinish 100.0% -2025-07-23T19:36:54.8517760Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:322: OnStart 100.0% -2025-07-23T19:36:54.8518121Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:323: Root 100.0% -2025-07-23T19:36:54.8518356Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:324: Account 100.0% -2025-07-23T19:36:54.8518596Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:325: OnLeafs 100.0% -2025-07-23T19:36:54.8518803Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:70: Compare 0.0% -2025-07-23T19:36:54.8519011Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:86: Compare 0.0% -2025-07-23T19:36:54.8519222Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:95: Verify 0.0% -2025-07-23T19:36:54.8519420Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:108: Verify 0.0% -2025-07-23T19:36:54.8519626Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:183: Compare 0.0% -2025-07-23T19:36:54.8519826Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:197: Sign 82.4% -2025-07-23T19:36:54.8520084Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:231: BlockFeeContribution 0.0% -2025-07-23T19:36:54.8520303Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:261: GossipID 100.0% -2025-07-23T19:36:54.8520506Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:271: Less 0.0% -2025-07-23T19:36:54.8520700Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:279: Len 0.0% -2025-07-23T19:36:54.8520902Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:281: Swap 0.0% -2025-07-23T19:36:54.8521164Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:287: SortEVMInputsAndSigners 0.0% -2025-07-23T19:36:54.8521418Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:293: CalculateDynamicFee 0.0% -2025-07-23T19:36:54.8521644Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:309: calcBytesCost 0.0% -2025-07-23T19:36:54.8521931Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:48: newMempoolMetrics 100.0% -2025-07-23T19:36:54.8522194Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:89: Initialize 93.3% -2025-07-23T19:36:54.8522451Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:114: PendingLen 0.0% -2025-07-23T19:36:54.8522688Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:119: Len 0.0% -2025-07-23T19:36:54.8522936Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:127: length 100.0% -2025-07-23T19:36:54.8523217Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:133: atomicTxGasPrice 77.8% -2025-07-23T19:36:54.8523592Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:148: Add 100.0% -2025-07-23T19:36:54.8523863Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:157: AddRemoteTx 100.0% -2025-07-23T19:36:54.8524119Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:180: AddLocalTx 0.0% -2025-07-23T19:36:54.8524379Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:193: ForceAddTx 0.0% -2025-07-23T19:36:54.8524662Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:203: checkConflictTx 26.7% -2025-07-23T19:36:54.8525016Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:234: addTx 64.6% -2025-07-23T19:36:54.8525271Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:352: Iterate 100.0% -2025-07-23T19:36:54.8525522Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:363: GetFilter 0.0% -2025-07-23T19:36:54.8525773Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:371: NextTx 88.9% -2025-07-23T19:36:54.8526044Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:391: GetPendingTx 0.0% -2025-07-23T19:36:54.8526291Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:401: GetTx 72.7% -2025-07-23T19:36:54.8526526Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:422: Has 100.0% -2025-07-23T19:36:54.8526926Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:428: IssueCurrentTxs 88.9% -2025-07-23T19:36:54.8527213Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:451: CancelCurrentTx 0.0% -2025-07-23T19:36:54.8527487Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:464: CancelCurrentTxs 0.0% -2025-07-23T19:36:54.8527735Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:484: cancelTx 0.0% -2025-07-23T19:36:54.8528008Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:505: DiscardCurrentTx 0.0% -2025-07-23T19:36:54.8528289Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:515: DiscardCurrentTxs 0.0% -2025-07-23T19:36:54.8528565Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:526: discardCurrentTx 0.0% -2025-07-23T19:36:54.8528813Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:540: removeTx 91.7% -2025-07-23T19:36:54.8529084Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:565: removeSpenders 50.0% -2025-07-23T19:36:54.8529338Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:573: RemoveTx 0.0% -2025-07-23T19:36:54.8529603Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:581: addPending 100.0% -2025-07-23T19:36:54.8529898Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:590: SubscribePendingTxs 0.0% -2025-07-23T19:36:54.8530179Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:29: newInternalTxHeap 100.0% -2025-07-23T19:36:54.8530415Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:37: Len 100.0% -2025-07-23T19:36:54.8530660Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:39: Less 100.0% -2025-07-23T19:36:54.8530893Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:46: Swap 100.0% -2025-07-23T19:36:54.8531129Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:52: Push 80.0% -2025-07-23T19:36:54.8531364Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:61: Pop 100.0% -2025-07-23T19:36:54.8531589Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:70: Get 100.0% -2025-07-23T19:36:54.8531854Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:78: Has 100.0% -2025-07-23T19:36:54.8532109Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:88: newTxHeap 100.0% -2025-07-23T19:36:54.8532348Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:95: Push 100.0% -2025-07-23T19:36:54.8532592Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:113: PeekMax 0.0% -2025-07-23T19:36:54.8532968Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:119: PeekMin 100.0% -2025-07-23T19:36:54.8533228Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:125: PopMax 100.0% -2025-07-23T19:36:54.8533477Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:130: PopMin 100.0% -2025-07-23T19:36:54.8533722Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:134: Remove 75.0% -2025-07-23T19:36:54.8533963Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:150: Len 100.0% -2025-07-23T19:36:54.8534195Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:154: Get 100.0% -2025-07-23T19:36:54.8534433Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:162: Has 100.0% -2025-07-23T19:36:54.8534653Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:43: Version 0.0% -2025-07-23T19:36:54.8534975Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:53: GetUTXOs 0.0% -2025-07-23T19:36:54.8535202Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:141: IssueTx 0.0% -2025-07-23T19:36:54.8535450Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:170: GetAtomicTxStatus 0.0% -2025-07-23T19:36:54.8535682Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:205: GetAtomicTx 0.0% -2025-07-23T19:36:54.8536096Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:48: newBlockExtender 100.0% -2025-07-23T19:36:54.8536386Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:61: NewBlockExtension 75.0% -2025-07-23T19:36:54.8536678Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:82: SyntacticVerify 66.7% -2025-07-23T19:36:54.8536965Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:172: SemanticVerify 100.0% -2025-07-23T19:36:54.8537233Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:193: Accept 85.7% -2025-07-23T19:36:54.8537498Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:213: Reject 77.8% -2025-07-23T19:36:54.8537793Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:231: CleanupVerified 100.0% -2025-07-23T19:36:54.8538072Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:239: AtomicTxs 100.0% -2025-07-23T19:36:54.8538377Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:245: verifyUTXOsPresent 92.9% -2025-07-23T19:36:54.8538672Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/bonus_blocks.go:9: readMainnetBonusBlocks 0.0% -2025-07-23T19:36:54.8538917Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/ext_data_hashes.go:23: init 66.7% -2025-07-23T19:36:54.8539204Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:18: ParseServiceAddress 0.0% -2025-07-23T19:36:54.8539488Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:27: ParseLocalAddress 0.0% -2025-07-23T19:36:54.8539764Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:40: FormatLocalAddress 0.0% -2025-07-23T19:36:54.8540022Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:51: ParseAddress 0.0% -2025-07-23T19:36:54.8540338Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:50: NewVerifierBackend 100.0% -2025-07-23T19:36:54.8540629Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:62: SemanticVerify 100.0% -2025-07-23T19:36:54.8540907Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:80: ImportTx 95.7% -2025-07-23T19:36:54.8541182Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:167: conflicts 88.2% -2025-07-23T19:36:54.8541455Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:205: ExportTx 86.8% -2025-07-23T19:36:54.8541681Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:108: WrapVM 100.0% -2025-07-23T19:36:54.8542054Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:113: Initialize 74.4% -2025-07-23T19:36:54.8542280Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:231: SetState 57.1% -2025-07-23T19:36:54.8542543Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:248: onBootstrapStarted 100.0% -2025-07-23T19:36:54.8542822Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:253: onNormalOperationsStarted 83.9% -2025-07-23T19:36:54.8543048Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:342: Shutdown 75.0% -2025-07-23T19:36:54.8543287Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:356: CreateHandlers 0.0% -2025-07-23T19:36:54.8543539Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:371: verifyTxAtTip 77.3% -2025-07-23T19:36:54.8543753Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:414: verifyTx 85.7% -2025-07-23T19:36:54.8543972Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:428: verifyTxs 88.2% -2025-07-23T19:36:54.8544221Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:464: CodecRegistry 100.0% -2025-07-23T19:36:54.8544433Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:467: Clock 100.0% -2025-07-23T19:36:54.8544644Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:470: Logger 100.0% -2025-07-23T19:36:54.8545021Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:472: createConsensusCallbacks 100.0% -2025-07-23T19:36:54.8545434Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:479: preBatchOnFinalizeAndAssemble 84.0% -2025-07-23T19:36:54.8545731Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:526: postBatchOnFinalizeAndAssemble 84.1% -2025-07-23T19:36:54.8545994Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:636: onFinalizeAndAssemble 100.0% -2025-07-23T19:36:54.8546245Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:648: onExtraStateChange 83.9% -2025-07-23T19:36:54.8546478Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:721: BuildBlock 100.0% -2025-07-23T19:36:54.8546747Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:725: BuildBlockWithContext 50.0% -2025-07-23T19:36:54.8547000Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:744: chainConfigExtra 100.0% -2025-07-23T19:36:54.8547212Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:748: rules 100.0% -2025-07-23T19:36:54.8547447Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:754: CurrentRules 100.0% -2025-07-23T19:36:54.8547686Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:763: GetAtomicTx 22.2% -2025-07-23T19:36:54.8547911Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:780: NewImportTx 85.7% -2025-07-23T19:36:54.8548139Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:800: NewExportTx 71.4% -2025-07-23T19:36:54.8548383Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:49: NewBlockBuilder 100.0% -2025-07-23T19:36:54.8548652Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:62: handleGenerateBlock 100.0% -2025-07-23T19:36:54.8548891Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:70: needToBuild 100.0% -2025-07-23T19:36:54.8549128Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:78: signalCanBuild 100.0% -2025-07-23T19:36:54.8549382Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:87: awaitSubmittedTxs 100.0% -2025-07-23T19:36:54.8549617Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:119: waitForEvent 91.7% -2025-07-23T19:36:54.8549871Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:145: waitForNeedToBuild 100.0% -2025-07-23T19:36:54.8550095Z github.com/ava-labs/coreth/plugin/evm/client/client.go:49: NewClient 0.0% -2025-07-23T19:36:54.8550336Z github.com/ava-labs/coreth/plugin/evm/client/client.go:57: NewCChainClient 0.0% -2025-07-23T19:36:54.8550550Z github.com/ava-labs/coreth/plugin/evm/client/client.go:62: IssueTx 0.0% -2025-07-23T19:36:54.8550799Z github.com/ava-labs/coreth/plugin/evm/client/client.go:82: GetAtomicTxStatus 0.0% -2025-07-23T19:36:54.8551150Z github.com/ava-labs/coreth/plugin/evm/client/client.go:91: GetAtomicTx 0.0% -2025-07-23T19:36:54.8551397Z github.com/ava-labs/coreth/plugin/evm/client/client.go:106: GetAtomicUTXOs 0.0% -2025-07-23T19:36:54.8551642Z github.com/ava-labs/coreth/plugin/evm/client/client.go:138: StartCPUProfiler 0.0% -2025-07-23T19:36:54.8551891Z github.com/ava-labs/coreth/plugin/evm/client/client.go:142: StopCPUProfiler 0.0% -2025-07-23T19:36:54.8552129Z github.com/ava-labs/coreth/plugin/evm/client/client.go:146: MemoryProfile 0.0% -2025-07-23T19:36:54.8552354Z github.com/ava-labs/coreth/plugin/evm/client/client.go:150: LockProfile 0.0% -2025-07-23T19:36:54.8552584Z github.com/ava-labs/coreth/plugin/evm/client/client.go:159: SetLogLevel 0.0% -2025-07-23T19:36:54.8552810Z github.com/ava-labs/coreth/plugin/evm/client/client.go:170: GetVMConfig 0.0% -2025-07-23T19:36:54.8553050Z github.com/ava-labs/coreth/plugin/evm/client/utils.go:8: ParseEthAddress 0.0% -2025-07-23T19:36:54.8553272Z github.com/ava-labs/coreth/plugin/evm/config/config.go:265: EthAPIs 0.0% -2025-07-23T19:36:54.8553504Z github.com/ava-labs/coreth/plugin/evm/config/config.go:269: SetDefaults 0.0% -2025-07-23T19:36:54.8553745Z github.com/ava-labs/coreth/plugin/evm/config/config.go:327: UnmarshalJSON 80.0% -2025-07-23T19:36:54.8554039Z github.com/ava-labs/coreth/plugin/evm/config/config.go:337: String 0.0% -2025-07-23T19:36:54.8554264Z github.com/ava-labs/coreth/plugin/evm/config/config.go:342: MarshalJSON 0.0% -2025-07-23T19:36:54.8554485Z github.com/ava-labs/coreth/plugin/evm/config/config.go:347: Validate 0.0% -2025-07-23T19:36:54.8554708Z github.com/ava-labs/coreth/plugin/evm/config/config.go:382: Deprecate 57.1% -2025-07-23T19:36:54.8555060Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:28: New 0.0% -2025-07-23T19:36:54.8555315Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:35: Dial 0.0% -2025-07-23T19:36:54.8555601Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:40: DialContext 0.0% -2025-07-23T19:36:54.8555893Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:60: OnBlockDecoded 0.0% -2025-07-23T19:36:54.8556143Z github.com/ava-labs/coreth/plugin/evm/customlogs/log_ext.go:8: FlattenLogs 100.0% -2025-07-23T19:36:54.8556496Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:16: writeCurrentTimeMarker 0.0% -2025-07-23T19:36:54.8556815Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:25: readTimeMarker 0.0% -2025-07-23T19:36:54.8557147Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:44: WriteOfflinePruning 0.0% -2025-07-23T19:36:54.8557481Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:50: ReadOfflinePruning 0.0% -2025-07-23T19:36:54.8557822Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:55: DeleteOfflinePruning 0.0% -2025-07-23T19:36:54.8558177Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:61: WritePopulateMissingTries 0.0% -2025-07-23T19:36:54.8558530Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:67: ReadPopulateMissingTries 0.0% -2025-07-23T19:36:54.8558887Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:73: DeletePopulateMissingTries 0.0% -2025-07-23T19:36:54.8559232Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:79: WritePruningDisabled 0.0% -2025-07-23T19:36:54.8559556Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:85: HasPruningDisabled 0.0% -2025-07-23T19:36:54.8559876Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:90: WriteAcceptorTip 0.0% -2025-07-23T19:36:54.8560198Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:97: ReadAcceptorTip 0.0% -2025-07-23T19:36:54.8560664Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:15: ReadSnapshotBlockHash 0.0% -2025-07-23T19:36:54.8561016Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:25: WriteSnapshotBlockHash 50.0% -2025-07-23T19:36:54.8561360Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:35: DeleteSnapshotBlockHash 0.0% -2025-07-23T19:36:54.8561709Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:42: IterateAccountSnapshots 0.0% -2025-07-23T19:36:54.8562015Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:18: ReadSyncRoot 0.0% -2025-07-23T19:36:54.8562321Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:31: WriteSyncRoot 0.0% -2025-07-23T19:36:54.8562637Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:36: AddCodeToFetch 50.0% -2025-07-23T19:36:54.8562956Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:43: DeleteCodeToFetch 0.0% -2025-07-23T19:36:54.8563289Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:52: NewCodeToFetchIterator 0.0% -2025-07-23T19:36:54.8563610Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:59: codeToFetchKey 100.0% -2025-07-23T19:36:54.8564065Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:69: NewSyncSegmentsIterator 0.0% -2025-07-23T19:36:54.8564385Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:81: WriteSyncSegment 100.0% -2025-07-23T19:36:54.8564694Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:86: ClearSyncSegments 0.0% -2025-07-23T19:36:54.8565318Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:94: ClearAllSyncSegments 100.0% -2025-07-23T19:36:54.8565667Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:100: UnpackSyncSegmentKey 0.0% -2025-07-23T19:36:54.8566011Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:108: packSyncSegmentKey 100.0% -2025-07-23T19:36:54.8566378Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:119: NewSyncStorageTriesIterator 0.0% -2025-07-23T19:36:54.8566721Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:124: WriteSyncStorageTrie 100.0% -2025-07-23T19:36:54.8567053Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:130: ClearSyncStorageTrie 0.0% -2025-07-23T19:36:54.8567401Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:138: ClearAllSyncStorageTries 0.0% -2025-07-23T19:36:54.8567743Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:144: UnpackSyncStorageTrieKey 0.0% -2025-07-23T19:36:54.8568094Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:152: packSyncStorageTrieKey 100.0% -2025-07-23T19:36:54.8568427Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:161: WriteSyncPerformed 100.0% -2025-07-23T19:36:54.8568766Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:171: NewSyncPerformedIterator 0.0% -2025-07-23T19:36:54.8569106Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:177: UnpackSyncPerformedKey 0.0% -2025-07-23T19:36:54.8569445Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:182: GetLatestSyncPerformed 0.0% -2025-07-23T19:36:54.8569753Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:198: clearPrefix 68.8% -2025-07-23T19:36:54.8570052Z github.com/ava-labs/coreth/plugin/evm/customrawdb/database_ext.go:17: InspectDatabase 100.0% -2025-07-23T19:36:54.8570356Z github.com/ava-labs/coreth/plugin/evm/customrawdb/database_ext.go:67: ParseStateSchemeExt 0.0% -2025-07-23T19:36:54.8570635Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:16: SetBlockExtra 100.0% -2025-07-23T19:36:54.8571016Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:33: Copy 100.0% -2025-07-23T19:36:54.8571332Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:48: BodyRLPFieldsForEncoding 100.0% -2025-07-23T19:36:54.8571664Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:61: BodyRLPFieldPointersForDecoding 100.0% -2025-07-23T19:36:54.8571980Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:78: BlockRLPFieldsForEncoding 100.0% -2025-07-23T19:36:54.8572318Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:92: BlockRLPFieldPointersForDecoding 100.0% -2025-07-23T19:36:54.8572590Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:104: BlockExtData 100.0% -2025-07-23T19:36:54.8572857Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:111: BlockVersion 100.0% -2025-07-23T19:36:54.8573156Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:115: BlockExtDataGasUsed 100.0% -2025-07-23T19:36:54.8573427Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:123: BlockGasCost 100.0% -2025-07-23T19:36:54.8573711Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:131: CalcExtDataHash 66.7% -2025-07-23T19:36:54.8574002Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:138: NewBlockWithExtData 100.0% -2025-07-23T19:36:54.8574438Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_json.go:18: MarshalJSON 100.0% -2025-07-23T19:36:54.8574880Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_json.go:72: UnmarshalJSON 76.2% -2025-07-23T19:36:54.8575190Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_rlp.go:8: EncodeRLP 85.9% -2025-07-23T19:36:54.8575490Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:17: GetHeaderExtra 100.0% -2025-07-23T19:36:54.8575772Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:22: SetHeaderExtra 100.0% -2025-07-23T19:36:54.8576064Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:28: WithHeaderExtra 100.0% -2025-07-23T19:36:54.8576334Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:45: EncodeRLP 100.0% -2025-07-23T19:36:54.8576592Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:56: DecodeRLP 100.0% -2025-07-23T19:36:54.8576867Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:70: EncodeJSON 100.0% -2025-07-23T19:36:54.8577122Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:81: DecodeJSON 83.3% -2025-07-23T19:36:54.8577380Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:93: PostCopy 100.0% -2025-07-23T19:36:54.8577661Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:106: updateFromEth 100.0% -2025-07-23T19:36:54.8577932Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:128: updateToEth 100.0% -2025-07-23T19:36:54.8578228Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:150: updateFromExtras 100.0% -2025-07-23T19:36:54.8578509Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:156: updateToExtras 100.0% -2025-07-23T19:36:54.8578758Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:233: Hash 100.0% -2025-07-23T19:36:54.8579050Z github.com/ava-labs/coreth/plugin/evm/customtypes/state_account_ext.go:14: IsMultiCoin 0.0% -2025-07-23T19:36:54.8579328Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:22: WrapDatabase 100.0% -2025-07-23T19:36:54.8579576Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:25: Stat 0.0% -2025-07-23T19:36:54.8579846Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:28: NewBatch 100.0% -2025-07-23T19:36:54.8580132Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:32: NewBatchWithSize 0.0% -2025-07-23T19:36:54.8580557Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:36: NewSnapshot 0.0% -2025-07-23T19:36:54.8580834Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:44: NewIterator 100.0% -2025-07-23T19:36:54.8581137Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:57: NewIteratorWithStart 0.0% -2025-07-23T19:36:54.8581410Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:65: ValueSize 100.0% -2025-07-23T19:36:54.8581677Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:68: Replay 100.0% -2025-07-23T19:36:54.8581934Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:38: NewGossipEthTxPool 75.0% -2025-07-23T19:36:54.8582167Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:70: IsSubscribed 100.0% -2025-07-23T19:36:54.8582387Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:74: Subscribe 85.2% -2025-07-23T19:36:54.8582603Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:119: Add 100.0% -2025-07-23T19:36:54.8582813Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:125: Has 100.0% -2025-07-23T19:36:54.8583037Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:129: Iterate 100.0% -2025-07-23T19:36:54.8583253Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:135: GetFilter 0.0% -2025-07-23T19:36:54.8583492Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:144: MarshalGossip 100.0% -2025-07-23T19:36:54.8583871Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:148: UnmarshalGossip 100.0% -2025-07-23T19:36:54.8584093Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:160: GossipID 100.0% -2025-07-23T19:36:54.8584301Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:170: Add 75.0% -2025-07-23T19:36:54.8584540Z github.com/ava-labs/coreth/plugin/evm/extension/config.go:161: Validate 55.6% -2025-07-23T19:36:54.8584912Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:19: NewTxGossipHandler 100.0% -2025-07-23T19:36:54.8585168Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:61: AppGossip 100.0% -2025-07-23T19:36:54.8585401Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:65: AppRequest 100.0% -2025-07-23T19:36:54.8585628Z github.com/ava-labs/coreth/plugin/evm/header/base_fee.go:21: BaseFee 100.0% -2025-07-23T19:36:54.8585908Z github.com/ava-labs/coreth/plugin/evm/header/base_fee.go:50: EstimateNextBaseFee 100.0% -2025-07-23T19:36:54.8586180Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:28: BlockGasCost 100.0% -2025-07-23T19:36:54.8586478Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:60: BlockGasCostWithStep 100.0% -2025-07-23T19:36:54.8586764Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:88: EstimateRequiredTip 100.0% -2025-07-23T19:36:54.8587062Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_state.go:19: feeStateBeforeBlock 100.0% -2025-07-23T19:36:54.8587359Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_state.go:51: feeStateAfterBlock 100.0% -2025-07-23T19:36:54.8587649Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:40: baseFeeFromWindow 97.4% -2025-07-23T19:36:54.8587929Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:148: feeWindow 100.0% -2025-07-23T19:36:54.8588250Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:221: selectBigWithinBounds 100.0% -2025-07-23T19:36:54.8588484Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:29: ExtraPrefix 100.0% -2025-07-23T19:36:54.8588737Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:61: VerifyExtraPrefix 100.0% -2025-07-23T19:36:54.8588967Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:116: VerifyExtra 100.0% -2025-07-23T19:36:54.8589246Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:169: PredicateBytesFromExtra 100.0% -2025-07-23T19:36:54.8589518Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:187: SetPredicateBytesInExtra 100.0% -2025-07-23T19:36:54.8589876Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:28: GasLimit 100.0% -2025-07-23T19:36:54.8590134Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:61: VerifyGasUsed 100.0% -2025-07-23T19:36:54.8590389Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:97: VerifyGasLimit 100.0% -2025-07-23T19:36:54.8590637Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:159: GasCapacity 100.0% -2025-07-23T19:36:54.8590940Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:179: RemainingAtomicGasCapacity 100.0% -2025-07-23T19:36:54.8591150Z github.com/ava-labs/coreth/plugin/evm/health.go:11: HealthCheck 0.0% -2025-07-23T19:36:54.8591363Z github.com/ava-labs/coreth/plugin/evm/log/log.go:26: InitLogger 55.0% -2025-07-23T19:36:54.8591582Z github.com/ava-labs/coreth/plugin/evm/log/log.go:62: SetLogLevel 100.0% -2025-07-23T19:36:54.8591798Z github.com/ava-labs/coreth/plugin/evm/log/log.go:77: trimPrefixes 88.9% -2025-07-23T19:36:54.8592006Z github.com/ava-labs/coreth/plugin/evm/log/log.go:92: getSource 0.0% -2025-07-23T19:36:54.8592206Z github.com/ava-labs/coreth/plugin/evm/log/log.go:104: Handle 0.0% -2025-07-23T19:36:54.8592449Z github.com/ava-labs/coreth/plugin/evm/message/block_request.go:24: String 0.0% -2025-07-23T19:36:54.8592806Z github.com/ava-labs/coreth/plugin/evm/message/block_request.go:31: Handle 0.0% -2025-07-23T19:36:54.8593108Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:31: NewBlockSyncSummary 80.0% -2025-07-23T19:36:54.8593398Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:53: GetBlockHash 100.0% -2025-07-23T19:36:54.8593679Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:57: GetBlockRoot 100.0% -2025-07-23T19:36:54.8593945Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:61: Bytes 100.0% -2025-07-23T19:36:54.8594212Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:65: Height 100.0% -2025-07-23T19:36:54.8594454Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:69: ID 0.0% -2025-07-23T19:36:54.8594715Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:73: String 0.0% -2025-07-23T19:36:54.8595074Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:77: Accept 66.7% -2025-07-23T19:36:54.8595438Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_parser.go:14: NewBlockSyncSummaryParser 100.0% -2025-07-23T19:36:54.8595725Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_parser.go:18: Parse 80.0% -2025-07-23T19:36:54.8596054Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_provider.go:14: StateSummaryAtBlock 0.0% -2025-07-23T19:36:54.8596294Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:23: String 0.0% -2025-07-23T19:36:54.8596534Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:31: Handle 0.0% -2025-07-23T19:36:54.8596794Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:35: NewCodeRequest 0.0% -2025-07-23T19:36:54.8597008Z github.com/ava-labs/coreth/plugin/evm/message/codec.go:20: init 88.9% -2025-07-23T19:36:54.8597271Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:35: HandleLeafsRequest 0.0% -2025-07-23T19:36:54.8597538Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:39: HandleBlockRequest 0.0% -2025-07-23T19:36:54.8597791Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:43: HandleCodeRequest 0.0% -2025-07-23T19:36:54.8598027Z github.com/ava-labs/coreth/plugin/evm/message/leafs_request.go:40: String 0.0% -2025-07-23T19:36:54.8598269Z github.com/ava-labs/coreth/plugin/evm/message/leafs_request.go:47: Handle 0.0% -2025-07-23T19:36:54.8598515Z github.com/ava-labs/coreth/plugin/evm/message/request.go:25: RequestToBytes 0.0% -2025-07-23T19:36:54.8598908Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:39: newNetworkHandler 100.0% -2025-07-23T19:36:54.8599165Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:54: HandleLeafsRequest 60.0% -2025-07-23T19:36:54.8599427Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:63: HandleBlockRequest 100.0% -2025-07-23T19:36:54.8599688Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:67: HandleCodeRequest 0.0% -2025-07-23T19:36:54.8599913Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:99: NewClient 100.0% -2025-07-23T19:36:54.8600162Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:127: StateSyncEnabled 100.0% -2025-07-23T19:36:54.8600435Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:134: GetOngoingSyncStateSummary 0.0% -2025-07-23T19:36:54.8600686Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:153: ClearOngoingSummary 60.0% -2025-07-23T19:36:54.8600940Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:165: ParseStateSummary 100.0% -2025-07-23T19:36:54.8601162Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:171: stateSync 71.4% -2025-07-23T19:36:54.8601403Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:189: acceptSyncSummary 92.0% -2025-07-23T19:36:54.8601627Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:257: syncBlocks 89.3% -2025-07-23T19:36:54.8601979Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:304: syncStateTrie 77.8% -2025-07-23T19:36:54.8602201Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:326: Shutdown 100.0% -2025-07-23T19:36:54.8602422Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:336: finishSync 66.7% -2025-07-23T19:36:54.8602662Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:405: commitVMMarkers 66.7% -2025-07-23T19:36:54.8602877Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:420: Error 100.0% -2025-07-23T19:36:54.8603093Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:36: NewServer 100.0% -2025-07-23T19:36:54.8603351Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:48: GetLastStateSummary 75.0% -2025-07-23T19:36:54.8603584Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:64: GetStateSummary 66.7% -2025-07-23T19:36:54.8603836Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:82: stateSummaryAtHeight 62.5% -2025-07-23T19:36:54.8604100Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:53: ParseState 100.0% -2025-07-23T19:36:54.8604349Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:74: Target 100.0% -2025-07-23T19:36:54.8604610Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:83: MaxCapacity 100.0% -2025-07-23T19:36:54.8604960Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:91: GasPrice 100.0% -2025-07-23T19:36:54.8605221Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:99: AdvanceTime 100.0% -2025-07-23T19:36:54.8605489Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:114: ConsumeGas 100.0% -2025-07-23T19:36:54.8605783Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:144: UpdateTargetExcess 100.0% -2025-07-23T19:36:54.8606024Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:160: Bytes 100.0% -2025-07-23T19:36:54.8606331Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:170: DesiredTargetExcess 100.0% -2025-07-23T19:36:54.8606605Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:184: targetExcess 100.0% -2025-07-23T19:36:54.8606874Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:195: scaleExcess 100.0% -2025-07-23T19:36:54.8607160Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:214: mulWithUpperBound 100.0% -2025-07-23T19:36:54.8607414Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:67: ParseWindow 100.0% -2025-07-23T19:36:54.8607649Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:87: Add 100.0% -2025-07-23T19:36:54.8608008Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:94: Shift 100.0% -2025-07-23T19:36:54.8608238Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:108: Sum 100.0% -2025-07-23T19:36:54.8608470Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:112: Bytes 100.0% -2025-07-23T19:36:54.8608694Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:121: add 100.0% -2025-07-23T19:36:54.8608946Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap4/cost.go:53: BlockGasCost 93.3% -2025-07-23T19:36:54.8609139Z github.com/ava-labs/coreth/plugin/evm/version.go:15: init 50.0% -2025-07-23T19:36:54.8609319Z github.com/ava-labs/coreth/plugin/evm/vm.go:175: init 100.0% -2025-07-23T19:36:54.8609519Z github.com/ava-labs/coreth/plugin/evm/vm.go:271: Initialize 80.3% -2025-07-23T19:36:54.8609723Z github.com/ava-labs/coreth/plugin/evm/vm.go:500: parseGenesis 76.9% -2025-07-23T19:36:54.8609950Z github.com/ava-labs/coreth/plugin/evm/vm.go:530: initializeMetrics 54.5% -2025-07-23T19:36:54.8610159Z github.com/ava-labs/coreth/plugin/evm/vm.go:549: initializeChain 84.2% -2025-07-23T19:36:54.8610379Z github.com/ava-labs/coreth/plugin/evm/vm.go:604: initializeStateSync 76.7% -2025-07-23T19:36:54.8610591Z github.com/ava-labs/coreth/plugin/evm/vm.go:704: initChainState 75.0% -2025-07-23T19:36:54.8610916Z github.com/ava-labs/coreth/plugin/evm/vm.go:737: SetState 83.3% -2025-07-23T19:36:54.8611146Z github.com/ava-labs/coreth/plugin/evm/vm.go:752: onBootstrapStarted 71.4% -2025-07-23T19:36:54.8611387Z github.com/ava-labs/coreth/plugin/evm/vm.go:768: onNormalOperationsStarted 75.0% -2025-07-23T19:36:54.8611603Z github.com/ava-labs/coreth/plugin/evm/vm.go:779: initBlockBuilding 91.3% -2025-07-23T19:36:54.8611805Z github.com/ava-labs/coreth/plugin/evm/vm.go:886: WaitForEvent 77.8% -2025-07-23T19:36:54.8611992Z github.com/ava-labs/coreth/plugin/evm/vm.go:907: Shutdown 76.9% -2025-07-23T19:36:54.8612192Z github.com/ava-labs/coreth/plugin/evm/vm.go:929: buildBlock 100.0% -2025-07-23T19:36:54.8612426Z github.com/ava-labs/coreth/plugin/evm/vm.go:933: buildBlockWithContext 86.7% -2025-07-23T19:36:54.8612619Z github.com/ava-labs/coreth/plugin/evm/vm.go:978: parseBlock 77.8% -2025-07-23T19:36:54.8612827Z github.com/ava-labs/coreth/plugin/evm/vm.go:997: ParseEthBlock 75.0% -2025-07-23T19:36:54.8613024Z github.com/ava-labs/coreth/plugin/evm/vm.go:1008: getBlock 100.0% -2025-07-23T19:36:54.8613245Z github.com/ava-labs/coreth/plugin/evm/vm.go:1021: GetAcceptedBlock 90.0% -2025-07-23T19:36:54.8613455Z github.com/ava-labs/coreth/plugin/evm/vm.go:1041: SetPreference 75.0% -2025-07-23T19:36:54.8613675Z github.com/ava-labs/coreth/plugin/evm/vm.go:1057: GetBlockIDAtHeight 85.7% -2025-07-23T19:36:54.8613860Z github.com/ava-labs/coreth/plugin/evm/vm.go:1070: Version 0.0% -2025-07-23T19:36:54.8614065Z github.com/ava-labs/coreth/plugin/evm/vm.go:1075: CreateHandlers 0.0% -2025-07-23T19:36:54.8614267Z github.com/ava-labs/coreth/plugin/evm/vm.go:1122: NewHTTPHandler 0.0% -2025-07-23T19:36:54.8614490Z github.com/ava-labs/coreth/plugin/evm/vm.go:1126: chainConfigExtra 100.0% -2025-07-23T19:36:54.8614669Z github.com/ava-labs/coreth/plugin/evm/vm.go:1130: rules 100.0% -2025-07-23T19:36:54.8614974Z github.com/ava-labs/coreth/plugin/evm/vm.go:1136: currentRules 100.0% -2025-07-23T19:36:54.8615230Z github.com/ava-labs/coreth/plugin/evm/vm.go:1144: requirePrimaryNetworkSigners 0.0% -2025-07-23T19:36:54.8615468Z github.com/ava-labs/coreth/plugin/evm/vm.go:1153: startContinuousProfiler 91.7% -2025-07-23T19:36:54.8615684Z github.com/ava-labs/coreth/plugin/evm/vm.go:1183: ReadLastAccepted 70.0% -2025-07-23T19:36:54.8615894Z github.com/ava-labs/coreth/plugin/evm/vm.go:1207: attachEthService 0.0% -2025-07-23T19:36:54.8616109Z github.com/ava-labs/coreth/plugin/evm/vm.go:1242: stateSyncEnabled 100.0% -2025-07-23T19:36:54.8616464Z github.com/ava-labs/coreth/plugin/evm/vm.go:1252: PutLastAcceptedID 100.0% -2025-07-23T19:36:54.8616695Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:20: initializeDBs 100.0% -2025-07-23T19:36:54.8616931Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:35: inspectDatabases 0.0% -2025-07-23T19:36:54.8617140Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:54: inspectDB 0.0% -2025-07-23T19:36:54.8617396Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:28: SetExtensionConfig 66.7% -2025-07-23T19:36:54.8617640Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:41: GetExtendedBlock 75.0% -2025-07-23T19:36:54.8617917Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:53: LastAcceptedExtendedBlock 75.0% -2025-07-23T19:36:54.8618144Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:64: ChainConfig 100.0% -2025-07-23T19:36:54.8618375Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:68: Blockchain 100.0% -2025-07-23T19:36:54.8618596Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:72: Config 100.0% -2025-07-23T19:36:54.8618836Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:76: MetricRegistry 100.0% -2025-07-23T19:36:54.8619053Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:80: Validators 0.0% -2025-07-23T19:36:54.8619391Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:84: VersionDB 100.0% -2025-07-23T19:36:54.8619623Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:88: SyncerClient 0.0% -2025-07-23T19:36:54.8619843Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:58: wrapBlock 85.7% -2025-07-23T19:36:54.8620050Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:75: ID 100.0% -2025-07-23T19:36:54.8620265Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:78: Accept 76.5% -2025-07-23T19:36:54.8620541Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:125: handlePrecompileAccept 78.6% -2025-07-23T19:36:54.8620764Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:159: Reject 83.3% -2025-07-23T19:36:54.8620979Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:176: Parent 100.0% -2025-07-23T19:36:54.8621199Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:181: Height 100.0% -2025-07-23T19:36:54.8621423Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:186: Timestamp 100.0% -2025-07-23T19:36:54.8621645Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:191: Verify 100.0% -2025-07-23T19:36:54.8621927Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:199: ShouldVerifyWithContext 72.7% -2025-07-23T19:36:54.8622184Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:223: VerifyWithContext 100.0% -2025-07-23T19:36:54.8622397Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:233: verify 100.0% -2025-07-23T19:36:54.8622647Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:279: semanticVerify 100.0% -2025-07-23T19:36:54.8622895Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:295: syntacticVerify 71.0% -2025-07-23T19:36:54.8623143Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:434: verifyPredicates 85.0% -2025-07-23T19:36:54.8623356Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:468: Bytes 75.0% -2025-07-23T19:36:54.8623570Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:476: String 0.0% -2025-07-23T19:36:54.8623810Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:478: GetEthBlock 100.0% -2025-07-23T19:36:54.8624064Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:482: GetBlockExtension 100.0% -2025-07-23T19:36:54.8624270Z github.com/ava-labs/coreth/plugin/factory/factory.go:25: New 0.0% -2025-07-23T19:36:54.8624490Z github.com/ava-labs/coreth/plugin/factory/factory.go:29: NewPluginVM 0.0% -2025-07-23T19:36:54.8624663Z github.com/ava-labs/coreth/plugin/main.go:19: main 0.0% -2025-07-23T19:36:54.8625060Z github.com/ava-labs/coreth/plugin/params.go:13: corethFlagSet 0.0% -2025-07-23T19:36:54.8625252Z github.com/ava-labs/coreth/plugin/params.go:22: getViper 0.0% -2025-07-23T19:36:54.8625452Z github.com/ava-labs/coreth/plugin/params.go:35: PrintVersion 0.0% -2025-07-23T19:36:54.8625705Z github.com/ava-labs/coreth/precompile/contract/contract.go:32: IsActivated 0.0% -2025-07-23T19:36:54.8626028Z github.com/ava-labs/coreth/precompile/contract/contract.go:40: NewStatefulPrecompileFunction 0.0% -2025-07-23T19:36:54.8626392Z github.com/ava-labs/coreth/precompile/contract/contract.go:47: NewStatefulPrecompileFunctionWithActivator 0.0% -2025-07-23T19:36:54.8626701Z github.com/ava-labs/coreth/precompile/contract/contract.go:65: NewStatefulPrecompileContract 0.0% -2025-07-23T19:36:54.8626922Z github.com/ava-labs/coreth/precompile/contract/contract.go:84: Run 0.0% -2025-07-23T19:36:54.8627171Z github.com/ava-labs/coreth/precompile/contract/mocks.go:38: NewMockStateDB 0.0% -2025-07-23T19:36:54.8627394Z github.com/ava-labs/coreth/precompile/contract/mocks.go:45: EXPECT 0.0% -2025-07-23T19:36:54.8627631Z github.com/ava-labs/coreth/precompile/contract/mocks.go:50: AddBalance 0.0% -2025-07-23T19:36:54.8627857Z github.com/ava-labs/coreth/precompile/contract/mocks.go:56: AddBalance 0.0% -2025-07-23T19:36:54.8628120Z github.com/ava-labs/coreth/precompile/contract/mocks.go:62: AddBalanceMultiCoin 0.0% -2025-07-23T19:36:54.8628506Z github.com/ava-labs/coreth/precompile/contract/mocks.go:68: AddBalanceMultiCoin 0.0% -2025-07-23T19:36:54.8628721Z github.com/ava-labs/coreth/precompile/contract/mocks.go:74: AddLog 0.0% -2025-07-23T19:36:54.8628939Z github.com/ava-labs/coreth/precompile/contract/mocks.go:80: AddLog 0.0% -2025-07-23T19:36:54.8629179Z github.com/ava-labs/coreth/precompile/contract/mocks.go:86: CreateAccount 0.0% -2025-07-23T19:36:54.8629417Z github.com/ava-labs/coreth/precompile/contract/mocks.go:92: CreateAccount 0.0% -2025-07-23T19:36:54.8629639Z github.com/ava-labs/coreth/precompile/contract/mocks.go:98: Exist 0.0% -2025-07-23T19:36:54.8629853Z github.com/ava-labs/coreth/precompile/contract/mocks.go:106: Exist 0.0% -2025-07-23T19:36:54.8630085Z github.com/ava-labs/coreth/precompile/contract/mocks.go:112: GetBalance 0.0% -2025-07-23T19:36:54.8630320Z github.com/ava-labs/coreth/precompile/contract/mocks.go:120: GetBalance 0.0% -2025-07-23T19:36:54.8630591Z github.com/ava-labs/coreth/precompile/contract/mocks.go:126: GetBalanceMultiCoin 0.0% -2025-07-23T19:36:54.8630860Z github.com/ava-labs/coreth/precompile/contract/mocks.go:134: GetBalanceMultiCoin 0.0% -2025-07-23T19:36:54.8631085Z github.com/ava-labs/coreth/precompile/contract/mocks.go:140: GetNonce 0.0% -2025-07-23T19:36:54.8631307Z github.com/ava-labs/coreth/precompile/contract/mocks.go:148: GetNonce 0.0% -2025-07-23T19:36:54.8631596Z github.com/ava-labs/coreth/precompile/contract/mocks.go:154: GetPredicateStorageSlots 0.0% -2025-07-23T19:36:54.8631914Z github.com/ava-labs/coreth/precompile/contract/mocks.go:163: GetPredicateStorageSlots 0.0% -2025-07-23T19:36:54.8632144Z github.com/ava-labs/coreth/precompile/contract/mocks.go:169: GetState 0.0% -2025-07-23T19:36:54.8632364Z github.com/ava-labs/coreth/precompile/contract/mocks.go:177: GetState 0.0% -2025-07-23T19:36:54.8632594Z github.com/ava-labs/coreth/precompile/contract/mocks.go:183: GetTxHash 0.0% -2025-07-23T19:36:54.8632821Z github.com/ava-labs/coreth/precompile/contract/mocks.go:191: GetTxHash 0.0% -2025-07-23T19:36:54.8633033Z github.com/ava-labs/coreth/precompile/contract/mocks.go:197: Logs 0.0% -2025-07-23T19:36:54.8633244Z github.com/ava-labs/coreth/precompile/contract/mocks.go:205: Logs 0.0% -2025-07-23T19:36:54.8633509Z github.com/ava-labs/coreth/precompile/contract/mocks.go:211: RevertToSnapshot 0.0% -2025-07-23T19:36:54.8633762Z github.com/ava-labs/coreth/precompile/contract/mocks.go:217: RevertToSnapshot 0.0% -2025-07-23T19:36:54.8634124Z github.com/ava-labs/coreth/precompile/contract/mocks.go:223: SetNonce 0.0% -2025-07-23T19:36:54.8634346Z github.com/ava-labs/coreth/precompile/contract/mocks.go:229: SetNonce 0.0% -2025-07-23T19:36:54.8634564Z github.com/ava-labs/coreth/precompile/contract/mocks.go:235: SetState 0.0% -2025-07-23T19:36:54.8634884Z github.com/ava-labs/coreth/precompile/contract/mocks.go:241: SetState 0.0% -2025-07-23T19:36:54.8635107Z github.com/ava-labs/coreth/precompile/contract/mocks.go:247: Snapshot 0.0% -2025-07-23T19:36:54.8635334Z github.com/ava-labs/coreth/precompile/contract/mocks.go:255: Snapshot 0.0% -2025-07-23T19:36:54.8635599Z github.com/ava-labs/coreth/precompile/contract/mocks.go:261: SubBalanceMultiCoin 0.0% -2025-07-23T19:36:54.8635864Z github.com/ava-labs/coreth/precompile/contract/mocks.go:267: SubBalanceMultiCoin 0.0% -2025-07-23T19:36:54.8636149Z github.com/ava-labs/coreth/precompile/contract/mocks.go:285: NewMockAccessibleState 0.0% -2025-07-23T19:36:54.8636375Z github.com/ava-labs/coreth/precompile/contract/mocks.go:292: EXPECT 0.0% -2025-07-23T19:36:54.8636628Z github.com/ava-labs/coreth/precompile/contract/mocks.go:297: GetBlockContext 0.0% -2025-07-23T19:36:54.8636877Z github.com/ava-labs/coreth/precompile/contract/mocks.go:305: GetBlockContext 0.0% -2025-07-23T19:36:54.8637246Z github.com/ava-labs/coreth/precompile/contract/mocks.go:311: GetChainConfig 0.0% -2025-07-23T19:36:54.8637494Z github.com/ava-labs/coreth/precompile/contract/mocks.go:319: GetChainConfig 0.0% -2025-07-23T19:36:54.8637745Z github.com/ava-labs/coreth/precompile/contract/mocks.go:325: GetPrecompileEnv 0.0% -2025-07-23T19:36:54.8637990Z github.com/ava-labs/coreth/precompile/contract/mocks.go:333: GetPrecompileEnv 0.0% -2025-07-23T19:36:54.8638239Z github.com/ava-labs/coreth/precompile/contract/mocks.go:339: GetSnowContext 0.0% -2025-07-23T19:36:54.8638489Z github.com/ava-labs/coreth/precompile/contract/mocks.go:347: GetSnowContext 0.0% -2025-07-23T19:36:54.8638724Z github.com/ava-labs/coreth/precompile/contract/mocks.go:353: GetStateDB 0.0% -2025-07-23T19:36:54.8638954Z github.com/ava-labs/coreth/precompile/contract/mocks.go:361: GetStateDB 0.0% -2025-07-23T19:36:54.8639218Z github.com/ava-labs/coreth/precompile/contract/mocks.go:379: NewMockBlockContext 0.0% -2025-07-23T19:36:54.8639448Z github.com/ava-labs/coreth/precompile/contract/mocks.go:386: EXPECT 0.0% -2025-07-23T19:36:54.8639713Z github.com/ava-labs/coreth/precompile/contract/mocks.go:391: GetPredicateResults 0.0% -2025-07-23T19:36:54.8639981Z github.com/ava-labs/coreth/precompile/contract/mocks.go:399: GetPredicateResults 0.0% -2025-07-23T19:36:54.8640200Z github.com/ava-labs/coreth/precompile/contract/mocks.go:405: Number 0.0% -2025-07-23T19:36:54.8640417Z github.com/ava-labs/coreth/precompile/contract/mocks.go:413: Number 0.0% -2025-07-23T19:36:54.8640656Z github.com/ava-labs/coreth/precompile/contract/mocks.go:419: Timestamp 0.0% -2025-07-23T19:36:54.8640881Z github.com/ava-labs/coreth/precompile/contract/mocks.go:427: Timestamp 0.0% -2025-07-23T19:36:54.8641172Z github.com/ava-labs/coreth/precompile/contract/utils.go:35: CalculateFunctionSelector 0.0% -2025-07-23T19:36:54.8641393Z github.com/ava-labs/coreth/precompile/contract/utils.go:44: DeductGas 0.0% -2025-07-23T19:36:54.8641616Z github.com/ava-labs/coreth/precompile/contract/utils.go:53: ParseABI 0.0% -2025-07-23T19:36:54.8641881Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:57: NewConfig 100.0% -2025-07-23T19:36:54.8642162Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:67: NewDefaultConfig 100.0% -2025-07-23T19:36:54.8642441Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:73: NewDisableConfig 0.0% -2025-07-23T19:36:54.8642675Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:84: Key 0.0% -2025-07-23T19:36:54.8643071Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:87: Verify 100.0% -2025-07-23T19:36:54.8643324Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:107: Equal 100.0% -2025-07-23T19:36:54.8643567Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:117: Accept 0.0% -2025-07-23T19:36:54.8643836Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:145: PredicateGas 84.6% -2025-07-23T19:36:54.8644126Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:186: VerifyPredicate 80.0% -2025-07-23T19:36:54.8644438Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:85: PackGetBlockchainID 100.0% -2025-07-23T19:36:54.8644870Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:91: PackGetBlockchainIDOutput 100.0% -2025-07-23T19:36:54.8645162Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:96: getBlockchainID 83.3% -2025-07-23T19:36:54.8645528Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:111: UnpackGetVerifiedWarpBlockHashInput 0.0% -2025-07-23T19:36:54.8645874Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:125: PackGetVerifiedWarpBlockHash 100.0% -2025-07-23T19:36:54.8646237Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:131: PackGetVerifiedWarpBlockHashOutput 100.0% -2025-07-23T19:36:54.8646751Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:140: UnpackGetVerifiedWarpBlockHashOutput 0.0% -2025-07-23T19:36:54.8647079Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:147: getVerifiedWarpBlockHash 100.0% -2025-07-23T19:36:54.8647442Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:153: UnpackGetVerifiedWarpMessageInput 100.0% -2025-07-23T19:36:54.8647786Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:167: PackGetVerifiedWarpMessage 100.0% -2025-07-23T19:36:54.8648133Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:173: PackGetVerifiedWarpMessageOutput 100.0% -2025-07-23T19:36:54.8648495Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:182: UnpackGetVerifiedWarpMessageOutput 0.0% -2025-07-23T19:36:54.8648817Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:191: getVerifiedWarpMessage 100.0% -2025-07-23T19:36:54.8649149Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:197: UnpackSendWarpMessageInput 100.0% -2025-07-23T19:36:54.8649473Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:209: PackSendWarpMessage 100.0% -2025-07-23T19:36:54.8649805Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:215: PackSendWarpMessageOutput 100.0% -2025-07-23T19:36:54.8650137Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:221: UnpackSendWarpMessageOutput 0.0% -2025-07-23T19:36:54.8650432Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:232: sendWarpMessage 81.5% -2025-07-23T19:36:54.8650760Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:301: PackSendWarpMessageEvent 100.0% -2025-07-23T19:36:54.8651115Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:306: UnpackSendWarpEventDataToMessage 80.0% -2025-07-23T19:36:54.8651423Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:316: createWarpPrecompile 81.8% -2025-07-23T19:36:54.8651723Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:29: init 75.0% -2025-07-23T19:36:54.8652055Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:48: handleWarpMessage 96.7% -2025-07-23T19:36:54.8652370Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:98: packFailed 100.0% -2025-07-23T19:36:54.8652701Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:102: handleMessage 100.0% -2025-07-23T19:36:54.8653018Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:119: packFailed 100.0% -2025-07-23T19:36:54.8653483Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:123: handleMessage 100.0% -2025-07-23T19:36:54.8653732Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:35: init 50.0% -2025-07-23T19:36:54.8653990Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:45: MakeConfig 0.0% -2025-07-23T19:36:54.8654250Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:50: Configure 0.0% -2025-07-23T19:36:54.8654465Z github.com/ava-labs/coreth/precompile/modules/module.go:27: Len 100.0% -2025-07-23T19:36:54.8654684Z github.com/ava-labs/coreth/precompile/modules/module.go:31: Swap 100.0% -2025-07-23T19:36:54.8655005Z github.com/ava-labs/coreth/precompile/modules/module.go:35: Less 100.0% -2025-07-23T19:36:54.8655280Z github.com/ava-labs/coreth/precompile/modules/registerer.go:37: ReservedAddress 75.0% -2025-07-23T19:36:54.8655557Z github.com/ava-labs/coreth/precompile/modules/registerer.go:48: RegisterModule 46.2% -2025-07-23T19:36:54.8655872Z github.com/ava-labs/coreth/precompile/modules/registerer.go:72: GetPrecompileModuleByAddress 0.0% -2025-07-23T19:36:54.8656158Z github.com/ava-labs/coreth/precompile/modules/registerer.go:81: GetPrecompileModule 0.0% -2025-07-23T19:36:54.8656432Z github.com/ava-labs/coreth/precompile/modules/registerer.go:90: RegisteredModules 0.0% -2025-07-23T19:36:54.8656858Z github.com/ava-labs/coreth/precompile/modules/registerer.go:94: insertSortedByAddress 100.0% -2025-07-23T19:36:54.8657157Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:32: NewMockPredicater 0.0% -2025-07-23T19:36:54.8657407Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:39: EXPECT 0.0% -2025-07-23T19:36:54.8657682Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:44: PredicateGas 0.0% -2025-07-23T19:36:54.8657955Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:53: PredicateGas 0.0% -2025-07-23T19:36:54.8658239Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:59: VerifyPredicate 0.0% -2025-07-23T19:36:54.8658526Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:67: VerifyPredicate 0.0% -2025-07-23T19:36:54.8658797Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:85: NewMockConfig 0.0% -2025-07-23T19:36:54.8659049Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:92: EXPECT 0.0% -2025-07-23T19:36:54.8659297Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:97: Equal 0.0% -2025-07-23T19:36:54.8659541Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:105: Equal 0.0% -2025-07-23T19:36:54.8659804Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:111: IsDisabled 0.0% -2025-07-23T19:36:54.8660074Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:119: IsDisabled 0.0% -2025-07-23T19:36:54.8660318Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:125: Key 0.0% -2025-07-23T19:36:54.8660560Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:133: Key 0.0% -2025-07-23T19:36:54.8660819Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:139: Timestamp 0.0% -2025-07-23T19:36:54.8661079Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:147: Timestamp 0.0% -2025-07-23T19:36:54.8661340Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:153: Verify 0.0% -2025-07-23T19:36:54.8661587Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:161: Verify 0.0% -2025-07-23T19:36:54.8661886Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:179: NewMockChainConfig 0.0% -2025-07-23T19:36:54.8662131Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:186: EXPECT 0.0% -2025-07-23T19:36:54.8662389Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:191: IsDurango 0.0% -2025-07-23T19:36:54.8662770Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:199: IsDurango 0.0% -2025-07-23T19:36:54.8663056Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:217: NewMockAccepter 0.0% -2025-07-23T19:36:54.8663307Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:224: EXPECT 0.0% -2025-07-23T19:36:54.8663556Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:229: Accept 0.0% -2025-07-23T19:36:54.8663815Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:237: Accept 0.0% -2025-07-23T19:36:54.8664100Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:17: Timestamp 0.0% -2025-07-23T19:36:54.8664381Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:22: IsDisabled 0.0% -2025-07-23T19:36:54.8664651Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:28: Equal 0.0% -2025-07-23T19:36:54.8665060Z github.com/ava-labs/coreth/precompile/precompiletest/test_config.go:28: RunVerifyTests 100.0% -2025-07-23T19:36:54.8665359Z github.com/ava-labs/coreth/precompile/precompiletest/test_config.go:51: RunEqualTests 100.0% -2025-07-23T19:36:54.8665632Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:66: Run 100.0% -2025-07-23T19:36:54.8665902Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:88: setup 96.0% -2025-07-23T19:36:54.8666358Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:135: RunPrecompileTests 100.0% -2025-07-23T19:36:54.8666680Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:153: newTestStateDB 100.0% -2025-07-23T19:36:54.8667035Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:163: GetPredicateStorageSlots 100.0% -2025-07-23T19:36:54.8667308Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:26: Run 100.0% -2025-07-23T19:36:54.8667629Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:43: RunPredicateTests 100.0% -2025-07-23T19:36:54.8667920Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:53: RunBenchmark 0.0% -2025-07-23T19:36:54.8668256Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:73: RunPredicateBenchmarks 0.0% -2025-07-23T19:36:54.8668501Z github.com/ava-labs/coreth/predicate/predicate_bytes.go:28: PackPredicate 100.0% -2025-07-23T19:36:54.8668760Z github.com/ava-labs/coreth/predicate/predicate_bytes.go:36: UnpackPredicate 87.5% -2025-07-23T19:36:54.8668979Z github.com/ava-labs/coreth/predicate/predicate_results.go:24: init 83.3% -2025-07-23T19:36:54.8669242Z github.com/ava-labs/coreth/predicate/predicate_results.go:47: GetPredicateResults 0.0% -2025-07-23T19:36:54.8669486Z github.com/ava-labs/coreth/predicate/predicate_results.go:56: NewResults 100.0% -2025-07-23T19:36:54.8669749Z github.com/ava-labs/coreth/predicate/predicate_results.go:62: NewResultsFromMap 100.0% -2025-07-23T19:36:54.8670000Z github.com/ava-labs/coreth/predicate/predicate_results.go:69: ParseResults 71.4% -2025-07-23T19:36:54.8670237Z github.com/ava-labs/coreth/predicate/predicate_results.go:82: GetResults 100.0% -2025-07-23T19:36:54.8670482Z github.com/ava-labs/coreth/predicate/predicate_results.go:91: SetTxResults 100.0% -2025-07-23T19:36:54.8670750Z github.com/ava-labs/coreth/predicate/predicate_results.go:101: DeleteTxResults 100.0% -2025-07-23T19:36:54.8670979Z github.com/ava-labs/coreth/predicate/predicate_results.go:106: Bytes 100.0% -2025-07-23T19:36:54.8671209Z github.com/ava-labs/coreth/predicate/predicate_results.go:110: String 0.0% -2025-07-23T19:36:54.8671503Z github.com/ava-labs/coreth/predicate/predicate_slots.go:20: PreparePredicateStorageSlots 0.0% -2025-07-23T19:36:54.8671734Z github.com/ava-labs/coreth/predicate/predicate_tx.go:16: NewPredicateTx 0.0% -2025-07-23T19:36:54.8672070Z github.com/ava-labs/coreth/rpc/client.go:128: newClientConn 100.0% -2025-07-23T19:36:54.8672249Z github.com/ava-labs/coreth/rpc/client.go:141: close 100.0% -2025-07-23T19:36:54.8672422Z github.com/ava-labs/coreth/rpc/client.go:161: wait 100.0% -2025-07-23T19:36:54.8672593Z github.com/ava-labs/coreth/rpc/client.go:189: Dial 100.0% -2025-07-23T19:36:54.8672788Z github.com/ava-labs/coreth/rpc/client.go:197: DialContext 100.0% -2025-07-23T19:36:54.8672993Z github.com/ava-labs/coreth/rpc/client.go:208: DialOptions 80.0% -2025-07-23T19:36:54.8673211Z github.com/ava-labs/coreth/rpc/client.go:242: ClientFromContext 100.0% -2025-07-23T19:36:54.8673399Z github.com/ava-labs/coreth/rpc/client.go:247: newClient 100.0% -2025-07-23T19:36:54.8673591Z github.com/ava-labs/coreth/rpc/client.go:257: initClient 100.0% -2025-07-23T19:36:54.8673777Z github.com/ava-labs/coreth/rpc/client.go:293: RegisterName 0.0% -2025-07-23T19:36:54.8673954Z github.com/ava-labs/coreth/rpc/client.go:297: nextID 100.0% -2025-07-23T19:36:54.8674173Z github.com/ava-labs/coreth/rpc/client.go:304: SupportedModules 100.0% -2025-07-23T19:36:54.8674345Z github.com/ava-labs/coreth/rpc/client.go:313: Close 100.0% -2025-07-23T19:36:54.8674532Z github.com/ava-labs/coreth/rpc/client.go:327: SetHeader 83.3% -2025-07-23T19:36:54.8674700Z github.com/ava-labs/coreth/rpc/client.go:342: Call 100.0% -2025-07-23T19:36:54.8675075Z github.com/ava-labs/coreth/rpc/client.go:352: CallContext 95.2% -2025-07-23T19:36:54.8675265Z github.com/ava-labs/coreth/rpc/client.go:400: BatchCall 100.0% -2025-07-23T19:36:54.8675468Z github.com/ava-labs/coreth/rpc/client.go:414: BatchCallContext 85.7% -2025-07-23T19:36:54.8675647Z github.com/ava-labs/coreth/rpc/client.go:485: Notify 75.0% -2025-07-23T19:36:54.8675841Z github.com/ava-labs/coreth/rpc/client.go:500: EthSubscribe 100.0% -2025-07-23T19:36:54.8676038Z github.com/ava-labs/coreth/rpc/client.go:506: ShhSubscribe 0.0% -2025-07-23T19:36:54.8676255Z github.com/ava-labs/coreth/rpc/client.go:522: Subscribe 81.2% -2025-07-23T19:36:54.8676476Z github.com/ava-labs/coreth/rpc/client.go:559: SupportsSubscriptions 0.0% -2025-07-23T19:36:54.8676658Z github.com/ava-labs/coreth/rpc/client.go:563: newMessage 83.3% -2025-07-23T19:36:54.8676830Z github.com/ava-labs/coreth/rpc/client.go:576: send 100.0% -2025-07-23T19:36:54.8677003Z github.com/ava-labs/coreth/rpc/client.go:591: write 100.0% -2025-07-23T19:36:54.8677184Z github.com/ava-labs/coreth/rpc/client.go:608: reconnect 93.3% -2025-07-23T19:36:54.8677359Z github.com/ava-labs/coreth/rpc/client.go:636: dispatch 94.1% -2025-07-23T19:36:54.8677544Z github.com/ava-labs/coreth/rpc/client.go:717: drainRead 100.0% -2025-07-23T19:36:54.8677715Z github.com/ava-labs/coreth/rpc/client.go:728: read 100.0% -2025-07-23T19:36:54.8677917Z github.com/ava-labs/coreth/rpc/client_opt.go:57: initHeaders 100.0% -2025-07-23T19:36:54.8678113Z github.com/ava-labs/coreth/rpc/client_opt.go:63: setHeader 100.0% -2025-07-23T19:36:54.8678317Z github.com/ava-labs/coreth/rpc/client_opt.go:70: applyOption 100.0% -2025-07-23T19:36:54.8678536Z github.com/ava-labs/coreth/rpc/client_opt.go:75: WithWebsocketDialer 0.0% -2025-07-23T19:36:54.8678798Z github.com/ava-labs/coreth/rpc/client_opt.go:83: WithWebsocketMessageSizeLimit 100.0% -2025-07-23T19:36:54.8678998Z github.com/ava-labs/coreth/rpc/client_opt.go:91: WithHeader 0.0% -2025-07-23T19:36:54.8679192Z github.com/ava-labs/coreth/rpc/client_opt.go:100: WithHeaders 0.0% -2025-07-23T19:36:54.8679403Z github.com/ava-labs/coreth/rpc/client_opt.go:110: WithHTTPClient 0.0% -2025-07-23T19:36:54.8679601Z github.com/ava-labs/coreth/rpc/client_opt.go:119: WithHTTPAuth 0.0% -2025-07-23T19:36:54.8679822Z github.com/ava-labs/coreth/rpc/client_opt.go:139: WithBatchItemLimit 0.0% -2025-07-23T19:36:54.8680223Z github.com/ava-labs/coreth/rpc/client_opt.go:151: WithBatchResponseSizeLimit 0.0% -2025-07-23T19:36:54.8680478Z github.com/ava-labs/coreth/rpc/context_headers.go:39: NewContextWithHeaders 87.5% -2025-07-23T19:36:54.8680729Z github.com/ava-labs/coreth/rpc/context_headers.go:56: headersFromContext 100.0% -2025-07-23T19:36:54.8680946Z github.com/ava-labs/coreth/rpc/context_headers.go:62: setHeaders 100.0% -2025-07-23T19:36:54.8681120Z github.com/ava-labs/coreth/rpc/errors.go:40: Error 66.7% -2025-07-23T19:36:54.8681308Z github.com/ava-labs/coreth/rpc/errors.go:89: ErrorCode 100.0% -2025-07-23T19:36:54.8681476Z github.com/ava-labs/coreth/rpc/errors.go:91: Error 100.0% -2025-07-23T19:36:54.8681648Z github.com/ava-labs/coreth/rpc/errors.go:97: Error 0.0% -2025-07-23T19:36:54.8681827Z github.com/ava-labs/coreth/rpc/errors.go:101: ErrorCode 0.0% -2025-07-23T19:36:54.8681987Z github.com/ava-labs/coreth/rpc/errors.go:111: Is 0.0% -2025-07-23T19:36:54.8682186Z github.com/ava-labs/coreth/rpc/errors.go:125: ErrorCode 100.0% -2025-07-23T19:36:54.8682360Z github.com/ava-labs/coreth/rpc/errors.go:127: Error 100.0% -2025-07-23T19:36:54.8682548Z github.com/ava-labs/coreth/rpc/errors.go:134: ErrorCode 100.0% -2025-07-23T19:36:54.8682717Z github.com/ava-labs/coreth/rpc/errors.go:136: Error 100.0% -2025-07-23T19:36:54.8682899Z github.com/ava-labs/coreth/rpc/errors.go:141: ErrorCode 100.0% -2025-07-23T19:36:54.8683210Z github.com/ava-labs/coreth/rpc/errors.go:143: Error 100.0% -2025-07-23T19:36:54.8683387Z github.com/ava-labs/coreth/rpc/errors.go:148: ErrorCode 0.0% -2025-07-23T19:36:54.8683554Z github.com/ava-labs/coreth/rpc/errors.go:150: Error 0.0% -2025-07-23T19:36:54.8683743Z github.com/ava-labs/coreth/rpc/errors.go:155: ErrorCode 100.0% -2025-07-23T19:36:54.8683912Z github.com/ava-labs/coreth/rpc/errors.go:157: Error 100.0% -2025-07-23T19:36:54.8684094Z github.com/ava-labs/coreth/rpc/errors.go:165: ErrorCode 100.0% -2025-07-23T19:36:54.8684268Z github.com/ava-labs/coreth/rpc/errors.go:167: Error 100.0% -2025-07-23T19:36:54.8684458Z github.com/ava-labs/coreth/rpc/handler.go:96: newHandler 100.0% -2025-07-23T19:36:54.8684642Z github.com/ava-labs/coreth/rpc/handler.go:130: nextCall 100.0% -2025-07-23T19:36:54.8684942Z github.com/ava-labs/coreth/rpc/handler.go:144: pushResponse 100.0% -2025-07-23T19:36:54.8685124Z github.com/ava-labs/coreth/rpc/handler.go:155: write 100.0% -2025-07-23T19:36:54.8685344Z github.com/ava-labs/coreth/rpc/handler.go:164: respondWithError 100.0% -2025-07-23T19:36:54.8685523Z github.com/ava-labs/coreth/rpc/handler.go:178: doWrite 100.0% -2025-07-23T19:36:54.8685716Z github.com/ava-labs/coreth/rpc/handler.go:193: addLimiter 66.7% -2025-07-23T19:36:54.8685907Z github.com/ava-labs/coreth/rpc/handler.go:201: handleBatch 84.1% -2025-07-23T19:36:54.8686143Z github.com/ava-labs/coreth/rpc/handler.go:283: respondWithBatchTooLarge 100.0% -2025-07-23T19:36:54.8686336Z github.com/ava-labs/coreth/rpc/handler.go:298: handleMsg 100.0% -2025-07-23T19:36:54.8686551Z github.com/ava-labs/coreth/rpc/handler.go:307: handleNonBatchCall 66.7% -2025-07-23T19:36:54.8686729Z github.com/ava-labs/coreth/rpc/handler.go:346: close 100.0% -2025-07-23T19:36:54.8686925Z github.com/ava-labs/coreth/rpc/handler.go:354: addRequestOp 100.0% -2025-07-23T19:36:54.8687139Z github.com/ava-labs/coreth/rpc/handler.go:361: removeRequestOp 100.0% -2025-07-23T19:36:54.8687357Z github.com/ava-labs/coreth/rpc/handler.go:368: cancelAllRequests 100.0% -2025-07-23T19:36:54.8687568Z github.com/ava-labs/coreth/rpc/handler.go:390: addSubscriptions 100.0% -2025-07-23T19:36:54.8687807Z github.com/ava-labs/coreth/rpc/handler.go:402: cancelServerSubscriptions 100.0% -2025-07-23T19:36:54.8688001Z github.com/ava-labs/coreth/rpc/handler.go:415: awaitLimit 22.2% -2025-07-23T19:36:54.8688325Z github.com/ava-labs/coreth/rpc/handler.go:435: consumeLimit 28.6% -2025-07-23T19:36:54.8688527Z github.com/ava-labs/coreth/rpc/handler.go:450: startCallProc 87.5% -2025-07-23T19:36:54.8688735Z github.com/ava-labs/coreth/rpc/handler.go:484: handleResponses 93.3% -2025-07-23T19:36:54.8688972Z github.com/ava-labs/coreth/rpc/handler.go:541: handleSubscriptionResult 66.7% -2025-07-23T19:36:54.8689192Z github.com/ava-labs/coreth/rpc/handler.go:553: handleCallMsg 100.0% -2025-07-23T19:36:54.8689377Z github.com/ava-labs/coreth/rpc/handler.go:595: handleCall 95.5% -2025-07-23T19:36:54.8689583Z github.com/ava-labs/coreth/rpc/handler.go:635: handleSubscribe 83.3% -2025-07-23T19:36:54.8689776Z github.com/ava-labs/coreth/rpc/handler.go:668: runMethod 100.0% -2025-07-23T19:36:54.8689968Z github.com/ava-labs/coreth/rpc/handler.go:677: unsubscribe 87.5% -2025-07-23T19:36:54.8690146Z github.com/ava-labs/coreth/rpc/handler.go:692: String 0.0% -2025-07-23T19:36:54.8690321Z github.com/ava-labs/coreth/rpc/handler.go:706: Write 66.7% -2025-07-23T19:36:54.8690524Z github.com/ava-labs/coreth/rpc/handler.go:716: formatErrorData 66.7% -2025-07-23T19:36:54.8690701Z github.com/ava-labs/coreth/rpc/http.go:68: writeJSON 0.0% -2025-07-23T19:36:54.8690910Z github.com/ava-labs/coreth/rpc/http.go:72: writeJSONSkipDeadline 0.0% -2025-07-23T19:36:54.8691198Z github.com/ava-labs/coreth/rpc/http.go:76: peerInfo 0.0% -2025-07-23T19:36:54.8691371Z github.com/ava-labs/coreth/rpc/http.go:80: remoteAddr 0.0% -2025-07-23T19:36:54.8691537Z github.com/ava-labs/coreth/rpc/http.go:84: readBatch 0.0% -2025-07-23T19:36:54.8691702Z github.com/ava-labs/coreth/rpc/http.go:89: close 0.0% -2025-07-23T19:36:54.8691867Z github.com/ava-labs/coreth/rpc/http.go:93: closed 0.0% -2025-07-23T19:36:54.8692045Z github.com/ava-labs/coreth/rpc/http.go:139: DialHTTP 100.0% -2025-07-23T19:36:54.8692259Z github.com/ava-labs/coreth/rpc/http.go:147: DialHTTPWithClient 85.7% -2025-07-23T19:36:54.8692478Z github.com/ava-labs/coreth/rpc/http.go:160: newClientTransportHTTP 90.9% -2025-07-23T19:36:54.8692654Z github.com/ava-labs/coreth/rpc/http.go:186: sendHTTP 90.9% -2025-07-23T19:36:54.8692842Z github.com/ava-labs/coreth/rpc/http.go:203: sendBatchHTTP 80.0% -2025-07-23T19:36:54.8693016Z github.com/ava-labs/coreth/rpc/http.go:219: doRequest 81.5% -2025-07-23T19:36:54.8693221Z github.com/ava-labs/coreth/rpc/http.go:271: newHTTPServerConn 47.1% -2025-07-23T19:36:54.8693387Z github.com/ava-labs/coreth/rpc/http.go:313: Close 100.0% -2025-07-23T19:36:54.8693567Z github.com/ava-labs/coreth/rpc/http.go:316: RemoteAddr 100.0% -2025-07-23T19:36:54.8693771Z github.com/ava-labs/coreth/rpc/http.go:321: SetWriteDeadline 100.0% -2025-07-23T19:36:54.8693945Z github.com/ava-labs/coreth/rpc/http.go:324: ServeHTTP 100.0% -2025-07-23T19:36:54.8694149Z github.com/ava-labs/coreth/rpc/http.go:355: validateRequest 92.3% -2025-07-23T19:36:54.8694363Z github.com/ava-labs/coreth/rpc/http.go:381: ContextRequestTimeout 50.0% -2025-07-23T19:36:54.8694550Z github.com/ava-labs/coreth/rpc/inproc.go:36: DialInProc 100.0% -2025-07-23T19:36:54.8694746Z github.com/ava-labs/coreth/rpc/json.go:82: isNotification 100.0% -2025-07-23T19:36:54.8695008Z github.com/ava-labs/coreth/rpc/json.go:86: isCall 100.0% -2025-07-23T19:36:54.8695195Z github.com/ava-labs/coreth/rpc/json.go:90: isResponse 100.0% -2025-07-23T19:36:54.8695367Z github.com/ava-labs/coreth/rpc/json.go:94: hasValidID 100.0% -2025-07-23T19:36:54.8695561Z github.com/ava-labs/coreth/rpc/json.go:98: hasValidVersion 100.0% -2025-07-23T19:36:54.8695747Z github.com/ava-labs/coreth/rpc/json.go:102: isSubscribe 100.0% -2025-07-23T19:36:54.8695939Z github.com/ava-labs/coreth/rpc/json.go:106: isUnsubscribe 100.0% -2025-07-23T19:36:54.8696242Z github.com/ava-labs/coreth/rpc/json.go:110: namespace 100.0% -2025-07-23T19:36:54.8696415Z github.com/ava-labs/coreth/rpc/json.go:115: String 0.0% -2025-07-23T19:36:54.8696606Z github.com/ava-labs/coreth/rpc/json.go:120: errorResponse 100.0% -2025-07-23T19:36:54.8696784Z github.com/ava-labs/coreth/rpc/json.go:126: response 100.0% -2025-07-23T19:36:54.8696973Z github.com/ava-labs/coreth/rpc/json.go:134: errorMessage 100.0% -2025-07-23T19:36:54.8697139Z github.com/ava-labs/coreth/rpc/json.go:156: Error 66.7% -2025-07-23T19:36:54.8697318Z github.com/ava-labs/coreth/rpc/json.go:163: ErrorCode 100.0% -2025-07-23T19:36:54.8697489Z github.com/ava-labs/coreth/rpc/json.go:167: ErrorData 100.0% -2025-07-23T19:36:54.8697674Z github.com/ava-labs/coreth/rpc/json.go:208: NewFuncCodec 100.0% -2025-07-23T19:36:54.8697851Z github.com/ava-labs/coreth/rpc/json.go:223: NewCodec 100.0% -2025-07-23T19:36:54.8698023Z github.com/ava-labs/coreth/rpc/json.go:234: peerInfo 100.0% -2025-07-23T19:36:54.8698214Z github.com/ava-labs/coreth/rpc/json.go:239: remoteAddr 100.0% -2025-07-23T19:36:54.8698386Z github.com/ava-labs/coreth/rpc/json.go:243: readBatch 100.0% -2025-07-23T19:36:54.8698556Z github.com/ava-labs/coreth/rpc/json.go:261: writeJSON 100.0% -2025-07-23T19:36:54.8698778Z github.com/ava-labs/coreth/rpc/json.go:265: writeJSONSkipDeadline 100.0% -2025-07-23T19:36:54.8699057Z github.com/ava-labs/coreth/rpc/json.go:280: close 100.0% -2025-07-23T19:36:54.8699232Z github.com/ava-labs/coreth/rpc/json.go:288: closed 100.0% -2025-07-23T19:36:54.8699421Z github.com/ava-labs/coreth/rpc/json.go:296: parseMessage 100.0% -2025-07-23T19:36:54.8699587Z github.com/ava-labs/coreth/rpc/json.go:313: isBatch 60.0% -2025-07-23T19:36:54.8699827Z github.com/ava-labs/coreth/rpc/json.go:327: parsePositionalArguments 84.6% -2025-07-23T19:36:54.8700035Z github.com/ava-labs/coreth/rpc/json.go:355: parseArgumentArray 75.0% -2025-07-23T19:36:54.8700256Z github.com/ava-labs/coreth/rpc/json.go:376: parseSubscriptionName 75.0% -2025-07-23T19:36:54.8700493Z github.com/ava-labs/coreth/rpc/metrics.go:58: updateServeTimeHistogram 0.0% -2025-07-23T19:36:54.8700672Z github.com/ava-labs/coreth/rpc/server.go:74: NewServer 100.0% -2025-07-23T19:36:54.8700879Z github.com/ava-labs/coreth/rpc/server.go:95: SetBatchLimits 100.0% -2025-07-23T19:36:54.8701086Z github.com/ava-labs/coreth/rpc/server.go:103: SetHTTPBodyLimit 0.0% -2025-07-23T19:36:54.8701279Z github.com/ava-labs/coreth/rpc/server.go:111: RegisterName 100.0% -2025-07-23T19:36:54.8701469Z github.com/ava-labs/coreth/rpc/server.go:120: ServeCodec 87.5% -2025-07-23T19:36:54.8701650Z github.com/ava-labs/coreth/rpc/server.go:138: trackCodec 83.3% -2025-07-23T19:36:54.8701841Z github.com/ava-labs/coreth/rpc/server.go:149: untrackCodec 100.0% -2025-07-23T19:36:54.8702059Z github.com/ava-labs/coreth/rpc/server.go:159: serveSingleRequest 60.0% -2025-07-23T19:36:54.8702235Z github.com/ava-labs/coreth/rpc/server.go:188: Stop 100.0% -2025-07-23T19:36:54.8702417Z github.com/ava-labs/coreth/rpc/server.go:207: Modules 100.0% -2025-07-23T19:36:54.8702634Z github.com/ava-labs/coreth/rpc/server.go:248: PeerInfoFromContext 100.0% -2025-07-23T19:36:54.8702828Z github.com/ava-labs/coreth/rpc/service.go:71: registerName 89.5% -2025-07-23T19:36:54.8703016Z github.com/ava-labs/coreth/rpc/service.go:106: callback 83.3% -2025-07-23T19:36:54.8703215Z github.com/ava-labs/coreth/rpc/service.go:117: subscription 100.0% -2025-07-23T19:36:54.8703429Z github.com/ava-labs/coreth/rpc/service.go:126: suitableCallbacks 91.7% -2025-07-23T19:36:54.8703623Z github.com/ava-labs/coreth/rpc/service.go:146: newCallback 100.0% -2025-07-23T19:36:54.8703819Z github.com/ava-labs/coreth/rpc/service.go:175: makeArgTypes 100.0% -2025-07-23T19:36:54.8703996Z github.com/ava-labs/coreth/rpc/service.go:194: call 100.0% -2025-07-23T19:36:54.8704288Z github.com/ava-labs/coreth/rpc/service.go:229: isErrorType 100.0% -2025-07-23T19:36:54.8704504Z github.com/ava-labs/coreth/rpc/service.go:234: isSubscriptionType 100.0% -2025-07-23T19:36:54.8704693Z github.com/ava-labs/coreth/rpc/service.go:243: isPubSub 100.0% -2025-07-23T19:36:54.8704983Z github.com/ava-labs/coreth/rpc/service.go:254: formatName 100.0% -2025-07-23T19:36:54.8705187Z github.com/ava-labs/coreth/rpc/subscription.go:67: NewID 100.0% -2025-07-23T19:36:54.8705414Z github.com/ava-labs/coreth/rpc/subscription.go:72: randomIDGenerator 91.7% -2025-07-23T19:36:54.8705607Z github.com/ava-labs/coreth/rpc/subscription.go:94: encodeID 80.0% -2025-07-23T19:36:54.8705854Z github.com/ava-labs/coreth/rpc/subscription.go:106: NotifierFromContext 100.0% -2025-07-23T19:36:54.8706087Z github.com/ava-labs/coreth/rpc/subscription.go:128: CreateSubscription 75.0% -2025-07-23T19:36:54.8706288Z github.com/ava-labs/coreth/rpc/subscription.go:143: Notify 80.0% -2025-07-23T19:36:54.8706483Z github.com/ava-labs/coreth/rpc/subscription.go:161: Closed 100.0% -2025-07-23T19:36:54.8706711Z github.com/ava-labs/coreth/rpc/subscription.go:167: takeSubscription 100.0% -2025-07-23T19:36:54.8706913Z github.com/ava-labs/coreth/rpc/subscription.go:177: activate 100.0% -2025-07-23T19:36:54.8707230Z github.com/ava-labs/coreth/rpc/subscription.go:190: send 100.0% -2025-07-23T19:36:54.8707416Z github.com/ava-labs/coreth/rpc/subscription.go:211: Err 100.0% -2025-07-23T19:36:54.8707635Z github.com/ava-labs/coreth/rpc/subscription.go:216: MarshalJSON 100.0% -2025-07-23T19:36:54.8707886Z github.com/ava-labs/coreth/rpc/subscription.go:248: newClientSubscription 100.0% -2025-07-23T19:36:54.8708077Z github.com/ava-labs/coreth/rpc/subscription.go:271: Err 100.0% -2025-07-23T19:36:54.8708288Z github.com/ava-labs/coreth/rpc/subscription.go:277: Unsubscribe 100.0% -2025-07-23T19:36:54.8708491Z github.com/ava-labs/coreth/rpc/subscription.go:289: deliver 100.0% -2025-07-23T19:36:54.8708684Z github.com/ava-labs/coreth/rpc/subscription.go:299: close 100.0% -2025-07-23T19:36:54.8708868Z github.com/ava-labs/coreth/rpc/subscription.go:308: run 100.0% -2025-07-23T19:36:54.8709063Z github.com/ava-labs/coreth/rpc/subscription.go:335: forward 95.7% -2025-07-23T19:36:54.8709277Z github.com/ava-labs/coreth/rpc/subscription.go:383: unmarshal 100.0% -2025-07-23T19:36:54.8709514Z github.com/ava-labs/coreth/rpc/subscription.go:389: requestUnsubscribe 100.0% -2025-07-23T19:36:54.8709709Z github.com/ava-labs/coreth/rpc/types.go:90: UnmarshalJSON 81.0% -2025-07-23T19:36:54.8709876Z github.com/ava-labs/coreth/rpc/types.go:127: Int64 0.0% -2025-07-23T19:36:54.8710065Z github.com/ava-labs/coreth/rpc/types.go:134: MarshalText 100.0% -2025-07-23T19:36:54.8710239Z github.com/ava-labs/coreth/rpc/types.go:138: String 66.7% -2025-07-23T19:36:54.8710424Z github.com/ava-labs/coreth/rpc/types.go:159: IsAccepted 0.0% -2025-07-23T19:36:54.8710603Z github.com/ava-labs/coreth/rpc/types.go:163: IsLatest 0.0% -2025-07-23T19:36:54.8710797Z github.com/ava-labs/coreth/rpc/types.go:173: UnmarshalJSON 84.4% -2025-07-23T19:36:54.8710972Z github.com/ava-labs/coreth/rpc/types.go:237: Number 100.0% -2025-07-23T19:36:54.8711146Z github.com/ava-labs/coreth/rpc/types.go:244: String 80.0% -2025-07-23T19:36:54.8711310Z github.com/ava-labs/coreth/rpc/types.go:254: Hash 100.0% -2025-07-23T19:36:54.8711546Z github.com/ava-labs/coreth/rpc/types.go:261: BlockNumberOrHashWithNumber 100.0% -2025-07-23T19:36:54.8711782Z github.com/ava-labs/coreth/rpc/types.go:269: BlockNumberOrHashWithHash 100.0% -2025-07-23T19:36:54.8712003Z github.com/ava-labs/coreth/rpc/websocket.go:61: WebsocketHandler 100.0% -2025-07-23T19:36:54.8712266Z github.com/ava-labs/coreth/rpc/websocket.go:65: WebsocketHandlerWithDuration 100.0% -2025-07-23T19:36:54.8712646Z github.com/ava-labs/coreth/rpc/websocket.go:86: wsHandshakeValidator 100.0% -2025-07-23T19:36:54.8712826Z github.com/ava-labs/coreth/rpc/websocket.go:132: Error 0.0% -2025-07-23T19:36:54.8713047Z github.com/ava-labs/coreth/rpc/websocket.go:140: originIsAllowed 100.0% -2025-07-23T19:36:54.8713256Z github.com/ava-labs/coreth/rpc/websocket.go:150: ruleAllowsOrigin 62.5% -2025-07-23T19:36:54.8713472Z github.com/ava-labs/coreth/rpc/websocket.go:178: parseOriginURL 92.9% -2025-07-23T19:36:54.8713703Z github.com/ava-labs/coreth/rpc/websocket.go:205: DialWebsocketWithDialer 0.0% -2025-07-23T19:36:54.8713906Z github.com/ava-labs/coreth/rpc/websocket.go:223: DialWebsocket 85.7% -2025-07-23T19:36:54.8714135Z github.com/ava-labs/coreth/rpc/websocket.go:235: newClientTransportWS 87.5% -2025-07-23T19:36:54.8714342Z github.com/ava-labs/coreth/rpc/websocket.go:278: wsClientHeaders 90.9% -2025-07-23T19:36:54.8714561Z github.com/ava-labs/coreth/rpc/websocket.go:305: newWebsocketCodec 84.6% -2025-07-23T19:36:54.8714748Z github.com/ava-labs/coreth/rpc/websocket.go:337: close 100.0% -2025-07-23T19:36:54.8715036Z github.com/ava-labs/coreth/rpc/websocket.go:342: peerInfo 100.0% -2025-07-23T19:36:54.8715231Z github.com/ava-labs/coreth/rpc/websocket.go:346: writeJSON 100.0% -2025-07-23T19:36:54.8715591Z github.com/ava-labs/coreth/rpc/websocket.go:350: writeJSONSkipDeadline 100.0% -2025-07-23T19:36:54.8715780Z github.com/ava-labs/coreth/rpc/websocket.go:363: pingLoop 50.0% -2025-07-23T19:36:54.8716002Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:55: Crit 0.0% -2025-07-23T19:36:54.8716215Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:58: Warn 0.0% -2025-07-23T19:36:54.8716430Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:61: Info 0.0% -2025-07-23T19:36:54.8716666Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:66: GetWarnings 0.0% -2025-07-23T19:36:54.8716893Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:103: String 0.0% -2025-07-23T19:36:54.8717143Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:112: ToTransaction 0.0% -2025-07-23T19:36:54.8717351Z github.com/ava-labs/coreth/sync/client/client.go:99: NewClient 100.0% -2025-07-23T19:36:54.8717554Z github.com/ava-labs/coreth/sync/client/client.go:114: GetLeafs 100.0% -2025-07-23T19:36:54.8717807Z github.com/ava-labs/coreth/sync/client/client.go:132: parseLeafsResponse 88.5% -2025-07-23T19:36:54.8718012Z github.com/ava-labs/coreth/sync/client/client.go:188: GetBlocks 100.0% -2025-07-23T19:36:54.8718234Z github.com/ava-labs/coreth/sync/client/client.go:207: parseBlocks 100.0% -2025-07-23T19:36:54.8718436Z github.com/ava-labs/coreth/sync/client/client.go:243: GetCode 100.0% -2025-07-23T19:36:54.8718639Z github.com/ava-labs/coreth/sync/client/client.go:257: parseCode 93.3% -2025-07-23T19:36:54.8718835Z github.com/ava-labs/coreth/sync/client/client.go:289: get 72.1% -2025-07-23T19:36:54.8719094Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:51: NewCallbackLeafSyncer 0.0% -2025-07-23T19:36:54.8719315Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:62: workerLoop 0.0% -2025-07-23T19:36:54.8719521Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:80: syncTask 0.0% -2025-07-23T19:36:54.8719728Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:149: Start 0.0% -2025-07-23T19:36:54.8719932Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:171: Done 0.0% -2025-07-23T19:36:54.8720175Z github.com/ava-labs/coreth/sync/client/stats/stats.go:42: NewMessageMetric 100.0% -2025-07-23T19:36:54.8720405Z github.com/ava-labs/coreth/sync/client/stats/stats.go:53: IncRequested 100.0% -2025-07-23T19:36:54.8720639Z github.com/ava-labs/coreth/sync/client/stats/stats.go:57: IncSucceeded 100.0% -2025-07-23T19:36:54.8720984Z github.com/ava-labs/coreth/sync/client/stats/stats.go:61: IncFailed 100.0% -2025-07-23T19:36:54.8721236Z github.com/ava-labs/coreth/sync/client/stats/stats.go:65: IncInvalidResponse 0.0% -2025-07-23T19:36:54.8721464Z github.com/ava-labs/coreth/sync/client/stats/stats.go:69: IncReceived 100.0% -2025-07-23T19:36:54.8721732Z github.com/ava-labs/coreth/sync/client/stats/stats.go:73: UpdateRequestLatency 100.0% -2025-07-23T19:36:54.8722003Z github.com/ava-labs/coreth/sync/client/stats/stats.go:84: NewClientSyncerStats 100.0% -2025-07-23T19:36:54.8722220Z github.com/ava-labs/coreth/sync/client/stats/stats.go:97: GetMetric 62.5% -2025-07-23T19:36:54.8722451Z github.com/ava-labs/coreth/sync/client/stats/stats.go:121: IncRequested 0.0% -2025-07-23T19:36:54.8722677Z github.com/ava-labs/coreth/sync/client/stats/stats.go:122: IncSucceeded 0.0% -2025-07-23T19:36:54.8722892Z github.com/ava-labs/coreth/sync/client/stats/stats.go:123: IncFailed 0.0% -2025-07-23T19:36:54.8723155Z github.com/ava-labs/coreth/sync/client/stats/stats.go:124: IncInvalidResponse 0.0% -2025-07-23T19:36:54.8723379Z github.com/ava-labs/coreth/sync/client/stats/stats.go:125: IncReceived 0.0% -2025-07-23T19:36:54.8723635Z github.com/ava-labs/coreth/sync/client/stats/stats.go:126: UpdateRequestLatency 0.0% -2025-07-23T19:36:54.8723875Z github.com/ava-labs/coreth/sync/client/stats/stats.go:128: NewNoOpStats 100.0% -2025-07-23T19:36:54.8724182Z github.com/ava-labs/coreth/sync/client/stats/stats.go:132: GetMetric 100.0% -2025-07-23T19:36:54.8724424Z github.com/ava-labs/coreth/sync/client/test_client.go:44: NewTestClient 0.0% -2025-07-23T19:36:54.8724642Z github.com/ava-labs/coreth/sync/client/test_client.go:58: GetLeafs 0.0% -2025-07-23T19:36:54.8724971Z github.com/ava-labs/coreth/sync/client/test_client.go:77: LeavesReceived 0.0% -2025-07-23T19:36:54.8725189Z github.com/ava-labs/coreth/sync/client/test_client.go:81: GetCode 0.0% -2025-07-23T19:36:54.8725418Z github.com/ava-labs/coreth/sync/client/test_client.go:105: CodeReceived 0.0% -2025-07-23T19:36:54.8725638Z github.com/ava-labs/coreth/sync/client/test_client.go:109: GetBlocks 0.0% -2025-07-23T19:36:54.8725872Z github.com/ava-labs/coreth/sync/client/test_client.go:136: BlocksReceived 0.0% -2025-07-23T19:36:54.8726128Z github.com/ava-labs/coreth/sync/client/test_client.go:142: newTestBlockParser 100.0% -2025-07-23T19:36:54.8726377Z github.com/ava-labs/coreth/sync/client/test_client.go:146: ParseEthBlock 100.0% -2025-07-23T19:36:54.8726653Z github.com/ava-labs/coreth/sync/client/test_network.go:31: SendSyncedAppRequestAny 80.0% -2025-07-23T19:36:54.8726921Z github.com/ava-labs/coreth/sync/client/test_network.go:42: SendSyncedAppRequest 75.0% -2025-07-23T19:36:54.8727146Z github.com/ava-labs/coreth/sync/client/test_network.go:52: processTest 84.6% -2025-07-23T19:36:54.8727355Z github.com/ava-labs/coreth/sync/client/test_network.go:76: Gossip 0.0% -2025-07-23T19:36:54.8727594Z github.com/ava-labs/coreth/sync/client/test_network.go:80: testResponse 100.0% -2025-07-23T19:36:54.8727828Z github.com/ava-labs/coreth/sync/client/test_network.go:89: testResponses 100.0% -2025-07-23T19:36:54.8728056Z github.com/ava-labs/coreth/sync/client/test_network.go:95: TrackBandwidth 0.0% -2025-07-23T19:36:54.8728354Z github.com/ava-labs/coreth/sync/handlers/block_request.go:36: NewBlockRequestHandler 100.0% -2025-07-23T19:36:54.8728606Z github.com/ava-labs/coreth/sync/handlers/block_request.go:49: OnBlockRequest 87.8% -2025-07-23T19:36:54.8728890Z github.com/ava-labs/coreth/sync/handlers/code_request.go:29: NewCodeRequestHandler 100.0% -2025-07-23T19:36:54.8729131Z github.com/ava-labs/coreth/sync/handlers/code_request.go:43: OnCodeRequest 82.1% -2025-07-23T19:36:54.8729353Z github.com/ava-labs/coreth/sync/handlers/code_request.go:85: isUnique 100.0% -2025-07-23T19:36:54.8729643Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:58: NewLeafsRequestHandler 100.0% -2025-07-23T19:36:54.8730030Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:81: OnLeafsRequest 89.8% -2025-07-23T19:36:54.8730285Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:186: handleRequest 73.9% -2025-07-23T19:36:54.8730544Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:230: fillFromSnapshot 69.5% -2025-07-23T19:36:54.8730817Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:333: generateRangeProof 73.3% -2025-07-23T19:36:54.8731083Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:360: verifyRangeProof 100.0% -2025-07-23T19:36:54.8731321Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:372: iterateVals 87.5% -2025-07-23T19:36:54.8731573Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:393: isRangeValid 88.9% -2025-07-23T19:36:54.8731803Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:410: nextKey 100.0% -2025-07-23T19:36:54.8732086Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:424: fillFromTrie 94.4% -2025-07-23T19:36:54.8732371Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:459: readLeafsFromSnapshot 92.3% -2025-07-23T19:36:54.8732631Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:88: IncBlockRequest 100.0% -2025-07-23T19:36:54.8732887Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:92: IncMissingBlockHash 0.0% -2025-07-23T19:36:54.8733288Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:96: UpdateBlocksReturned 100.0% -2025-07-23T19:36:54.8733606Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:100: UpdateBlockRequestProcessingTime 100.0% -2025-07-23T19:36:54.8733854Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:104: IncCodeRequest 0.0% -2025-07-23T19:36:54.8734109Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:108: IncMissingCodeHash 0.0% -2025-07-23T19:36:54.8734392Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:112: IncTooManyHashesRequested 0.0% -2025-07-23T19:36:54.8734700Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:116: IncDuplicateHashesRequested 0.0% -2025-07-23T19:36:54.8735058Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:120: UpdateCodeReadTime 0.0% -2025-07-23T19:36:54.8735345Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:124: UpdateCodeBytesReturned 0.0% -2025-07-23T19:36:54.8735604Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:128: IncLeafsRequest 100.0% -2025-07-23T19:36:54.8735882Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:132: IncInvalidLeafsRequest 0.0% -2025-07-23T19:36:54.8736200Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:136: UpdateLeafsRequestProcessingTime 100.0% -2025-07-23T19:36:54.8736469Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:140: UpdateLeafsReturned 100.0% -2025-07-23T19:36:54.8736741Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:144: UpdateReadLeafsTime 100.0% -2025-07-23T19:36:54.8737024Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:148: UpdateSnapshotReadTime 100.0% -2025-07-23T19:36:54.8737324Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:152: UpdateGenerateRangeProofTime 100.0% -2025-07-23T19:36:54.8737625Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:156: UpdateRangeProofValsReturned 100.0% -2025-07-23T19:36:54.8737873Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:160: IncMissingRoot 0.0% -2025-07-23T19:36:54.8738118Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:161: IncTrieError 0.0% -2025-07-23T19:36:54.8738358Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:162: IncProofError 0.0% -2025-07-23T19:36:54.8738623Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:163: IncSnapshotReadError 0.0% -2025-07-23T19:36:54.8738909Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:164: IncSnapshotReadAttempt 100.0% -2025-07-23T19:36:54.8739322Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:165: IncSnapshotReadSuccess 0.0% -2025-07-23T19:36:54.8739604Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:166: IncSnapshotSegmentValid 0.0% -2025-07-23T19:36:54.8739901Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:167: IncSnapshotSegmentInvalid 100.0% -2025-07-23T19:36:54.8740187Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:172: GetOrRegisterHandlerStats 66.7% -2025-07-23T19:36:54.8740465Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:214: NewNoopHandlerStats 100.0% -2025-07-23T19:36:54.8740713Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:219: IncBlockRequest 0.0% -2025-07-23T19:36:54.8740974Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:220: IncMissingBlockHash 0.0% -2025-07-23T19:36:54.8741245Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:221: UpdateBlocksReturned 0.0% -2025-07-23T19:36:54.8741559Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:222: UpdateBlockRequestProcessingTime 0.0% -2025-07-23T19:36:54.8741807Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:223: IncCodeRequest 0.0% -2025-07-23T19:36:54.8742061Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:224: IncMissingCodeHash 0.0% -2025-07-23T19:36:54.8742341Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:225: IncTooManyHashesRequested 0.0% -2025-07-23T19:36:54.8742778Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:226: IncDuplicateHashesRequested 0.0% -2025-07-23T19:36:54.8743037Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:227: UpdateCodeReadTime 0.0% -2025-07-23T19:36:54.8743321Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:228: UpdateCodeBytesReturned 0.0% -2025-07-23T19:36:54.8743571Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:229: IncLeafsRequest 0.0% -2025-07-23T19:36:54.8743845Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:230: IncInvalidLeafsRequest 0.0% -2025-07-23T19:36:54.8744166Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:231: UpdateLeafsRequestProcessingTime 0.0% -2025-07-23T19:36:54.8744433Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:232: UpdateLeafsReturned 0.0% -2025-07-23T19:36:54.8744698Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:233: UpdateReadLeafsTime 0.0% -2025-07-23T19:36:54.8745079Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:234: UpdateSnapshotReadTime 0.0% -2025-07-23T19:36:54.8745380Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:235: UpdateGenerateRangeProofTime 0.0% -2025-07-23T19:36:54.8745678Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:236: UpdateRangeProofValsReturned 0.0% -2025-07-23T19:36:54.8745922Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:237: IncMissingRoot 0.0% -2025-07-23T19:36:54.8746166Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:238: IncTrieError 0.0% -2025-07-23T19:36:54.8746409Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:239: IncProofError 0.0% -2025-07-23T19:36:54.8746676Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:240: IncSnapshotReadError 0.0% -2025-07-23T19:36:54.8746954Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:241: IncSnapshotReadAttempt 0.0% -2025-07-23T19:36:54.8747230Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:242: IncSnapshotReadSuccess 0.0% -2025-07-23T19:36:54.8747511Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:243: IncSnapshotSegmentValid 0.0% -2025-07-23T19:36:54.8747798Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:244: IncSnapshotSegmentInvalid 0.0% -2025-07-23T19:36:54.8748075Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:49: Reset 100.0% -2025-07-23T19:36:54.8748386Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:80: IncBlockRequest 100.0% -2025-07-23T19:36:54.8748830Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:86: IncMissingBlockHash 100.0% -2025-07-23T19:36:54.8749159Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:92: UpdateBlocksReturned 100.0% -2025-07-23T19:36:54.8749532Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:98: UpdateBlockRequestProcessingTime 100.0% -2025-07-23T19:36:54.8749840Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:104: IncCodeRequest 100.0% -2025-07-23T19:36:54.8750157Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:110: IncMissingCodeHash 0.0% -2025-07-23T19:36:54.8750505Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:116: IncTooManyHashesRequested 100.0% -2025-07-23T19:36:54.8750856Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:122: IncDuplicateHashesRequested 100.0% -2025-07-23T19:36:54.8751182Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:128: UpdateCodeReadTime 100.0% -2025-07-23T19:36:54.8751529Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:134: UpdateCodeBytesReturned 100.0% -2025-07-23T19:36:54.8751841Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:140: IncLeafsRequest 100.0% -2025-07-23T19:36:54.8752177Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:146: IncInvalidLeafsRequest 100.0% -2025-07-23T19:36:54.8752667Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:152: UpdateLeafsReturned 100.0% -2025-07-23T19:36:54.8753048Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:158: UpdateLeafsRequestProcessingTime 100.0% -2025-07-23T19:36:54.8753369Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:164: UpdateReadLeafsTime 100.0% -2025-07-23T19:36:54.8753731Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:170: UpdateGenerateRangeProofTime 100.0% -2025-07-23T19:36:54.8754074Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:176: UpdateSnapshotReadTime 100.0% -2025-07-23T19:36:54.8754425Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:182: UpdateRangeProofValsReturned 100.0% -2025-07-23T19:36:54.8754736Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:188: IncMissingRoot 100.0% -2025-07-23T19:36:54.8755148Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:194: IncTrieError 100.0% -2025-07-23T19:36:54.8755451Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:200: IncProofError 0.0% -2025-07-23T19:36:54.8755770Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:206: IncSnapshotReadError 0.0% -2025-07-23T19:36:54.8756107Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:212: IncSnapshotReadAttempt 100.0% -2025-07-23T19:36:54.8756446Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:218: IncSnapshotReadSuccess 100.0% -2025-07-23T19:36:54.8756792Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:224: IncSnapshotSegmentValid 100.0% -2025-07-23T19:36:54.8757143Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:230: IncSnapshotSegmentInvalid 100.0% -2025-07-23T19:36:54.8757384Z github.com/ava-labs/coreth/sync/handlers/test_providers.go:21: GetBlock 100.0% -2025-07-23T19:36:54.8757628Z github.com/ava-labs/coreth/sync/handlers/test_providers.go:29: Snapshots 100.0% -2025-07-23T19:36:54.8757881Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:63: newCodeSyncer 100.0% -2025-07-23T19:36:54.8758101Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:75: start 93.3% -2025-07-23T19:36:54.8758397Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:107: addCodeToFetchFromDBToQueue 55.0% -2025-07-23T19:36:54.8758619Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:143: work 100.0% -2025-07-23T19:36:54.8759006Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:180: fulfillCodeRequest 92.3% -2025-07-23T19:36:54.8759237Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:204: addCode 91.7% -2025-07-23T19:36:54.8759526Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:230: notifyAccountTrieCompleted 100.0% -2025-07-23T19:36:54.8759792Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:236: addHashesToQueue 100.0% -2025-07-23T19:36:54.8760023Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:249: setError 100.0% -2025-07-23T19:36:54.8760241Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:257: Done 100.0% -2025-07-23T19:36:54.8760499Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:65: NewStateSyncer 84.6% -2025-07-23T19:36:54.8760778Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:113: onStorageTrieFinished 80.0% -2025-07-23T19:36:54.8761046Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:136: onMainTrieFinished 87.5% -2025-07-23T19:36:54.8761306Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:156: onSyncComplete 100.0% -2025-07-23T19:36:54.8761575Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:165: storageTrieProducer 87.0% -2025-07-23T19:36:54.8761803Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:220: Start 100.0% -2025-07-23T19:36:54.8762150Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:247: Done 100.0% -2025-07-23T19:36:54.8762422Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:250: addTrieInProgress 100.0% -2025-07-23T19:36:54.8762705Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:259: removeTrieInProgress 85.7% -2025-07-23T19:36:54.8762958Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:274: onSyncFailure 85.7% -2025-07-23T19:36:54.8763336Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_sync.go:21: FillAccountsWithOverlappingStorage 100.0% -2025-07-23T19:36:54.8763626Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:29: GenerateTrie 66.7% -2025-07-23T19:36:54.8763892Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:39: FillTrie 95.7% -2025-07-23T19:36:54.8764223Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:78: AssertTrieConsistency 81.5% -2025-07-23T19:36:54.8764507Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:118: CorruptTrie 71.4% -2025-07-23T19:36:54.8764900Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:146: FillAccounts 77.3% -2025-07-23T19:36:54.8765181Z github.com/ava-labs/coreth/sync/statesync/sync_helpers.go:16: writeAccountSnapshot 100.0% -2025-07-23T19:36:54.8765499Z github.com/ava-labs/coreth/sync/statesync/sync_helpers.go:23: writeAccountStorageSnapshotFromTrie 0.0% -2025-07-23T19:36:54.8765743Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:20: NewTrieQueue 100.0% -2025-07-23T19:36:54.8766021Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:28: clearIfRootDoesNotMatch 66.7% -2025-07-23T19:36:54.8766286Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:50: RegisterStorageTrie 100.0% -2025-07-23T19:36:54.8766533Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:56: StorageTrieDone 100.0% -2025-07-23T19:36:54.8766774Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:65: getNextTrie 100.0% -2025-07-23T19:36:54.8767008Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:97: countTries 100.0% -2025-07-23T19:36:54.8767259Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:66: NewTrieToSync 100.0% -2025-07-23T19:36:54.8767503Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:86: loadSegments 76.0% -2025-07-23T19:36:54.8767758Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:142: startSyncing 100.0% -2025-07-23T19:36:54.8768127Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:152: addSegment 100.0% -2025-07-23T19:36:54.8768390Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:166: segmentFinished 74.4% -2025-07-23T19:36:54.8768678Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:245: createSegmentsIfNeeded 66.7% -2025-07-23T19:36:54.8768927Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:254: shouldSegment 83.3% -2025-07-23T19:36:54.8769188Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:277: createSegments 0.0% -2025-07-23T19:36:54.8769416Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:336: String 0.0% -2025-07-23T19:36:54.8769642Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:346: Root 100.0% -2025-07-23T19:36:54.8769878Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:347: Account 100.0% -2025-07-23T19:36:54.8770102Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:348: End 100.0% -2025-07-23T19:36:54.8770351Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:349: NodeType 100.0% -2025-07-23T19:36:54.8770583Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:350: OnStart 100.0% -2025-07-23T19:36:54.8770822Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:351: OnFinish 100.0% -2025-07-23T19:36:54.8771052Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:353: Start 100.0% -2025-07-23T19:36:54.8771401Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:360: OnLeafs 92.9% -2025-07-23T19:36:54.8771654Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:391: estimateSize 83.3% -2025-07-23T19:36:54.8771889Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:415: addPadding 0.0% -2025-07-23T19:36:54.8772156Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:45: newTrieSyncStats 100.0% -2025-07-23T19:36:54.8772421Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:59: incTriesSegmented 0.0% -2025-07-23T19:36:54.8772657Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:65: incLeafs 72.7% -2025-07-23T19:36:54.8772974Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:84: estimateSegmentsInProgressTime 25.0% -2025-07-23T19:36:54.8773217Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:101: trieDone 100.0% -2025-07-23T19:36:54.8773461Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:118: updateETA 76.9% -2025-07-23T19:36:54.8773733Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:145: setTriesRemaining 100.0% -2025-07-23T19:36:54.8773965Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:155: roundETA 80.0% -2025-07-23T19:36:54.8774232Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:41: NewMainTrieTask 100.0% -2025-07-23T19:36:54.8774482Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:47: IterateLeafs 100.0% -2025-07-23T19:36:54.8774718Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:53: OnStart 100.0% -2025-07-23T19:36:54.8775050Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:57: OnFinish 100.0% -2025-07-23T19:36:54.8775284Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:61: OnLeafs 92.3% -2025-07-23T19:36:54.8775556Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:97: NewStorageTrieTask 100.0% -2025-07-23T19:36:54.8775816Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:105: IterateLeafs 100.0% -2025-07-23T19:36:54.8776048Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:111: OnStart 54.5% -2025-07-23T19:36:54.8776291Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:138: OnFinish 100.0% -2025-07-23T19:36:54.8776526Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:142: OnLeafs 100.0% -2025-07-23T19:36:54.8776739Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:25: Next 85.7% -2025-07-23T19:36:54.8777075Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:37: Key 66.7% -2025-07-23T19:36:54.8777289Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:44: Value 66.7% -2025-07-23T19:36:54.8777505Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:51: Error 66.7% -2025-07-23T19:36:54.8777714Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:63: Key 100.0% -2025-07-23T19:36:54.8777935Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:67: Value 100.0% -2025-07-23T19:36:54.8778201Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:38: NewAccountTrie 100.0% -2025-07-23T19:36:54.8778440Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:53: GetAccount 87.5% -2025-07-23T19:36:54.8778682Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:87: GetStorage 72.2% -2025-07-23T19:36:54.8778940Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:123: UpdateAccount 88.9% -2025-07-23T19:36:54.8779200Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:138: UpdateStorage 92.3% -2025-07-23T19:36:54.8779463Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:159: DeleteAccount 100.0% -2025-07-23T19:36:54.8779718Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:170: DeleteStorage 100.0% -2025-07-23T19:36:54.8779947Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:186: Hash 60.0% -2025-07-23T19:36:54.8780306Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:195: hash 85.7% -2025-07-23T19:36:54.8780536Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:209: Commit 85.7% -2025-07-23T19:36:54.8780817Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:229: UpdateContractCode 100.0% -2025-07-23T19:36:54.8781045Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:234: GetKey 0.0% -2025-07-23T19:36:54.8781293Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:239: NodeIterator 0.0% -2025-07-23T19:36:54.8781528Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:244: Prove 0.0% -2025-07-23T19:36:54.8781749Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:248: Copy 57.1% -2025-07-23T19:36:54.8782016Z github.com/ava-labs/coreth/triedb/firewood/database.go:79: BackendConstructor 100.0% -2025-07-23T19:36:54.8782220Z github.com/ava-labs/coreth/triedb/firewood/database.go:97: New 66.7% -2025-07-23T19:36:54.8782462Z github.com/ava-labs/coreth/triedb/firewood/database.go:126: validatePath 50.0% -2025-07-23T19:36:54.8782687Z github.com/ava-labs/coreth/triedb/firewood/database.go:163: Scheme 100.0% -2025-07-23T19:36:54.8782917Z github.com/ava-labs/coreth/triedb/firewood/database.go:168: Initialized 66.7% -2025-07-23T19:36:54.8783144Z github.com/ava-labs/coreth/triedb/firewood/database.go:182: Update 93.8% -2025-07-23T19:36:54.8783365Z github.com/ava-labs/coreth/triedb/firewood/database.go:226: propose 82.6% -2025-07-23T19:36:54.8783586Z github.com/ava-labs/coreth/triedb/firewood/database.go:291: Commit 82.8% -2025-07-23T19:36:54.8783807Z github.com/ava-labs/coreth/triedb/firewood/database.go:353: Size 100.0% -2025-07-23T19:36:54.8784035Z github.com/ava-labs/coreth/triedb/firewood/database.go:358: Reference 0.0% -2025-07-23T19:36:54.8784265Z github.com/ava-labs/coreth/triedb/firewood/database.go:370: Dereference 0.0% -2025-07-23T19:36:54.8784478Z github.com/ava-labs/coreth/triedb/firewood/database.go:374: Cap 0.0% -2025-07-23T19:36:54.8784692Z github.com/ava-labs/coreth/triedb/firewood/database.go:378: Close 100.0% -2025-07-23T19:36:54.8785043Z github.com/ava-labs/coreth/triedb/firewood/database.go:392: createProposal 66.7% -2025-07-23T19:36:54.8785332Z github.com/ava-labs/coreth/triedb/firewood/database.go:432: cleanupCommittedProposal 100.0% -2025-07-23T19:36:54.8785565Z github.com/ava-labs/coreth/triedb/firewood/database.go:452: dereference 85.7% -2025-07-23T19:36:54.8785982Z github.com/ava-labs/coreth/triedb/firewood/database.go:471: removeProposalFromMap 100.0% -2025-07-23T19:36:54.8786203Z github.com/ava-labs/coreth/triedb/firewood/database.go:490: Reader 100.0% -2025-07-23T19:36:54.8786417Z github.com/ava-labs/coreth/triedb/firewood/database.go:505: Node 66.7% -2025-07-23T19:36:54.8786665Z github.com/ava-labs/coreth/triedb/firewood/database.go:519: getProposalHash 81.8% -2025-07-23T19:36:54.8786941Z github.com/ava-labs/coreth/triedb/firewood/database.go:563: arrangeKeyValuePairs 100.0% -2025-07-23T19:36:54.8787210Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:18: NewStorageTrie 100.0% -2025-07-23T19:36:54.8787438Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:28: Commit 100.0% -2025-07-23T19:36:54.8787665Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:33: Hash 100.0% -2025-07-23T19:36:54.8787881Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:39: Copy 0.0% -2025-07-23T19:36:54.8788140Z github.com/ava-labs/coreth/triedb/hashdb/database.go:119: BackendConstructor 100.0% -2025-07-23T19:36:54.8788371Z github.com/ava-labs/coreth/triedb/hashdb/database.go:181: forChildren 100.0% -2025-07-23T19:36:54.8788573Z github.com/ava-labs/coreth/triedb/hashdb/database.go:189: New 83.3% -2025-07-23T19:36:54.8788783Z github.com/ava-labs/coreth/triedb/hashdb/database.go:209: insert 100.0% -2025-07-23T19:36:54.8789186Z github.com/ava-labs/coreth/triedb/hashdb/database.go:239: node 89.3% -2025-07-23T19:36:54.8789402Z github.com/ava-labs/coreth/triedb/hashdb/database.go:295: Reference 100.0% -2025-07-23T19:36:54.8789625Z github.com/ava-labs/coreth/triedb/hashdb/database.go:303: reference 100.0% -2025-07-23T19:36:54.8789846Z github.com/ava-labs/coreth/triedb/hashdb/database.go:328: Dereference 88.2% -2025-07-23T19:36:54.8790069Z github.com/ava-labs/coreth/triedb/hashdb/database.go:357: dereference 100.0% -2025-07-23T19:36:54.8790318Z github.com/ava-labs/coreth/triedb/hashdb/database.go:410: writeFlushItems 71.4% -2025-07-23T19:36:54.8790519Z github.com/ava-labs/coreth/triedb/hashdb/database.go:438: Cap 0.0% -2025-07-23T19:36:54.8790733Z github.com/ava-labs/coreth/triedb/hashdb/database.go:518: Commit 87.9% -2025-07-23T19:36:54.8790938Z github.com/ava-labs/coreth/triedb/hashdb/database.go:576: commit 90.9% -2025-07-23T19:36:54.8791194Z github.com/ava-labs/coreth/triedb/hashdb/database.go:607: removeFromDirties 100.0% -2025-07-23T19:36:54.8791422Z github.com/ava-labs/coreth/triedb/hashdb/database.go:646: Initialized 100.0% -2025-07-23T19:36:54.8791628Z github.com/ava-labs/coreth/triedb/hashdb/database.go:654: Update 80.0% -2025-07-23T19:36:54.8791833Z github.com/ava-labs/coreth/triedb/hashdb/database.go:674: update 95.2% -2025-07-23T19:36:54.8792039Z github.com/ava-labs/coreth/triedb/hashdb/database.go:721: Size 100.0% -2025-07-23T19:36:54.8792247Z github.com/ava-labs/coreth/triedb/hashdb/database.go:733: Close 100.0% -2025-07-23T19:36:54.8792465Z github.com/ava-labs/coreth/triedb/hashdb/database.go:741: Scheme 100.0% -2025-07-23T19:36:54.8792675Z github.com/ava-labs/coreth/triedb/hashdb/database.go:747: Reader 100.0% -2025-07-23T19:36:54.8792878Z github.com/ava-labs/coreth/triedb/hashdb/database.go:761: Node 100.0% -2025-07-23T19:36:54.8793135Z github.com/ava-labs/coreth/triedb/pathdb/database.go:108: BackendConstructor 0.0% -2025-07-23T19:36:54.8793349Z github.com/ava-labs/coreth/triedb/pathdb/database.go:114: sanitize 60.0% -2025-07-23T19:36:54.8793554Z github.com/ava-labs/coreth/triedb/pathdb/database.go:163: New 100.0% -2025-07-23T19:36:54.8793767Z github.com/ava-labs/coreth/triedb/pathdb/database.go:231: Reader 100.0% -2025-07-23T19:36:54.8793975Z github.com/ava-labs/coreth/triedb/pathdb/database.go:246: Update 71.4% -2025-07-23T19:36:54.8794187Z github.com/ava-labs/coreth/triedb/pathdb/database.go:269: Commit 80.0% -2025-07-23T19:36:54.8794484Z github.com/ava-labs/coreth/triedb/pathdb/database.go:284: Disable 72.7% -2025-07-23T19:36:54.8794691Z github.com/ava-labs/coreth/triedb/pathdb/database.go:310: Enable 88.2% -2025-07-23T19:36:54.8795013Z github.com/ava-labs/coreth/triedb/pathdb/database.go:356: Recover 100.0% -2025-07-23T19:36:54.8795240Z github.com/ava-labs/coreth/triedb/pathdb/database.go:362: Recoverable 100.0% -2025-07-23T19:36:54.8795455Z github.com/ava-labs/coreth/triedb/pathdb/database.go:394: Close 100.0% -2025-07-23T19:36:54.8795656Z github.com/ava-labs/coreth/triedb/pathdb/database.go:416: Size 0.0% -2025-07-23T19:36:54.8795879Z github.com/ava-labs/coreth/triedb/pathdb/database.go:430: Initialized 0.0% -2025-07-23T19:36:54.8796111Z github.com/ava-labs/coreth/triedb/pathdb/database.go:445: SetBufferSize 0.0% -2025-07-23T19:36:54.8796316Z github.com/ava-labs/coreth/triedb/pathdb/database.go:458: Scheme 0.0% -2025-07-23T19:36:54.8796555Z github.com/ava-labs/coreth/triedb/pathdb/database.go:464: modifyAllowed 60.0% -2025-07-23T19:36:54.8796787Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:59: newDiffLayer 100.0% -2025-07-23T19:36:54.8797006Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:91: rootHash 100.0% -2025-07-23T19:36:54.8797225Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:96: stateID 100.0% -2025-07-23T19:36:54.8797577Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:102: parentLayer 100.0% -2025-07-23T19:36:54.8797781Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:112: node 82.4% -2025-07-23T19:36:54.8797993Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:146: Node 100.0% -2025-07-23T19:36:54.8798208Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:152: update 100.0% -2025-07-23T19:36:54.8798429Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:157: persist 77.8% -2025-07-23T19:36:54.8798657Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:179: diffToDisk 75.0% -2025-07-23T19:36:54.8798889Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:57: newDiskLayer 100.0% -2025-07-23T19:36:54.8799107Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:74: rootHash 100.0% -2025-07-23T19:36:54.8799321Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:79: stateID 100.0% -2025-07-23T19:36:54.8799556Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:85: parentLayer 100.0% -2025-07-23T19:36:54.8799770Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:91: isStale 100.0% -2025-07-23T19:36:54.8799986Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:99: markStale 80.0% -2025-07-23T19:36:54.8800194Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:111: Node 73.0% -2025-07-23T19:36:54.8800410Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:175: update 100.0% -2025-07-23T19:36:54.8800622Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:182: commit 85.7% -2025-07-23T19:36:54.8800839Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:252: revert 0.0% -2025-07-23T19:36:54.8801071Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:300: setBufferSize 0.0% -2025-07-23T19:36:54.8801277Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:311: size 0.0% -2025-07-23T19:36:54.8801503Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:322: resetCache 83.3% -2025-07-23T19:36:54.8801729Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:342: newHasher 100.0% -2025-07-23T19:36:54.8801939Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:346: hash 100.0% -2025-07-23T19:36:54.8802157Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:350: release 100.0% -2025-07-23T19:36:54.8802423Z github.com/ava-labs/coreth/triedb/pathdb/errors.go:67: newUnexpectedNodeError 0.0% -2025-07-23T19:36:54.8802637Z github.com/ava-labs/coreth/triedb/pathdb/history.go:158: encode 100.0% -2025-07-23T19:36:54.8802963Z github.com/ava-labs/coreth/triedb/pathdb/history.go:169: decode 100.0% -2025-07-23T19:36:54.8803174Z github.com/ava-labs/coreth/triedb/pathdb/history.go:185: encode 100.0% -2025-07-23T19:36:54.8803382Z github.com/ava-labs/coreth/triedb/pathdb/history.go:194: decode 100.0% -2025-07-23T19:36:54.8803589Z github.com/ava-labs/coreth/triedb/pathdb/history.go:210: encode 87.5% -2025-07-23T19:36:54.8803799Z github.com/ava-labs/coreth/triedb/pathdb/history.go:223: decode 62.5% -2025-07-23T19:36:54.8804017Z github.com/ava-labs/coreth/triedb/pathdb/history.go:263: newHistory 92.9% -2025-07-23T19:36:54.8804225Z github.com/ava-labs/coreth/triedb/pathdb/history.go:304: encode 100.0% -2025-07-23T19:36:54.8804429Z github.com/ava-labs/coreth/triedb/pathdb/history.go:365: verify 60.0% -2025-07-23T19:36:54.8804648Z github.com/ava-labs/coreth/triedb/pathdb/history.go:376: readAccount 75.0% -2025-07-23T19:36:54.8804994Z github.com/ava-labs/coreth/triedb/pathdb/history.go:409: readStorage 76.2% -2025-07-23T19:36:54.8805201Z github.com/ava-labs/coreth/triedb/pathdb/history.go:456: decode 85.0% -2025-07-23T19:36:54.8805426Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:85: loadJournal 77.3% -2025-07-23T19:36:54.8805645Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:127: loadLayers 100.0% -2025-07-23T19:36:54.8806000Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:149: loadDiskLayer 54.5% -2025-07-23T19:36:54.8806238Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:190: loadDiffLayer 83.3% -2025-07-23T19:36:54.8806447Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:257: journal 77.8% -2025-07-23T19:36:54.8806655Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:291: journal 80.0% -2025-07-23T19:36:54.8806866Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:350: Journal 76.0% -2025-07-23T19:36:54.8807097Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:52: newLayerTree 100.0% -2025-07-23T19:36:54.8807316Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:60: reset 100.0% -2025-07-23T19:36:54.8807516Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:73: get 100.0% -2025-07-23T19:36:54.8807724Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:82: forEach 0.0% -2025-07-23T19:36:54.8807932Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:92: len 100.0% -2025-07-23T19:36:54.8808136Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:100: add 81.8% -2025-07-23T19:36:54.8808343Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:125: cap 79.0% -2025-07-23T19:36:54.8808555Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:236: bottom 90.9% -2025-07-23T19:36:54.8808798Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:54: newNodeBuffer 71.4% -2025-07-23T19:36:54.8809008Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:73: node 27.3% -2025-07-23T19:36:54.8809226Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:94: commit 100.0% -2025-07-23T19:36:54.8809441Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:139: revert 0.0% -2025-07-23T19:36:54.8809674Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:189: updateSize 57.1% -2025-07-23T19:36:54.8809890Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:201: reset 100.0% -2025-07-23T19:36:54.8810107Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:209: empty 0.0% -2025-07-23T19:36:54.8810323Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:215: setSize 0.0% -2025-07-23T19:36:54.8810532Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:222: flush 88.2% -2025-07-23T19:36:54.8810771Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:254: writeNodes 100.0% -2025-07-23T19:36:54.8811000Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:283: cacheKey 100.0% -2025-07-23T19:36:54.8811378Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:55: newTestHasher 80.0% -2025-07-23T19:36:54.8811580Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:71: Get 0.0% -2025-07-23T19:36:54.8811796Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:81: Update 100.0% -2025-07-23T19:36:54.8812017Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:87: Delete 100.0% -2025-07-23T19:36:54.8812233Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:94: Commit 93.8% -2025-07-23T19:36:54.8812440Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:126: hash 100.0% -2025-07-23T19:36:54.8812688Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:152: newHashLoader 100.0% -2025-07-23T19:36:54.8812899Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:160: OpenTrie 0.0% -2025-07-23T19:36:54.8813147Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:165: OpenStorageTrie 0.0% -2025-07-23T19:36:54.8813346Z github.com/ava-labs/coreth/utils/address_range.go:20: Contains 0.0% -2025-07-23T19:36:54.8813586Z github.com/ava-labs/coreth/utils/bounded_workers.go:22: NewBoundedWorkers 0.0% -2025-07-23T19:36:54.8813806Z github.com/ava-labs/coreth/utils/bounded_workers.go:31: startWorker 0.0% -2025-07-23T19:36:54.8814007Z github.com/ava-labs/coreth/utils/bounded_workers.go:51: Execute 0.0% -2025-07-23T19:36:54.8814209Z github.com/ava-labs/coreth/utils/bounded_workers.go:75: Wait 0.0% -2025-07-23T19:36:54.8814470Z github.com/ava-labs/coreth/utils/bytes.go:9: IncrOne 100.0% -2025-07-23T19:36:54.8814678Z github.com/ava-labs/coreth/utils/bytes.go:23: HashSliceToBytes 100.0% -2025-07-23T19:36:54.8814985Z github.com/ava-labs/coreth/utils/bytes.go:33: BytesToHashSlice 100.0% -2025-07-23T19:36:54.8815212Z github.com/ava-labs/coreth/utils/metered_cache.go:37: NewMeteredCache 0.0% -2025-07-23T19:36:54.8815449Z github.com/ava-labs/coreth/utils/metered_cache.go:60: updateStatsIfNeeded 0.0% -2025-07-23T19:36:54.8815644Z github.com/ava-labs/coreth/utils/metered_cache.go:81: Del 0.0% -2025-07-23T19:36:54.8815830Z github.com/ava-labs/coreth/utils/metered_cache.go:86: Get 0.0% -2025-07-23T19:36:54.8816032Z github.com/ava-labs/coreth/utils/metered_cache.go:91: GetBig 0.0% -2025-07-23T19:36:54.8816214Z github.com/ava-labs/coreth/utils/metered_cache.go:96: Has 0.0% -2025-07-23T19:36:54.8816414Z github.com/ava-labs/coreth/utils/metered_cache.go:101: HasGet 0.0% -2025-07-23T19:36:54.8816608Z github.com/ava-labs/coreth/utils/metered_cache.go:106: Set 0.0% -2025-07-23T19:36:54.8816799Z github.com/ava-labs/coreth/utils/metered_cache.go:111: SetBig 0.0% -2025-07-23T19:36:54.8816985Z github.com/ava-labs/coreth/utils/numbers.go:11: NewUint64 0.0% -2025-07-23T19:36:54.8817188Z github.com/ava-labs/coreth/utils/numbers.go:13: TimeToNewUint64 0.0% -2025-07-23T19:36:54.8817380Z github.com/ava-labs/coreth/utils/numbers.go:18: Uint64ToTime 0.0% -2025-07-23T19:36:54.8817589Z github.com/ava-labs/coreth/utils/numbers.go:25: Uint64PtrEqual 0.0% -2025-07-23T19:36:54.8817778Z github.com/ava-labs/coreth/utils/numbers.go:34: BigEqual 100.0% -2025-07-23T19:36:54.8817985Z github.com/ava-labs/coreth/utils/numbers.go:43: BigEqualUint64 100.0% -2025-07-23T19:36:54.8818217Z github.com/ava-labs/coreth/utils/numbers.go:51: BigLessOrEqualUint64 100.0% -2025-07-23T19:36:54.8818419Z github.com/ava-labs/coreth/utils/rpc/handler.go:16: NewHandler 0.0% -2025-07-23T19:36:54.8818639Z github.com/ava-labs/coreth/utils/snow.go:17: NewTestValidatorState 0.0% -2025-07-23T19:36:54.8818840Z github.com/ava-labs/coreth/utils/utilstest/key.go:24: NewKey 100.0% -2025-07-23T19:36:54.8819034Z github.com/ava-labs/coreth/warp/backend.go:65: NewBackend 100.0% -2025-07-23T19:36:54.8819260Z github.com/ava-labs/coreth/warp/backend.go:88: initOffChainMessages 76.9% -2025-07-23T19:36:54.8819450Z github.com/ava-labs/coreth/warp/backend.go:113: AddMessage 71.4% -2025-07-23T19:36:54.8819811Z github.com/ava-labs/coreth/warp/backend.go:130: GetMessageSignature 100.0% -2025-07-23T19:36:54.8820033Z github.com/ava-labs/coreth/warp/backend.go:144: GetBlockSignature 73.3% -2025-07-23T19:36:54.8820223Z github.com/ava-labs/coreth/warp/backend.go:172: GetMessage 83.3% -2025-07-23T19:36:54.8820420Z github.com/ava-labs/coreth/warp/backend.go:194: signMessage 80.0% -2025-07-23T19:36:54.8820605Z github.com/ava-labs/coreth/warp/client.go:31: NewClient 0.0% -2025-07-23T19:36:54.8820792Z github.com/ava-labs/coreth/warp/client.go:41: GetMessage 0.0% -2025-07-23T19:36:54.8821010Z github.com/ava-labs/coreth/warp/client.go:49: GetMessageSignature 0.0% -2025-07-23T19:36:54.8821251Z github.com/ava-labs/coreth/warp/client.go:57: GetMessageAggregateSignature 0.0% -2025-07-23T19:36:54.8821459Z github.com/ava-labs/coreth/warp/client.go:65: GetBlockSignature 0.0% -2025-07-23T19:36:54.8821696Z github.com/ava-labs/coreth/warp/client.go:73: GetBlockAggregateSignature 0.0% -2025-07-23T19:36:54.8821876Z github.com/ava-labs/coreth/warp/service.go:32: NewAPI 0.0% -2025-07-23T19:36:54.8822067Z github.com/ava-labs/coreth/warp/service.go:42: GetMessage 0.0% -2025-07-23T19:36:54.8822281Z github.com/ava-labs/coreth/warp/service.go:51: GetMessageSignature 0.0% -2025-07-23T19:36:54.8822602Z github.com/ava-labs/coreth/warp/service.go:64: GetBlockSignature 0.0% -2025-07-23T19:36:54.8822853Z github.com/ava-labs/coreth/warp/service.go:73: GetMessageAggregateSignature 0.0% -2025-07-23T19:36:54.8823090Z github.com/ava-labs/coreth/warp/service.go:82: GetBlockAggregateSignature 0.0% -2025-07-23T19:36:54.8823309Z github.com/ava-labs/coreth/warp/service.go:95: aggregateSignatures 0.0% -2025-07-23T19:36:54.8823524Z github.com/ava-labs/coreth/warp/validators/state.go:31: NewState 100.0% -2025-07-23T19:36:54.8823766Z github.com/ava-labs/coreth/warp/validators/state.go:40: GetValidatorSet 100.0% -2025-07-23T19:36:54.8823984Z github.com/ava-labs/coreth/warp/verifier_backend.go:23: Verify 76.9% -2025-07-23T19:36:54.8824232Z github.com/ava-labs/coreth/warp/verifier_backend.go:58: verifyBlockMessage 100.0% -2025-07-23T19:36:54.8824465Z github.com/ava-labs/coreth/warp/verifier_stats.go:14: newVerifierStats 100.0% -2025-07-23T19:36:54.8824717Z github.com/ava-labs/coreth/warp/verifier_stats.go:21: IncBlockValidationFail 100.0% -2025-07-23T19:36:54.8825061Z github.com/ava-labs/coreth/warp/verifier_stats.go:25: IncMessageParseFail 100.0% -2025-07-23T19:36:54.8825322Z github.com/ava-labs/coreth/warp/warptest/block_client.go:23: GetAcceptedBlock 100.0% -2025-07-23T19:36:54.8825573Z github.com/ava-labs/coreth/warp/warptest/block_client.go:30: MakeBlockClient 100.0% -2025-07-23T19:36:54.8825682Z total: (statements) 60.0% diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/1_Set up job.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/1_Set up job.txt deleted file mode 100644 index 4b66c4178a..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/1_Set up job.txt +++ /dev/null @@ -1,50 +0,0 @@ -2025-07-23T19:28:54.8331155Z Current runner version: '2.326.0' -2025-07-23T19:28:54.8354631Z ##[group]Runner Image Provisioner -2025-07-23T19:28:54.8355649Z Hosted Compute Agent -2025-07-23T19:28:54.8356169Z Version: 20250711.363 -2025-07-23T19:28:54.8356861Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c -2025-07-23T19:28:54.8357539Z Build Date: 2025-07-11T20:04:25Z -2025-07-23T19:28:54.8358077Z ##[endgroup] -2025-07-23T19:28:54.8358661Z ##[group]Operating System -2025-07-23T19:28:54.8359187Z Ubuntu -2025-07-23T19:28:54.8359677Z 22.04.5 -2025-07-23T19:28:54.8360122Z LTS -2025-07-23T19:28:54.8360587Z ##[endgroup] -2025-07-23T19:28:54.8361025Z ##[group]Runner Image -2025-07-23T19:28:54.8361584Z Image: ubuntu-22.04 -2025-07-23T19:28:54.8362092Z Version: 20250720.1.0 -2025-07-23T19:28:54.8363052Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20250720.1/images/ubuntu/Ubuntu2204-Readme.md -2025-07-23T19:28:54.8364412Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20250720.1 -2025-07-23T19:28:54.8365873Z ##[endgroup] -2025-07-23T19:28:54.8368342Z ##[group]GITHUB_TOKEN Permissions -2025-07-23T19:28:54.8370235Z Actions: write -2025-07-23T19:28:54.8370728Z Attestations: write -2025-07-23T19:28:54.8371345Z Checks: write -2025-07-23T19:28:54.8371844Z Contents: write -2025-07-23T19:28:54.8372370Z Deployments: write -2025-07-23T19:28:54.8372996Z Discussions: write -2025-07-23T19:28:54.8373509Z Issues: write -2025-07-23T19:28:54.8373979Z Metadata: read -2025-07-23T19:28:54.8374481Z Models: read -2025-07-23T19:28:54.8375212Z Packages: write -2025-07-23T19:28:54.8375677Z Pages: write -2025-07-23T19:28:54.8376220Z PullRequests: write -2025-07-23T19:28:54.8376719Z RepositoryProjects: write -2025-07-23T19:28:54.8377263Z SecurityEvents: write -2025-07-23T19:28:54.8377910Z Statuses: write -2025-07-23T19:28:54.8378386Z ##[endgroup] -2025-07-23T19:28:54.8380295Z Secret source: Actions -2025-07-23T19:28:54.8381024Z Prepare workflow directory -2025-07-23T19:28:54.8701204Z Prepare all required actions -2025-07-23T19:28:54.8737892Z Getting action download info -2025-07-23T19:28:55.3676122Z ##[group]Download immutable action package 'actions/checkout@v4' -2025-07-23T19:28:55.3677193Z Version: 4.2.2 -2025-07-23T19:28:55.3678213Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 -2025-07-23T19:28:55.3679349Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 -2025-07-23T19:28:55.3680078Z ##[endgroup] -2025-07-23T19:28:55.4736579Z ##[group]Download immutable action package 'actions/setup-go@v5' -2025-07-23T19:28:55.4737344Z Version: 5.5.0 -2025-07-23T19:28:55.4738182Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb -2025-07-23T19:28:55.4739081Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 -2025-07-23T19:28:55.4739731Z ##[endgroup] -2025-07-23T19:28:55.8319341Z Complete job name: Golang Unit Tests (ubuntu-22.04) diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/21_Post Run actions_setup-go@v5.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/21_Post Run actions_setup-go@v5.txt deleted file mode 100644 index 5949a8ebb3..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/21_Post Run actions_setup-go@v5.txt +++ /dev/null @@ -1,6 +0,0 @@ -2025-07-23T19:36:54.8883071Z Post job cleanup. -2025-07-23T19:36:55.0547238Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:36:55.0585532Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:36:55.0609696Z /home/runner/go/pkg/mod -2025-07-23T19:36:55.0640421Z /home/runner/.cache/go-build -2025-07-23T19:36:55.0646843Z Cache hit occurred on the primary key setup-go-Linux-x64-ubuntu22-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d, not saving cache. diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/22_Post Run actions_checkout@v4.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/22_Post Run actions_checkout@v4.txt deleted file mode 100644 index c6cb13c4a3..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/22_Post Run actions_checkout@v4.txt +++ /dev/null @@ -1,12 +0,0 @@ -2025-07-23T19:36:55.0785996Z Post job cleanup. -2025-07-23T19:36:55.1769187Z [command]/usr/bin/git version -2025-07-23T19:36:55.1814113Z git version 2.50.1 -2025-07-23T19:36:55.1857222Z Temporarily overriding HOME='/home/runner/work/_temp/789b75b4-8f13-4019-92ec-fa3e46783192' before making global git config changes -2025-07-23T19:36:55.1857778Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:36:55.1862471Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:36:55.1897584Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:36:55.1930024Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:36:55.2163954Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:36:55.2186019Z http.https://github.com/.extraheader -2025-07-23T19:36:55.2198888Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader -2025-07-23T19:36:55.2229939Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/23_Complete job.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/23_Complete job.txt deleted file mode 100644 index b88cdb9c5b..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/23_Complete job.txt +++ /dev/null @@ -1 +0,0 @@ -2025-07-23T19:36:55.2559521Z Cleaning up orphan processes diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/2_Run actions_checkout@v4.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/2_Run actions_checkout@v4.txt deleted file mode 100644 index 52ba887e14..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/2_Run actions_checkout@v4.txt +++ /dev/null @@ -1,85 +0,0 @@ -2025-07-23T19:28:55.8918213Z ##[group]Run actions/checkout@v4 -2025-07-23T19:28:55.8919206Z with: -2025-07-23T19:28:55.8919678Z repository: ava-labs/coreth -2025-07-23T19:28:55.8920310Z token: *** -2025-07-23T19:28:55.8920728Z ssh-strict: true -2025-07-23T19:28:55.8921108Z ssh-user: git -2025-07-23T19:28:55.8921490Z persist-credentials: true -2025-07-23T19:28:55.8921920Z clean: true -2025-07-23T19:28:55.8922297Z sparse-checkout-cone-mode: true -2025-07-23T19:28:55.8922762Z fetch-depth: 1 -2025-07-23T19:28:55.8923120Z fetch-tags: false -2025-07-23T19:28:55.8923498Z show-progress: true -2025-07-23T19:28:55.8923881Z lfs: false -2025-07-23T19:28:55.8924228Z submodules: false -2025-07-23T19:28:55.8924611Z set-safe-directory: true -2025-07-23T19:28:55.8925666Z ##[endgroup] -2025-07-23T19:28:55.9980501Z Syncing repository: ava-labs/coreth -2025-07-23T19:28:55.9982284Z ##[group]Getting Git version info -2025-07-23T19:28:55.9982939Z Working directory is '/home/runner/work/coreth/coreth' -2025-07-23T19:28:55.9983892Z [command]/usr/bin/git version -2025-07-23T19:28:56.0054667Z git version 2.50.1 -2025-07-23T19:28:56.0080235Z ##[endgroup] -2025-07-23T19:28:56.0093245Z Temporarily overriding HOME='/home/runner/work/_temp/54a04151-546b-430a-9f32-6573bafa504e' before making global git config changes -2025-07-23T19:28:56.0095209Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:28:56.0098180Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:28:56.0132490Z Deleting the contents of '/home/runner/work/coreth/coreth' -2025-07-23T19:28:56.0136183Z ##[group]Initializing the repository -2025-07-23T19:28:56.0139694Z [command]/usr/bin/git init /home/runner/work/coreth/coreth -2025-07-23T19:28:56.0228760Z hint: Using 'master' as the name for the initial branch. This default branch name -2025-07-23T19:28:56.0230229Z hint: is subject to change. To configure the initial branch name to use in all -2025-07-23T19:28:56.0231108Z hint: of your new repositories, which will suppress this warning, call: -2025-07-23T19:28:56.0231956Z hint: -2025-07-23T19:28:56.0232750Z hint: git config --global init.defaultBranch -2025-07-23T19:28:56.0233548Z hint: -2025-07-23T19:28:56.0234460Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and -2025-07-23T19:28:56.0236265Z hint: 'development'. The just-created branch can be renamed via this command: -2025-07-23T19:28:56.0237538Z hint: -2025-07-23T19:28:56.0238213Z hint: git branch -m -2025-07-23T19:28:56.0238991Z hint: -2025-07-23T19:28:56.0240046Z hint: Disable this message with "git config set advice.defaultBranchName false" -2025-07-23T19:28:56.0241721Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ -2025-07-23T19:28:56.0246797Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth -2025-07-23T19:28:56.0279531Z ##[endgroup] -2025-07-23T19:28:56.0280724Z ##[group]Disabling automatic garbage collection -2025-07-23T19:28:56.0284177Z [command]/usr/bin/git config --local gc.auto 0 -2025-07-23T19:28:56.0312178Z ##[endgroup] -2025-07-23T19:28:56.0313364Z ##[group]Setting up auth -2025-07-23T19:28:56.0319681Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:28:56.0349849Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:28:56.0661255Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:28:56.0691149Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:28:56.0913192Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** -2025-07-23T19:28:56.0948786Z ##[endgroup] -2025-07-23T19:28:56.0949997Z ##[group]Fetching the repository -2025-07-23T19:28:56.0958965Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge -2025-07-23T19:28:56.8801085Z From https://github.com/ava-labs/coreth -2025-07-23T19:28:56.8803219Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge -2025-07-23T19:28:56.8829075Z ##[endgroup] -2025-07-23T19:28:56.8830216Z ##[group]Determining the checkout info -2025-07-23T19:28:56.8831631Z ##[endgroup] -2025-07-23T19:28:56.8836006Z [command]/usr/bin/git sparse-checkout disable -2025-07-23T19:28:56.8875064Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig -2025-07-23T19:28:56.8901710Z ##[group]Checking out the ref -2025-07-23T19:28:56.8905205Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge -2025-07-23T19:28:57.0018354Z Note: switching to 'refs/remotes/pull/1065/merge'. -2025-07-23T19:28:57.0019388Z -2025-07-23T19:28:57.0020160Z You are in 'detached HEAD' state. You can look around, make experimental -2025-07-23T19:28:57.0021809Z changes and commit them, and you can discard any commits you make in this -2025-07-23T19:28:57.0024373Z state without impacting any branches by switching back to a branch. -2025-07-23T19:28:57.0026243Z -2025-07-23T19:28:57.0027268Z If you want to create a new branch to retain commits you create, you may -2025-07-23T19:28:57.0029606Z do so (now or later) by using -c with the switch command. Example: -2025-07-23T19:28:57.0031062Z -2025-07-23T19:28:57.0031586Z git switch -c -2025-07-23T19:28:57.0032526Z -2025-07-23T19:28:57.0033034Z Or undo this operation with: -2025-07-23T19:28:57.0034000Z -2025-07-23T19:28:57.0034474Z git switch - -2025-07-23T19:28:57.0035385Z -2025-07-23T19:28:57.0036615Z Turn off this advice by setting config variable advice.detachedHead to false -2025-07-23T19:28:57.0038440Z -2025-07-23T19:28:57.0040636Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 -2025-07-23T19:28:57.0045702Z ##[endgroup] -2025-07-23T19:28:57.0069976Z [command]/usr/bin/git log -1 --format=%H -2025-07-23T19:28:57.0091987Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/4_Run actions_setup-go@v5.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/4_Run actions_setup-go@v5.txt deleted file mode 100644 index 596a1273ff..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/4_Run actions_setup-go@v5.txt +++ /dev/null @@ -1,83 +0,0 @@ -2025-07-23T19:28:57.0393742Z ##[group]Run actions/setup-go@v5 -2025-07-23T19:28:57.0394930Z with: -2025-07-23T19:28:57.0395668Z go-version-file: go.mod -2025-07-23T19:28:57.0396567Z check-latest: false -2025-07-23T19:28:57.0397672Z token: *** -2025-07-23T19:28:57.0398392Z cache: true -2025-07-23T19:28:57.0399123Z ##[endgroup] -2025-07-23T19:28:57.2021244Z Setup go version spec 1.23.9 -2025-07-23T19:28:57.2034116Z Attempting to download 1.23.9... -2025-07-23T19:28:57.7649896Z matching 1.23.9... -2025-07-23T19:28:57.7691053Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz -2025-07-23T19:28:58.3892139Z Extracting Go... -2025-07-23T19:28:58.3994595Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/60b1434f-42a1-47fc-a10a-f4667a45a644 -f /home/runner/work/_temp/3e9464b8-4da0-4c4c-b6d4-38c95d686176 -2025-07-23T19:29:00.0426449Z Successfully extracted go to /home/runner/work/_temp/60b1434f-42a1-47fc-a10a-f4667a45a644 -2025-07-23T19:29:00.0427404Z Adding to the cache ... -2025-07-23T19:29:04.2892184Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 -2025-07-23T19:29:04.2893802Z Added go to the path -2025-07-23T19:29:04.2897043Z Successfully set up Go version 1.23.9 -2025-07-23T19:29:04.3080997Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:29:04.3107933Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:29:04.3135191Z /home/runner/go/pkg/mod -2025-07-23T19:29:04.3149640Z /home/runner/.cache/go-build -2025-07-23T19:29:04.5572294Z Cache hit for: setup-go-Linux-x64-ubuntu22-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:05.8480201Z Received 4194304 of 675091954 (0.6%), 4.0 MBs/sec -2025-07-23T19:29:06.8539194Z Received 130023424 of 675091954 (19.3%), 62.0 MBs/sec -2025-07-23T19:29:07.8497701Z Received 230686720 of 675091954 (34.2%), 73.3 MBs/sec -2025-07-23T19:29:08.8502999Z Received 331350016 of 675091954 (49.1%), 78.9 MBs/sec -2025-07-23T19:29:09.8555985Z Received 436207616 of 675091954 (64.6%), 83.2 MBs/sec -2025-07-23T19:29:10.8506472Z Received 536870912 of 675091954 (79.5%), 85.3 MBs/sec -2025-07-23T19:29:11.8510890Z Received 658505728 of 675091954 (97.5%), 89.7 MBs/sec -2025-07-23T19:29:12.4961572Z Received 675091954 of 675091954 (100.0%), 84.2 MBs/sec -2025-07-23T19:29:12.4962472Z Cache Size: ~644 MB (675091954 B) -2025-07-23T19:29:12.4997622Z [command]/usr/bin/tar -xf /home/runner/work/_temp/0e3892d4-ee3f-4459-97c3-5d56fc181423/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd -2025-07-23T19:29:18.2710189Z Cache restored successfully -2025-07-23T19:29:18.5678797Z Cache restored from key: setup-go-Linux-x64-ubuntu22-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:18.5704445Z go version go1.23.9 linux/amd64 -2025-07-23T19:29:18.5704668Z -2025-07-23T19:29:18.5705503Z ##[group]go env -2025-07-23T19:29:18.6225840Z GO111MODULE='' -2025-07-23T19:29:18.6226317Z GOARCH='amd64' -2025-07-23T19:29:18.6226756Z GOBIN='' -2025-07-23T19:29:18.6227086Z GOCACHE='/home/runner/.cache/go-build' -2025-07-23T19:29:18.6227663Z GOENV='/home/runner/.config/go/env' -2025-07-23T19:29:18.6228058Z GOEXE='' -2025-07-23T19:29:18.6228333Z GOEXPERIMENT='' -2025-07-23T19:29:18.6228652Z GOFLAGS='' -2025-07-23T19:29:18.6228947Z GOHOSTARCH='amd64' -2025-07-23T19:29:18.6229148Z GOHOSTOS='linux' -2025-07-23T19:29:18.6229339Z GOINSECURE='' -2025-07-23T19:29:18.6229550Z GOMODCACHE='/home/runner/go/pkg/mod' -2025-07-23T19:29:18.6229801Z GONOPROXY='' -2025-07-23T19:29:18.6229973Z GONOSUMDB='' -2025-07-23T19:29:18.6230145Z GOOS='linux' -2025-07-23T19:29:18.6230327Z GOPATH='/home/runner/go' -2025-07-23T19:29:18.6230537Z GOPRIVATE='' -2025-07-23T19:29:18.6230793Z GOPROXY='https://proxy.golang.org,direct' -2025-07-23T19:29:18.6231130Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' -2025-07-23T19:29:18.6231397Z GOSUMDB='sum.golang.org' -2025-07-23T19:29:18.6231629Z GOTMPDIR='' -2025-07-23T19:29:18.6231806Z GOTOOLCHAIN='auto' -2025-07-23T19:29:18.6232428Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' -2025-07-23T19:29:18.6232761Z GOVCS='' -2025-07-23T19:29:18.6232940Z GOVERSION='go1.23.9' -2025-07-23T19:29:18.6233129Z GODEBUG='' -2025-07-23T19:29:18.6233303Z GOTELEMETRY='local' -2025-07-23T19:29:18.6233561Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' -2025-07-23T19:29:18.6233837Z GCCGO='gccgo' -2025-07-23T19:29:18.6234013Z GOAMD64='v1' -2025-07-23T19:29:18.6234178Z AR='ar' -2025-07-23T19:29:18.6234343Z CC='gcc' -2025-07-23T19:29:18.6234499Z CXX='g++' -2025-07-23T19:29:18.6234658Z CGO_ENABLED='1' -2025-07-23T19:29:18.6235119Z GOMOD='/home/runner/work/coreth/coreth/go.mod' -2025-07-23T19:29:18.6235378Z GOWORK='' -2025-07-23T19:29:18.6235548Z CGO_CFLAGS='-O2 -g' -2025-07-23T19:29:18.6235736Z CGO_CPPFLAGS='' -2025-07-23T19:29:18.6235922Z CGO_CXXFLAGS='-O2 -g' -2025-07-23T19:29:18.6236112Z CGO_FFLAGS='-O2 -g' -2025-07-23T19:29:18.6236306Z CGO_LDFLAGS='-O2 -g' -2025-07-23T19:29:18.6236510Z PKG_CONFIG='pkg-config' -2025-07-23T19:29:18.6237168Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build2693634516=/tmp/go-build -gno-record-gcc-switches' -2025-07-23T19:29:18.6237694Z -2025-07-23T19:29:18.6237998Z ##[endgroup] diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/6_Run go mod download.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/6_Run go mod download.txt deleted file mode 100644 index 841d68fbc4..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/6_Run go mod download.txt +++ /dev/null @@ -1,4 +0,0 @@ -2025-07-23T19:29:18.6422919Z ##[group]Run go mod download -2025-07-23T19:29:18.6423284Z go mod download -2025-07-23T19:29:18.6461440Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:18.6461715Z ##[endgroup] diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/7_Check generated codec files are up to date.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/7_Check generated codec files are up to date.txt deleted file mode 100644 index e83776e0b1..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/7_Check generated codec files are up to date.txt +++ /dev/null @@ -1,10 +0,0 @@ -2025-07-23T19:29:18.7029691Z ##[group]Run ./scripts/run_task.sh check-generate-codec -2025-07-23T19:29:18.7030157Z ./scripts/run_task.sh check-generate-codec -2025-07-23T19:29:18.7063515Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:18.7063769Z ##[endgroup] -2025-07-23T19:29:19.2466785Z task: [generate-codec] grep -lr -E '^// Code generated by github\.com\/fjl\/gencodec\. DO NOT EDIT\.$' . | xargs -r rm -2025-07-23T19:29:19.2629465Z task: [generate-codec] go generate -run "github.com/fjl/gencodec" ./... -2025-07-23T19:29:27.5745114Z task: [check-clean-branch] git add --all -2025-07-23T19:29:27.5813004Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null -2025-07-23T19:29:27.5853241Z task: [check-clean-branch] git status --short -2025-07-23T19:29:27.5920019Z task: [check-clean-branch] git diff-index --quiet HEAD diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/8_Check generated mocks are up to date.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/8_Check generated mocks are up to date.txt deleted file mode 100644 index 2d8cb01bea..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/8_Check generated mocks are up to date.txt +++ /dev/null @@ -1,10 +0,0 @@ -2025-07-23T19:29:27.6041180Z ##[group]Run ./scripts/run_task.sh check-generate-mocks -2025-07-23T19:29:27.6041594Z ./scripts/run_task.sh check-generate-mocks -2025-07-23T19:29:27.6075414Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:27.6075656Z ##[endgroup] -2025-07-23T19:29:27.9946551Z task: [generate-mocks] grep -lr -E '^// Code generated by MockGen\. DO NOT EDIT\.$' . | xargs -r rm -2025-07-23T19:29:28.0095299Z task: [generate-mocks] go generate -run "go.uber.org/mock/mockgen" ./... -2025-07-23T19:29:35.7047562Z task: [check-clean-branch] git add --all -2025-07-23T19:29:35.7114202Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null -2025-07-23T19:29:35.7162752Z task: [check-clean-branch] git status --short -2025-07-23T19:29:35.7230147Z task: [check-clean-branch] git diff-index --quiet HEAD diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/9_Run ._scripts_run_task.sh build.txt b/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/9_Run ._scripts_run_task.sh build.txt deleted file mode 100644 index 1d0ab896ee..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-22.04)/9_Run ._scripts_run_task.sh build.txt +++ /dev/null @@ -1,7 +0,0 @@ -2025-07-23T19:29:35.7358668Z ##[group]Run ./scripts/run_task.sh build -2025-07-23T19:29:35.7359002Z ./scripts/run_task.sh build -2025-07-23T19:29:35.7392110Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:35.7392352Z ##[endgroup] -2025-07-23T19:29:36.1297226Z task: [build] ./scripts/build.sh -2025-07-23T19:29:36.1494602Z Using branch: d85ec03 -2025-07-23T19:29:36.1512124Z Building Coreth @ GitCommit: d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 at /home/runner/.avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/10_Run ._scripts_run_task.sh build-test.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/10_Run ._scripts_run_task.sh build-test.txt deleted file mode 100644 index ae5e980191..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/10_Run ._scripts_run_task.sh build-test.txt +++ /dev/null @@ -1,13 +0,0 @@ -2025-07-23T19:29:58.0660319Z ##[group]Run ./scripts/run_task.sh build-test -2025-07-23T19:29:58.0660670Z ./scripts/run_task.sh build-test -2025-07-23T19:29:58.0687865Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:58.0688312Z env: -2025-07-23T19:29:58.0688533Z TIMEOUT: -2025-07-23T19:29:58.0688701Z ##[endgroup] -2025-07-23T19:29:58.4778584Z task: [build-test] ./scripts/build_test.sh -2025-07-23T19:29:58.4899311Z Using branch: d85ec03 -2025-07-23T19:29:58.8779040Z Test run 1 of 4 -2025-07-23T19:29:58.8779454Z Getting expected test list... -2025-07-23T19:30:07.3925218Z Expected tests: 1 tests -2025-07-23T19:30:07.3925737Z Running tests... -2025-07-23T19:39:13.6360009Z All tests passed! diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/11_Run ._scripts_run_task.sh coverage.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/11_Run ._scripts_run_task.sh coverage.txt deleted file mode 100644 index 87aa922283..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/11_Run ._scripts_run_task.sh coverage.txt +++ /dev/null @@ -1,2929 +0,0 @@ -2025-07-23T19:39:13.6480543Z ##[group]Run ./scripts/run_task.sh coverage -2025-07-23T19:39:13.6480879Z ./scripts/run_task.sh coverage -2025-07-23T19:39:13.6530833Z shell: /usr/bin/bash -e {0} -2025-07-23T19:39:13.6531063Z ##[endgroup] -2025-07-23T19:39:14.4956621Z task: [coverage] ./scripts/coverage.sh -2025-07-23T19:39:14.9509355Z Current test coverage : 0.0 -2025-07-23T19:39:14.9510013Z 60.0 % -2025-07-23T19:39:14.9510743Z ======================================== -2025-07-23T19:39:15.3914544Z github.com/ava-labs/coreth/accounts/abi/abi.go:59: JSON 100.0% -2025-07-23T19:39:15.3915388Z github.com/ava-labs/coreth/accounts/abi/abi.go:74: Pack 91.7% -2025-07-23T19:39:15.3916218Z github.com/ava-labs/coreth/accounts/abi/abi.go:103: PackEvent 81.8% -2025-07-23T19:39:15.3917071Z github.com/ava-labs/coreth/accounts/abi/abi.go:147: PackOutput 71.4% -2025-07-23T19:39:15.3917974Z github.com/ava-labs/coreth/accounts/abi/abi.go:162: getInputs 80.0% -2025-07-23T19:39:15.3918859Z github.com/ava-labs/coreth/accounts/abi/abi.go:182: getArguments 90.0% -2025-07-23T19:39:15.3919431Z github.com/ava-labs/coreth/accounts/abi/abi.go:205: UnpackInput 0.0% -2025-07-23T19:39:15.3920140Z github.com/ava-labs/coreth/accounts/abi/abi.go:214: Unpack 75.0% -2025-07-23T19:39:15.3921099Z github.com/ava-labs/coreth/accounts/abi/abi.go:228: UnpackInputIntoInterface 85.7% -2025-07-23T19:39:15.3922194Z github.com/ava-labs/coreth/accounts/abi/abi.go:243: UnpackIntoInterface 85.7% -2025-07-23T19:39:15.3923159Z github.com/ava-labs/coreth/accounts/abi/abi.go:256: UnpackIntoMap 100.0% -2025-07-23T19:39:15.3924114Z github.com/ava-labs/coreth/accounts/abi/abi.go:265: UnmarshalJSON 85.7% -2025-07-23T19:39:15.3925007Z github.com/ava-labs/coreth/accounts/abi/abi.go:330: MethodById 100.0% -2025-07-23T19:39:15.3925878Z github.com/ava-labs/coreth/accounts/abi/abi.go:344: EventByID 100.0% -2025-07-23T19:39:15.3926733Z github.com/ava-labs/coreth/accounts/abi/abi.go:355: ErrorByID 100.0% -2025-07-23T19:39:15.3927596Z github.com/ava-labs/coreth/accounts/abi/abi.go:365: HasFallback 100.0% -2025-07-23T19:39:15.3928626Z github.com/ava-labs/coreth/accounts/abi/abi.go:370: HasReceive 100.0% -2025-07-23T19:39:15.3929473Z github.com/ava-labs/coreth/accounts/abi/abi.go:402: UnpackRevert 81.8% -2025-07-23T19:39:15.3930953Z github.com/ava-labs/coreth/accounts/abi/argument.go:57: UnmarshalJSON 90.0% -2025-07-23T19:39:15.3931896Z github.com/ava-labs/coreth/accounts/abi/argument.go:75: NonIndexed 100.0% -2025-07-23T19:39:15.3932753Z github.com/ava-labs/coreth/accounts/abi/argument.go:86: isTuple 100.0% -2025-07-23T19:39:15.3933573Z github.com/ava-labs/coreth/accounts/abi/argument.go:91: Unpack 100.0% -2025-07-23T19:39:15.3934452Z github.com/ava-labs/coreth/accounts/abi/argument.go:102: UnpackIntoMap 58.3% -2025-07-23T19:39:15.3935348Z github.com/ava-labs/coreth/accounts/abi/argument.go:124: Copy 77.8% -2025-07-23T19:39:15.3936633Z github.com/ava-labs/coreth/accounts/abi/argument.go:142: copyAtomic 100.0% -2025-07-23T19:39:15.3937501Z github.com/ava-labs/coreth/accounts/abi/argument.go:153: copyTuple 95.7% -2025-07-23T19:39:15.3938594Z github.com/ava-labs/coreth/accounts/abi/argument.go:195: UnpackValues 100.0% -2025-07-23T19:39:15.3939521Z github.com/ava-labs/coreth/accounts/abi/argument.go:228: PackValues 0.0% -2025-07-23T19:39:15.3940333Z github.com/ava-labs/coreth/accounts/abi/argument.go:233: Pack 100.0% -2025-07-23T19:39:15.3941239Z github.com/ava-labs/coreth/accounts/abi/argument.go:276: ToCamelCase 100.0% -2025-07-23T19:39:15.3942096Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:56: NewTransactor 0.0% -2025-07-23T19:39:15.3943056Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:73: NewKeyStoreTransactor 0.0% -2025-07-23T19:39:15.3944118Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:96: NewKeyedTransactor 0.0% -2025-07-23T19:39:15.3945153Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:118: NewTransactorWithChainID 0.0% -2025-07-23T19:39:15.3946755Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:132: NewKeyStoreTransactorWithChainID 0.0% -2025-07-23T19:39:15.3947980Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:155: NewKeyedTransactorWithChainID 72.7% -2025-07-23T19:39:15.3949244Z github.com/ava-labs/coreth/accounts/abi/bind/auth.go:179: NewClefTransactor 0.0% -2025-07-23T19:39:15.3950321Z github.com/ava-labs/coreth/accounts/abi/bind/backends/simulated.go:67: Fork 0.0% -2025-07-23T19:39:15.3951401Z github.com/ava-labs/coreth/accounts/abi/bind/backends/simulated.go:78: NewSimulatedBackend 0.0% -2025-07-23T19:39:15.3951993Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:128: GetAbi 0.0% -2025-07-23T19:39:15.3952521Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:155: NewBoundContract 100.0% -2025-07-23T19:39:15.3953079Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:167: DeployContract 77.8% -2025-07-23T19:39:15.3953597Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:187: Call 100.0% -2025-07-23T19:39:15.3954090Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:265: Transact 75.0% -2025-07-23T19:39:15.3954595Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:278: RawTransact 0.0% -2025-07-23T19:39:15.3955109Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:286: Transfer 0.0% -2025-07-23T19:39:15.3955647Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:294: wrapNativeAssetCall 83.3% -2025-07-23T19:39:15.3956212Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:324: createDynamicTx 84.0% -2025-07-23T19:39:15.3956770Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:376: createLegacyTx 81.8% -2025-07-23T19:39:15.3957309Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:419: estimateGasLimit 71.4% -2025-07-23T19:39:15.3957840Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:440: getNonce 75.0% -2025-07-23T19:39:15.3958688Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:451: transact 66.7% -2025-07-23T19:39:15.3959611Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:502: FilterLogs 0.0% -2025-07-23T19:39:15.3960513Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:551: WatchLogs 0.0% -2025-07-23T19:39:15.3961383Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:581: UnpackLog 0.0% -2025-07-23T19:39:15.3962301Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:604: UnpackLogIntoMap 83.3% -2025-07-23T19:39:15.3963018Z github.com/ava-labs/coreth/accounts/abi/bind/base.go:628: ensureContext 100.0% -2025-07-23T19:39:15.3963541Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:54: isKeyWord 100.0% -2025-07-23T19:39:15.3964024Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:95: Bind 92.2% -2025-07-23T19:39:15.3964541Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:323: bindBasicTypeGo 100.0% -2025-07-23T19:39:15.3965263Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:349: bindTypeGo 100.0% -2025-07-23T19:39:15.3966162Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:370: bindTopicTypeGo 100.0% -2025-07-23T19:39:15.3967443Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:394: bindStructTypeGo 100.0% -2025-07-23T19:39:15.3968021Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:445: alias 100.0% -2025-07-23T19:39:15.3968930Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:462: decapitalise 75.0% -2025-07-23T19:39:15.3969543Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:473: structured 100.0% -2025-07-23T19:39:15.3970081Z github.com/ava-labs/coreth/accounts/abi/bind/bind.go:496: hasStruct 100.0% -2025-07-23T19:39:15.3970586Z github.com/ava-labs/coreth/accounts/abi/bind/util.go:43: WaitMined 91.7% -2025-07-23T19:39:15.3971090Z github.com/ava-labs/coreth/accounts/abi/bind/util.go:71: WaitDeployed 90.9% -2025-07-23T19:39:15.3971590Z github.com/ava-labs/coreth/accounts/abi/error.go:54: NewError 92.9% -2025-07-23T19:39:15.3972232Z github.com/ava-labs/coreth/accounts/abi/error.go:91: String 100.0% -2025-07-23T19:39:15.3972693Z github.com/ava-labs/coreth/accounts/abi/error.go:95: Unpack 0.0% -2025-07-23T19:39:15.3973219Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:50: formatSliceString 66.7% -2025-07-23T19:39:15.3973799Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:59: sliceTypeCheck 90.0% -2025-07-23T19:39:15.3974344Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:82: typeCheck 100.0% -2025-07-23T19:39:15.3974874Z github.com/ava-labs/coreth/accounts/abi/error_handling.go:98: typeErr 100.0% -2025-07-23T19:39:15.3975374Z github.com/ava-labs/coreth/accounts/abi/event.go:73: NewEvent 100.0% -2025-07-23T19:39:15.3975844Z github.com/ava-labs/coreth/accounts/abi/event.go:112: String 100.0% -2025-07-23T19:39:15.3976330Z github.com/ava-labs/coreth/accounts/abi/method.go:105: NewMethod 100.0% -2025-07-23T19:39:15.3976957Z github.com/ava-labs/coreth/accounts/abi/method.go:164: String 100.0% -2025-07-23T19:39:15.3977487Z github.com/ava-labs/coreth/accounts/abi/method.go:169: IsConstant 0.0% -2025-07-23T19:39:15.3978053Z github.com/ava-labs/coreth/accounts/abi/method.go:175: IsPayable 0.0% -2025-07-23T19:39:15.3978796Z github.com/ava-labs/coreth/accounts/abi/pack.go:42: packBytesSlice 100.0% -2025-07-23T19:39:15.3979404Z github.com/ava-labs/coreth/accounts/abi/pack.go:49: packElement 83.3% -2025-07-23T19:39:15.3979967Z github.com/ava-labs/coreth/accounts/abi/pack.go:85: packNum 80.0% -2025-07-23T19:39:15.3980478Z github.com/ava-labs/coreth/accounts/abi/reflect.go:52: ConvertType 83.3% -2025-07-23T19:39:15.3981073Z github.com/ava-labs/coreth/accounts/abi/reflect.go:66: indirect 100.0% -2025-07-23T19:39:15.3981690Z github.com/ava-labs/coreth/accounts/abi/reflect.go:75: reflectIntType 100.0% -2025-07-23T19:39:15.3982294Z github.com/ava-labs/coreth/accounts/abi/reflect.go:103: mustArrayToByteSlice 100.0% -2025-07-23T19:39:15.3982880Z github.com/ava-labs/coreth/accounts/abi/reflect.go:113: set 100.0% -2025-07-23T19:39:15.3983448Z github.com/ava-labs/coreth/accounts/abi/reflect.go:137: setSlice 75.0% -2025-07-23T19:39:15.3984018Z github.com/ava-labs/coreth/accounts/abi/reflect.go:151: setArray 84.6% -2025-07-23T19:39:15.3984502Z github.com/ava-labs/coreth/accounts/abi/reflect.go:172: setStruct 75.0% -2025-07-23T19:39:15.3985153Z github.com/ava-labs/coreth/accounts/abi/reflect.go:195: mapArgNamesToStructFields 100.0% -2025-07-23T19:39:15.3985793Z github.com/ava-labs/coreth/accounts/abi/topics.go:45: packTopic 96.4% -2025-07-23T19:39:15.3986330Z github.com/ava-labs/coreth/accounts/abi/topics.go:111: PackTopics 85.7% -2025-07-23T19:39:15.3986866Z github.com/ava-labs/coreth/accounts/abi/topics.go:125: MakeTopics 87.5% -2025-07-23T19:39:15.3987631Z github.com/ava-labs/coreth/accounts/abi/topics.go:139: genIntType 100.0% -2025-07-23T19:39:15.3988466Z github.com/ava-labs/coreth/accounts/abi/topics.go:153: ParseTopics 100.0% -2025-07-23T19:39:15.3989114Z github.com/ava-labs/coreth/accounts/abi/topics.go:162: ParseTopicsIntoMap 100.0% -2025-07-23T19:39:15.3989788Z github.com/ava-labs/coreth/accounts/abi/topics.go:174: parseTopicWithSetter 95.0% -2025-07-23T19:39:15.3990335Z github.com/ava-labs/coreth/accounts/abi/type.go:81: NewType 93.1% -2025-07-23T19:39:15.3990876Z github.com/ava-labs/coreth/accounts/abi/type.go:239: GetType 80.0% -2025-07-23T19:39:15.3991429Z github.com/ava-labs/coreth/accounts/abi/type.go:275: String 100.0% -2025-07-23T19:39:15.3991892Z github.com/ava-labs/coreth/accounts/abi/type.go:279: pack 90.9% -2025-07-23T19:39:15.3992498Z github.com/ava-labs/coreth/accounts/abi/type.go:362: requiresLengthPrefix 100.0% -2025-07-23T19:39:15.3993149Z github.com/ava-labs/coreth/accounts/abi/type.go:373: isDynamicType 100.0% -2025-07-23T19:39:15.3993907Z github.com/ava-labs/coreth/accounts/abi/type.go:393: getTypeSize 100.0% -2025-07-23T19:39:15.3994444Z github.com/ava-labs/coreth/accounts/abi/type.go:412: isLetter 100.0% -2025-07-23T19:39:15.3995003Z github.com/ava-labs/coreth/accounts/abi/type.go:423: isValidFieldName 66.7% -2025-07-23T19:39:15.3995611Z github.com/ava-labs/coreth/accounts/abi/unpack.go:49: ReadInteger 100.0% -2025-07-23T19:39:15.3996205Z github.com/ava-labs/coreth/accounts/abi/unpack.go:119: readBool 100.0% -2025-07-23T19:39:15.3996721Z github.com/ava-labs/coreth/accounts/abi/unpack.go:138: readFunctionType 66.7% -2025-07-23T19:39:15.3997356Z github.com/ava-labs/coreth/accounts/abi/unpack.go:151: ReadFixedBytes 80.0% -2025-07-23T19:39:15.3997963Z github.com/ava-labs/coreth/accounts/abi/unpack.go:163: forEachUnpack 81.2% -2025-07-23T19:39:15.3998764Z github.com/ava-labs/coreth/accounts/abi/unpack.go:203: forTupleUnpack 83.3% -2025-07-23T19:39:15.3999372Z github.com/ava-labs/coreth/accounts/abi/unpack.go:235: toGoType 83.9% -2025-07-23T19:39:15.4000016Z github.com/ava-labs/coreth/accounts/abi/unpack.go:299: lengthPrefixPointsTo 94.1% -2025-07-23T19:39:15.4000570Z github.com/ava-labs/coreth/accounts/abi/unpack.go:329: tuplePointsTo 71.4% -2025-07-23T19:39:15.4001216Z github.com/ava-labs/coreth/accounts/abi/utils.go:43: ResolveNameConflict 100.0% -2025-07-23T19:39:15.4001819Z github.com/ava-labs/coreth/cmd/abigen/main.go:90: init 100.0% -2025-07-23T19:39:15.4002295Z github.com/ava-labs/coreth/cmd/abigen/main.go:106: abigen 0.0% -2025-07-23T19:39:15.4002785Z github.com/ava-labs/coreth/cmd/abigen/main.go:245: main 0.0% -2025-07-23T19:39:15.4003371Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:24: newNameFilter 100.0% -2025-07-23T19:39:15.4004227Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:38: add 100.0% -2025-07-23T19:39:15.4005068Z github.com/ava-labs/coreth/cmd/abigen/namefilter.go:57: Matches 100.0% -2025-07-23T19:39:15.4006016Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:53: BuildConfig 0.0% -2025-07-23T19:39:15.4007000Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:86: BuildViper 0.0% -2025-07-23T19:39:15.4007986Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:109: BuildFlagSet 0.0% -2025-07-23T19:39:15.4009574Z github.com/ava-labs/coreth/cmd/simulator/config/flags.go:115: addSimulatorFlags 0.0% -2025-07-23T19:39:15.4010546Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:22: CreateKey 0.0% -2025-07-23T19:39:15.4011347Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:27: Load 0.0% -2025-07-23T19:39:15.4012149Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:36: LoadAll 0.0% -2025-07-23T19:39:15.4012939Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:73: Save 0.0% -2025-07-23T19:39:15.4013914Z github.com/ava-labs/coreth/cmd/simulator/key/key.go:79: Generate 0.0% -2025-07-23T19:39:15.4014863Z github.com/ava-labs/coreth/cmd/simulator/load/funder.go:25: DistributeFunds 0.0% -2025-07-23T19:39:15.4015796Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:46: New 0.0% -2025-07-23T19:39:15.4016678Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:60: Execute 0.0% -2025-07-23T19:39:15.4017622Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:89: ConfirmReachedTip 0.0% -2025-07-23T19:39:15.4018692Z github.com/ava-labs/coreth/cmd/simulator/load/loader.go:125: ExecuteLoader 0.0% -2025-07-23T19:39:15.4019699Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:30: NewSingleAddressTxWorker 0.0% -2025-07-23T19:39:15.4020660Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:50: NewTxReceiptWorker 0.0% -2025-07-23T19:39:15.4021583Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:67: IssueTx 0.0% -2025-07-23T19:39:15.4022387Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:71: ConfirmTx 0.0% -2025-07-23T19:39:15.4023097Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:78: confirmTxByNonce 0.0% -2025-07-23T19:39:15.4023674Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:103: confirmTxByReceipt 0.0% -2025-07-23T19:39:15.4024244Z github.com/ava-labs/coreth/cmd/simulator/load/worker.go:120: LatestHeight 0.0% -2025-07-23T19:39:15.4024953Z github.com/ava-labs/coreth/cmd/simulator/main/main.go:19: main 0.0% -2025-07-23T19:39:15.4025927Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:29: NewDefaultMetrics 0.0% -2025-07-23T19:39:15.4026965Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:35: NewMetrics 0.0% -2025-07-23T19:39:15.4027940Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:68: Serve 0.0% -2025-07-23T19:39:15.4028984Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:106: Shutdown 0.0% -2025-07-23T19:39:15.4029543Z github.com/ava-labs/coreth/cmd/simulator/metrics/metrics.go:111: Print 0.0% -2025-07-23T19:39:15.4030086Z github.com/ava-labs/coreth/cmd/simulator/txs/agent.go:51: NewIssueNAgent 0.0% -2025-07-23T19:39:15.4030601Z github.com/ava-labs/coreth/cmd/simulator/txs/agent.go:61: Execute 0.0% -2025-07-23T19:39:15.4031149Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:20: GenerateTxSequence 0.0% -2025-07-23T19:39:15.4031761Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:43: GenerateTxSequences 0.0% -2025-07-23T19:39:15.4032332Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:55: addTxs 0.0% -2025-07-23T19:39:15.4032934Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:76: ConvertTxSliceToSequence 0.0% -2025-07-23T19:39:15.4033518Z github.com/ava-labs/coreth/cmd/simulator/txs/tx_generator.go:88: Chan 0.0% -2025-07-23T19:39:15.4033994Z github.com/ava-labs/coreth/cmd/utils/cmd.go:33: Fatalf 0.0% -2025-07-23T19:39:15.4034461Z github.com/ava-labs/coreth/cmd/utils/flags.go:33: CheckExclusive 0.0% -2025-07-23T19:39:15.4034985Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:81: NewDummyEngine 0.0% -2025-07-23T19:39:15.4035525Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:95: NewETHFaker 0.0% -2025-07-23T19:39:15.4036051Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:102: NewFaker 100.0% -2025-07-23T19:39:15.4036607Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:108: NewFakerWithClock 0.0% -2025-07-23T19:39:15.4037206Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:115: NewFakerWithCallbacks 0.0% -2025-07-23T19:39:15.4037789Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:122: NewFakerWithMode 0.0% -2025-07-23T19:39:15.4038618Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:130: NewFakerWithModeAndClock 0.0% -2025-07-23T19:39:15.4039223Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:137: NewCoinbaseFaker 0.0% -2025-07-23T19:39:15.4039946Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:144: NewFullFaker 0.0% -2025-07-23T19:39:15.4040521Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:151: verifyHeaderGasFields 0.0% -2025-07-23T19:39:15.4041098Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:203: verifyHeader 0.0% -2025-07-23T19:39:15.4041623Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:263: Author 0.0% -2025-07-23T19:39:15.4042141Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:267: VerifyHeader 0.0% -2025-07-23T19:39:15.4042671Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:285: VerifyUncles 0.0% -2025-07-23T19:39:15.4043198Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:292: Prepare 0.0% -2025-07-23T19:39:15.4043738Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:297: verifyBlockFee 81.0% -2025-07-23T19:39:15.4044275Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:367: Finalize 0.0% -2025-07-23T19:39:15.4044941Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:419: FinalizeAndAssemble 0.0% -2025-07-23T19:39:15.4045521Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:477: CalcDifficulty 0.0% -2025-07-23T19:39:15.4046052Z github.com/ava-labs/coreth/consensus/dummy/consensus.go:481: Close 0.0% -2025-07-23T19:39:15.4046609Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:47: VerifyEIP4844Header 0.0% -2025-07-23T19:39:15.4047218Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:81: CalcExcessBlobGas 100.0% -2025-07-23T19:39:15.4047804Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:90: CalcBlobFee 100.0% -2025-07-23T19:39:15.4048725Z github.com/ava-labs/coreth/consensus/misc/eip4844/eip4844.go:96: fakeExponential 100.0% -2025-07-23T19:39:15.4049306Z github.com/ava-labs/coreth/core/block_validator.go:53: NewBlockValidator 100.0% -2025-07-23T19:39:15.4049832Z github.com/ava-labs/coreth/core/block_validator.go:65: ValidateBody 62.5% -2025-07-23T19:39:15.4050352Z github.com/ava-labs/coreth/core/block_validator.go:122: ValidateState 66.7% -2025-07-23T19:39:15.4050855Z github.com/ava-labs/coreth/core/block_validator.go:150: CalcGasLimit 85.7% -2025-07-23T19:39:15.4051351Z github.com/ava-labs/coreth/core/blockchain.go:210: triedbConfig 90.0% -2025-07-23T19:39:15.4051891Z github.com/ava-labs/coreth/core/blockchain.go:260: DefaultCacheConfigWithScheme 100.0% -2025-07-23T19:39:15.4052427Z github.com/ava-labs/coreth/core/blockchain.go:385: NewBlockChain 81.8% -2025-07-23T19:39:15.4052991Z github.com/ava-labs/coreth/core/blockchain.go:507: writeBlockAcceptedIndices 66.7% -2025-07-23T19:39:15.4053554Z github.com/ava-labs/coreth/core/blockchain.go:518: batchBlockAcceptedIndices 80.0% -2025-07-23T19:39:15.4054083Z github.com/ava-labs/coreth/core/blockchain.go:529: flattenSnapshot 87.5% -2025-07-23T19:39:15.4054600Z github.com/ava-labs/coreth/core/blockchain.go:558: warmAcceptedCaches 84.2% -2025-07-23T19:39:15.4055104Z github.com/ava-labs/coreth/core/blockchain.go:595: startAcceptor 92.0% -2025-07-23T19:39:15.4055602Z github.com/ava-labs/coreth/core/blockchain.go:646: addAcceptorQueue 100.0% -2025-07-23T19:39:15.4056105Z github.com/ava-labs/coreth/core/blockchain.go:663: DrainAcceptorQueue 80.0% -2025-07-23T19:39:15.4056607Z github.com/ava-labs/coreth/core/blockchain.go:677: stopAcceptor 100.0% -2025-07-23T19:39:15.4057113Z github.com/ava-labs/coreth/core/blockchain.go:699: InitializeSnapshots 0.0% -2025-07-23T19:39:15.4057606Z github.com/ava-labs/coreth/core/blockchain.go:708: SenderCacher 0.0% -2025-07-23T19:39:15.4058089Z github.com/ava-labs/coreth/core/blockchain.go:714: loadLastState 81.8% -2025-07-23T19:39:15.4058776Z github.com/ava-labs/coreth/core/blockchain.go:762: loadGenesisState 90.0% -2025-07-23T19:39:15.4059396Z github.com/ava-labs/coreth/core/blockchain.go:780: Export 0.0% -2025-07-23T19:39:15.4059852Z github.com/ava-labs/coreth/core/blockchain.go:785: ExportN 0.0% -2025-07-23T19:39:15.4060326Z github.com/ava-labs/coreth/core/blockchain.go:792: ExportCallback 0.0% -2025-07-23T19:39:15.4060817Z github.com/ava-labs/coreth/core/blockchain.go:828: writeHeadBlock 87.5% -2025-07-23T19:39:15.4061338Z github.com/ava-labs/coreth/core/blockchain.go:847: ValidateCanonicalChain 66.7% -2025-07-23T19:39:15.4061865Z github.com/ava-labs/coreth/core/blockchain.go:956: stopWithoutSaving 100.0% -2025-07-23T19:39:15.4062342Z github.com/ava-labs/coreth/core/blockchain.go:988: Stop 100.0% -2025-07-23T19:39:15.4062811Z github.com/ava-labs/coreth/core/blockchain.go:1022: SetPreference 100.0% -2025-07-23T19:39:15.4063298Z github.com/ava-labs/coreth/core/blockchain.go:1034: setPreference 87.5% -2025-07-23T19:39:15.4063841Z github.com/ava-labs/coreth/core/blockchain.go:1060: LastConsensusAcceptedBlock 100.0% -2025-07-23T19:39:15.4064406Z github.com/ava-labs/coreth/core/blockchain.go:1071: LastAcceptedBlock 100.0% -2025-07-23T19:39:15.4065014Z github.com/ava-labs/coreth/core/blockchain.go:1083: Accept 84.6% -2025-07-23T19:39:15.4065465Z github.com/ava-labs/coreth/core/blockchain.go:1132: Reject 76.9% -2025-07-23T19:39:15.4065949Z github.com/ava-labs/coreth/core/blockchain.go:1162: writeKnownBlock 83.3% -2025-07-23T19:39:15.4066500Z github.com/ava-labs/coreth/core/blockchain.go:1175: writeCanonicalBlockWithLogs 100.0% -2025-07-23T19:39:15.4067026Z github.com/ava-labs/coreth/core/blockchain.go:1186: newTip 100.0% -2025-07-23T19:39:15.4067525Z github.com/ava-labs/coreth/core/blockchain.go:1195: writeBlockAndSetHead 83.3% -2025-07-23T19:39:15.4068065Z github.com/ava-labs/coreth/core/blockchain.go:1213: writeBlockWithState 61.1% -2025-07-23T19:39:15.4069005Z github.com/ava-labs/coreth/core/blockchain.go:1260: InsertChain 86.7% -2025-07-23T19:39:15.4069501Z github.com/ava-labs/coreth/core/blockchain.go:1296: InsertBlock 100.0% -2025-07-23T19:39:15.4070015Z github.com/ava-labs/coreth/core/blockchain.go:1300: InsertBlockManual 100.0% -2025-07-23T19:39:15.4070510Z github.com/ava-labs/coreth/core/blockchain.go:1311: insertBlock 88.7% -2025-07-23T19:39:15.4071025Z github.com/ava-labs/coreth/core/blockchain.go:1448: collectUnflattenedLogs 81.2% -2025-07-23T19:39:15.4071540Z github.com/ava-labs/coreth/core/blockchain.go:1477: collectLogs 100.0% -2025-07-23T19:39:15.4072005Z github.com/ava-labs/coreth/core/blockchain.go:1485: reorg 67.2% -2025-07-23T19:39:15.4072455Z github.com/ava-labs/coreth/core/blockchain.go:1642: String 75.0% -2025-07-23T19:39:15.4072904Z github.com/ava-labs/coreth/core/blockchain.go:1668: BadBlocks 0.0% -2025-07-23T19:39:15.4073374Z github.com/ava-labs/coreth/core/blockchain.go:1681: addBadBlock 100.0% -2025-07-23T19:39:15.4073854Z github.com/ava-labs/coreth/core/blockchain.go:1689: reportBlock 100.0% -2025-07-23T19:39:15.4074348Z github.com/ava-labs/coreth/core/blockchain.go:1705: reprocessBlock 77.8% -2025-07-23T19:39:15.4074847Z github.com/ava-labs/coreth/core/blockchain.go:1747: commitWithSnap 75.0% -2025-07-23T19:39:15.4075341Z github.com/ava-labs/coreth/core/blockchain.go:1783: initSnapshot 90.0% -2025-07-23T19:39:15.4075829Z github.com/ava-labs/coreth/core/blockchain.go:1814: reprocessState 83.1% -2025-07-23T19:39:15.4076332Z github.com/ava-labs/coreth/core/blockchain.go:1956: protectTrieIndex 60.0% -2025-07-23T19:39:15.4076856Z github.com/ava-labs/coreth/core/blockchain.go:1978: populateMissingTries 74.3% -2025-07-23T19:39:15.4077440Z github.com/ava-labs/coreth/core/blockchain.go:2059: CleanBlockRootsAboveLastAccepted 85.7% -2025-07-23T19:39:15.4078058Z github.com/ava-labs/coreth/core/blockchain.go:2102: gatherBlockRootsAboveLastAccepted 90.9% -2025-07-23T19:39:15.4078850Z github.com/ava-labs/coreth/core/blockchain.go:2132: ResetToStateSyncedBlock 0.0% -2025-07-23T19:39:15.4079517Z github.com/ava-labs/coreth/core/blockchain.go:2187: CacheConfig 100.0% -2025-07-23T19:39:15.4080029Z github.com/ava-labs/coreth/core/blockchain.go:2191: repairTxIndexTail 100.0% -2025-07-23T19:39:15.4080691Z github.com/ava-labs/coreth/core/blockchain_ext.go:15: getOrOverrideAsRegisteredCounter 83.3% -2025-07-23T19:39:15.4081295Z github.com/ava-labs/coreth/core/blockchain_iterator.go:60: newBlockChainIterator 85.0% -2025-07-23T19:39:15.4081871Z github.com/ava-labs/coreth/core/blockchain_iterator.go:120: populateReaders 88.9% -2025-07-23T19:39:15.4082392Z github.com/ava-labs/coreth/core/blockchain_iterator.go:139: Next 75.0% -2025-07-23T19:39:15.4082882Z github.com/ava-labs/coreth/core/blockchain_iterator.go:180: Stop 100.0% -2025-07-23T19:39:15.4083386Z github.com/ava-labs/coreth/core/blockchain_reader.go:45: CurrentHeader 100.0% -2025-07-23T19:39:15.4083904Z github.com/ava-labs/coreth/core/blockchain_reader.go:51: CurrentBlock 100.0% -2025-07-23T19:39:15.4084413Z github.com/ava-labs/coreth/core/blockchain_reader.go:57: HasHeader 100.0% -2025-07-23T19:39:15.4085042Z github.com/ava-labs/coreth/core/blockchain_reader.go:63: GetHeader 100.0% -2025-07-23T19:39:15.4085557Z github.com/ava-labs/coreth/core/blockchain_reader.go:69: GetHeaderByHash 100.0% -2025-07-23T19:39:15.4086098Z github.com/ava-labs/coreth/core/blockchain_reader.go:75: GetHeaderByNumber 100.0% -2025-07-23T19:39:15.4086609Z github.com/ava-labs/coreth/core/blockchain_reader.go:81: GetBody 0.0% -2025-07-23T19:39:15.4087087Z github.com/ava-labs/coreth/core/blockchain_reader.go:100: HasBlock 60.0% -2025-07-23T19:39:15.4087587Z github.com/ava-labs/coreth/core/blockchain_reader.go:111: HasFastBlock 0.0% -2025-07-23T19:39:15.4088087Z github.com/ava-labs/coreth/core/blockchain_reader.go:123: GetBlock 100.0% -2025-07-23T19:39:15.4088799Z github.com/ava-labs/coreth/core/blockchain_reader.go:138: GetBlockByHash 75.0% -2025-07-23T19:39:15.4089336Z github.com/ava-labs/coreth/core/blockchain_reader.go:148: GetBlockByNumber 100.0% -2025-07-23T19:39:15.4089886Z github.com/ava-labs/coreth/core/blockchain_reader.go:158: GetBlocksFromHash 0.0% -2025-07-23T19:39:15.4090427Z github.com/ava-labs/coreth/core/blockchain_reader.go:176: GetReceiptsByHash 76.9% -2025-07-23T19:39:15.4090964Z github.com/ava-labs/coreth/core/blockchain_reader.go:197: GetCanonicalHash 100.0% -2025-07-23T19:39:15.4091528Z github.com/ava-labs/coreth/core/blockchain_reader.go:211: GetTransactionLookup 87.5% -2025-07-23T19:39:15.4092072Z github.com/ava-labs/coreth/core/blockchain_reader.go:235: HasState 100.0% -2025-07-23T19:39:15.4092596Z github.com/ava-labs/coreth/core/blockchain_reader.go:242: HasBlockAndState 100.0% -2025-07-23T19:39:15.4093115Z github.com/ava-labs/coreth/core/blockchain_reader.go:252: State 100.0% -2025-07-23T19:39:15.4093610Z github.com/ava-labs/coreth/core/blockchain_reader.go:257: StateAt 100.0% -2025-07-23T19:39:15.4094106Z github.com/ava-labs/coreth/core/blockchain_reader.go:262: Config 100.0% -2025-07-23T19:39:15.4094598Z github.com/ava-labs/coreth/core/blockchain_reader.go:265: Engine 100.0% -2025-07-23T19:39:15.4095083Z github.com/ava-labs/coreth/core/blockchain_reader.go:268: Snapshots 0.0% -2025-07-23T19:39:15.4095568Z github.com/ava-labs/coreth/core/blockchain_reader.go:273: Validator 0.0% -2025-07-23T19:39:15.4096066Z github.com/ava-labs/coreth/core/blockchain_reader.go:278: Processor 0.0% -2025-07-23T19:39:15.4096555Z github.com/ava-labs/coreth/core/blockchain_reader.go:283: StateCache 0.0% -2025-07-23T19:39:15.4097043Z github.com/ava-labs/coreth/core/blockchain_reader.go:288: GasLimit 0.0% -2025-07-23T19:39:15.4097530Z github.com/ava-labs/coreth/core/blockchain_reader.go:293: Genesis 100.0% -2025-07-23T19:39:15.4098031Z github.com/ava-labs/coreth/core/blockchain_reader.go:298: GetVMConfig 0.0% -2025-07-23T19:39:15.4098927Z github.com/ava-labs/coreth/core/blockchain_reader.go:303: TrieDB 100.0% -2025-07-23T19:39:15.4099435Z github.com/ava-labs/coreth/core/blockchain_reader.go:308: HeaderChain 0.0% -2025-07-23T19:39:15.4099998Z github.com/ava-labs/coreth/core/blockchain_reader.go:313: SubscribeRemovedLogsEvent 0.0% -2025-07-23T19:39:15.4100585Z github.com/ava-labs/coreth/core/blockchain_reader.go:318: SubscribeChainEvent 0.0% -2025-07-23T19:39:15.4101169Z github.com/ava-labs/coreth/core/blockchain_reader.go:323: SubscribeChainHeadEvent 0.0% -2025-07-23T19:39:15.4101761Z github.com/ava-labs/coreth/core/blockchain_reader.go:328: SubscribeChainSideEvent 0.0% -2025-07-23T19:39:15.4102330Z github.com/ava-labs/coreth/core/blockchain_reader.go:333: SubscribeLogsEvent 0.0% -2025-07-23T19:39:15.4102935Z github.com/ava-labs/coreth/core/blockchain_reader.go:339: SubscribeBlockProcessingEvent 0.0% -2025-07-23T19:39:15.4103554Z github.com/ava-labs/coreth/core/blockchain_reader.go:344: SubscribeChainAcceptedEvent 100.0% -2025-07-23T19:39:15.4104178Z github.com/ava-labs/coreth/core/blockchain_reader.go:349: SubscribeAcceptedLogsEvent 100.0% -2025-07-23T19:39:15.4104928Z github.com/ava-labs/coreth/core/blockchain_reader.go:354: SubscribeAcceptedTransactionEvent 0.0% -2025-07-23T19:39:15.4105495Z github.com/ava-labs/coreth/core/blockchain_reader.go:359: GetLogs 0.0% -2025-07-23T19:39:15.4106000Z github.com/ava-labs/coreth/core/bloom_indexer.go:60: NewBloomIndexer 0.0% -2025-07-23T19:39:15.4106479Z github.com/ava-labs/coreth/core/bloom_indexer.go:72: Reset 0.0% -2025-07-23T19:39:15.4106939Z github.com/ava-labs/coreth/core/bloom_indexer.go:80: Process 0.0% -2025-07-23T19:39:15.4107403Z github.com/ava-labs/coreth/core/bloom_indexer.go:88: Commit 0.0% -2025-07-23T19:39:15.4107848Z github.com/ava-labs/coreth/core/bloom_indexer.go:101: Prune 0.0% -2025-07-23T19:39:15.4108506Z github.com/ava-labs/coreth/core/bloombits/generator.go:56: NewGenerator 83.3% -2025-07-23T19:39:15.4109047Z github.com/ava-labs/coreth/core/bloombits/generator.go:69: AddBloom 90.5% -2025-07-23T19:39:15.4109552Z github.com/ava-labs/coreth/core/bloombits/generator.go:101: Bitset 60.0% -2025-07-23T19:39:15.4110090Z github.com/ava-labs/coreth/core/bloombits/matcher.go:49: calcBloomIndexes 100.0% -2025-07-23T19:39:15.4110630Z github.com/ava-labs/coreth/core/bloombits/matcher.go:103: NewMatcher 100.0% -2025-07-23T19:39:15.4111144Z github.com/ava-labs/coreth/core/bloombits/matcher.go:148: addScheduler 100.0% -2025-07-23T19:39:15.4111646Z github.com/ava-labs/coreth/core/bloombits/matcher.go:158: Start 97.0% -2025-07-23T19:39:15.4112126Z github.com/ava-labs/coreth/core/bloombits/matcher.go:235: run 100.0% -2025-07-23T19:39:15.4112613Z github.com/ava-labs/coreth/core/bloombits/matcher.go:270: subMatch 98.3% -2025-07-23T19:39:15.4113117Z github.com/ava-labs/coreth/core/bloombits/matcher.go:392: distributor 100.0% -2025-07-23T19:39:15.4113629Z github.com/ava-labs/coreth/core/bloombits/matcher.go:534: Close 100.0% -2025-07-23T19:39:15.4114112Z github.com/ava-labs/coreth/core/bloombits/matcher.go:543: Error 0.0% -2025-07-23T19:39:15.4114639Z github.com/ava-labs/coreth/core/bloombits/matcher.go:553: allocateRetrieval 100.0% -2025-07-23T19:39:15.4115199Z github.com/ava-labs/coreth/core/bloombits/matcher.go:567: pendingSections 100.0% -2025-07-23T19:39:15.4115759Z github.com/ava-labs/coreth/core/bloombits/matcher.go:581: allocateSections 100.0% -2025-07-23T19:39:15.4116307Z github.com/ava-labs/coreth/core/bloombits/matcher.go:599: deliverSections 100.0% -2025-07-23T19:39:15.4116830Z github.com/ava-labs/coreth/core/bloombits/matcher.go:609: Multiplex 81.8% -2025-07-23T19:39:15.4117353Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:60: newScheduler 100.0% -2025-07-23T19:39:15.4117864Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:70: run 100.0% -2025-07-23T19:39:15.4118669Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:84: reset 100.0% -2025-07-23T19:39:15.4119201Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:98: scheduleRequests 100.0% -2025-07-23T19:39:15.4119785Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:145: scheduleDeliveries 100.0% -2025-07-23T19:39:15.4120342Z github.com/ava-labs/coreth/core/bloombits/scheduler.go:182: deliver 100.0% -2025-07-23T19:39:15.4120868Z github.com/ava-labs/coreth/core/bounded_buffer.go:21: NewBoundedBuffer 100.0% -2025-07-23T19:39:15.4121388Z github.com/ava-labs/coreth/core/bounded_buffer.go:32: Insert 90.0% -2025-07-23T19:39:15.4121845Z github.com/ava-labs/coreth/core/bounded_buffer.go:55: Last 100.0% -2025-07-23T19:39:15.4122331Z github.com/ava-labs/coreth/core/chain_indexer.go:115: NewChainIndexer 100.0% -2025-07-23T19:39:15.4122833Z github.com/ava-labs/coreth/core/chain_indexer.go:142: AddCheckpoint 0.0% -2025-07-23T19:39:15.4123310Z github.com/ava-labs/coreth/core/chain_indexer.go:160: Start 0.0% -2025-07-23T19:39:15.4123881Z github.com/ava-labs/coreth/core/chain_indexer.go:169: Close 58.8% -2025-07-23T19:39:15.4124341Z github.com/ava-labs/coreth/core/chain_indexer.go:209: eventLoop 0.0% -2025-07-23T19:39:15.4124805Z github.com/ava-labs/coreth/core/chain_indexer.go:255: newHead 78.1% -2025-07-23T19:39:15.4125274Z github.com/ava-labs/coreth/core/chain_indexer.go:316: updateLoop 95.2% -2025-07-23T19:39:15.4125773Z github.com/ava-labs/coreth/core/chain_indexer.go:400: processSection 68.4% -2025-07-23T19:39:15.4126275Z github.com/ava-labs/coreth/core/chain_indexer.go:434: verifyLastHead 75.0% -2025-07-23T19:39:15.4126762Z github.com/ava-labs/coreth/core/chain_indexer.go:446: Sections 100.0% -2025-07-23T19:39:15.4127254Z github.com/ava-labs/coreth/core/chain_indexer.go:455: AddChildIndexer 70.0% -2025-07-23T19:39:15.4127734Z github.com/ava-labs/coreth/core/chain_indexer.go:477: Prune 0.0% -2025-07-23T19:39:15.4128438Z github.com/ava-labs/coreth/core/chain_indexer.go:483: loadValidSections 66.7% -2025-07-23T19:39:15.4128983Z github.com/ava-labs/coreth/core/chain_indexer.go:491: setValidSections 100.0% -2025-07-23T19:39:15.4129490Z github.com/ava-labs/coreth/core/chain_indexer.go:507: SectionHead 100.0% -2025-07-23T19:39:15.4130002Z github.com/ava-labs/coreth/core/chain_indexer.go:520: setSectionHead 100.0% -2025-07-23T19:39:15.4130517Z github.com/ava-labs/coreth/core/chain_indexer.go:529: removeSectionHead 100.0% -2025-07-23T19:39:15.4131017Z github.com/ava-labs/coreth/core/chain_makers.go:68: SetCoinbase 50.0% -2025-07-23T19:39:15.4131479Z github.com/ava-labs/coreth/core/chain_makers.go:80: SetExtra 0.0% -2025-07-23T19:39:15.4131932Z github.com/ava-labs/coreth/core/chain_makers.go:85: AppendExtra 0.0% -2025-07-23T19:39:15.4132385Z github.com/ava-labs/coreth/core/chain_makers.go:90: SetNonce 0.0% -2025-07-23T19:39:15.4132859Z github.com/ava-labs/coreth/core/chain_makers.go:97: SetDifficulty 100.0% -2025-07-23T19:39:15.4133342Z github.com/ava-labs/coreth/core/chain_makers.go:102: Difficulty 0.0% -2025-07-23T19:39:15.4133845Z github.com/ava-labs/coreth/core/chain_makers.go:108: SetParentBeaconRoot 0.0% -2025-07-23T19:39:15.4134467Z github.com/ava-labs/coreth/core/chain_makers.go:124: addTx 90.9% -2025-07-23T19:39:15.4135010Z github.com/ava-labs/coreth/core/chain_makers.go:149: AddTx 100.0% -2025-07-23T19:39:15.4135735Z github.com/ava-labs/coreth/core/chain_makers.go:160: AddTxWithChain 0.0% -2025-07-23T19:39:15.4136376Z github.com/ava-labs/coreth/core/chain_makers.go:167: AddTxWithVMConfig 100.0% -2025-07-23T19:39:15.4137017Z github.com/ava-labs/coreth/core/chain_makers.go:172: GetBalance 0.0% -2025-07-23T19:39:15.4137608Z github.com/ava-labs/coreth/core/chain_makers.go:180: AddUncheckedTx 0.0% -2025-07-23T19:39:15.4138397Z github.com/ava-labs/coreth/core/chain_makers.go:185: Number 0.0% -2025-07-23T19:39:15.4139133Z github.com/ava-labs/coreth/core/chain_makers.go:190: Timestamp 100.0% -2025-07-23T19:39:15.4139727Z github.com/ava-labs/coreth/core/chain_makers.go:195: BaseFee 100.0% -2025-07-23T19:39:15.4140331Z github.com/ava-labs/coreth/core/chain_makers.go:200: Gas 0.0% -2025-07-23T19:39:15.4140865Z github.com/ava-labs/coreth/core/chain_makers.go:205: Signer 0.0% -2025-07-23T19:39:15.4141510Z github.com/ava-labs/coreth/core/chain_makers.go:214: AddUncheckedReceipt 0.0% -2025-07-23T19:39:15.4157424Z github.com/ava-labs/coreth/core/chain_makers.go:220: TxNonce 66.7% -2025-07-23T19:39:15.4158035Z github.com/ava-labs/coreth/core/chain_makers.go:228: AddUncle 100.0% -2025-07-23T19:39:15.4158800Z github.com/ava-labs/coreth/core/chain_makers.go:235: PrevBlock 60.0% -2025-07-23T19:39:15.4159314Z github.com/ava-labs/coreth/core/chain_makers.go:248: OffsetTime 0.0% -2025-07-23T19:39:15.4159832Z github.com/ava-labs/coreth/core/chain_makers.go:257: SetOnBlockGenerated 0.0% -2025-07-23T19:39:15.4160574Z github.com/ava-labs/coreth/core/chain_makers.go:273: GenerateChain 79.2% -2025-07-23T19:39:15.4161103Z github.com/ava-labs/coreth/core/chain_makers.go:362: GenerateChainWithGenesis 87.5% -2025-07-23T19:39:15.4161637Z github.com/ava-labs/coreth/core/chain_makers.go:374: makeHeader 89.5% -2025-07-23T19:39:15.4162136Z github.com/ava-labs/coreth/core/chain_makers.go:425: newChainMaker 100.0% -2025-07-23T19:39:15.4162608Z github.com/ava-labs/coreth/core/chain_makers.go:434: add 100.0% -2025-07-23T19:39:15.4163076Z github.com/ava-labs/coreth/core/chain_makers.go:440: blockByNumber 0.0% -2025-07-23T19:39:15.4163560Z github.com/ava-labs/coreth/core/chain_makers.go:455: Config 100.0% -2025-07-23T19:39:15.4164019Z github.com/ava-labs/coreth/core/chain_makers.go:460: Engine 0.0% -2025-07-23T19:39:15.4164491Z github.com/ava-labs/coreth/core/chain_makers.go:464: CurrentHeader 0.0% -2025-07-23T19:39:15.4164992Z github.com/ava-labs/coreth/core/chain_makers.go:471: GetHeaderByNumber 0.0% -2025-07-23T19:39:15.4165503Z github.com/ava-labs/coreth/core/chain_makers.go:479: GetHeaderByHash 0.0% -2025-07-23T19:39:15.4165981Z github.com/ava-labs/coreth/core/chain_makers.go:487: GetHeader 0.0% -2025-07-23T19:39:15.4166430Z github.com/ava-labs/coreth/core/chain_makers.go:491: GetBlock 0.0% -2025-07-23T19:39:15.4166952Z github.com/ava-labs/coreth/core/coretest/test_indices.go:21: CheckTxIndices 100.0% -2025-07-23T19:39:15.4167438Z github.com/ava-labs/coreth/core/evm.go:47: init 100.0% -2025-07-23T19:39:15.4167875Z github.com/ava-labs/coreth/core/evm.go:61: OverrideNewEVMArgs 100.0% -2025-07-23T19:39:15.4168583Z github.com/ava-labs/coreth/core/evm.go:74: OverrideEVMResetArgs 100.0% -2025-07-23T19:39:15.4169056Z github.com/ava-labs/coreth/core/evm.go:79: wrapStateDB 100.0% -2025-07-23T19:39:15.4169514Z github.com/ava-labs/coreth/core/evm.go:90: GetCommittedState 100.0% -2025-07-23T19:39:15.4169996Z github.com/ava-labs/coreth/core/evm.go:106: NewEVMBlockContext 100.0% -2025-07-23T19:39:15.4170536Z github.com/ava-labs/coreth/core/evm.go:147: NewEVMBlockContextWithPredicateResults 0.0% -2025-07-23T19:39:15.4171084Z github.com/ava-labs/coreth/core/evm.go:160: NewEVMTxContext 100.0% -2025-07-23T19:39:15.4171769Z github.com/ava-labs/coreth/core/evm.go:173: GetHashFn 10.0% -2025-07-23T19:39:15.4172351Z github.com/ava-labs/coreth/core/evm.go:213: CanTransfer 100.0% -2025-07-23T19:39:15.4172784Z github.com/ava-labs/coreth/core/evm.go:218: Transfer 100.0% -2025-07-23T19:39:15.4173245Z github.com/ava-labs/coreth/core/extstate/statedb.go:38: New 100.0% -2025-07-23T19:39:15.4173750Z github.com/ava-labs/coreth/core/extstate/statedb.go:45: Prepare 100.0% -2025-07-23T19:39:15.4174312Z github.com/ava-labs/coreth/core/extstate/statedb.go:61: GetPredicateStorageSlots 75.0% -2025-07-23T19:39:15.4175022Z github.com/ava-labs/coreth/core/fifo_cache.go:24: NewFIFOCache 100.0% -2025-07-23T19:39:15.4175485Z github.com/ava-labs/coreth/core/fifo_cache.go:43: Put 100.0% -2025-07-23T19:39:15.4175904Z github.com/ava-labs/coreth/core/fifo_cache.go:51: Get 100.0% -2025-07-23T19:39:15.4176321Z github.com/ava-labs/coreth/core/fifo_cache.go:61: remove 0.0% -2025-07-23T19:39:15.4176740Z github.com/ava-labs/coreth/core/fifo_cache.go:68: Put 0.0% -2025-07-23T19:39:15.4177150Z github.com/ava-labs/coreth/core/fifo_cache.go:69: Get 100.0% -2025-07-23T19:39:15.4177565Z github.com/ava-labs/coreth/core/gaspool.go:40: AddGas 75.0% -2025-07-23T19:39:15.4177984Z github.com/ava-labs/coreth/core/gaspool.go:50: SubGas 100.0% -2025-07-23T19:39:15.4178633Z github.com/ava-labs/coreth/core/gaspool.go:59: Gas 0.0% -2025-07-23T19:39:15.4179048Z github.com/ava-labs/coreth/core/gaspool.go:64: SetGas 0.0% -2025-07-23T19:39:15.4179467Z github.com/ava-labs/coreth/core/gaspool.go:68: String 0.0% -2025-07-23T19:39:15.4180059Z github.com/ava-labs/coreth/core/gen_genesis.go:20: MarshalJSON 0.0% -2025-07-23T19:39:15.4180540Z github.com/ava-labs/coreth/core/gen_genesis.go:63: UnmarshalJSON 0.0% -2025-07-23T19:39:15.4180988Z github.com/ava-labs/coreth/core/genesis.go:109: Error 0.0% -2025-07-23T19:39:15.4181457Z github.com/ava-labs/coreth/core/genesis.go:128: SetupGenesisBlock 77.8% -2025-07-23T19:39:15.4181943Z github.com/ava-labs/coreth/core/genesis.go:212: IsVerkle 100.0% -2025-07-23T19:39:15.4182396Z github.com/ava-labs/coreth/core/genesis.go:217: ToBlock 100.0% -2025-07-23T19:39:15.4182844Z github.com/ava-labs/coreth/core/genesis.go:222: trieConfig 100.0% -2025-07-23T19:39:15.4183300Z github.com/ava-labs/coreth/core/genesis.go:233: toBlock 90.5% -2025-07-23T19:39:15.4183739Z github.com/ava-labs/coreth/core/genesis.go:321: Commit 80.0% -2025-07-23T19:39:15.4184178Z github.com/ava-labs/coreth/core/genesis.go:344: MustCommit 75.0% -2025-07-23T19:39:15.4184688Z github.com/ava-labs/coreth/core/genesis.go:353: GenesisBlockForTesting 100.0% -2025-07-23T19:39:15.4185209Z github.com/ava-labs/coreth/core/genesis.go:363: ReadBlockByHash 75.0% -2025-07-23T19:39:15.4185712Z github.com/ava-labs/coreth/core/headerchain.go:84: NewHeaderChain 85.7% -2025-07-23T19:39:15.4186217Z github.com/ava-labs/coreth/core/headerchain.go:121: GetBlockNumber 100.0% -2025-07-23T19:39:15.4186713Z github.com/ava-labs/coreth/core/headerchain.go:134: GetHeader 100.0% -2025-07-23T19:39:15.4187207Z github.com/ava-labs/coreth/core/headerchain.go:150: GetHeaderByHash 75.0% -2025-07-23T19:39:15.4187699Z github.com/ava-labs/coreth/core/headerchain.go:161: HasHeader 66.7% -2025-07-23T19:39:15.4188308Z github.com/ava-labs/coreth/core/headerchain.go:170: GetHeaderByNumber 100.0% -2025-07-23T19:39:15.4188841Z github.com/ava-labs/coreth/core/headerchain.go:181: GetCanonicalHash 100.0% -2025-07-23T19:39:15.4189357Z github.com/ava-labs/coreth/core/headerchain.go:187: CurrentHeader 100.0% -2025-07-23T19:39:15.4189866Z github.com/ava-labs/coreth/core/headerchain.go:193: SetCurrentHeader 100.0% -2025-07-23T19:39:15.4190362Z github.com/ava-labs/coreth/core/headerchain.go:199: SetGenesis 100.0% -2025-07-23T19:39:15.4190826Z github.com/ava-labs/coreth/core/headerchain.go:204: Config 0.0% -2025-07-23T19:39:15.4191273Z github.com/ava-labs/coreth/core/headerchain.go:207: Engine 0.0% -2025-07-23T19:39:15.4191721Z github.com/ava-labs/coreth/core/headerchain.go:211: GetBlock 0.0% -2025-07-23T19:39:15.4192224Z github.com/ava-labs/coreth/core/predicate_check.go:22: CheckPredicates 100.0% -2025-07-23T19:39:15.4192764Z github.com/ava-labs/coreth/core/sender_cacher.go:61: NewTxSenderCacher 100.0% -2025-07-23T19:39:15.4193255Z github.com/ava-labs/coreth/core/sender_cacher.go:78: cache 100.0% -2025-07-23T19:39:15.4193843Z github.com/ava-labs/coreth/core/sender_cacher.go:89: Recover 90.9% -2025-07-23T19:39:15.4194316Z github.com/ava-labs/coreth/core/sender_cacher.go:119: Shutdown 100.0% -2025-07-23T19:39:15.4194810Z github.com/ava-labs/coreth/core/state/database.go:42: NewDatabase 100.0% -2025-07-23T19:39:15.4195345Z github.com/ava-labs/coreth/core/state/database.go:46: NewDatabaseWithConfig 100.0% -2025-07-23T19:39:15.4195911Z github.com/ava-labs/coreth/core/state/database.go:51: NewDatabaseWithNodeDB 0.0% -2025-07-23T19:39:15.4196455Z github.com/ava-labs/coreth/core/state/database.go:55: wrapIfFirewood 100.0% -2025-07-23T19:39:15.4196988Z github.com/ava-labs/coreth/core/state/firewood_database.go:25: OpenTrie 100.0% -2025-07-23T19:39:15.4197545Z github.com/ava-labs/coreth/core/state/firewood_database.go:30: OpenStorageTrie 75.0% -2025-07-23T19:39:15.4198303Z github.com/ava-labs/coreth/core/state/firewood_database.go:40: CopyTrie 0.0% -2025-07-23T19:39:15.4198899Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:42: stateBloomHash 100.0% -2025-07-23T19:39:15.4199604Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:69: newStateBloomWithSize 80.0% -2025-07-23T19:39:15.4200201Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:80: NewStateBloomFromDisk 0.0% -2025-07-23T19:39:15.4200743Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:90: Commit 63.6% -2025-07-23T19:39:15.4201230Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:112: Put 37.5% -2025-07-23T19:39:15.4201710Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:128: Delete 0.0% -2025-07-23T19:39:15.4202211Z github.com/ava-labs/coreth/core/state/pruner/bloom.go:134: Contain 100.0% -2025-07-23T19:39:15.4202724Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:96: NewPruner 66.7% -2025-07-23T19:39:15.4203229Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:136: prune 38.2% -2025-07-23T19:39:15.4203728Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:261: Prune 66.7% -2025-07-23T19:39:15.4204337Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:315: RecoverPruning 26.7% -2025-07-23T19:39:15.4204893Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:344: extractGenesis 48.6% -2025-07-23T19:39:15.4205459Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:403: bloomFilterName 100.0% -2025-07-23T19:39:15.4206014Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:407: isBloomFilter 0.0% -2025-07-23T19:39:15.4206574Z github.com/ava-labs/coreth/core/state/pruner/pruner.go:415: findBloomFilter 50.0% -2025-07-23T19:39:15.4207112Z github.com/ava-labs/coreth/core/state/snapshot/context.go:55: Info 100.0% -2025-07-23T19:39:15.4207620Z github.com/ava-labs/coreth/core/state/snapshot/context.go:61: Debug 100.0% -2025-07-23T19:39:15.4208237Z github.com/ava-labs/coreth/core/state/snapshot/context.go:67: log 45.0% -2025-07-23T19:39:15.4208832Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:65: GenerateAccountTrieRoot 0.0% -2025-07-23T19:39:15.4209492Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:70: GenerateStorageTrieRoot 0.0% -2025-07-23T19:39:15.4210100Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:77: GenerateTrie 0.0% -2025-07-23T19:39:15.4210706Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:134: newGenerateStats 100.0% -2025-07-23T19:39:15.4211318Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:143: progressAccounts 0.0% -2025-07-23T19:39:15.4211927Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:152: finishAccounts 100.0% -2025-07-23T19:39:15.4212528Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:160: progressContract 0.0% -2025-07-23T19:39:15.4213127Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:172: finishContract 100.0% -2025-07-23T19:39:15.4213826Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:182: report 42.9% -2025-07-23T19:39:15.4214391Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:222: reportDone 100.0% -2025-07-23T19:39:15.4214955Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:236: runReport 100.0% -2025-07-23T19:39:15.4215538Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:257: generateTrieRoot 79.4% -2025-07-23T19:39:15.4216147Z github.com/ava-labs/coreth/core/state/snapshot/conversion.go:375: stackTrieGenerate 75.0% -2025-07-23T19:39:15.4216713Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:92: init 80.0% -2025-07-23T19:39:15.4217282Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:140: destructBloomHash 100.0% -2025-07-23T19:39:15.4217888Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:145: accountBloomHash 100.0% -2025-07-23T19:39:15.4218703Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:150: storageBloomHash 100.0% -2025-07-23T19:39:15.4219306Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:157: newDiffLayer 83.3% -2025-07-23T19:39:15.4220062Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:201: rebloom 100.0% -2025-07-23T19:39:15.4220608Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:242: Root 100.0% -2025-07-23T19:39:15.4221154Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:247: BlockHash 100.0% -2025-07-23T19:39:15.4221735Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:252: Parent 100.0% -2025-07-23T19:39:15.4222287Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:261: Stale 100.0% -2025-07-23T19:39:15.4222831Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:267: Account 88.9% -2025-07-23T19:39:15.4223382Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:286: AccountRLP 86.7% -2025-07-23T19:39:15.4223933Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:318: accountRLP 95.0% -2025-07-23T19:39:15.4224484Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:357: Storage 60.0% -2025-07-23T19:39:15.4225026Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:389: storage 69.6% -2025-07-23T19:39:15.4225558Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:431: Update 100.0% -2025-07-23T19:39:15.4226091Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:438: flatten 95.5% -2025-07-23T19:39:15.4226644Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:497: AccountList 100.0% -2025-07-23T19:39:15.4227213Z github.com/ava-labs/coreth/core/state/snapshot/difflayer.go:533: StorageList 100.0% -2025-07-23T19:39:15.4227760Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:70: Release 0.0% -2025-07-23T19:39:15.4228402Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:78: Root 100.0% -2025-07-23T19:39:15.4228948Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:83: BlockHash 100.0% -2025-07-23T19:39:15.4229499Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:88: Parent 100.0% -2025-07-23T19:39:15.4230033Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:94: Stale 100.0% -2025-07-23T19:39:15.4230573Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:103: Account 88.9% -2025-07-23T19:39:15.4231124Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:120: AccountRLP 100.0% -2025-07-23T19:39:15.4231672Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:158: Storage 100.0% -2025-07-23T19:39:15.4232211Z github.com/ava-labs/coreth/core/state/snapshot/disklayer.go:199: Update 100.0% -2025-07-23T19:39:15.4232781Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:55: generateSnapshot 91.7% -2025-07-23T19:39:15.4233375Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:90: journalProgress 88.2% -2025-07-23T19:39:15.4234084Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:127: checkAndFlush 50.0% -2025-07-23T19:39:15.4234649Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:178: generate 68.9% -2025-07-23T19:39:15.4235254Z github.com/ava-labs/coreth/core/state/snapshot/generate.go:335: newMeteredSnapshotCache 100.0% -2025-07-23T19:39:15.4235891Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:69: AccountIterator 100.0% -2025-07-23T19:39:15.4236441Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:83: Next 70.0% -2025-07-23T19:39:15.4236970Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:108: Error 100.0% -2025-07-23T19:39:15.4237499Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:113: Hash 100.0% -2025-07-23T19:39:15.4238024Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:125: Account 81.8% -2025-07-23T19:39:15.4238786Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:143: Release 0.0% -2025-07-23T19:39:15.4239371Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:153: AccountIterator 100.0% -2025-07-23T19:39:15.4240062Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:162: Next 90.0% -2025-07-23T19:39:15.4240592Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:186: Error 100.0% -2025-07-23T19:39:15.4241122Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:194: Hash 100.0% -2025-07-23T19:39:15.4241659Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:199: Account 100.0% -2025-07-23T19:39:15.4242199Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:204: Release 33.3% -2025-07-23T19:39:15.4242762Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:233: StorageIterator 100.0% -2025-07-23T19:39:15.4243319Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:250: Next 70.0% -2025-07-23T19:39:15.4243843Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:275: Error 100.0% -2025-07-23T19:39:15.4244372Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:280: Hash 100.0% -2025-07-23T19:39:15.4244884Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:292: Slot 72.7% -2025-07-23T19:39:15.4245405Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:311: Release 0.0% -2025-07-23T19:39:15.4245975Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:325: StorageIterator 100.0% -2025-07-23T19:39:15.4246526Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:341: Next 90.0% -2025-07-23T19:39:15.4247047Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:365: Error 100.0% -2025-07-23T19:39:15.4247568Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:373: Hash 100.0% -2025-07-23T19:39:15.4248090Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:378: Slot 100.0% -2025-07-23T19:39:15.4248878Z github.com/ava-labs/coreth/core/state/snapshot/iterator.go:383: Release 33.3% -2025-07-23T19:39:15.4249517Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:53: initBinaryAccountIterator 100.0% -2025-07-23T19:39:15.4250233Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:78: initBinaryStorageIterator 82.6% -2025-07-23T19:39:15.4250867Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:130: Next 100.0% -2025-07-23T19:39:15.4251439Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:162: Error 100.0% -2025-07-23T19:39:15.4252009Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:167: Hash 100.0% -2025-07-23T19:39:15.4252590Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:176: Account 57.1% -2025-07-23T19:39:15.4253168Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:194: Slot 57.1% -2025-07-23T19:39:15.4253736Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:207: Release 0.0% -2025-07-23T19:39:15.4254508Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:214: newBinaryAccountIterator 100.0% -2025-07-23T19:39:15.4255214Z github.com/ava-labs/coreth/core/state/snapshot/iterator_binary.go:221: newBinaryStorageIterator 100.0% -2025-07-23T19:39:15.4255825Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:47: Cmp 50.0% -2025-07-23T19:39:15.4256420Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:86: newFastIterator 92.9% -2025-07-23T19:39:15.4257005Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:124: init 87.5% -2025-07-23T19:39:15.4257547Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:179: Next 83.3% -2025-07-23T19:39:15.4258090Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:235: next 100.0% -2025-07-23T19:39:15.4258858Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:296: move 100.0% -2025-07-23T19:39:15.4259422Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:304: Error 100.0% -2025-07-23T19:39:15.4259979Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:309: Hash 100.0% -2025-07-23T19:39:15.4260668Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:315: Account 100.0% -2025-07-23T19:39:15.4261230Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:321: Slot 100.0% -2025-07-23T19:39:15.4261792Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:327: Release 100.0% -2025-07-23T19:39:15.4262351Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:335: Debug 0.0% -2025-07-23T19:39:15.4262967Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:345: newFastAccountIterator 100.0% -2025-07-23T19:39:15.4263649Z github.com/ava-labs/coreth/core/state/snapshot/iterator_fast.go:352: newFastStorageIterator 100.0% -2025-07-23T19:39:15.4264269Z github.com/ava-labs/coreth/core/state/snapshot/journal.go:61: loadSnapshot 0.0% -2025-07-23T19:39:15.4264878Z github.com/ava-labs/coreth/core/state/snapshot/journal.go:143: ResetSnapshotGeneration 0.0% -2025-07-23T19:39:15.4265457Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:205: New 0.0% -2025-07-23T19:39:15.4265998Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:254: insertSnap 100.0% -2025-07-23T19:39:15.4266552Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:266: Snapshot 100.0% -2025-07-23T19:39:15.4267105Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:272: getSnapshot 85.7% -2025-07-23T19:39:15.4267653Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:288: Snapshots 0.0% -2025-07-23T19:39:15.4268327Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:323: WithBlockHashes 0.0% -2025-07-23T19:39:15.4268896Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:329: Update 0.0% -2025-07-23T19:39:15.4269486Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:350: UpdateWithBlockHashes 81.8% -2025-07-23T19:39:15.4270119Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:386: verifyIntegrity 57.1% -2025-07-23T19:39:15.4270680Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:413: Cap 0.0% -2025-07-23T19:39:15.4271207Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:433: Flatten 83.1% -2025-07-23T19:39:15.4271773Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:533: NumStateLayers 100.0% -2025-07-23T19:39:15.4272365Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:540: NumBlockLayers 100.0% -2025-07-23T19:39:15.4272948Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:548: Discard 100.0% -2025-07-23T19:39:15.4273503Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:560: discard 78.6% -2025-07-23T19:39:15.4274070Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:592: AbortGeneration 0.0% -2025-07-23T19:39:15.4274801Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:603: abortGeneration 63.6% -2025-07-23T19:39:15.4275387Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:631: diffToDisk 75.4% -2025-07-23T19:39:15.4275935Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:779: Release 0.0% -2025-07-23T19:39:15.4276473Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:788: Rebuild 0.0% -2025-07-23T19:39:15.4277046Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:842: AccountIterator 71.4% -2025-07-23T19:39:15.4277649Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:859: StorageIterator 100.0% -2025-07-23T19:39:15.4278515Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:863: StorageIteratorWithForce 71.4% -2025-07-23T19:39:15.4279125Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:878: Verify 0.0% -2025-07-23T19:39:15.4279660Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:886: verify 66.7% -2025-07-23T19:39:15.4280213Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:918: disklayer 83.3% -2025-07-23T19:39:15.4280876Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:941: diskRoot 0.0% -2025-07-23T19:39:15.4281423Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:951: generating 87.5% -2025-07-23T19:39:15.4281966Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:965: DiskRoot 0.0% -2025-07-23T19:39:15.4282484Z github.com/ava-labs/coreth/core/state/snapshot/snapshot.go:977: Size 0.0% -2025-07-23T19:39:15.4283066Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:14: DiskAccountIterator 0.0% -2025-07-23T19:39:15.4283699Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:21: DiskStorageIterator 0.0% -2025-07-23T19:39:15.4284305Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:41: NewDiskLayer 0.0% -2025-07-23T19:39:15.4284893Z github.com/ava-labs/coreth/core/state/snapshot/snapshot_ext.go:53: NewTestTree 100.0% -2025-07-23T19:39:15.4285496Z github.com/ava-labs/coreth/core/state/snapshot/utils.go:43: CheckDanglingStorage 50.0% -2025-07-23T19:39:15.4286123Z github.com/ava-labs/coreth/core/state/snapshot/utils.go:53: checkDanglingDiskStorage 76.5% -2025-07-23T19:39:15.4286708Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:45: WipeSnapshot 80.0% -2025-07-23T19:39:15.4287241Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:68: wipeContent 60.0% -2025-07-23T19:39:15.4287774Z github.com/ava-labs/coreth/core/state/snapshot/wipe.go:84: wipeKeyRange 59.4% -2025-07-23T19:39:15.4288369Z github.com/ava-labs/coreth/core/state/statedb.go:65: New 75.0% -2025-07-23T19:39:15.4288823Z github.com/ava-labs/coreth/core/state/statedb.go:81: Done 0.0% -2025-07-23T19:39:15.4289314Z github.com/ava-labs/coreth/core/state/statedb.go:87: WithConcurrentWorkers 0.0% -2025-07-23T19:39:15.4289863Z github.com/ava-labs/coreth/core/state/statedb.go:95: GetBalanceMultiCoin 100.0% -2025-07-23T19:39:15.4290390Z github.com/ava-labs/coreth/core/state/statedb.go:101: GetState 100.0% -2025-07-23T19:39:15.4290903Z github.com/ava-labs/coreth/core/state/statedb.go:107: AddBalanceMultiCoin 75.0% -2025-07-23T19:39:15.4291450Z github.com/ava-labs/coreth/core/state/statedb.go:121: SubBalanceMultiCoin 71.4% -2025-07-23T19:39:15.4291962Z github.com/ava-labs/coreth/core/state/statedb.go:136: SetState 100.0% -2025-07-23T19:39:15.4292451Z github.com/ava-labs/coreth/core/state/statedb.go:144: SetTxContext 0.0% -2025-07-23T19:39:15.4292935Z github.com/ava-labs/coreth/core/state/statedb.go:151: GetTxHash 0.0% -2025-07-23T19:39:15.4293405Z github.com/ava-labs/coreth/core/state/statedb.go:155: Copy 0.0% -2025-07-23T19:39:15.4293898Z github.com/ava-labs/coreth/core/state/statedb.go:169: NormalizeCoinID 100.0% -2025-07-23T19:39:15.4294429Z github.com/ava-labs/coreth/core/state/statedb.go:177: NormalizeStateKey 100.0% -2025-07-23T19:39:15.4295053Z github.com/ava-labs/coreth/core/state_manager.go:41: init 100.0% -2025-07-23T19:39:15.4295536Z github.com/ava-labs/coreth/core/state_manager.go:67: NewTrieWriter 100.0% -2025-07-23T19:39:15.4296034Z github.com/ava-labs/coreth/core/state_manager.go:91: InsertTrie 100.0% -2025-07-23T19:39:15.4296514Z github.com/ava-labs/coreth/core/state_manager.go:97: AcceptTrie 100.0% -2025-07-23T19:39:15.4297004Z github.com/ava-labs/coreth/core/state_manager.go:103: RejectTrie 100.0% -2025-07-23T19:39:15.4297484Z github.com/ava-labs/coreth/core/state_manager.go:107: Shutdown 100.0% -2025-07-23T19:39:15.4297964Z github.com/ava-labs/coreth/core/state_manager.go:120: InsertTrie 50.0% -2025-07-23T19:39:15.4298635Z github.com/ava-labs/coreth/core/state_manager.go:134: AcceptTrie 68.4% -2025-07-23T19:39:15.4299121Z github.com/ava-labs/coreth/core/state_manager.go:182: RejectTrie 100.0% -2025-07-23T19:39:15.4299608Z github.com/ava-labs/coreth/core/state_manager.go:187: Shutdown 100.0% -2025-07-23T19:39:15.4300235Z github.com/ava-labs/coreth/core/state_processor.go:55: NewStateProcessor 100.0% -2025-07-23T19:39:15.4300746Z github.com/ava-labs/coreth/core/state_processor.go:70: Process 90.9% -2025-07-23T19:39:15.4301257Z github.com/ava-labs/coreth/core/state_processor.go:120: applyTransaction 92.6% -2025-07-23T19:39:15.4301788Z github.com/ava-labs/coreth/core/state_processor.go:174: ApplyTransaction 83.3% -2025-07-23T19:39:15.4302343Z github.com/ava-labs/coreth/core/state_processor.go:187: ProcessBeaconBlockRoot 100.0% -2025-07-23T19:39:15.4302950Z github.com/ava-labs/coreth/core/state_processor_ext.go:24: ApplyPrecompileActivations 23.8% -2025-07-23T19:39:15.4303523Z github.com/ava-labs/coreth/core/state_processor_ext.go:77: ApplyUpgrades 100.0% -2025-07-23T19:39:15.4304067Z github.com/ava-labs/coreth/core/state_processor_ext.go:91: NewBlockContext 100.0% -2025-07-23T19:39:15.4304584Z github.com/ava-labs/coreth/core/state_processor_ext.go:98: Number 0.0% -2025-07-23T19:39:15.4305083Z github.com/ava-labs/coreth/core/state_processor_ext.go:99: Timestamp 100.0% -2025-07-23T19:39:15.4305576Z github.com/ava-labs/coreth/core/state_transition.go:56: Unwrap 0.0% -2025-07-23T19:39:15.4306050Z github.com/ava-labs/coreth/core/state_transition.go:61: Failed 100.0% -2025-07-23T19:39:15.4306524Z github.com/ava-labs/coreth/core/state_transition.go:65: Return 0.0% -2025-07-23T19:39:15.4306992Z github.com/ava-labs/coreth/core/state_transition.go:74: Revert 0.0% -2025-07-23T19:39:15.4307483Z github.com/ava-labs/coreth/core/state_transition.go:82: IntrinsicGas 88.2% -2025-07-23T19:39:15.4307993Z github.com/ava-labs/coreth/core/state_transition.go:139: accessListGas 91.3% -2025-07-23T19:39:15.4308610Z github.com/ava-labs/coreth/core/state_transition.go:179: toWordSize 66.7% -2025-07-23T19:39:15.4309155Z github.com/ava-labs/coreth/core/state_transition.go:210: TransactionToMessage 100.0% -2025-07-23T19:39:15.4309704Z github.com/ava-labs/coreth/core/state_transition.go:241: ApplyMessage 100.0% -2025-07-23T19:39:15.4310248Z github.com/ava-labs/coreth/core/state_transition.go:277: NewStateTransition 100.0% -2025-07-23T19:39:15.4310753Z github.com/ava-labs/coreth/core/state_transition.go:287: to 66.7% -2025-07-23T19:39:15.4311224Z github.com/ava-labs/coreth/core/state_transition.go:294: buyGas 77.8% -2025-07-23T19:39:15.4311705Z github.com/ava-labs/coreth/core/state_transition.go:333: preCheck 89.5% -2025-07-23T19:39:15.4312205Z github.com/ava-labs/coreth/core/state_transition.go:426: TransitionDb 88.2% -2025-07-23T19:39:15.4312708Z github.com/ava-labs/coreth/core/state_transition.go:514: refundGas 100.0% -2025-07-23T19:39:15.4313201Z github.com/ava-labs/coreth/core/state_transition.go:539: gasUsed 100.0% -2025-07-23T19:39:15.4313692Z github.com/ava-labs/coreth/core/state_transition.go:544: blobGasUsed 100.0% -2025-07-23T19:39:15.4314280Z github.com/ava-labs/coreth/core/txindexer.go:46: Done 0.0% -2025-07-23T19:39:15.4314735Z github.com/ava-labs/coreth/core/txindexer.go:68: newTxIndexer 90.9% -2025-07-23T19:39:15.4315178Z github.com/ava-labs/coreth/core/txindexer.go:97: run 90.9% -2025-07-23T19:39:15.4315590Z github.com/ava-labs/coreth/core/txindexer.go:124: loop 91.7% -2025-07-23T19:39:15.4316030Z github.com/ava-labs/coreth/core/txindexer.go:191: report 0.0% -2025-07-23T19:39:15.4316465Z github.com/ava-labs/coreth/core/txindexer.go:213: close 100.0% -2025-07-23T19:39:15.4316914Z github.com/ava-labs/coreth/core/txindexer.go:224: lockedRun 100.0% -2025-07-23T19:39:15.4317451Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:124: newBlobTxMeta 100.0% -2025-07-23T19:39:15.4318015Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:333: New 100.0% -2025-07-23T19:39:15.4318776Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:349: Filter 0.0% -2025-07-23T19:39:15.4319319Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:356: Init 78.8% -2025-07-23T19:39:15.4319977Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:458: Close 60.0% -2025-07-23T19:39:15.4320558Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:480: parseTransaction 88.0% -2025-07-23T19:39:15.4321140Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:528: recheck 90.9% -2025-07-23T19:39:15.4321711Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:779: offload 0.0% -2025-07-23T19:39:15.4322243Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:803: Reset 0.0% -2025-07-23T19:39:15.4322761Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:875: reorg 0.0% -2025-07-23T19:39:15.4323289Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1003: reinject 0.0% -2025-07-23T19:39:15.4323844Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1047: SetGasTip 97.2% -2025-07-23T19:39:15.4324430Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1112: validateTx 100.0% -2025-07-23T19:39:15.4324982Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1197: Has 0.0% -2025-07-23T19:39:15.4325506Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1205: HasLocal 0.0% -2025-07-23T19:39:15.4326037Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1211: Get 0.0% -2025-07-23T19:39:15.4326550Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1243: Add 0.0% -2025-07-23T19:39:15.4327064Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1263: add 89.3% -2025-07-23T19:39:15.4327583Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1430: drop 54.5% -2025-07-23T19:39:15.4328283Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1485: Pending 0.0% -2025-07-23T19:39:15.4328894Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1547: IteratePending 0.0% -2025-07-23T19:39:15.4329474Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1565: SetMinFee 0.0% -2025-07-23T19:39:15.4330494Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1569: updateStorageMetrics 100.0% -2025-07-23T19:39:15.4331167Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1616: updateLimboMetrics 100.0% -2025-07-23T19:39:15.4331808Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1644: SubscribeTransactions 0.0% -2025-07-23T19:39:15.4332389Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1654: Nonce 0.0% -2025-07-23T19:39:15.4332916Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1666: Stats 0.0% -2025-07-23T19:39:15.4333452Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1682: Content 0.0% -2025-07-23T19:39:15.4334010Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1691: ContentFrom 0.0% -2025-07-23T19:39:15.4334699Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1698: Locals 0.0% -2025-07-23T19:39:15.4335241Z github.com/ava-labs/coreth/core/txpool/blobpool/blobpool.go:1704: Status 0.0% -2025-07-23T19:39:15.4335775Z github.com/ava-labs/coreth/core/txpool/blobpool/config.go:50: sanitize 100.0% -2025-07-23T19:39:15.4336338Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:60: newPriceHeap 100.0% -2025-07-23T19:39:15.4336904Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:84: reinit 85.7% -2025-07-23T19:39:15.4337439Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:101: Len 100.0% -2025-07-23T19:39:15.4337969Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:107: Less 100.0% -2025-07-23T19:39:15.4338709Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:131: Swap 100.0% -2025-07-23T19:39:15.4339249Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:138: Push 100.0% -2025-07-23T19:39:15.4339786Z github.com/ava-labs/coreth/core/txpool/blobpool/evictheap.go:148: Pop 100.0% -2025-07-23T19:39:15.4340442Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:62: newLimbo 50.0% -2025-07-23T19:39:15.4340951Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:93: Close 100.0% -2025-07-23T19:39:15.4341467Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:99: parseBlob 0.0% -2025-07-23T19:39:15.4341984Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:126: finalize 0.0% -2025-07-23T19:39:15.4342501Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:149: push 0.0% -2025-07-23T19:39:15.4343003Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:166: pull 0.0% -2025-07-23T19:39:15.4343507Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:190: update 0.0% -2025-07-23T19:39:15.4344029Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:221: getAndDrop 0.0% -2025-07-23T19:39:15.4344569Z github.com/ava-labs/coreth/core/txpool/blobpool/limbo.go:243: setAndIndex 0.0% -2025-07-23T19:39:15.4345160Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:45: evictionPriority 100.0% -2025-07-23T19:39:15.4345794Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:58: evictionPriority1D 100.0% -2025-07-23T19:39:15.4346420Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:77: dynamicFeeJumps 100.0% -2025-07-23T19:39:15.4346989Z github.com/ava-labs/coreth/core/txpool/blobpool/priority.go:87: intLog2 50.0% -2025-07-23T19:39:15.4347540Z github.com/ava-labs/coreth/core/txpool/blobpool/slotter.go:39: newSlotter 100.0% -2025-07-23T19:39:15.4348189Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:52: Write 100.0% -2025-07-23T19:39:15.4348722Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:53: Close 0.0% -2025-07-23T19:39:15.4349275Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:63: newTxJournal 100.0% -2025-07-23T19:39:15.4349833Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:71: load 87.1% -2025-07-23T19:39:15.4350367Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:132: insert 60.0% -2025-07-23T19:39:15.4350904Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:144: rotate 76.9% -2025-07-23T19:39:15.4351440Z github.com/ava-labs/coreth/core/txpool/legacypool/journal.go:189: close 100.0% -2025-07-23T19:39:15.4351999Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:186: sanitize 46.2% -2025-07-23T19:39:15.4352566Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:275: New 80.0% -2025-07-23T19:39:15.4353118Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:312: Filter 0.0% -2025-07-23T19:39:15.4353673Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:325: Init 81.0% -2025-07-23T19:39:15.4354229Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:371: loop 96.8% -2025-07-23T19:39:15.4354911Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:439: Close 100.0% -2025-07-23T19:39:15.4355468Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:455: Reset 0.0% -2025-07-23T19:39:15.4356089Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:462: SubscribeTransactions 0.0% -2025-07-23T19:39:15.4356732Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:472: SetGasTip 100.0% -2025-07-23T19:39:15.4357322Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:493: SetMinFee 0.0% -2025-07-23T19:39:15.4357891Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:502: Nonce 100.0% -2025-07-23T19:39:15.4358555Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:511: Stats 100.0% -2025-07-23T19:39:15.4359122Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:520: stats 100.0% -2025-07-23T19:39:15.4359686Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:534: Content 88.9% -2025-07-23T19:39:15.4360400Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:551: ContentFrom 0.0% -2025-07-23T19:39:15.4360986Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:571: Pending 0.0% -2025-07-23T19:39:15.4361583Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:631: IteratePending 0.0% -2025-07-23T19:39:15.4362172Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:646: Locals 0.0% -2025-07-23T19:39:15.4362738Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:656: local 100.0% -2025-07-23T19:39:15.4363343Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:673: validateTxBasics 100.0% -2025-07-23T19:39:15.4363973Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:694: validateTx 100.0% -2025-07-23T19:39:15.4364543Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:743: add 88.3% -2025-07-23T19:39:15.4365111Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:893: isGapped 100.0% -2025-07-23T19:39:15.4365699Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:919: enqueueTx 95.0% -2025-07-23T19:39:15.4366272Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:958: journalTx 75.0% -2025-07-23T19:39:15.4366851Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:972: promoteTx 58.8% -2025-07-23T19:39:15.4367444Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1009: addLocals 100.0% -2025-07-23T19:39:15.4368042Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1015: addLocal 100.0% -2025-07-23T19:39:15.4368736Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1024: addRemotes 100.0% -2025-07-23T19:39:15.4369334Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1030: addRemote 100.0% -2025-07-23T19:39:15.4369952Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1035: addRemotesSync 100.0% -2025-07-23T19:39:15.4370595Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1040: addRemoteSync 100.0% -2025-07-23T19:39:15.4371186Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1049: Add 100.0% -2025-07-23T19:39:15.4371778Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1104: addTxsLocked 100.0% -2025-07-23T19:39:15.4372376Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1120: Status 90.9% -2025-07-23T19:39:15.4372934Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1139: Get 0.0% -2025-07-23T19:39:15.4373481Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1148: get 100.0% -2025-07-23T19:39:15.4374027Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1154: Has 0.0% -2025-07-23T19:39:15.4374582Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1158: HasLocal 0.0% -2025-07-23T19:39:15.4375322Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1171: removeTx 93.3% -2025-07-23T19:39:15.4375922Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1236: requestReset 66.7% -2025-07-23T19:39:15.4376593Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1247: requestPromoteExecutables 66.7% -2025-07-23T19:39:15.4377264Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1257: queueTxEvent 100.0% -2025-07-23T19:39:15.4377902Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1267: scheduleReorgLoop 93.1% -2025-07-23T19:39:15.4378615Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1337: runReorg 84.1% -2025-07-23T19:39:15.4379191Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1420: reset 23.1% -2025-07-23T19:39:15.4379805Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1520: promoteExecutables 100.0% -2025-07-23T19:39:15.4380467Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1590: truncatePending 69.6% -2025-07-23T19:39:15.4381223Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1675: truncateQueue 100.0% -2025-07-23T19:39:15.4381876Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1726: demoteUnexecutables 96.9% -2025-07-23T19:39:15.4382562Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1781: startPeriodicFeeUpdate 85.7% -2025-07-23T19:39:15.4383252Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1797: periodicBaseFeeUpdate 100.0% -2025-07-23T19:39:15.4383907Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1820: updateBaseFee 80.0% -2025-07-23T19:39:15.4384541Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1831: updateBaseFeeAt 83.3% -2025-07-23T19:39:15.4385143Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1849: Len 100.0% -2025-07-23T19:39:15.4385710Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1850: Less 100.0% -2025-07-23T19:39:15.4386277Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1851: Swap 100.0% -2025-07-23T19:39:15.4386885Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1863: newAccountSet 100.0% -2025-07-23T19:39:15.4387499Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1875: contains 100.0% -2025-07-23T19:39:15.4388196Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1882: containsTx 66.7% -2025-07-23T19:39:15.4388783Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1890: add 100.0% -2025-07-23T19:39:15.4389353Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1896: addTx 100.0% -2025-07-23T19:39:15.4389933Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1904: flatten 100.0% -2025-07-23T19:39:15.4390507Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1916: merge 0.0% -2025-07-23T19:39:15.4391093Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1943: newLookup 100.0% -2025-07-23T19:39:15.4391676Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1953: Range 60.0% -2025-07-23T19:39:15.4392231Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1974: Get 80.0% -2025-07-23T19:39:15.4392798Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1985: GetLocal 0.0% -2025-07-23T19:39:15.4393387Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:1993: GetRemote 100.0% -2025-07-23T19:39:15.4393971Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2001: Count 100.0% -2025-07-23T19:39:15.4394550Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2009: LocalCount 0.0% -2025-07-23T19:39:15.4395158Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2017: RemoteCount 100.0% -2025-07-23T19:39:15.4395883Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2025: Slots 100.0% -2025-07-23T19:39:15.4396445Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2033: Add 100.0% -2025-07-23T19:39:15.4397009Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2048: Remove 83.3% -2025-07-23T19:39:15.4397613Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2069: RemoteToLocals 66.7% -2025-07-23T19:39:15.4398358Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2085: RemotesBelowTip 100.0% -2025-07-23T19:39:15.4398980Z github.com/ava-labs/coreth/core/txpool/legacypool/legacypool.go:2097: numSlots 100.0% -2025-07-23T19:39:15.4399543Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:49: Len 100.0% -2025-07-23T19:39:15.4400058Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:50: Less 100.0% -2025-07-23T19:39:15.4400585Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:51: Swap 100.0% -2025-07-23T19:39:15.4401093Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:53: Push 100.0% -2025-07-23T19:39:15.4401723Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:57: Pop 100.0% -2025-07-23T19:39:15.4402265Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:76: newSortedMap 100.0% -2025-07-23T19:39:15.4402801Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:84: Get 100.0% -2025-07-23T19:39:15.4403300Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:90: Put 100.0% -2025-07-23T19:39:15.4403823Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:103: Forward 100.0% -2025-07-23T19:39:15.4404365Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:126: Filter 100.0% -2025-07-23T19:39:15.4404897Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:135: reheap 100.0% -2025-07-23T19:39:15.4405429Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:148: filter 100.0% -2025-07-23T19:39:15.4405953Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:168: Cap 92.3% -2025-07-23T19:39:15.4406475Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:195: Remove 100.0% -2025-07-23T19:39:15.4407002Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:223: Ready 100.0% -2025-07-23T19:39:15.4407520Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:243: Len 100.0% -2025-07-23T19:39:15.4408048Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:247: flatten 100.0% -2025-07-23T19:39:15.4408693Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:264: Flatten 100.0% -2025-07-23T19:39:15.4409245Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:274: LastElement 100.0% -2025-07-23T19:39:15.4409795Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:294: newList 100.0% -2025-07-23T19:39:15.4410338Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:305: Contains 100.0% -2025-07-23T19:39:15.4410860Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:314: Add 100.0% -2025-07-23T19:39:15.4411387Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:361: Forward 100.0% -2025-07-23T19:39:15.4411921Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:376: Filter 95.0% -2025-07-23T19:39:15.4412440Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:412: Cap 100.0% -2025-07-23T19:39:15.4412954Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:421: Remove 100.0% -2025-07-23T19:39:15.4413482Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:444: Ready 100.0% -2025-07-23T19:39:15.4413995Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:451: Len 100.0% -2025-07-23T19:39:15.4414510Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:456: Empty 100.0% -2025-07-23T19:39:15.4415034Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:463: Flatten 100.0% -2025-07-23T19:39:15.4415715Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:469: LastElement 100.0% -2025-07-23T19:39:15.4416283Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:475: subTotalCost 75.0% -2025-07-23T19:39:15.4416817Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:493: Len 100.0% -2025-07-23T19:39:15.4417333Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:494: Swap 100.0% -2025-07-23T19:39:15.4417852Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:496: Less 100.0% -2025-07-23T19:39:15.4418459Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:507: cmp 100.0% -2025-07-23T19:39:15.4418966Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:522: Push 100.0% -2025-07-23T19:39:15.4419477Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:527: Pop 100.0% -2025-07-23T19:39:15.4420022Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:563: newPricedList 100.0% -2025-07-23T19:39:15.4420580Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:570: Put 100.0% -2025-07-23T19:39:15.4421217Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:581: Removed 100.0% -2025-07-23T19:39:15.4421806Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:593: Underpriced 100.0% -2025-07-23T19:39:15.4422376Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:603: underpricedFor 70.0% -2025-07-23T19:39:15.4422928Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:628: Discard 61.9% -2025-07-23T19:39:15.4423463Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:667: Reheap 100.0% -2025-07-23T19:39:15.4424006Z github.com/ava-labs/coreth/core/txpool/legacypool/list.go:695: SetBaseFee 100.0% -2025-07-23T19:39:15.4424564Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:47: newNoncer 100.0% -2025-07-23T19:39:15.4425098Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:56: get 100.0% -2025-07-23T19:39:15.4425619Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:72: set 100.0% -2025-07-23T19:39:15.4426156Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:81: setIfLower 62.5% -2025-07-23T19:39:15.4426705Z github.com/ava-labs/coreth/core/txpool/legacypool/noncer.go:97: setAll 100.0% -2025-07-23T19:39:15.4427214Z github.com/ava-labs/coreth/core/txpool/subpool.go:65: Resolve 66.7% -2025-07-23T19:39:15.4427686Z github.com/ava-labs/coreth/core/txpool/txpool.go:103: New 76.9% -2025-07-23T19:39:15.4428248Z github.com/ava-labs/coreth/core/txpool/txpool.go:143: reserver 69.2% -2025-07-23T19:39:15.4428718Z github.com/ava-labs/coreth/core/txpool/txpool.go:186: Close 76.9% -2025-07-23T19:39:15.4429186Z github.com/ava-labs/coreth/core/txpool/txpool.go:215: loop 92.6% -2025-07-23T19:39:15.4429652Z github.com/ava-labs/coreth/core/txpool/txpool.go:308: GasTip 100.0% -2025-07-23T19:39:15.4430136Z github.com/ava-labs/coreth/core/txpool/txpool.go:314: SetGasTip 100.0% -2025-07-23T19:39:15.4430617Z github.com/ava-labs/coreth/core/txpool/txpool.go:323: MinFee 0.0% -2025-07-23T19:39:15.4431090Z github.com/ava-labs/coreth/core/txpool/txpool.go:329: SetMinFee 100.0% -2025-07-23T19:39:15.4431558Z github.com/ava-labs/coreth/core/txpool/txpool.go:339: Has 75.0% -2025-07-23T19:39:15.4432023Z github.com/ava-labs/coreth/core/txpool/txpool.go:350: HasLocal 0.0% -2025-07-23T19:39:15.4432481Z github.com/ava-labs/coreth/core/txpool/txpool.go:360: Get 0.0% -2025-07-23T19:39:15.4432925Z github.com/ava-labs/coreth/core/txpool/txpool.go:372: Add 90.0% -2025-07-23T19:39:15.4433413Z github.com/ava-labs/coreth/core/txpool/txpool.go:415: AddRemotesSync 100.0% -2025-07-23T19:39:15.4433912Z github.com/ava-labs/coreth/core/txpool/txpool.go:425: Pending 100.0% -2025-07-23T19:39:15.4434408Z github.com/ava-labs/coreth/core/txpool/txpool.go:439: PendingSize 100.0% -2025-07-23T19:39:15.4435040Z github.com/ava-labs/coreth/core/txpool/txpool.go:451: IteratePending 66.7% -2025-07-23T19:39:15.4435594Z github.com/ava-labs/coreth/core/txpool/txpool.go:461: SubscribeTransactions 85.7% -2025-07-23T19:39:15.4436159Z github.com/ava-labs/coreth/core/txpool/txpool.go:475: SubscribeNewReorgEvent 100.0% -2025-07-23T19:39:15.4436683Z github.com/ava-labs/coreth/core/txpool/txpool.go:481: Nonce 100.0% -2025-07-23T19:39:15.4437145Z github.com/ava-labs/coreth/core/txpool/txpool.go:496: Stats 0.0% -2025-07-23T19:39:15.4437607Z github.com/ava-labs/coreth/core/txpool/txpool.go:509: Content 0.0% -2025-07-23T19:39:15.4438078Z github.com/ava-labs/coreth/core/txpool/txpool.go:529: ContentFrom 0.0% -2025-07-23T19:39:15.4438656Z github.com/ava-labs/coreth/core/txpool/txpool.go:540: Locals 75.0% -2025-07-23T19:39:15.4439121Z github.com/ava-labs/coreth/core/txpool/txpool.go:558: Status 0.0% -2025-07-23T19:39:15.4439577Z github.com/ava-labs/coreth/core/txpool/txpool.go:574: Sync 75.0% -2025-07-23T19:39:15.4440211Z github.com/ava-labs/coreth/core/txpool/validation.go:67: ValidateTransaction 73.9% -2025-07-23T19:39:15.4440799Z github.com/ava-labs/coreth/core/txpool/validation.go:160: validateBlobSidecar 66.7% -2025-07-23T19:39:15.4441410Z github.com/ava-labs/coreth/core/txpool/validation.go:222: ValidateTransactionWithState 88.9% -2025-07-23T19:39:15.4441962Z github.com/ava-labs/coreth/core/vm/runtime/env.go:35: NewEnv 100.0% -2025-07-23T19:39:15.4442460Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:71: setDefaults 94.7% -2025-07-23T19:39:15.4442976Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:134: Execute 100.0% -2025-07-23T19:39:15.4443472Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:169: Create 77.8% -2025-07-23T19:39:15.4443966Z github.com/ava-labs/coreth/core/vm/runtime/runtime.go:203: Call 100.0% -2025-07-23T19:39:15.4444431Z github.com/ava-labs/coreth/eth/api.go:40: NewEthereumAPI 0.0% -2025-07-23T19:39:15.4444852Z github.com/ava-labs/coreth/eth/api.go:45: Etherbase 0.0% -2025-07-23T19:39:15.4445259Z github.com/ava-labs/coreth/eth/api.go:50: Coinbase 0.0% -2025-07-23T19:39:15.4445689Z github.com/ava-labs/coreth/eth/api_admin.go:50: NewAdminAPI 0.0% -2025-07-23T19:39:15.4446145Z github.com/ava-labs/coreth/eth/api_admin.go:56: ExportChain 0.0% -2025-07-23T19:39:15.4446600Z github.com/ava-labs/coreth/eth/api_admin.go:93: hasAllBlocks 0.0% -2025-07-23T19:39:15.4447047Z github.com/ava-labs/coreth/eth/api_admin.go:104: ImportChain 0.0% -2025-07-23T19:39:15.4447496Z github.com/ava-labs/coreth/eth/api_backend.go:72: ChainConfig 0.0% -2025-07-23T19:39:15.4447946Z github.com/ava-labs/coreth/eth/api_backend.go:77: IsArchive 0.0% -2025-07-23T19:39:15.4448554Z github.com/ava-labs/coreth/eth/api_backend.go:83: HistoricalProofQueryWindow 0.0% -2025-07-23T19:39:15.4449125Z github.com/ava-labs/coreth/eth/api_backend.go:87: IsAllowUnfinalizedQueries 0.0% -2025-07-23T19:39:15.4449676Z github.com/ava-labs/coreth/eth/api_backend.go:91: SetAllowUnfinalizedQueries 0.0% -2025-07-23T19:39:15.4450183Z github.com/ava-labs/coreth/eth/api_backend.go:95: CurrentBlock 0.0% -2025-07-23T19:39:15.4450663Z github.com/ava-labs/coreth/eth/api_backend.go:99: LastAcceptedBlock 0.0% -2025-07-23T19:39:15.4451152Z github.com/ava-labs/coreth/eth/api_backend.go:103: HeaderByNumber 0.0% -2025-07-23T19:39:15.4451629Z github.com/ava-labs/coreth/eth/api_backend.go:126: HeaderByHash 0.0% -2025-07-23T19:39:15.4452124Z github.com/ava-labs/coreth/eth/api_backend.go:149: HeaderByNumberOrHash 0.0% -2025-07-23T19:39:15.4452628Z github.com/ava-labs/coreth/eth/api_backend.go:166: BlockByNumber 0.0% -2025-07-23T19:39:15.4453101Z github.com/ava-labs/coreth/eth/api_backend.go:190: BlockByHash 0.0% -2025-07-23T19:39:15.4453558Z github.com/ava-labs/coreth/eth/api_backend.go:215: GetBody 0.0% -2025-07-23T19:39:15.4454158Z github.com/ava-labs/coreth/eth/api_backend.go:225: BlockByNumberOrHash 0.0% -2025-07-23T19:39:15.4454651Z github.com/ava-labs/coreth/eth/api_backend.go:245: BadBlocks 0.0% -2025-07-23T19:39:15.4455145Z github.com/ava-labs/coreth/eth/api_backend.go:249: StateAndHeaderByNumber 0.0% -2025-07-23T19:39:15.4455699Z github.com/ava-labs/coreth/eth/api_backend.go:265: StateAndHeaderByNumberOrHash 0.0% -2025-07-23T19:39:15.4456211Z github.com/ava-labs/coreth/eth/api_backend.go:289: GetReceipts 0.0% -2025-07-23T19:39:15.4456665Z github.com/ava-labs/coreth/eth/api_backend.go:296: GetLogs 0.0% -2025-07-23T19:39:15.4457107Z github.com/ava-labs/coreth/eth/api_backend.go:303: GetEVM 0.0% -2025-07-23T19:39:15.4457593Z github.com/ava-labs/coreth/eth/api_backend.go:317: SubscribeRemovedLogsEvent 0.0% -2025-07-23T19:39:15.4458235Z github.com/ava-labs/coreth/eth/api_backend.go:321: SubscribePendingLogsEvent 0.0% -2025-07-23T19:39:15.4458772Z github.com/ava-labs/coreth/eth/api_backend.go:325: SubscribeChainEvent 0.0% -2025-07-23T19:39:15.4459425Z github.com/ava-labs/coreth/eth/api_backend.go:329: SubscribeChainAcceptedEvent 0.0% -2025-07-23T19:39:15.4459969Z github.com/ava-labs/coreth/eth/api_backend.go:333: SubscribeChainHeadEvent 0.0% -2025-07-23T19:39:15.4460501Z github.com/ava-labs/coreth/eth/api_backend.go:337: SubscribeChainSideEvent 0.0% -2025-07-23T19:39:15.4461020Z github.com/ava-labs/coreth/eth/api_backend.go:341: SubscribeLogsEvent 0.0% -2025-07-23T19:39:15.4461557Z github.com/ava-labs/coreth/eth/api_backend.go:345: SubscribeAcceptedLogsEvent 0.0% -2025-07-23T19:39:15.4462129Z github.com/ava-labs/coreth/eth/api_backend.go:349: SubscribeAcceptedTransactionEvent 0.0% -2025-07-23T19:39:15.4462647Z github.com/ava-labs/coreth/eth/api_backend.go:353: SendTx 0.0% -2025-07-23T19:39:15.4463126Z github.com/ava-labs/coreth/eth/api_backend.go:367: GetPoolTransactions 0.0% -2025-07-23T19:39:15.4463637Z github.com/ava-labs/coreth/eth/api_backend.go:380: GetPoolTransaction 0.0% -2025-07-23T19:39:15.4464138Z github.com/ava-labs/coreth/eth/api_backend.go:384: GetTransaction 0.0% -2025-07-23T19:39:15.4464618Z github.com/ava-labs/coreth/eth/api_backend.go:407: GetPoolNonce 0.0% -2025-07-23T19:39:15.4465072Z github.com/ava-labs/coreth/eth/api_backend.go:411: Stats 0.0% -2025-07-23T19:39:15.4465524Z github.com/ava-labs/coreth/eth/api_backend.go:415: TxPoolContent 0.0% -2025-07-23T19:39:15.4466013Z github.com/ava-labs/coreth/eth/api_backend.go:419: TxPoolContentFrom 0.0% -2025-07-23T19:39:15.4466530Z github.com/ava-labs/coreth/eth/api_backend.go:423: SubscribeNewTxsEvent 0.0% -2025-07-23T19:39:15.4467040Z github.com/ava-labs/coreth/eth/api_backend.go:427: EstimateBaseFee 0.0% -2025-07-23T19:39:15.4467516Z github.com/ava-labs/coreth/eth/api_backend.go:431: SuggestPrice 0.0% -2025-07-23T19:39:15.4468003Z github.com/ava-labs/coreth/eth/api_backend.go:435: SuggestGasTipCap 0.0% -2025-07-23T19:39:15.4468901Z github.com/ava-labs/coreth/eth/api_backend.go:439: FeeHistory 0.0% -2025-07-23T19:39:15.4469463Z github.com/ava-labs/coreth/eth/api_backend.go:443: ChainDb 0.0% -2025-07-23T19:39:15.4469918Z github.com/ava-labs/coreth/eth/api_backend.go:447: EventMux 0.0% -2025-07-23T19:39:15.4470386Z github.com/ava-labs/coreth/eth/api_backend.go:451: AccountManager 0.0% -2025-07-23T19:39:15.4470866Z github.com/ava-labs/coreth/eth/api_backend.go:455: ExtRPCEnabled 0.0% -2025-07-23T19:39:15.4471358Z github.com/ava-labs/coreth/eth/api_backend.go:459: UnprotectedAllowed 75.0% -2025-07-23T19:39:15.4471845Z github.com/ava-labs/coreth/eth/api_backend.go:479: RPCGasCap 0.0% -2025-07-23T19:39:15.4472311Z github.com/ava-labs/coreth/eth/api_backend.go:483: RPCEVMTimeout 0.0% -2025-07-23T19:39:15.4472785Z github.com/ava-labs/coreth/eth/api_backend.go:487: RPCTxFeeCap 0.0% -2025-07-23T19:39:15.4473416Z github.com/ava-labs/coreth/eth/api_backend.go:491: PriceOptionsConfig 0.0% -2025-07-23T19:39:15.4473907Z github.com/ava-labs/coreth/eth/api_backend.go:495: BloomStatus 0.0% -2025-07-23T19:39:15.4474377Z github.com/ava-labs/coreth/eth/api_backend.go:500: ServiceFilter 0.0% -2025-07-23T19:39:15.4474832Z github.com/ava-labs/coreth/eth/api_backend.go:506: Engine 0.0% -2025-07-23T19:39:15.4475286Z github.com/ava-labs/coreth/eth/api_backend.go:510: CurrentHeader 0.0% -2025-07-23T19:39:15.4475798Z github.com/ava-labs/coreth/eth/api_backend.go:514: GetMaxBlocksPerRequest 0.0% -2025-07-23T19:39:15.4476300Z github.com/ava-labs/coreth/eth/api_backend.go:518: StateAtBlock 0.0% -2025-07-23T19:39:15.4476777Z github.com/ava-labs/coreth/eth/api_backend.go:522: StateAtNextBlock 0.0% -2025-07-23T19:39:15.4477275Z github.com/ava-labs/coreth/eth/api_backend.go:526: StateAtTransaction 0.0% -2025-07-23T19:39:15.4477770Z github.com/ava-labs/coreth/eth/api_backend.go:530: MinRequiredTip 0.0% -2025-07-23T19:39:15.4478376Z github.com/ava-labs/coreth/eth/api_backend.go:535: isLatestAndAllowed 0.0% -2025-07-23T19:39:15.4478980Z github.com/ava-labs/coreth/eth/api_debug.go:56: NewDebugAPI 0.0% -2025-07-23T19:39:15.4479433Z github.com/ava-labs/coreth/eth/api_debug.go:61: DumpBlock 0.0% -2025-07-23T19:39:15.4479868Z github.com/ava-labs/coreth/eth/api_debug.go:91: Preimage 0.0% -2025-07-23T19:39:15.4480308Z github.com/ava-labs/coreth/eth/api_debug.go:100: GetBadBlocks 0.0% -2025-07-23T19:39:15.4480764Z github.com/ava-labs/coreth/eth/api_debug.go:109: AccountRange 0.0% -2025-07-23T19:39:15.4481224Z github.com/ava-labs/coreth/eth/api_debug.go:175: StorageRangeAt 0.0% -2025-07-23T19:39:15.4481693Z github.com/ava-labs/coreth/eth/api_debug.go:194: storageRangeAt 84.0% -2025-07-23T19:39:15.4482198Z github.com/ava-labs/coreth/eth/api_debug.go:235: GetModifiedAccountsByNumber 0.0% -2025-07-23T19:39:15.4482749Z github.com/ava-labs/coreth/eth/api_debug.go:263: GetModifiedAccountsByHash 0.0% -2025-07-23T19:39:15.4483277Z github.com/ava-labs/coreth/eth/api_debug.go:285: getModifiedAccounts 0.0% -2025-07-23T19:39:15.4483771Z github.com/ava-labs/coreth/eth/api_debug.go:326: GetAccessibleState 0.0% -2025-07-23T19:39:15.4484260Z github.com/ava-labs/coreth/eth/backend.go:121: roundUpCacheSize 0.0% -2025-07-23T19:39:15.4484704Z github.com/ava-labs/coreth/eth/backend.go:128: New 0.0% -2025-07-23T19:39:15.4485105Z github.com/ava-labs/coreth/eth/backend.go:309: APIs 0.0% -2025-07-23T19:39:15.4485521Z github.com/ava-labs/coreth/eth/backend.go:349: Etherbase 0.0% -2025-07-23T19:39:15.4485966Z github.com/ava-labs/coreth/eth/backend.go:361: SetEtherbase 0.0% -2025-07-23T19:39:15.4486401Z github.com/ava-labs/coreth/eth/backend.go:369: Miner 0.0% -2025-07-23T19:39:15.4486841Z github.com/ava-labs/coreth/eth/backend.go:371: AccountManager 0.0% -2025-07-23T19:39:15.4487301Z github.com/ava-labs/coreth/eth/backend.go:372: BlockChain 0.0% -2025-07-23T19:39:15.4487740Z github.com/ava-labs/coreth/eth/backend.go:373: TxPool 0.0% -2025-07-23T19:39:15.4488256Z github.com/ava-labs/coreth/eth/backend.go:374: EventMux 0.0% -2025-07-23T19:39:15.4488802Z github.com/ava-labs/coreth/eth/backend.go:375: Engine 0.0% -2025-07-23T19:39:15.4489217Z github.com/ava-labs/coreth/eth/backend.go:376: ChainDb 0.0% -2025-07-23T19:39:15.4489648Z github.com/ava-labs/coreth/eth/backend.go:378: NetVersion 0.0% -2025-07-23T19:39:15.4490092Z github.com/ava-labs/coreth/eth/backend.go:379: ArchiveMode 0.0% -2025-07-23T19:39:15.4490541Z github.com/ava-labs/coreth/eth/backend.go:380: BloomIndexer 0.0% -2025-07-23T19:39:15.4490973Z github.com/ava-labs/coreth/eth/backend.go:384: Start 0.0% -2025-07-23T19:39:15.4491377Z github.com/ava-labs/coreth/eth/backend.go:395: Stop 0.0% -2025-07-23T19:39:15.4491817Z github.com/ava-labs/coreth/eth/backend.go:413: LastAcceptedBlock 0.0% -2025-07-23T19:39:15.4492468Z github.com/ava-labs/coreth/eth/backend.go:423: precheckPopulateMissingTries 0.0% -2025-07-23T19:39:15.4493009Z github.com/ava-labs/coreth/eth/backend.go:447: handleOfflinePruning 0.0% -2025-07-23T19:39:15.4493517Z github.com/ava-labs/coreth/eth/bloombits.go:57: startBloomHandlers 0.0% -2025-07-23T19:39:15.4494049Z github.com/ava-labs/coreth/eth/chain_with_final_block.go:20: CurrentFinalBlock 0.0% -2025-07-23T19:39:15.4494608Z github.com/ava-labs/coreth/eth/ethconfig/config.go:58: NewDefaultConfig 100.0% -2025-07-23T19:39:15.4495142Z github.com/ava-labs/coreth/eth/ethconfig/gen_config.go:18: MarshalTOML 0.0% -2025-07-23T19:39:15.4495670Z github.com/ava-labs/coreth/eth/ethconfig/gen_config.go:108: UnmarshalTOML 0.0% -2025-07-23T19:39:15.4496173Z github.com/ava-labs/coreth/eth/filters/api.go:87: NewFilterAPI 100.0% -2025-07-23T19:39:15.4496654Z github.com/ava-labs/coreth/eth/filters/api.go:101: timeoutLoop 100.0% -2025-07-23T19:39:15.4497193Z github.com/ava-labs/coreth/eth/filters/api.go:134: NewPendingTransactionFilter 100.0% -2025-07-23T19:39:15.4497867Z github.com/ava-labs/coreth/eth/filters/api.go:168: NewPendingTransactions 0.0% -2025-07-23T19:39:15.4498507Z github.com/ava-labs/coreth/eth/filters/api.go:211: NewAcceptedTransactions 0.0% -2025-07-23T19:39:15.4499047Z github.com/ava-labs/coreth/eth/filters/api.go:253: NewBlockFilter 0.0% -2025-07-23T19:39:15.4499526Z github.com/ava-labs/coreth/eth/filters/api.go:291: NewHeads 0.0% -2025-07-23T19:39:15.4499961Z github.com/ava-labs/coreth/eth/filters/api.go:328: Logs 0.0% -2025-07-23T19:39:15.4500403Z github.com/ava-labs/coreth/eth/filters/api.go:387: NewFilter 87.0% -2025-07-23T19:39:15.4500859Z github.com/ava-labs/coreth/eth/filters/api.go:432: GetLogs 90.0% -2025-07-23T19:39:15.4501337Z github.com/ava-labs/coreth/eth/filters/api.go:470: UninstallFilter 100.0% -2025-07-23T19:39:15.4501841Z github.com/ava-labs/coreth/eth/filters/api.go:486: GetFilterLogs 0.0% -2025-07-23T19:39:15.4502333Z github.com/ava-labs/coreth/eth/filters/api.go:528: GetFilterChanges 80.0% -2025-07-23T19:39:15.4502822Z github.com/ava-labs/coreth/eth/filters/api.go:581: returnHashes 0.0% -2025-07-23T19:39:15.4503290Z github.com/ava-labs/coreth/eth/filters/api.go:590: returnLogs 66.7% -2025-07-23T19:39:15.4503766Z github.com/ava-labs/coreth/eth/filters/api.go:598: UnmarshalJSON 75.5% -2025-07-23T19:39:15.4504249Z github.com/ava-labs/coreth/eth/filters/api.go:703: decodeAddress 75.0% -2025-07-23T19:39:15.4504731Z github.com/ava-labs/coreth/eth/filters/api.go:711: decodeTopic 75.0% -2025-07-23T19:39:15.4505222Z github.com/ava-labs/coreth/eth/filters/filter.go:58: NewRangeFilter 100.0% -2025-07-23T19:39:15.4505741Z github.com/ava-labs/coreth/eth/filters/filter.go:91: NewBlockFilter 100.0% -2025-07-23T19:39:15.4506242Z github.com/ava-labs/coreth/eth/filters/filter.go:100: newFilter 100.0% -2025-07-23T19:39:15.4506710Z github.com/ava-labs/coreth/eth/filters/filter.go:110: Logs 80.4% -2025-07-23T19:39:15.4507195Z github.com/ava-labs/coreth/eth/filters/filter.go:222: rangeLogsAsync 70.6% -2025-07-23T19:39:15.4507693Z github.com/ava-labs/coreth/eth/filters/filter.go:263: indexedLogs 0.0% -2025-07-23T19:39:15.4508288Z github.com/ava-labs/coreth/eth/filters/filter.go:309: unindexedLogs 81.8% -2025-07-23T19:39:15.4508781Z github.com/ava-labs/coreth/eth/filters/filter.go:331: blockLogs 100.0% -2025-07-23T19:39:15.4509271Z github.com/ava-labs/coreth/eth/filters/filter.go:340: checkMatches 82.4% -2025-07-23T19:39:15.4509755Z github.com/ava-labs/coreth/eth/filters/filter.go:370: includes 100.0% -2025-07-23T19:39:15.4510239Z github.com/ava-labs/coreth/eth/filters/filter.go:380: filterLogs 100.0% -2025-07-23T19:39:15.4510736Z github.com/ava-labs/coreth/eth/filters/filter.go:414: bloomFilter 100.0% -2025-07-23T19:39:15.4511377Z github.com/ava-labs/coreth/eth/filters/filter_system.go:55: withDefaults 100.0% -2025-07-23T19:39:15.4511942Z github.com/ava-labs/coreth/eth/filters/filter_system.go:101: NewFilterSystem 100.0% -2025-07-23T19:39:15.4512480Z github.com/ava-labs/coreth/eth/filters/filter_system.go:111: getLogs 66.7% -2025-07-23T19:39:15.4513016Z github.com/ava-labs/coreth/eth/filters/filter_system.go:209: NewEventSystem 92.3% -2025-07-23T19:39:15.4513544Z github.com/ava-labs/coreth/eth/filters/filter_system.go:253: Err 100.0% -2025-07-23T19:39:15.4514064Z github.com/ava-labs/coreth/eth/filters/filter_system.go:258: Unsubscribe 100.0% -2025-07-23T19:39:15.4514595Z github.com/ava-labs/coreth/eth/filters/filter_system.go:283: subscribe 100.0% -2025-07-23T19:39:15.4515137Z github.com/ava-labs/coreth/eth/filters/filter_system.go:292: SubscribeLogs 100.0% -2025-07-23T19:39:15.4515719Z github.com/ava-labs/coreth/eth/filters/filter_system.go:334: SubscribeAcceptedLogs 0.0% -2025-07-23T19:39:15.4516328Z github.com/ava-labs/coreth/eth/filters/filter_system.go:359: subscribeAcceptedLogs 0.0% -2025-07-23T19:39:15.4517062Z github.com/ava-labs/coreth/eth/filters/filter_system.go:376: subscribeMinedPendingLogs 100.0% -2025-07-23T19:39:15.4517654Z github.com/ava-labs/coreth/eth/filters/filter_system.go:393: subscribeLogs 100.0% -2025-07-23T19:39:15.4518332Z github.com/ava-labs/coreth/eth/filters/filter_system.go:410: subscribePendingLogs 100.0% -2025-07-23T19:39:15.4518926Z github.com/ava-labs/coreth/eth/filters/filter_system.go:427: SubscribeNewHeads 100.0% -2025-07-23T19:39:15.4519527Z github.com/ava-labs/coreth/eth/filters/filter_system.go:443: SubscribeAcceptedHeads 0.0% -2025-07-23T19:39:15.4520125Z github.com/ava-labs/coreth/eth/filters/filter_system.go:459: SubscribePendingTxs 100.0% -2025-07-23T19:39:15.4520718Z github.com/ava-labs/coreth/eth/filters/filter_system.go:475: SubscribeAcceptedTxs 0.0% -2025-07-23T19:39:15.4521304Z github.com/ava-labs/coreth/eth/filters/filter_system.go:491: handleLogs 83.3% -2025-07-23T19:39:15.4521868Z github.com/ava-labs/coreth/eth/filters/filter_system.go:503: handleAcceptedLogs 33.3% -2025-07-23T19:39:15.4522129Z github.com/ava-labs/coreth/eth/filters/filter_system.go:515: handlePendingLogs 83.3% -2025-07-23T19:39:15.4522376Z github.com/ava-labs/coreth/eth/filters/filter_system.go:527: handleTxsEvent 100.0% -2025-07-23T19:39:15.4522646Z github.com/ava-labs/coreth/eth/filters/filter_system.go:533: handleTxsAcceptedEvent 0.0% -2025-07-23T19:39:15.4522902Z github.com/ava-labs/coreth/eth/filters/filter_system.go:539: handleChainEvent 100.0% -2025-07-23T19:39:15.4523180Z github.com/ava-labs/coreth/eth/filters/filter_system.go:545: handleChainAcceptedEvent 0.0% -2025-07-23T19:39:15.4523416Z github.com/ava-labs/coreth/eth/filters/filter_system.go:552: eventLoop 53.8% -2025-07-23T19:39:15.4523657Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:63: Estimate 73.4% -2025-07-23T19:39:15.4523898Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:199: execute 88.9% -2025-07-23T19:39:15.4524131Z github.com/ava-labs/coreth/eth/gasestimator/gasestimator.go:218: run 91.7% -2025-07-23T19:39:15.4524409Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:63: newFeeInfoProvider 100.0% -2025-07-23T19:39:15.4524650Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:92: addHeader 100.0% -2025-07-23T19:39:15.4524881Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:125: get 100.0% -2025-07-23T19:39:15.4525138Z github.com/ava-labs/coreth/eth/gasprice/fee_info_provider.go:136: populateCache 83.3% -2025-07-23T19:39:15.4525380Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:68: processBlock 84.6% -2025-07-23T19:39:15.4525638Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:89: processPercentiles 72.2% -2025-07-23T19:39:15.4525895Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:124: resolveBlockRange 100.0% -2025-07-23T19:39:15.4526293Z github.com/ava-labs/coreth/eth/gasprice/feehistory.go:177: FeeHistory 74.4% -2025-07-23T19:39:15.4526515Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:132: NewOracle 83.3% -2025-07-23T19:39:15.4526754Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:211: EstimateBaseFee 0.0% -2025-07-23T19:39:15.4527007Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:220: estimateNextBaseFee 57.1% -2025-07-23T19:39:15.4527233Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:239: SuggestPrice 60.0% -2025-07-23T19:39:15.4527471Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:266: SuggestTipCap 100.0% -2025-07-23T19:39:15.4527692Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:271: suggestTip 85.7% -2025-07-23T19:39:15.4527910Z github.com/ava-labs/coreth/eth/gasprice/gasprice.go:347: getFeeInfo 42.9% -2025-07-23T19:39:15.4528213Z github.com/ava-labs/coreth/eth/state_accessor.go:53: hashState 0.0% -2025-07-23T19:39:15.4528425Z github.com/ava-labs/coreth/eth/state_accessor.go:193: pathState 0.0% -2025-07-23T19:39:15.4528750Z github.com/ava-labs/coreth/eth/state_accessor.go:227: stateAtBlock 0.0% -2025-07-23T19:39:15.4528976Z github.com/ava-labs/coreth/eth/state_accessor.go:240: stateAtTransaction 0.0% -2025-07-23T19:39:15.4529194Z github.com/ava-labs/coreth/eth/state_accessor.go:287: StateAtNextBlock 0.0% -2025-07-23T19:39:15.4529393Z github.com/ava-labs/coreth/eth/tracers/api.go:115: NewAPI 100.0% -2025-07-23T19:39:15.4529607Z github.com/ava-labs/coreth/eth/tracers/api.go:127: NewFileTracerAPI 0.0% -2025-07-23T19:39:15.4529820Z github.com/ava-labs/coreth/eth/tracers/api.go:133: chainContext 100.0% -2025-07-23T19:39:15.4530028Z github.com/ava-labs/coreth/eth/tracers/api.go:139: blockByNumber 83.3% -2025-07-23T19:39:15.4530228Z github.com/ava-labs/coreth/eth/tracers/api.go:152: blockByHash 0.0% -2025-07-23T19:39:15.4530467Z github.com/ava-labs/coreth/eth/tracers/api.go:168: blockByNumberAndHash 66.7% -2025-07-23T19:39:15.4530662Z github.com/ava-labs/coreth/eth/tracers/api.go:213: String 0.0% -2025-07-23T19:39:15.4530859Z github.com/ava-labs/coreth/eth/tracers/api.go:243: TraceChain 0.0% -2025-07-23T19:39:15.4531063Z github.com/ava-labs/coreth/eth/tracers/api.go:276: traceChain 76.8% -2025-07-23T19:39:15.4531291Z github.com/ava-labs/coreth/eth/tracers/api.go:467: TraceBlockByNumber 100.0% -2025-07-23T19:39:15.4531514Z github.com/ava-labs/coreth/eth/tracers/api.go:477: TraceBlockByHash 0.0% -2025-07-23T19:39:15.4531712Z github.com/ava-labs/coreth/eth/tracers/api.go:487: TraceBlock 0.0% -2025-07-23T19:39:15.4531932Z github.com/ava-labs/coreth/eth/tracers/api.go:497: TraceBlockFromFile 0.0% -2025-07-23T19:39:15.4532143Z github.com/ava-labs/coreth/eth/tracers/api.go:508: TraceBadBlock 0.0% -2025-07-23T19:39:15.4532385Z github.com/ava-labs/coreth/eth/tracers/api.go:529: StandardTraceBlockToFile 0.0% -2025-07-23T19:39:15.4532613Z github.com/ava-labs/coreth/eth/tracers/api.go:539: IntermediateRoots 0.0% -2025-07-23T19:39:15.4532867Z github.com/ava-labs/coreth/eth/tracers/api.go:598: StandardTraceBadBlockToFile 0.0% -2025-07-23T19:39:15.4533064Z github.com/ava-labs/coreth/eth/tracers/api.go:619: traceBlock 76.0% -2025-07-23T19:39:15.4533291Z github.com/ava-labs/coreth/eth/tracers/api.go:679: traceBlockParallel 0.0% -2025-07-23T19:39:15.4533530Z github.com/ava-labs/coreth/eth/tracers/api.go:756: standardTraceBlockToFile 0.0% -2025-07-23T19:39:15.4533725Z github.com/ava-labs/coreth/eth/tracers/api.go:866: containsTx 0.0% -2025-07-23T19:39:15.4533945Z github.com/ava-labs/coreth/eth/tracers/api.go:877: TraceTransaction 73.7% -2025-07-23T19:39:15.4534139Z github.com/ava-labs/coreth/eth/tracers/api.go:920: TraceCall 80.6% -2025-07-23T19:39:15.4534335Z github.com/ava-labs/coreth/eth/tracers/api.go:996: traceTx 69.6% -2025-07-23T19:39:15.4534633Z github.com/ava-labs/coreth/eth/tracers/api.go:1042: APIs 0.0% -2025-07-23T19:39:15.4534850Z github.com/ava-labs/coreth/eth/tracers/api.go:1060: overrideConfig 0.0% -2025-07-23T19:39:15.4535089Z github.com/ava-labs/coreth/eth/tracers/tracker.go:49: newStateTracker 100.0% -2025-07-23T19:39:15.4535311Z github.com/ava-labs/coreth/eth/tracers/tracker.go:62: releaseState 100.0% -2025-07-23T19:39:15.4535533Z github.com/ava-labs/coreth/eth/tracers/tracker.go:95: callReleases 100.0% -2025-07-23T19:39:15.4535723Z github.com/ava-labs/coreth/eth/tracers/tracker.go:106: wait 87.5% -2025-07-23T19:39:15.4535967Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:53: New 0.0% -2025-07-23T19:39:15.4536269Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:59: CreateAccessList 0.0% -2025-07-23T19:39:15.4536531Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:92: GetProof 0.0% -2025-07-23T19:39:15.4536811Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:156: CallContract 0.0% -2025-07-23T19:39:15.4537160Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:166: GCStats 0.0% -2025-07-23T19:39:15.4537420Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:173: MemStats 0.0% -2025-07-23T19:39:15.4537771Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:180: SubscribePendingTransactions 0.0% -2025-07-23T19:39:15.4538039Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:184: toCallArg 0.0% -2025-07-23T19:39:15.4538417Z github.com/ava-labs/coreth/ethclient/corethclient/corethclient.go:219: toOverrideMap 0.0% -2025-07-23T19:39:15.4538620Z github.com/ava-labs/coreth/ethclient/ethclient.go:53: Dial 0.0% -2025-07-23T19:39:15.4538833Z github.com/ava-labs/coreth/ethclient/ethclient.go:58: DialContext 0.0% -2025-07-23T19:39:15.4539049Z github.com/ava-labs/coreth/ethclient/ethclient.go:67: NewClient 100.0% -2025-07-23T19:39:15.4539251Z github.com/ava-labs/coreth/ethclient/ethclient.go:72: Close 100.0% -2025-07-23T19:39:15.4539449Z github.com/ava-labs/coreth/ethclient/ethclient.go:77: Client 0.0% -2025-07-23T19:39:15.4539659Z github.com/ava-labs/coreth/ethclient/ethclient.go:84: ChainID 80.0% -2025-07-23T19:39:15.4539869Z github.com/ava-labs/coreth/ethclient/ethclient.go:97: BlockByHash 0.0% -2025-07-23T19:39:15.4540106Z github.com/ava-labs/coreth/ethclient/ethclient.go:106: BlockByNumber 100.0% -2025-07-23T19:39:15.4540326Z github.com/ava-labs/coreth/ethclient/ethclient.go:111: BlockNumber 100.0% -2025-07-23T19:39:15.4540546Z github.com/ava-labs/coreth/ethclient/ethclient.go:125: BlockReceipts 0.0% -2025-07-23T19:39:15.4540757Z github.com/ava-labs/coreth/ethclient/ethclient.go:141: getBlock 51.2% -2025-07-23T19:39:15.4540986Z github.com/ava-labs/coreth/ethclient/ethclient.go:221: HeaderByHash 80.0% -2025-07-23T19:39:15.4541219Z github.com/ava-labs/coreth/ethclient/ethclient.go:232: HeaderByNumber 80.0% -2025-07-23T19:39:15.4541454Z github.com/ava-labs/coreth/ethclient/ethclient.go:252: UnmarshalJSON 66.7% -2025-07-23T19:39:15.4541687Z github.com/ava-labs/coreth/ethclient/ethclient.go:260: TransactionByHash 0.0% -2025-07-23T19:39:15.4541925Z github.com/ava-labs/coreth/ethclient/ethclient.go:282: TransactionSender 0.0% -2025-07-23T19:39:15.4542153Z github.com/ava-labs/coreth/ethclient/ethclient.go:304: TransactionCount 0.0% -2025-07-23T19:39:15.4542391Z github.com/ava-labs/coreth/ethclient/ethclient.go:311: TransactionInBlock 0.0% -2025-07-23T19:39:15.4542640Z github.com/ava-labs/coreth/ethclient/ethclient.go:330: TransactionReceipt 80.0% -2025-07-23T19:39:15.4542859Z github.com/ava-labs/coreth/ethclient/ethclient.go:341: SyncProgress 0.0% -2025-07-23T19:39:15.4543092Z github.com/ava-labs/coreth/ethclient/ethclient.go:357: SubscribeNewHead 0.0% -2025-07-23T19:39:15.4543426Z github.com/ava-labs/coreth/ethclient/ethclient.go:371: NetworkID 0.0% -2025-07-23T19:39:15.4543637Z github.com/ava-labs/coreth/ethclient/ethclient.go:385: BalanceAt 0.0% -2025-07-23T19:39:15.4543866Z github.com/ava-labs/coreth/ethclient/ethclient.go:392: BalanceAtHash 0.0% -2025-07-23T19:39:15.4544073Z github.com/ava-labs/coreth/ethclient/ethclient.go:400: StorageAt 0.0% -2025-07-23T19:39:15.4544294Z github.com/ava-labs/coreth/ethclient/ethclient.go:407: StorageAtHash 0.0% -2025-07-23T19:39:15.4544499Z github.com/ava-labs/coreth/ethclient/ethclient.go:415: CodeAt 0.0% -2025-07-23T19:39:15.4544708Z github.com/ava-labs/coreth/ethclient/ethclient.go:422: CodeAtHash 0.0% -2025-07-23T19:39:15.4544918Z github.com/ava-labs/coreth/ethclient/ethclient.go:430: NonceAt 100.0% -2025-07-23T19:39:15.4545133Z github.com/ava-labs/coreth/ethclient/ethclient.go:437: NonceAtHash 0.0% -2025-07-23T19:39:15.4545339Z github.com/ava-labs/coreth/ethclient/ethclient.go:446: FilterLogs 0.0% -2025-07-23T19:39:15.4545592Z github.com/ava-labs/coreth/ethclient/ethclient.go:457: SubscribeFilterLogs 0.0% -2025-07-23T19:39:15.4545913Z github.com/ava-labs/coreth/ethclient/ethclient.go:472: toFilterArg 0.0% -2025-07-23T19:39:15.4546138Z github.com/ava-labs/coreth/ethclient/ethclient.go:539: CallContract 80.0% -2025-07-23T19:39:15.4546376Z github.com/ava-labs/coreth/ethclient/ethclient.go:550: CallContractAtHash 0.0% -2025-07-23T19:39:15.4546606Z github.com/ava-labs/coreth/ethclient/ethclient.go:572: SuggestGasPrice 0.0% -2025-07-23T19:39:15.4546843Z github.com/ava-labs/coreth/ethclient/ethclient.go:582: SuggestGasTipCap 0.0% -2025-07-23T19:39:15.4547053Z github.com/ava-labs/coreth/ethclient/ethclient.go:598: FeeHistory 0.0% -2025-07-23T19:39:15.4547267Z github.com/ava-labs/coreth/ethclient/ethclient.go:626: EstimateGas 0.0% -2025-07-23T19:39:15.4547506Z github.com/ava-labs/coreth/ethclient/ethclient.go:639: SendTransaction 75.0% -2025-07-23T19:39:15.4547733Z github.com/ava-labs/coreth/ethclient/ethclient.go:647: toBlockNumArg 85.7% -2025-07-23T19:39:15.4547950Z github.com/ava-labs/coreth/ethclient/ethclient.go:662: toCallArg 60.0% -2025-07-23T19:39:15.4548292Z github.com/ava-labs/coreth/ethclient/ethclient.go:722: toSyncProgress 0.0% -2025-07-23T19:39:15.4548536Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:44: NewClientWithHook 0.0% -2025-07-23T19:39:15.4548838Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:61: SubscribeNewAcceptedTransactions 0.0% -2025-07-23T19:39:15.4549128Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:73: SubscribeNewPendingTransactions 0.0% -2025-07-23T19:39:15.4549367Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:85: AcceptedCodeAt 0.0% -2025-07-23T19:39:15.4549599Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:91: AcceptedNonceAt 0.0% -2025-07-23T19:39:15.4549855Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:97: AcceptedCallContract 0.0% -2025-07-23T19:39:15.4550100Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:104: EstimateBaseFee 0.0% -2025-07-23T19:39:15.4550331Z github.com/ava-labs/coreth/ethclient/ethclient_ext.go:113: ToBlockNumArg 0.0% -2025-07-23T19:39:15.4550578Z github.com/ava-labs/coreth/ethclient/signer.go:48: setSenderFromServer 100.0% -2025-07-23T19:39:15.4550767Z github.com/ava-labs/coreth/ethclient/signer.go:53: Equal 0.0% -2025-07-23T19:39:15.4550959Z github.com/ava-labs/coreth/ethclient/signer.go:58: Sender 66.7% -2025-07-23T19:39:15.4551151Z github.com/ava-labs/coreth/ethclient/signer.go:65: ChainID 0.0% -2025-07-23T19:39:15.4551329Z github.com/ava-labs/coreth/ethclient/signer.go:68: Hash 0.0% -2025-07-23T19:39:15.4551543Z github.com/ava-labs/coreth/ethclient/signer.go:71: SignatureValues 0.0% -2025-07-23T19:39:15.4551763Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:48: Add 0.0% -2025-07-23T19:39:15.4552120Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:87: NewBackend 88.9% -2025-07-23T19:39:15.4552377Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:122: newWithNode 83.3% -2025-07-23T19:39:15.4552607Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:154: Close 100.0% -2025-07-23T19:39:15.4552833Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:163: Commit 75.0% -2025-07-23T19:39:15.4553075Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:171: buildBlock 73.3% -2025-07-23T19:39:15.4553344Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:196: acceptAncestors 83.3% -2025-07-23T19:39:15.4553581Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:219: Rollback 100.0% -2025-07-23T19:39:15.4553803Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:239: Fork 76.5% -2025-07-23T19:39:15.4554045Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:274: AdjustTime 100.0% -2025-07-23T19:39:15.4554279Z github.com/ava-labs/coreth/ethclient/simulated/backend.go:280: Client 100.0% -2025-07-23T19:39:15.4554659Z github.com/ava-labs/coreth/ethclient/simulated/options.go:29: WithBlockGasLimit 100.0% -2025-07-23T19:39:15.4554921Z github.com/ava-labs/coreth/ethclient/simulated/options.go:37: WithCallGasLimit 100.0% -2025-07-23T19:39:15.4555163Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:51: NewHasher 100.0% -2025-07-23T19:39:15.4555386Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:56: Reset 100.0% -2025-07-23T19:39:15.4555617Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:61: Update 100.0% -2025-07-23T19:39:15.4555838Z github.com/ava-labs/coreth/internal/blocktest/test_hash.go:68: Hash 100.0% -2025-07-23T19:39:15.4556039Z github.com/ava-labs/coreth/internal/debug/api.go:70: Verbosity 0.0% -2025-07-23T19:39:15.4556243Z github.com/ava-labs/coreth/internal/debug/api.go:76: Vmodule 0.0% -2025-07-23T19:39:15.4556439Z github.com/ava-labs/coreth/internal/debug/api.go:81: MemStats 0.0% -2025-07-23T19:39:15.4556644Z github.com/ava-labs/coreth/internal/debug/api.go:88: GcStats 0.0% -2025-07-23T19:39:15.4556849Z github.com/ava-labs/coreth/internal/debug/api.go:96: CpuProfile 0.0% -2025-07-23T19:39:15.4557076Z github.com/ava-labs/coreth/internal/debug/api.go:106: StartCPUProfile 0.0% -2025-07-23T19:39:15.4557298Z github.com/ava-labs/coreth/internal/debug/api.go:127: StopCPUProfile 0.0% -2025-07-23T19:39:15.4557494Z github.com/ava-labs/coreth/internal/debug/api.go:143: GoTrace 0.0% -2025-07-23T19:39:15.4557706Z github.com/ava-labs/coreth/internal/debug/api.go:155: BlockProfile 0.0% -2025-07-23T19:39:15.4557947Z github.com/ava-labs/coreth/internal/debug/api.go:164: SetBlockProfileRate 0.0% -2025-07-23T19:39:15.4558270Z github.com/ava-labs/coreth/internal/debug/api.go:169: WriteBlockProfile 0.0% -2025-07-23T19:39:15.4565299Z github.com/ava-labs/coreth/internal/debug/api.go:176: MutexProfile 0.0% -2025-07-23T19:39:15.4565641Z github.com/ava-labs/coreth/internal/debug/api.go:184: SetMutexProfileFraction 0.0% -2025-07-23T19:39:15.4565896Z github.com/ava-labs/coreth/internal/debug/api.go:189: WriteMutexProfile 0.0% -2025-07-23T19:39:15.4566136Z github.com/ava-labs/coreth/internal/debug/api.go:196: WriteMemProfile 0.0% -2025-07-23T19:39:15.4566340Z github.com/ava-labs/coreth/internal/debug/api.go:203: Stacks 0.0% -2025-07-23T19:39:15.4566576Z github.com/ava-labs/coreth/internal/debug/api.go:242: FreeOSMemory 0.0% -2025-07-23T19:39:15.4566797Z github.com/ava-labs/coreth/internal/debug/api.go:248: SetGCPercent 0.0% -2025-07-23T19:39:15.4567010Z github.com/ava-labs/coreth/internal/debug/api.go:252: writeProfile 0.0% -2025-07-23T19:39:15.4567227Z github.com/ava-labs/coreth/internal/debug/api.go:265: expandHome 0.0% -2025-07-23T19:39:15.4567432Z github.com/ava-labs/coreth/internal/debug/flags.go:181: init 100.0% -2025-07-23T19:39:15.4567816Z github.com/ava-labs/coreth/internal/debug/flags.go:187: Setup 0.0% -2025-07-23T19:39:15.4568045Z github.com/ava-labs/coreth/internal/debug/flags.go:314: StartPProf 0.0% -2025-07-23T19:39:15.4568391Z github.com/ava-labs/coreth/internal/debug/flags.go:325: Exit 0.0% -2025-07-23T19:39:15.4568656Z github.com/ava-labs/coreth/internal/debug/flags.go:333: validateLogLocation 0.0% -2025-07-23T19:39:15.4568885Z github.com/ava-labs/coreth/internal/debug/loudpanic.go:33: LoudPanic 0.0% -2025-07-23T19:39:15.4569107Z github.com/ava-labs/coreth/internal/debug/trace.go:39: StartGoTrace 0.0% -2025-07-23T19:39:15.4569325Z github.com/ava-labs/coreth/internal/debug/trace.go:60: StopGoTrace 0.0% -2025-07-23T19:39:15.4569532Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:42: lock 0.0% -2025-07-23T19:39:15.4569746Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:57: LockAddr 0.0% -2025-07-23T19:39:15.4569982Z github.com/ava-labs/coreth/internal/ethapi/addrlock.go:62: UnlockAddr 0.0% -2025-07-23T19:39:15.4570379Z github.com/ava-labs/coreth/internal/ethapi/api.coreth.go:46: SuggestPriceOptions 86.7% -2025-07-23T19:39:15.4570661Z github.com/ava-labs/coreth/internal/ethapi/api.coreth.go:104: calculateFeeSpeeds 100.0% -2025-07-23T19:39:15.4570901Z github.com/ava-labs/coreth/internal/ethapi/api.go:76: NewEthereumAPI 100.0% -2025-07-23T19:39:15.4571105Z github.com/ava-labs/coreth/internal/ethapi/api.go:81: GasPrice 0.0% -2025-07-23T19:39:15.4571309Z github.com/ava-labs/coreth/internal/ethapi/api.go:91: BaseFee 0.0% -2025-07-23T19:39:15.4571558Z github.com/ava-labs/coreth/internal/ethapi/api.go:100: MaxPriorityFeePerGas 0.0% -2025-07-23T19:39:15.4571781Z github.com/ava-labs/coreth/internal/ethapi/api.go:116: FeeHistory 0.0% -2025-07-23T19:39:15.4571982Z github.com/ava-labs/coreth/internal/ethapi/api.go:148: Syncing 0.0% -2025-07-23T19:39:15.4572208Z github.com/ava-labs/coreth/internal/ethapi/api.go:158: NewTxPoolAPI 0.0% -2025-07-23T19:39:15.4572418Z github.com/ava-labs/coreth/internal/ethapi/api.go:163: Content 0.0% -2025-07-23T19:39:15.4572633Z github.com/ava-labs/coreth/internal/ethapi/api.go:191: ContentFrom 0.0% -2025-07-23T19:39:15.4572833Z github.com/ava-labs/coreth/internal/ethapi/api.go:215: Status 0.0% -2025-07-23T19:39:15.4573035Z github.com/ava-labs/coreth/internal/ethapi/api.go:225: Inspect 0.0% -2025-07-23T19:39:15.4573287Z github.com/ava-labs/coreth/internal/ethapi/api.go:265: NewEthereumAccountAPI 0.0% -2025-07-23T19:39:15.4573493Z github.com/ava-labs/coreth/internal/ethapi/api.go:270: Accounts 0.0% -2025-07-23T19:39:15.4573746Z github.com/ava-labs/coreth/internal/ethapi/api.go:284: NewPersonalAccountAPI 0.0% -2025-07-23T19:39:15.4573965Z github.com/ava-labs/coreth/internal/ethapi/api.go:293: ListAccounts 0.0% -2025-07-23T19:39:15.4574183Z github.com/ava-labs/coreth/internal/ethapi/api.go:307: ListWallets 0.0% -2025-07-23T19:39:15.4574396Z github.com/ava-labs/coreth/internal/ethapi/api.go:329: OpenWallet 0.0% -2025-07-23T19:39:15.4574626Z github.com/ava-labs/coreth/internal/ethapi/api.go:343: DeriveAccount 0.0% -2025-07-23T19:39:15.4574837Z github.com/ava-labs/coreth/internal/ethapi/api.go:359: NewAccount 0.0% -2025-07-23T19:39:15.4575057Z github.com/ava-labs/coreth/internal/ethapi/api.go:376: fetchKeystore 0.0% -2025-07-23T19:39:15.4575280Z github.com/ava-labs/coreth/internal/ethapi/api.go:385: ImportRawKey 0.0% -2025-07-23T19:39:15.4575500Z github.com/ava-labs/coreth/internal/ethapi/api.go:401: UnlockAccount 0.0% -2025-07-23T19:39:15.4575717Z github.com/ava-labs/coreth/internal/ethapi/api.go:430: LockAccount 0.0% -2025-07-23T19:39:15.4575947Z github.com/ava-labs/coreth/internal/ethapi/api.go:440: signTransaction 0.0% -2025-07-23T19:39:15.4576172Z github.com/ava-labs/coreth/internal/ethapi/api.go:460: SendTransaction 0.0% -2025-07-23T19:39:15.4576521Z github.com/ava-labs/coreth/internal/ethapi/api.go:482: SignTransaction 0.0% -2025-07-23T19:39:15.4576725Z github.com/ava-labs/coreth/internal/ethapi/api.go:526: Sign 0.0% -2025-07-23T19:39:15.4576930Z github.com/ava-labs/coreth/internal/ethapi/api.go:554: EcRecover 0.0% -2025-07-23T19:39:15.4577161Z github.com/ava-labs/coreth/internal/ethapi/api.go:571: InitializeWallet 0.0% -2025-07-23T19:39:15.4577360Z github.com/ava-labs/coreth/internal/ethapi/api.go:598: Unpair 0.0% -2025-07-23T19:39:15.4577602Z github.com/ava-labs/coreth/internal/ethapi/api.go:618: NewBlockChainAPI 100.0% -2025-07-23T19:39:15.4577803Z github.com/ava-labs/coreth/internal/ethapi/api.go:628: ChainId 0.0% -2025-07-23T19:39:15.4578016Z github.com/ava-labs/coreth/internal/ethapi/api.go:633: BlockNumber 0.0% -2025-07-23T19:39:15.4578333Z github.com/ava-labs/coreth/internal/ethapi/api.go:641: GetBalance 0.0% -2025-07-23T19:39:15.4578535Z github.com/ava-labs/coreth/internal/ethapi/api.go:671: Put 0.0% -2025-07-23T19:39:15.4578851Z github.com/ava-labs/coreth/internal/ethapi/api.go:676: Delete 0.0% -2025-07-23T19:39:15.4579054Z github.com/ava-labs/coreth/internal/ethapi/api.go:683: GetProof 0.0% -2025-07-23T19:39:15.4579258Z github.com/ava-labs/coreth/internal/ethapi/api.go:766: decodeHash 0.0% -2025-07-23T19:39:15.4579506Z github.com/ava-labs/coreth/internal/ethapi/api.go:788: GetHeaderByNumber 100.0% -2025-07-23T19:39:15.4579740Z github.com/ava-labs/coreth/internal/ethapi/api.go:805: GetHeaderByHash 100.0% -2025-07-23T19:39:15.4579973Z github.com/ava-labs/coreth/internal/ethapi/api.go:820: GetBlockByNumber 100.0% -2025-07-23T19:39:15.4580210Z github.com/ava-labs/coreth/internal/ethapi/api.go:838: GetBlockByHash 100.0% -2025-07-23T19:39:15.4580493Z github.com/ava-labs/coreth/internal/ethapi/api.go:847: GetUncleByBlockNumberAndIndex 0.0% -2025-07-23T19:39:15.4580778Z github.com/ava-labs/coreth/internal/ethapi/api.go:862: GetUncleByBlockHashAndIndex 0.0% -2025-07-23T19:39:15.4581049Z github.com/ava-labs/coreth/internal/ethapi/api.go:877: GetUncleCountByBlockNumber 0.0% -2025-07-23T19:39:15.4581312Z github.com/ava-labs/coreth/internal/ethapi/api.go:886: GetUncleCountByBlockHash 0.0% -2025-07-23T19:39:15.4581519Z github.com/ava-labs/coreth/internal/ethapi/api.go:895: GetCode 0.0% -2025-07-23T19:39:15.4581739Z github.com/ava-labs/coreth/internal/ethapi/api.go:907: GetStorageAt 0.0% -2025-07-23T19:39:15.4581976Z github.com/ava-labs/coreth/internal/ethapi/api.go:921: GetBlockReceipts 85.7% -2025-07-23T19:39:15.4582174Z github.com/ava-labs/coreth/internal/ethapi/api.go:966: Apply 84.2% -2025-07-23T19:39:15.4582375Z github.com/ava-labs/coreth/internal/ethapi/api.go:1017: Apply 56.2% -2025-07-23T19:39:15.4582618Z github.com/ava-labs/coreth/internal/ethapi/api.go:1058: NewChainContext 100.0% -2025-07-23T19:39:15.4582826Z github.com/ava-labs/coreth/internal/ethapi/api.go:1062: Engine 100.0% -2025-07-23T19:39:15.4583037Z github.com/ava-labs/coreth/internal/ethapi/api.go:1066: GetHeader 0.0% -2025-07-23T19:39:15.4583248Z github.com/ava-labs/coreth/internal/ethapi/api.go:1076: doCall 80.8% -2025-07-23T19:39:15.4583450Z github.com/ava-labs/coreth/internal/ethapi/api.go:1128: DoCall 43.8% -2025-07-23T19:39:15.4583650Z github.com/ava-labs/coreth/internal/ethapi/api.go:1163: Call 66.7% -2025-07-23T19:39:15.4583878Z github.com/ava-labs/coreth/internal/ethapi/api.go:1183: DoEstimateGas 77.8% -2025-07-23T19:39:15.4584102Z github.com/ava-labs/coreth/internal/ethapi/api.go:1227: EstimateGas 100.0% -2025-07-23T19:39:15.4584349Z github.com/ava-labs/coreth/internal/ethapi/api.go:1236: RPCMarshalHeader 80.0% -2025-07-23T19:39:15.4584592Z github.com/ava-labs/coreth/internal/ethapi/api.go:1281: RPCMarshalBlock 95.0% -2025-07-23T19:39:15.4584838Z github.com/ava-labs/coreth/internal/ethapi/api.go:1313: rpcMarshalHeader 100.0% -2025-07-23T19:39:15.4585189Z github.com/ava-labs/coreth/internal/ethapi/api.go:1323: rpcMarshalBlock 100.0% -2025-07-23T19:39:15.4585427Z github.com/ava-labs/coreth/internal/ethapi/api.go:1361: newRPCTransaction 94.9% -2025-07-23T19:39:15.4585670Z github.com/ava-labs/coreth/internal/ethapi/api.go:1438: effectiveGasPrice 0.0% -2025-07-23T19:39:15.4585905Z github.com/ava-labs/coreth/internal/ethapi/api.go:1450: NewRPCTransaction 0.0% -2025-07-23T19:39:15.4586203Z github.com/ava-labs/coreth/internal/ethapi/api.go:1463: newRPCTransactionFromBlockIndex 75.0% -2025-07-23T19:39:15.4586507Z github.com/ava-labs/coreth/internal/ethapi/api.go:1472: newRPCRawTransactionFromBlockIndex 0.0% -2025-07-23T19:39:15.4586740Z github.com/ava-labs/coreth/internal/ethapi/api.go:1492: CreateAccessList 0.0% -2025-07-23T19:39:15.4586963Z github.com/ava-labs/coreth/internal/ethapi/api.go:1511: AccessList 0.0% -2025-07-23T19:39:15.4587211Z github.com/ava-labs/coreth/internal/ethapi/api.go:1573: NewTransactionAPI 100.0% -2025-07-23T19:39:15.4587576Z github.com/ava-labs/coreth/internal/ethapi/api.go:1581: GetBlockTransactionCountByNumber 0.0% -2025-07-23T19:39:15.4587865Z github.com/ava-labs/coreth/internal/ethapi/api.go:1590: GetBlockTransactionCountByHash 0.0% -2025-07-23T19:39:15.4588257Z github.com/ava-labs/coreth/internal/ethapi/api.go:1599: GetTransactionByBlockNumberAndIndex 0.0% -2025-07-23T19:39:15.4588551Z github.com/ava-labs/coreth/internal/ethapi/api.go:1607: GetTransactionByBlockHashAndIndex 0.0% -2025-07-23T19:39:15.4588861Z github.com/ava-labs/coreth/internal/ethapi/api.go:1615: GetRawTransactionByBlockNumberAndIndex 0.0% -2025-07-23T19:39:15.4589156Z github.com/ava-labs/coreth/internal/ethapi/api.go:1623: GetRawTransactionByBlockHashAndIndex 0.0% -2025-07-23T19:39:15.4589406Z github.com/ava-labs/coreth/internal/ethapi/api.go:1631: GetTransactionCount 0.0% -2025-07-23T19:39:15.4589657Z github.com/ava-labs/coreth/internal/ethapi/api.go:1650: GetTransactionByHash 0.0% -2025-07-23T19:39:15.4589934Z github.com/ava-labs/coreth/internal/ethapi/api.go:1672: GetRawTransactionByHash 0.0% -2025-07-23T19:39:15.4590190Z github.com/ava-labs/coreth/internal/ethapi/api.go:1688: GetTransactionReceipt 75.0% -2025-07-23T19:39:15.4590424Z github.com/ava-labs/coreth/internal/ethapi/api.go:1715: marshalReceipt 84.6% -2025-07-23T19:39:15.4590631Z github.com/ava-labs/coreth/internal/ethapi/api.go:1757: sign 80.0% -2025-07-23T19:39:15.4590877Z github.com/ava-labs/coreth/internal/ethapi/api.go:1770: SubmitTransaction 0.0% -2025-07-23T19:39:15.4591111Z github.com/ava-labs/coreth/internal/ethapi/api.go:1802: SendTransaction 37.5% -2025-07-23T19:39:15.4591342Z github.com/ava-labs/coreth/internal/ethapi/api.go:1838: FillTransaction 87.5% -2025-07-23T19:39:15.4591580Z github.com/ava-labs/coreth/internal/ethapi/api.go:1856: SendRawTransaction 0.0% -2025-07-23T19:39:15.4591783Z github.com/ava-labs/coreth/internal/ethapi/api.go:1873: Sign 0.0% -2025-07-23T19:39:15.4592017Z github.com/ava-labs/coreth/internal/ethapi/api.go:1898: SignTransaction 65.0% -2025-07-23T19:39:15.4592261Z github.com/ava-labs/coreth/internal/ethapi/api.go:1932: PendingTransactions 0.0% -2025-07-23T19:39:15.4592470Z github.com/ava-labs/coreth/internal/ethapi/api.go:1957: Resend 0.0% -2025-07-23T19:39:15.4592694Z github.com/ava-labs/coreth/internal/ethapi/api.go:2014: NewDebugAPI 0.0% -2025-07-23T19:39:15.4592922Z github.com/ava-labs/coreth/internal/ethapi/api.go:2019: GetRawHeader 0.0% -2025-07-23T19:39:15.4593139Z github.com/ava-labs/coreth/internal/ethapi/api.go:2038: GetRawBlock 0.0% -2025-07-23T19:39:15.4593369Z github.com/ava-labs/coreth/internal/ethapi/api.go:2057: GetRawReceipts 0.0% -2025-07-23T19:39:15.4593611Z github.com/ava-labs/coreth/internal/ethapi/api.go:2084: GetRawTransaction 0.0% -2025-07-23T19:39:15.4593830Z github.com/ava-labs/coreth/internal/ethapi/api.go:2100: PrintBlock 0.0% -2025-07-23T19:39:15.4594165Z github.com/ava-labs/coreth/internal/ethapi/api.go:2114: NewNetAPI 0.0% -2025-07-23T19:39:15.4594378Z github.com/ava-labs/coreth/internal/ethapi/api.go:2119: Listening 0.0% -2025-07-23T19:39:15.4594585Z github.com/ava-labs/coreth/internal/ethapi/api.go:2124: PeerCount 0.0% -2025-07-23T19:39:15.4594794Z github.com/ava-labs/coreth/internal/ethapi/api.go:2129: Version 0.0% -2025-07-23T19:39:15.4595011Z github.com/ava-labs/coreth/internal/ethapi/api.go:2135: checkTxFee 28.6% -2025-07-23T19:39:15.4595249Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:20: GetChainConfig 0.0% -2025-07-23T19:39:15.4595487Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:32: CallDetailed 0.0% -2025-07-23T19:39:15.4595717Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:71: GetBadBlocks 0.0% -2025-07-23T19:39:15.4596015Z github.com/ava-labs/coreth/internal/ethapi/api_extra.go:103: stateQueryBlockNumberAllowed 90.5% -2025-07-23T19:39:15.4596241Z github.com/ava-labs/coreth/internal/ethapi/backend.go:115: GetAPIs 0.0% -2025-07-23T19:39:15.4596597Z github.com/ava-labs/coreth/internal/ethapi/errors.go:47: ErrorCode 0.0% -2025-07-23T19:39:15.4596810Z github.com/ava-labs/coreth/internal/ethapi/errors.go:52: ErrorData 0.0% -2025-07-23T19:39:15.4597043Z github.com/ava-labs/coreth/internal/ethapi/errors.go:57: newRevertError 0.0% -2025-07-23T19:39:15.4597288Z github.com/ava-labs/coreth/internal/ethapi/errors.go:75: NewTxIndexingError 0.0% -2025-07-23T19:39:15.4597490Z github.com/ava-labs/coreth/internal/ethapi/errors.go:78: Error 0.0% -2025-07-23T19:39:15.4597702Z github.com/ava-labs/coreth/internal/ethapi/errors.go:84: ErrorCode 0.0% -2025-07-23T19:39:15.4597916Z github.com/ava-labs/coreth/internal/ethapi/errors.go:89: ErrorData 0.0% -2025-07-23T19:39:15.4598257Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:91: from 100.0% -2025-07-23T19:39:15.4598500Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:99: data 100.0% -2025-07-23T19:39:15.4598775Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:110: setDefaults 61.9% -2025-07-23T19:39:15.4599052Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:203: setFeeDefaults 89.7% -2025-07-23T19:39:15.4599356Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:263: setCancunFeeDefaults 100.0% -2025-07-23T19:39:15.4599674Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:282: setApricotPhase3FeeDefault 90.9% -2025-07-23T19:39:15.4599956Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:310: setBlobTxSidecar 90.5% -2025-07-23T19:39:15.4600223Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:387: ToMessage 78.6% -2025-07-23T19:39:15.4600494Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:476: toTransaction 73.3% -2025-07-23T19:39:15.4600790Z github.com/ava-labs/coreth/internal/ethapi/transaction_args.go:548: IsEIP4844 100.0% -2025-07-23T19:39:15.4601013Z github.com/ava-labs/coreth/internal/flags/categories.go:53: init 100.0% -2025-07-23T19:39:15.4601223Z github.com/ava-labs/coreth/internal/flags/helpers.go:47: NewApp 80.0% -2025-07-23T19:39:15.4601431Z github.com/ava-labs/coreth/internal/flags/helpers.go:62: Merge 0.0% -2025-07-23T19:39:15.4601676Z github.com/ava-labs/coreth/internal/flags/helpers.go:87: MigrateGlobalFlags 0.0% -2025-07-23T19:39:15.4601915Z github.com/ava-labs/coreth/internal/flags/helpers.go:114: doMigrateFlags 0.0% -2025-07-23T19:39:15.4602119Z github.com/ava-labs/coreth/internal/flags/helpers.go:149: init 50.0% -2025-07-23T19:39:15.4602338Z github.com/ava-labs/coreth/internal/flags/helpers.go:162: FlagString 0.0% -2025-07-23T19:39:15.4602549Z github.com/ava-labs/coreth/internal/flags/helpers.go:194: indent 0.0% -2025-07-23T19:39:15.4602762Z github.com/ava-labs/coreth/internal/flags/helpers.go:199: wordWrap 0.0% -2025-07-23T19:39:15.4603088Z github.com/ava-labs/coreth/internal/reexec/reexec.go:31: Register 0.0% -2025-07-23T19:39:15.4603297Z github.com/ava-labs/coreth/internal/reexec/reexec.go:40: Init 0.0% -2025-07-23T19:39:15.4603504Z github.com/ava-labs/coreth/internal/reexec/self_linux.go:23: Self 0.0% -2025-07-23T19:39:15.4603826Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:49: NewShutdownTracker 100.0% -2025-07-23T19:39:15.4604113Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:59: MarkStartup 71.4% -2025-07-23T19:39:15.4604378Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:75: Start 85.7% -2025-07-23T19:39:15.4604645Z github.com/ava-labs/coreth/internal/shutdowncheck/shutdown_tracker.go:91: Stop 100.0% -2025-07-23T19:39:15.4604868Z github.com/ava-labs/coreth/internal/version/vcs.go:43: buildInfoVCS 36.4% -2025-07-23T19:39:15.4605083Z github.com/ava-labs/coreth/internal/version/version.go:54: VCS 83.3% -2025-07-23T19:39:15.4605307Z github.com/ava-labs/coreth/internal/version/version.go:69: ClientName 0.0% -2025-07-23T19:39:15.4605617Z github.com/ava-labs/coreth/internal/version/version.go:85: Info 42.9% -2025-07-23T19:39:15.4605855Z github.com/ava-labs/coreth/internal/version/version.go:112: versionInfo 50.0% -2025-07-23T19:39:15.4606085Z github.com/ava-labs/coreth/internal/version/version.go:142: findModule 50.0% -2025-07-23T19:39:15.4606268Z github.com/ava-labs/coreth/log/format.go:45: format 66.7% -2025-07-23T19:39:15.4606474Z github.com/ava-labs/coreth/log/format.go:103: formatAttributes 82.1% -2025-07-23T19:39:15.4606676Z github.com/ava-labs/coreth/log/format.go:150: FormatSlogValue 84.0% -2025-07-23T19:39:15.4606879Z github.com/ava-labs/coreth/log/format.go:206: appendInt64 100.0% -2025-07-23T19:39:15.4607070Z github.com/ava-labs/coreth/log/format.go:214: appendUint64 88.2% -2025-07-23T19:39:15.4607280Z github.com/ava-labs/coreth/log/format.go:249: FormatLogfmtUint64 0.0% -2025-07-23T19:39:15.4607480Z github.com/ava-labs/coreth/log/format.go:254: appendBigInt 12.5% -2025-07-23T19:39:15.4607668Z github.com/ava-labs/coreth/log/format.go:288: appendU256 50.0% -2025-07-23T19:39:15.4607890Z github.com/ava-labs/coreth/log/format.go:298: appendEscapeString 100.0% -2025-07-23T19:39:15.4608085Z github.com/ava-labs/coreth/log/format.go:331: escapeMessage 60.0% -2025-07-23T19:39:15.4608404Z github.com/ava-labs/coreth/log/format.go:352: writeTimeTermFormat 100.0% -2025-07-23T19:39:15.4608612Z github.com/ava-labs/coreth/log/format.go:372: writePosIntWidth 91.7% -2025-07-23T19:39:15.4608811Z github.com/ava-labs/coreth/log/handler.go:22: DiscardHandler 0.0% -2025-07-23T19:39:15.4608983Z github.com/ava-labs/coreth/log/handler.go:26: Handle 0.0% -2025-07-23T19:39:15.4609165Z github.com/ava-labs/coreth/log/handler.go:30: Enabled 0.0% -2025-07-23T19:39:15.4609351Z github.com/ava-labs/coreth/log/handler.go:34: WithGroup 0.0% -2025-07-23T19:39:15.4609535Z github.com/ava-labs/coreth/log/handler.go:38: WithAttrs 0.0% -2025-07-23T19:39:15.4609748Z github.com/ava-labs/coreth/log/handler.go:67: NewTerminalHandler 0.0% -2025-07-23T19:39:15.4609991Z github.com/ava-labs/coreth/log/handler.go:73: NewTerminalHandlerWithLevel 100.0% -2025-07-23T19:39:15.4610172Z github.com/ava-labs/coreth/log/handler.go:82: Handle 100.0% -2025-07-23T19:39:15.4610353Z github.com/ava-labs/coreth/log/handler.go:91: Enabled 100.0% -2025-07-23T19:39:15.4610534Z github.com/ava-labs/coreth/log/handler.go:95: WithGroup 0.0% -2025-07-23T19:39:15.4610722Z github.com/ava-labs/coreth/log/handler.go:99: WithAttrs 100.0% -2025-07-23T19:39:15.4610929Z github.com/ava-labs/coreth/log/handler.go:110: ResetFieldPadding 0.0% -2025-07-23T19:39:15.4611125Z github.com/ava-labs/coreth/log/handler.go:117: JSONHandler 0.0% -2025-07-23T19:39:15.4611468Z github.com/ava-labs/coreth/log/handler.go:123: JSONHandlerWithLevel 100.0% -2025-07-23T19:39:15.4611669Z github.com/ava-labs/coreth/log/handler.go:134: LogfmtHandler 0.0% -2025-07-23T19:39:15.4611898Z github.com/ava-labs/coreth/log/handler.go:142: LogfmtHandlerWithLevel 0.0% -2025-07-23T19:39:15.4612119Z github.com/ava-labs/coreth/log/handler.go:149: builtinReplaceLogfmt 0.0% -2025-07-23T19:39:15.4612339Z github.com/ava-labs/coreth/log/handler.go:153: builtinReplaceJSON 0.0% -2025-07-23T19:39:15.4612540Z github.com/ava-labs/coreth/log/handler.go:157: builtinReplace 0.0% -2025-07-23T19:39:15.4612738Z github.com/ava-labs/coreth/log/logger.go:46: LvlFromString 37.5% -2025-07-23T19:39:15.4612943Z github.com/ava-labs/coreth/log/logger.go:67: FromLegacyLevel 0.0% -2025-07-23T19:39:15.4613155Z github.com/ava-labs/coreth/log/logger.go:93: LevelAlignedString 37.5% -2025-07-23T19:39:15.4613349Z github.com/ava-labs/coreth/log/logger.go:113: LevelString 0.0% -2025-07-23T19:39:15.4613524Z github.com/ava-labs/coreth/log/logger.go:173: NewLogger 0.0% -2025-07-23T19:39:15.4613801Z github.com/ava-labs/coreth/log/logger.go:180: Write 0.0% -2025-07-23T19:39:15.4613972Z github.com/ava-labs/coreth/log/logger.go:196: Log 0.0% -2025-07-23T19:39:15.4614139Z github.com/ava-labs/coreth/log/logger.go:200: With 0.0% -2025-07-23T19:39:15.4614298Z github.com/ava-labs/coreth/log/logger.go:204: New 0.0% -2025-07-23T19:39:15.4614481Z github.com/ava-labs/coreth/log/logger.go:209: Enabled 0.0% -2025-07-23T19:39:15.4614648Z github.com/ava-labs/coreth/log/logger.go:213: Trace 0.0% -2025-07-23T19:39:15.4614819Z github.com/ava-labs/coreth/log/logger.go:217: Debug 0.0% -2025-07-23T19:39:15.4614981Z github.com/ava-labs/coreth/log/logger.go:221: Info 0.0% -2025-07-23T19:39:15.4615141Z github.com/ava-labs/coreth/log/logger.go:225: Warn 0.0% -2025-07-23T19:39:15.4615311Z github.com/ava-labs/coreth/log/logger.go:229: Error 0.0% -2025-07-23T19:39:15.4615475Z github.com/ava-labs/coreth/log/logger.go:233: Crit 0.0% -2025-07-23T19:39:15.4615722Z github.com/ava-labs/coreth/metrics/metricstest/metrics.go:15: WithMetrics 40.0% -2025-07-23T19:39:15.4615992Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:28: NewGatherer 100.0% -2025-07-23T19:39:15.4616235Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:36: Gather 100.0% -2025-07-23T19:39:15.4616476Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:64: ptrTo 100.0% -2025-07-23T19:39:15.4616734Z github.com/ava-labs/coreth/metrics/prometheus/prometheus.go:66: metricFamily 94.1% -2025-07-23T19:39:15.4616896Z github.com/ava-labs/coreth/miner/miner.go:59: New 0.0% -2025-07-23T19:39:15.4617097Z github.com/ava-labs/coreth/miner/miner.go:65: SetEtherbase 0.0% -2025-07-23T19:39:15.4617291Z github.com/ava-labs/coreth/miner/miner.go:69: GenerateBlock 0.0% -2025-07-23T19:39:15.4617517Z github.com/ava-labs/coreth/miner/miner.go:75: SubscribePendingLogs 0.0% -2025-07-23T19:39:15.4617744Z github.com/ava-labs/coreth/miner/ordering.go:50: newTxWithMinerFee 100.0% -2025-07-23T19:39:15.4617921Z github.com/ava-labs/coreth/miner/ordering.go:72: Len 100.0% -2025-07-23T19:39:15.4618196Z github.com/ava-labs/coreth/miner/ordering.go:73: Less 100.0% -2025-07-23T19:39:15.4618376Z github.com/ava-labs/coreth/miner/ordering.go:82: Swap 100.0% -2025-07-23T19:39:15.4618554Z github.com/ava-labs/coreth/miner/ordering.go:84: Push 0.0% -2025-07-23T19:39:15.4618732Z github.com/ava-labs/coreth/miner/ordering.go:88: Pop 100.0% -2025-07-23T19:39:15.4619001Z github.com/ava-labs/coreth/miner/ordering.go:112: newTransactionsByPriceAndNonce 100.0% -2025-07-23T19:39:15.4619188Z github.com/ava-labs/coreth/miner/ordering.go:141: Peek 100.0% -2025-07-23T19:39:15.4619374Z github.com/ava-labs/coreth/miner/ordering.go:149: Shift 100.0% -2025-07-23T19:39:15.4619668Z github.com/ava-labs/coreth/miner/ordering.go:164: Pop 0.0% -2025-07-23T19:39:15.4619851Z github.com/ava-labs/coreth/miner/ordering.go:170: Empty 0.0% -2025-07-23T19:39:15.4620026Z github.com/ava-labs/coreth/miner/ordering.go:175: Clear 0.0% -2025-07-23T19:39:15.4620211Z github.com/ava-labs/coreth/miner/worker.go:116: newWorker 0.0% -2025-07-23T19:39:15.4620413Z github.com/ava-labs/coreth/miner/worker.go:133: setEtherbase 0.0% -2025-07-23T19:39:15.4620615Z github.com/ava-labs/coreth/miner/worker.go:140: commitNewWork 0.0% -2025-07-23T19:39:15.4620856Z github.com/ava-labs/coreth/miner/worker.go:264: createCurrentEnvironment 0.0% -2025-07-23T19:39:15.4621069Z github.com/ava-labs/coreth/miner/worker.go:313: commitTransaction 0.0% -2025-07-23T19:39:15.4621327Z github.com/ava-labs/coreth/miner/worker.go:327: commitBlobTransaction 0.0% -2025-07-23T19:39:15.4621545Z github.com/ava-labs/coreth/miner/worker.go:352: applyTransaction 0.0% -2025-07-23T19:39:15.4621879Z github.com/ava-labs/coreth/miner/worker.go:386: commitTransactions 0.0% -2025-07-23T19:39:15.4622058Z github.com/ava-labs/coreth/miner/worker.go:493: commit 0.0% -2025-07-23T19:39:15.4622252Z github.com/ava-labs/coreth/miner/worker.go:511: handleResult 0.0% -2025-07-23T19:39:15.4622447Z github.com/ava-labs/coreth/miner/worker.go:557: copyReceipts 0.0% -2025-07-23T19:39:15.4622640Z github.com/ava-labs/coreth/miner/worker.go:567: totalFees 0.0% -2025-07-23T19:39:15.4622926Z github.com/ava-labs/coreth/nativeasset/contract.go:36: PackNativeAssetBalanceInput 100.0% -2025-07-23T19:39:15.4623212Z github.com/ava-labs/coreth/nativeasset/contract.go:44: UnpackNativeAssetBalanceInput 100.0% -2025-07-23T19:39:15.4623412Z github.com/ava-labs/coreth/nativeasset/contract.go:55: Run 90.0% -2025-07-23T19:39:15.4623685Z github.com/ava-labs/coreth/nativeasset/contract.go:84: PackNativeAssetCallInput 100.0% -2025-07-23T19:39:15.4623969Z github.com/ava-labs/coreth/nativeasset/contract.go:94: UnpackNativeAssetCallInput 100.0% -2025-07-23T19:39:15.4624175Z github.com/ava-labs/coreth/nativeasset/contract.go:106: Run 100.0% -2025-07-23T19:39:15.4624369Z github.com/ava-labs/coreth/nativeasset/contract.go:123: run 81.0% -2025-07-23T19:39:15.4624574Z github.com/ava-labs/coreth/nativeasset/contract.go:168: Run 100.0% -2025-07-23T19:39:15.4624773Z github.com/ava-labs/coreth/network/network.go:125: NewNetwork 75.0% -2025-07-23T19:39:15.4625008Z github.com/ava-labs/coreth/network/network.go:155: SendAppRequestAny 90.0% -2025-07-23T19:39:15.4625223Z github.com/ava-labs/coreth/network/network.go:177: SendAppRequest 88.9% -2025-07-23T19:39:15.4625440Z github.com/ava-labs/coreth/network/network.go:204: sendAppRequest 70.0% -2025-07-23T19:39:15.4625644Z github.com/ava-labs/coreth/network/network.go:259: AppRequest 81.8% -2025-07-23T19:39:15.4625854Z github.com/ava-labs/coreth/network/network.go:304: AppResponse 100.0% -2025-07-23T19:39:15.4626079Z github.com/ava-labs/coreth/network/network.go:325: AppRequestFailed 71.4% -2025-07-23T19:39:15.4626339Z github.com/ava-labs/coreth/network/network.go:343: calculateTimeUntilDeadline 100.0% -2025-07-23T19:39:15.4626577Z github.com/ava-labs/coreth/network/network.go:365: markRequestFulfilled 100.0% -2025-07-23T19:39:15.4626781Z github.com/ava-labs/coreth/network/network.go:382: AppGossip 100.0% -2025-07-23T19:39:15.4626979Z github.com/ava-labs/coreth/network/network.go:387: Connected 87.5% -2025-07-23T19:39:15.4627183Z github.com/ava-labs/coreth/network/network.go:406: Disconnected 0.0% -2025-07-23T19:39:15.4627383Z github.com/ava-labs/coreth/network/network.go:424: Shutdown 100.0% -2025-07-23T19:39:15.4627626Z github.com/ava-labs/coreth/network/network.go:438: SetRequestHandler 100.0% -2025-07-23T19:39:15.4627922Z github.com/ava-labs/coreth/network/network.go:445: Size 100.0% -2025-07-23T19:39:15.4628228Z github.com/ava-labs/coreth/network/network.go:452: TrackBandwidth 0.0% -2025-07-23T19:39:15.4628488Z github.com/ava-labs/coreth/network/network.go:463: SendSyncedAppRequestAny 100.0% -2025-07-23T19:39:15.4628729Z github.com/ava-labs/coreth/network/network.go:475: SendSyncedAppRequest 75.0% -2025-07-23T19:39:15.4628923Z github.com/ava-labs/coreth/network/network.go:483: NewClient 0.0% -2025-07-23T19:39:15.4629125Z github.com/ava-labs/coreth/network/network.go:487: AddHandler 100.0% -2025-07-23T19:39:15.4629349Z github.com/ava-labs/coreth/network/network.go:492: P2PValidators 0.0% -2025-07-23T19:39:15.4629562Z github.com/ava-labs/coreth/network/network.go:501: nextRequestID 100.0% -2025-07-23T19:39:15.4629790Z github.com/ava-labs/coreth/network/network.go:511: IsNetworkRequest 100.0% -2025-07-23T19:39:15.4630022Z github.com/ava-labs/coreth/network/peer_tracker.go:55: NewPeerTracker 100.0% -2025-07-23T19:39:15.4630268Z github.com/ava-labs/coreth/network/peer_tracker.go:70: shouldTrackNewPeer 85.7% -2025-07-23T19:39:15.4630625Z github.com/ava-labs/coreth/network/peer_tracker.go:85: getResponsivePeer 75.0% -2025-07-23T19:39:15.4630845Z github.com/ava-labs/coreth/network/peer_tracker.go:98: GetAnyPeer 100.0% -2025-07-23T19:39:15.4631067Z github.com/ava-labs/coreth/network/peer_tracker.go:133: TrackPeer 100.0% -2025-07-23T19:39:15.4631295Z github.com/ava-labs/coreth/network/peer_tracker.go:138: TrackBandwidth 86.7% -2025-07-23T19:39:15.4631508Z github.com/ava-labs/coreth/network/peer_tracker.go:165: Connected 71.4% -2025-07-23T19:39:15.4631738Z github.com/ava-labs/coreth/network/peer_tracker.go:188: Disconnected 100.0% -2025-07-23T19:39:15.4631937Z github.com/ava-labs/coreth/network/peer_tracker.go:198: Size 100.0% -2025-07-23T19:39:15.4632207Z github.com/ava-labs/coreth/network/stats/stats.go:23: IncDeadlineDroppedRequest 100.0% -2025-07-23T19:39:15.4632479Z github.com/ava-labs/coreth/network/stats/stats.go:27: UpdateTimeUntilDeadline 100.0% -2025-07-23T19:39:15.4632742Z github.com/ava-labs/coreth/network/stats/stats.go:31: NewRequestHandlerStats 100.0% -2025-07-23T19:39:15.4633030Z github.com/ava-labs/coreth/network/waiting_handler.go:29: newWaitingResponseHandler 100.0% -2025-07-23T19:39:15.4633257Z github.com/ava-labs/coreth/network/waiting_handler.go:39: OnResponse 100.0% -2025-07-23T19:39:15.4633481Z github.com/ava-labs/coreth/network/waiting_handler.go:46: OnFailure 100.0% -2025-07-23T19:39:15.4633720Z github.com/ava-labs/coreth/network/waiting_handler.go:52: WaitForResult 100.0% -2025-07-23T19:39:15.4633885Z github.com/ava-labs/coreth/node/api.go:38: apis 100.0% -2025-07-23T19:39:15.4634074Z github.com/ava-labs/coreth/node/api.go:59: ClientVersion 0.0% -2025-07-23T19:39:15.4634231Z github.com/ava-labs/coreth/node/api.go:65: Sha3 0.0% -2025-07-23T19:39:15.4634436Z github.com/ava-labs/coreth/node/config.go:75: ExtRPCEnabled 100.0% -2025-07-23T19:39:15.4634640Z github.com/ava-labs/coreth/node/config.go:81: KeyDirConfig 60.0% -2025-07-23T19:39:15.4634840Z github.com/ava-labs/coreth/node/config.go:97: GetKeyStoreDir 75.0% -2025-07-23T19:39:15.4635056Z github.com/ava-labs/coreth/node/config.go:119: makeAccountManager 58.8% -2025-07-23T19:39:15.4635223Z github.com/ava-labs/coreth/node/node.go:42: New 87.5% -2025-07-23T19:39:15.4635396Z github.com/ava-labs/coreth/node/node.go:62: Config 100.0% -2025-07-23T19:39:15.4635602Z github.com/ava-labs/coreth/node/node.go:67: AccountManager 100.0% -2025-07-23T19:39:15.4635767Z github.com/ava-labs/coreth/node/node.go:72: APIs 100.0% -2025-07-23T19:39:15.4635996Z github.com/ava-labs/coreth/params/config_extra.go:34: SetEthUpgrades 79.3% -2025-07-23T19:39:15.4636205Z github.com/ava-labs/coreth/params/config_extra.go:91: GetExtra 60.0% -2025-07-23T19:39:15.4636513Z github.com/ava-labs/coreth/params/config_extra.go:100: Copy 0.0% -2025-07-23T19:39:15.4636734Z github.com/ava-labs/coreth/params/config_extra.go:107: WithExtra 100.0% -2025-07-23T19:39:15.4636945Z github.com/ava-labs/coreth/params/config_extra.go:122: MarshalJSON 0.0% -2025-07-23T19:39:15.4637164Z github.com/ava-labs/coreth/params/config_extra.go:152: UnmarshalJSON 0.0% -2025-07-23T19:39:15.4637402Z github.com/ava-labs/coreth/params/config_extra.go:174: ToWithUpgradesJSON 0.0% -2025-07-23T19:39:15.4637619Z github.com/ava-labs/coreth/params/config_libevm.go:18: libevmInit 100.0% -2025-07-23T19:39:15.4637863Z github.com/ava-labs/coreth/params/config_libevm.go:31: constructRulesExtra 53.3% -2025-07-23T19:39:15.4638086Z github.com/ava-labs/coreth/params/extras/config.go:96: copyAndSet 100.0% -2025-07-23T19:39:15.4638437Z github.com/ava-labs/coreth/params/extras/config.go:123: CheckConfigCompatible 0.0% -2025-07-23T19:39:15.4638664Z github.com/ava-labs/coreth/params/extras/config.go:145: Description 0.0% -2025-07-23T19:39:15.4639049Z github.com/ava-labs/coreth/params/extras/config.go:166: isForkTimestampIncompatible 0.0% -2025-07-23T19:39:15.4639294Z github.com/ava-labs/coreth/params/extras/config.go:172: isTimestampForked 100.0% -2025-07-23T19:39:15.4639552Z github.com/ava-labs/coreth/params/extras/config.go:179: configTimestampEqual 0.0% -2025-07-23T19:39:15.4639777Z github.com/ava-labs/coreth/params/extras/config.go:194: UnmarshalJSON 0.0% -2025-07-23T19:39:15.4639998Z github.com/ava-labs/coreth/params/extras/config.go:210: MarshalJSON 0.0% -2025-07-23T19:39:15.4640250Z github.com/ava-labs/coreth/params/extras/config.go:223: CheckConfigForkOrder 0.0% -2025-07-23T19:39:15.4640464Z github.com/ava-labs/coreth/params/extras/config.go:240: checkForks 0.0% -2025-07-23T19:39:15.4640670Z github.com/ava-labs/coreth/params/extras/config.go:281: Verify 0.0% -2025-07-23T19:39:15.4640919Z github.com/ava-labs/coreth/params/extras/config.go:291: IsPrecompileEnabled 0.0% -2025-07-23T19:39:15.4641170Z github.com/ava-labs/coreth/params/extras/config.go:303: IsForkTransition 100.0% -2025-07-23T19:39:15.4641399Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:61: Equal 0.0% -2025-07-23T19:39:15.4641718Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:65: checkNetworkUpgradesCompatible 0.0% -2025-07-23T19:39:15.4641964Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:112: forkOrder 0.0% -2025-07-23T19:39:15.4642230Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:133: IsApricotPhase1 0.0% -2025-07-23T19:39:15.4642493Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:139: IsApricotPhase2 0.0% -2025-07-23T19:39:15.4642761Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:145: IsApricotPhase3 0.0% -2025-07-23T19:39:15.4643019Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:151: IsApricotPhase4 0.0% -2025-07-23T19:39:15.4643288Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:157: IsApricotPhase5 0.0% -2025-07-23T19:39:15.4643566Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:163: IsApricotPhasePre6 0.0% -2025-07-23T19:39:15.4643826Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:169: IsApricotPhase6 0.0% -2025-07-23T19:39:15.4644112Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:175: IsApricotPhasePost6 0.0% -2025-07-23T19:39:15.4644350Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:181: IsBanff 0.0% -2025-07-23T19:39:15.4644595Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:187: IsCortina 0.0% -2025-07-23T19:39:15.4644833Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:193: IsDurango 0.0% -2025-07-23T19:39:15.4645064Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:199: IsEtna 0.0% -2025-07-23T19:39:15.4645422Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:205: IsFortuna 0.0% -2025-07-23T19:39:15.4645664Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:211: IsGranite 0.0% -2025-07-23T19:39:15.4645918Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:215: Description 0.0% -2025-07-23T19:39:15.4646189Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:234: GetNetworkUpgrades 0.0% -2025-07-23T19:39:15.4646456Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:264: GetAvalancheRules 0.0% -2025-07-23T19:39:15.4646709Z github.com/ava-labs/coreth/params/extras/network_upgrades.go:283: ptrToString 0.0% -2025-07-23T19:39:15.4646978Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:32: UnmarshalJSON 0.0% -2025-07-23T19:39:15.4647236Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:59: MarshalJSON 0.0% -2025-07-23T19:39:15.4647547Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:71: verifyPrecompileUpgrades 0.0% -2025-07-23T19:39:15.4647861Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:137: GetActivePrecompileConfig 0.0% -2025-07-23T19:39:15.4648369Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:147: GetActivatingPrecompileConfigs 0.0% -2025-07-23T19:39:15.4648688Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:176: checkPrecompilesCompatible 0.0% -2025-07-23T19:39:15.4648996Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:192: checkPrecompileCompatible 0.0% -2025-07-23T19:39:15.4649313Z github.com/ava-labs/coreth/params/extras/precompile_upgrade.go:230: EnabledStatefulPrecompiles 0.0% -2025-07-23T19:39:15.4649557Z github.com/ava-labs/coreth/params/extras/precompiles.go:18: UnmarshalJSON 0.0% -2025-07-23T19:39:15.4649793Z github.com/ava-labs/coreth/params/extras/rules.go:28: PredicatersExist 0.0% -2025-07-23T19:39:15.4650022Z github.com/ava-labs/coreth/params/extras/rules.go:32: PredicaterExists 0.0% -2025-07-23T19:39:15.4650263Z github.com/ava-labs/coreth/params/extras/rules.go:38: IsPrecompileEnabled 0.0% -2025-07-23T19:39:15.4650495Z github.com/ava-labs/coreth/params/hooks_libevm.go:28: GetRulesExtra 100.0% -2025-07-23T19:39:15.4650734Z github.com/ava-labs/coreth/params/hooks_libevm.go:33: CanCreateContract 0.0% -2025-07-23T19:39:15.4650986Z github.com/ava-labs/coreth/params/hooks_libevm.go:37: CanExecuteTransaction 0.0% -2025-07-23T19:39:15.4651234Z github.com/ava-labs/coreth/params/hooks_libevm.go:42: MinimumGasConsumption 0.0% -2025-07-23T19:39:15.4651463Z github.com/ava-labs/coreth/params/hooks_libevm.go:70: ActivePrecompiles 0.0% -2025-07-23T19:39:15.4651730Z github.com/ava-labs/coreth/params/hooks_libevm.go:92: precompileOverrideBuiltin 0.0% -2025-07-23T19:39:15.4651955Z github.com/ava-labs/coreth/params/hooks_libevm.go:113: makePrecompile 0.0% -2025-07-23T19:39:15.4652188Z github.com/ava-labs/coreth/params/hooks_libevm.go:140: PrecompileOverride 0.0% -2025-07-23T19:39:15.4652408Z github.com/ava-labs/coreth/params/hooks_libevm.go:160: GetStateDB 0.0% -2025-07-23T19:39:15.4652637Z github.com/ava-labs/coreth/params/hooks_libevm.go:172: GetBlockContext 0.0% -2025-07-23T19:39:15.4652861Z github.com/ava-labs/coreth/params/hooks_libevm.go:176: GetChainConfig 0.0% -2025-07-23T19:39:15.4653081Z github.com/ava-labs/coreth/params/hooks_libevm.go:180: GetSnowContext 0.0% -2025-07-23T19:39:15.4653306Z github.com/ava-labs/coreth/params/hooks_libevm.go:184: GetPrecompileEnv 0.0% -2025-07-23T19:39:15.4653513Z github.com/ava-labs/coreth/params/hooks_libevm.go:194: Number 0.0% -2025-07-23T19:39:15.4653719Z github.com/ava-labs/coreth/params/hooks_libevm.go:198: Timestamp 0.0% -2025-07-23T19:39:15.4653958Z github.com/ava-labs/coreth/params/hooks_libevm.go:202: GetPredicateResults 0.0% -2025-07-23T19:39:15.4654177Z github.com/ava-labs/coreth/params/version.go:53: VersionWithCommit 0.0% -2025-07-23T19:39:15.4654511Z github.com/ava-labs/coreth/plugin/evm/admin.go:22: NewAdminService 0.0% -2025-07-23T19:39:15.4654735Z github.com/ava-labs/coreth/plugin/evm/admin.go:30: StartCPUProfiler 0.0% -2025-07-23T19:39:15.4654953Z github.com/ava-labs/coreth/plugin/evm/admin.go:40: StopCPUProfiler 0.0% -2025-07-23T19:39:15.4655161Z github.com/ava-labs/coreth/plugin/evm/admin.go:50: MemoryProfile 0.0% -2025-07-23T19:39:15.4655367Z github.com/ava-labs/coreth/plugin/evm/admin.go:60: LockProfile 0.0% -2025-07-23T19:39:15.4655565Z github.com/ava-labs/coreth/plugin/evm/admin.go:69: SetLogLevel 0.0% -2025-07-23T19:39:15.4655766Z github.com/ava-labs/coreth/plugin/evm/admin.go:81: GetVMConfig 0.0% -2025-07-23T19:39:15.4656055Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/ops.go:12: ConvertToAtomicOps 75.0% -2025-07-23T19:39:15.4656440Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:26: AddItemsToBeRemovedToPeerChain 87.5% -2025-07-23T19:39:15.4656780Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:40: AssertOpsApplied 100.0% -2025-07-23T19:39:15.4657231Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:58: AssertOpsNotApplied 100.0% -2025-07-23T19:39:15.4657573Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:76: NewSharedMemories 100.0% -2025-07-23T19:39:15.4657894Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/shared_memories.go:85: TestSharedMemory 100.0% -2025-07-23T19:39:15.4658310Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:28: init 83.3% -2025-07-23T19:39:15.4658622Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:58: GasUsed 100.0% -2025-07-23T19:39:15.4658864Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:61: Verify 0.0% -2025-07-23T19:39:15.4659117Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:64: AtomicOps 100.0% -2025-07-23T19:39:15.4659372Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:69: Initialize 0.0% -2025-07-23T19:39:15.4659605Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:72: ID 100.0% -2025-07-23T19:39:15.4659853Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:75: Burned 100.0% -2025-07-23T19:39:15.4660085Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:78: Bytes 0.0% -2025-07-23T19:39:15.4660335Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:81: SignedBytes 0.0% -2025-07-23T19:39:15.4660598Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:84: InputUTXOs 100.0% -2025-07-23T19:39:15.4660827Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:87: Visit 0.0% -2025-07-23T19:39:15.4661107Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:92: EVMStateTransfer 0.0% -2025-07-23T19:39:15.4661430Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:98: GenerateTestImportTxWithGas 100.0% -2025-07-23T19:39:15.4661736Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:115: GenerateTestImportTx 100.0% -2025-07-23T19:39:15.4662038Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:130: GenerateTestExportTx 100.0% -2025-07-23T19:39:15.4662287Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:151: NewTestTx 80.0% -2025-07-23T19:39:15.4662553Z github.com/ava-labs/coreth/plugin/evm/atomic/atomictest/tx.go:163: NewTestTxs 100.0% -2025-07-23T19:39:15.4662763Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:25: init 85.7% -2025-07-23T19:39:15.4663004Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:57: ExtractAtomicTxs 0.0% -2025-07-23T19:39:15.4663250Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:76: ExtractAtomicTx 66.7% -2025-07-23T19:39:15.4663513Z github.com/ava-labs/coreth/plugin/evm/atomic/codec.go:89: ExtractAtomicTxsBatch 0.0% -2025-07-23T19:39:15.4663748Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:60: InputUTXOs 0.0% -2025-07-23T19:39:15.4664103Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:75: Verify 0.0% -2025-07-23T19:39:15.4664334Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:134: GasUsed 0.0% -2025-07-23T19:39:15.4664563Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:156: Burned 0.0% -2025-07-23T19:39:15.4664784Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:182: Visit 0.0% -2025-07-23T19:39:15.4665014Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:185: AtomicOps 0.0% -2025-07-23T19:39:15.4665260Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:219: NewExportTx 0.0% -2025-07-23T19:39:15.4665517Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:313: EVMStateTransfer 0.0% -2025-07-23T19:39:15.4665785Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:352: getSpendableFunds 0.0% -2025-07-23T19:39:15.4666072Z github.com/ava-labs/coreth/plugin/evm/atomic/export_tx.go:409: getSpendableAVAXWithFee 0.0% -2025-07-23T19:39:15.4666464Z github.com/ava-labs/coreth/plugin/evm/atomic/gossip.go:12: MarshalGossip 100.0% -2025-07-23T19:39:15.4666720Z github.com/ava-labs/coreth/plugin/evm/atomic/gossip.go:16: UnmarshalGossip 100.0% -2025-07-23T19:39:15.4666953Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:63: InputUTXOs 0.0% -2025-07-23T19:39:15.4667177Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:72: Verify 0.0% -2025-07-23T19:39:15.4667404Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:136: GasUsed 0.0% -2025-07-23T19:39:15.4667628Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:161: Burned 0.0% -2025-07-23T19:39:15.4667865Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:192: AtomicOps 0.0% -2025-07-23T19:39:15.4668211Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:202: NewImportTx 0.0% -2025-07-23T19:39:15.4668478Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:335: EVMStateTransfer 0.0% -2025-07-23T19:39:15.4668708Z github.com/ava-labs/coreth/plugin/evm/atomic/import_tx.go:352: Visit 0.0% -2025-07-23T19:39:15.4668943Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:18: Initialize 100.0% -2025-07-23T19:39:15.4669163Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:25: ID 100.0% -2025-07-23T19:39:15.4669381Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:30: Bytes 0.0% -2025-07-23T19:39:15.4669623Z github.com/ava-labs/coreth/plugin/evm/atomic/metadata.go:35: SignedBytes 100.0% -2025-07-23T19:39:15.4669923Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:42: NewAtomicBackend 75.0% -2025-07-23T19:39:15.4670201Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:79: initialize 72.0% -2025-07-23T19:39:15.4670521Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:182: ApplyToSharedMemory 63.3% -2025-07-23T19:39:15.4670880Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:303: MarkApplyToSharedMemoryCursor 100.0% -2025-07-23T19:39:15.4671204Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:309: GetVerifiedAtomicState 0.0% -2025-07-23T19:39:15.4671503Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:320: getAtomicRootAt 0.0% -2025-07-23T19:39:15.4671794Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:332: SetLastAccepted 0.0% -2025-07-23T19:39:15.4672070Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:343: InsertTxs 0.0% -2025-07-23T19:39:15.4672335Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:393: IsBonus 0.0% -2025-07-23T19:39:15.4672617Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:400: AtomicTrie 100.0% -2025-07-23T19:39:15.4672913Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:406: mergeAtomicOps 91.7% -2025-07-23T19:39:15.4673347Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:428: mergeAtomicOpsToMap 100.0% -2025-07-23T19:39:15.4673640Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_backend.go:438: AddBonusBlock 0.0% -2025-07-23T19:39:15.4673975Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:65: NewAtomicTxRepository 75.0% -2025-07-23T19:39:15.4674303Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:85: initializeHeightIndex 59.6% -2025-07-23T19:39:15.4674606Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:185: GetIndexHeight 0.0% -2025-07-23T19:39:15.4674889Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:201: GetByTxID 0.0% -2025-07-23T19:39:15.4675184Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:229: GetByHeight 100.0% -2025-07-23T19:39:15.4675503Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:236: getByHeightBytes 100.0% -2025-07-23T19:39:15.4675787Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:248: Write 100.0% -2025-07-23T19:39:15.4676182Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:254: WriteBonus 0.0% -2025-07-23T19:39:15.4676454Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:258: write 72.2% -2025-07-23T19:39:15.4676744Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:300: indexTxByID 80.0% -2025-07-23T19:39:15.4677056Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:320: indexTxsAtHeight 66.7% -2025-07-23T19:39:15.4677390Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:335: appendTxToHeightIndex 75.0% -2025-07-23T19:39:15.4677708Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_repository.go:356: IterateByHeight 100.0% -2025-07-23T19:39:15.4677957Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:28: Root 0.0% -2025-07-23T19:39:15.4678321Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:35: Accept 0.0% -2025-07-23T19:39:15.4678583Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_state.go:78: Reject 0.0% -2025-07-23T19:39:15.4678862Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:52: newAtomicTrie 58.3% -2025-07-23T19:39:15.4679194Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:103: lastCommittedRootIfExists 72.7% -2025-07-23T19:39:15.4679498Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:126: nearestCommitHeight 100.0% -2025-07-23T19:39:15.4679764Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:130: OpenTrie 100.0% -2025-07-23T19:39:15.4680028Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:135: Commit 75.0% -2025-07-23T19:39:15.4680300Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:143: UpdateTrie 80.0% -2025-07-23T19:39:15.4680592Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:165: LastCommitted 100.0% -2025-07-23T19:39:15.4680900Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:171: updateLastCommitted 75.0% -2025-07-23T19:39:15.4681163Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:191: Iterator 75.0% -2025-07-23T19:39:15.4681421Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:205: TrieDB 0.0% -2025-07-23T19:39:15.4681671Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:212: Root 100.0% -2025-07-23T19:39:15.4681936Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:218: getRoot 62.5% -2025-07-23T19:39:15.4682231Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:237: LastAcceptedRoot 100.0% -2025-07-23T19:39:15.4682497Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:241: InsertTrie 55.6% -2025-07-23T19:39:15.4682884Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:263: AcceptTrie 83.3% -2025-07-23T19:39:15.4683153Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie.go:293: RejectTrie 0.0% -2025-07-23T19:39:15.4683497Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:28: NewAtomicTrieIterator 100.0% -2025-07-23T19:39:15.4683786Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:33: Error 100.0% -2025-07-23T19:39:15.4684065Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:42: Next 81.0% -2025-07-23T19:39:15.4684368Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:81: resetFields 100.0% -2025-07-23T19:39:15.4684665Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:90: BlockNumber 100.0% -2025-07-23T19:39:15.4684972Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:95: BlockchainID 100.0% -2025-07-23T19:39:15.4685278Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:101: AtomicOps 100.0% -2025-07-23T19:39:15.4685657Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:107: Key 0.0% -2025-07-23T19:39:15.4685942Z github.com/ava-labs/coreth/plugin/evm/atomic/state/atomic_trie_iterator.go:112: Value 0.0% -2025-07-23T19:39:15.4686175Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:29: MarshalJSON 0.0% -2025-07-23T19:39:15.4686417Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:37: UnmarshalJSON 0.0% -2025-07-23T19:39:15.4686633Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:58: Valid 0.0% -2025-07-23T19:39:15.4686846Z github.com/ava-labs/coreth/plugin/evm/atomic/status.go:67: String 0.0% -2025-07-23T19:39:15.4687098Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:29: Initialize 0.0% -2025-07-23T19:39:15.4687327Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:36: Sync 0.0% -2025-07-23T19:39:15.4687620Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:69: OnFinishBeforeCommit 0.0% -2025-07-23T19:39:15.4687907Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/extender.go:81: OnFinishAfterCommit 0.0% -2025-07-23T19:39:15.4688279Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:28: OnLeafsRequest 0.0% -2025-07-23T19:39:15.4688564Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:38: NewLeafHandler 0.0% -2025-07-23T19:39:15.4688827Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/leaf_handler.go:45: Initialize 0.0% -2025-07-23T19:39:15.4689078Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:32: NewSummary 80.0% -2025-07-23T19:39:15.4689320Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:57: Bytes 100.0% -2025-07-23T19:39:15.4689546Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:61: ID 100.0% -2025-07-23T19:39:15.4689781Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:65: String 0.0% -2025-07-23T19:39:15.4690020Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary.go:69: Accept 66.7% -2025-07-23T19:39:15.4690319Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_parser.go:17: NewSummaryParser 100.0% -2025-07-23T19:39:15.4690584Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_parser.go:21: Parse 80.0% -2025-07-23T19:39:15.4690859Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_provider.go:25: Initialize 0.0% -2025-07-23T19:39:15.4691171Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/summary_provider.go:30: StateSummaryAtBlock 0.0% -2025-07-23T19:39:15.4691419Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:88: Validate 100.0% -2025-07-23T19:39:15.4691663Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:162: addZeroes 100.0% -2025-07-23T19:39:15.4691909Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:170: newSyncer 86.7% -2025-07-23T19:39:15.4692258Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:211: Start 100.0% -2025-07-23T19:39:15.4692497Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:219: onLeafs 70.8% -2025-07-23T19:39:15.4692737Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:267: onFinish 58.3% -2025-07-23T19:39:15.4693002Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:293: onSyncFailure 100.0% -2025-07-23T19:39:15.4693237Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:300: Wait 100.0% -2025-07-23T19:39:15.4693465Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:318: Start 100.0% -2025-07-23T19:39:15.4693690Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:319: End 100.0% -2025-07-23T19:39:15.4693936Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:320: NodeType 100.0% -2025-07-23T19:39:15.4694173Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:321: OnFinish 100.0% -2025-07-23T19:39:15.4694419Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:322: OnStart 100.0% -2025-07-23T19:39:15.4694760Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:323: Root 100.0% -2025-07-23T19:39:15.4694995Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:324: Account 100.0% -2025-07-23T19:39:15.4695242Z github.com/ava-labs/coreth/plugin/evm/atomic/sync/syncer.go:325: OnLeafs 100.0% -2025-07-23T19:39:15.4695449Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:70: Compare 0.0% -2025-07-23T19:39:15.4695654Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:86: Compare 0.0% -2025-07-23T19:39:15.4695859Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:95: Verify 0.0% -2025-07-23T19:39:15.4696058Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:108: Verify 0.0% -2025-07-23T19:39:15.4696269Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:183: Compare 0.0% -2025-07-23T19:39:15.4696470Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:197: Sign 82.4% -2025-07-23T19:39:15.4696724Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:231: BlockFeeContribution 0.0% -2025-07-23T19:39:15.4696945Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:261: GossipID 100.0% -2025-07-23T19:39:15.4697143Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:271: Less 0.0% -2025-07-23T19:39:15.4697338Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:279: Len 0.0% -2025-07-23T19:39:15.4697541Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:281: Swap 0.0% -2025-07-23T19:39:15.4697803Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:287: SortEVMInputsAndSigners 0.0% -2025-07-23T19:39:15.4698056Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:293: CalculateDynamicFee 0.0% -2025-07-23T19:39:15.4698381Z github.com/ava-labs/coreth/plugin/evm/atomic/tx.go:309: calcBytesCost 0.0% -2025-07-23T19:39:15.4698677Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:48: newMempoolMetrics 100.0% -2025-07-23T19:39:15.4698954Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:89: Initialize 93.3% -2025-07-23T19:39:15.4699218Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:114: PendingLen 0.0% -2025-07-23T19:39:15.4699461Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:119: Len 0.0% -2025-07-23T19:39:15.4699712Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:127: length 100.0% -2025-07-23T19:39:15.4699996Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:133: atomicTxGasPrice 77.8% -2025-07-23T19:39:15.4700238Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:148: Add 100.0% -2025-07-23T19:39:15.4700507Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:157: AddRemoteTx 100.0% -2025-07-23T19:39:15.4700768Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:180: AddLocalTx 0.0% -2025-07-23T19:39:15.4701145Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:193: ForceAddTx 0.0% -2025-07-23T19:39:15.4701427Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:203: checkConflictTx 26.7% -2025-07-23T19:39:15.4701674Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:234: addTx 64.6% -2025-07-23T19:39:15.4701925Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:352: Iterate 100.0% -2025-07-23T19:39:15.4702176Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:363: GetFilter 0.0% -2025-07-23T19:39:15.4702427Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:371: NextTx 88.9% -2025-07-23T19:39:15.4702691Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:391: GetPendingTx 0.0% -2025-07-23T19:39:15.4702937Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:401: GetTx 72.7% -2025-07-23T19:39:15.4703174Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:422: Has 100.0% -2025-07-23T19:39:15.4703455Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:428: IssueCurrentTxs 88.9% -2025-07-23T19:39:15.4703847Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:451: CancelCurrentTx 0.0% -2025-07-23T19:39:15.4704123Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:464: CancelCurrentTxs 0.0% -2025-07-23T19:39:15.4704378Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:484: cancelTx 0.0% -2025-07-23T19:39:15.4704650Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:505: DiscardCurrentTx 0.0% -2025-07-23T19:39:15.4704927Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:515: DiscardCurrentTxs 0.0% -2025-07-23T19:39:15.4705201Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:526: discardCurrentTx 0.0% -2025-07-23T19:39:15.4705454Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:540: removeTx 91.7% -2025-07-23T19:39:15.4705736Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:565: removeSpenders 50.0% -2025-07-23T19:39:15.4705983Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:573: RemoveTx 0.0% -2025-07-23T19:39:15.4706248Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:581: addPending 100.0% -2025-07-23T19:39:15.4706546Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/mempool.go:590: SubscribePendingTxs 0.0% -2025-07-23T19:39:15.4706829Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:29: newInternalTxHeap 100.0% -2025-07-23T19:39:15.4707064Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:37: Len 100.0% -2025-07-23T19:39:15.4707307Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:39: Less 100.0% -2025-07-23T19:39:15.4707543Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:46: Swap 100.0% -2025-07-23T19:39:15.4707780Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:52: Push 80.0% -2025-07-23T19:39:15.4708021Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:61: Pop 100.0% -2025-07-23T19:39:15.4708380Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:70: Get 100.0% -2025-07-23T19:39:15.4708618Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:78: Has 100.0% -2025-07-23T19:39:15.4708873Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:88: newTxHeap 100.0% -2025-07-23T19:39:15.4709115Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:95: Push 100.0% -2025-07-23T19:39:15.4709360Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:113: PeekMax 0.0% -2025-07-23T19:39:15.4709612Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:119: PeekMin 100.0% -2025-07-23T19:39:15.4709864Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:125: PopMax 100.0% -2025-07-23T19:39:15.4710230Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:130: PopMin 100.0% -2025-07-23T19:39:15.4710480Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:134: Remove 75.0% -2025-07-23T19:39:15.4710713Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:150: Len 100.0% -2025-07-23T19:39:15.4710955Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:154: Get 100.0% -2025-07-23T19:39:15.4711192Z github.com/ava-labs/coreth/plugin/evm/atomic/txpool/tx_heap.go:162: Has 100.0% -2025-07-23T19:39:15.4711413Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:43: Version 0.0% -2025-07-23T19:39:15.4711630Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:53: GetUTXOs 0.0% -2025-07-23T19:39:15.4711857Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:141: IssueTx 0.0% -2025-07-23T19:39:15.4712106Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:170: GetAtomicTxStatus 0.0% -2025-07-23T19:39:15.4712343Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/api.go:205: GetAtomicTx 0.0% -2025-07-23T19:39:15.4712752Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:48: newBlockExtender 100.0% -2025-07-23T19:39:15.4713043Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:61: NewBlockExtension 75.0% -2025-07-23T19:39:15.4713338Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:82: SyntacticVerify 66.7% -2025-07-23T19:39:15.4713621Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:172: SemanticVerify 100.0% -2025-07-23T19:39:15.4713886Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:193: Accept 85.7% -2025-07-23T19:39:15.4714146Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:213: Reject 77.8% -2025-07-23T19:39:15.4714445Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:231: CleanupVerified 100.0% -2025-07-23T19:39:15.4714720Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:239: AtomicTxs 100.0% -2025-07-23T19:39:15.4715024Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/block_extension.go:245: verifyUTXOsPresent 92.9% -2025-07-23T19:39:15.4715322Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/bonus_blocks.go:9: readMainnetBonusBlocks 0.0% -2025-07-23T19:39:15.4715568Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/ext_data_hashes.go:23: init 66.7% -2025-07-23T19:39:15.4715851Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:18: ParseServiceAddress 0.0% -2025-07-23T19:39:15.4716134Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:27: ParseLocalAddress 0.0% -2025-07-23T19:39:15.4716411Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:40: FormatLocalAddress 0.0% -2025-07-23T19:39:15.4716672Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/formatting.go:51: ParseAddress 0.0% -2025-07-23T19:39:15.4716980Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:50: NewVerifierBackend 100.0% -2025-07-23T19:39:15.4717274Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:62: SemanticVerify 100.0% -2025-07-23T19:39:15.4717556Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:80: ImportTx 95.7% -2025-07-23T19:39:15.4717834Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:167: conflicts 88.2% -2025-07-23T19:39:15.4718202Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/tx_semantic_verifier.go:205: ExportTx 86.8% -2025-07-23T19:39:15.4718434Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:108: WrapVM 100.0% -2025-07-23T19:39:15.4718662Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:113: Initialize 74.4% -2025-07-23T19:39:15.4718886Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:231: SetState 57.1% -2025-07-23T19:39:15.4719146Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:248: onBootstrapStarted 100.0% -2025-07-23T19:39:15.4719539Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:253: onNormalOperationsStarted 83.9% -2025-07-23T19:39:15.4719765Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:342: Shutdown 75.0% -2025-07-23T19:39:15.4720002Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:356: CreateHandlers 0.0% -2025-07-23T19:39:15.4720245Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:371: verifyTxAtTip 77.3% -2025-07-23T19:39:15.4720461Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:414: verifyTx 85.7% -2025-07-23T19:39:15.4720684Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:428: verifyTxs 88.2% -2025-07-23T19:39:15.4720931Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:464: CodecRegistry 100.0% -2025-07-23T19:39:15.4721149Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:467: Clock 100.0% -2025-07-23T19:39:15.4721402Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:470: Logger 100.0% -2025-07-23T19:39:15.4721687Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:472: createConsensusCallbacks 100.0% -2025-07-23T19:39:15.4722089Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:479: preBatchOnFinalizeAndAssemble 84.0% -2025-07-23T19:39:15.4722388Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:526: postBatchOnFinalizeAndAssemble 84.1% -2025-07-23T19:39:15.4722658Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:636: onFinalizeAndAssemble 100.0% -2025-07-23T19:39:15.4722913Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:648: onExtraStateChange 83.9% -2025-07-23T19:39:15.4723152Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:721: BuildBlock 100.0% -2025-07-23T19:39:15.4723418Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:725: BuildBlockWithContext 50.0% -2025-07-23T19:39:15.4723673Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:744: chainConfigExtra 100.0% -2025-07-23T19:39:15.4723889Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:748: rules 100.0% -2025-07-23T19:39:15.4724129Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:754: CurrentRules 100.0% -2025-07-23T19:39:15.4724366Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:763: GetAtomicTx 22.2% -2025-07-23T19:39:15.4724596Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:780: NewImportTx 85.7% -2025-07-23T19:39:15.4724821Z github.com/ava-labs/coreth/plugin/evm/atomic/vm/vm.go:800: NewExportTx 71.4% -2025-07-23T19:39:15.4725068Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:49: NewBlockBuilder 100.0% -2025-07-23T19:39:15.4725334Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:62: handleGenerateBlock 100.0% -2025-07-23T19:39:15.4725573Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:70: needToBuild 100.0% -2025-07-23T19:39:15.4725815Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:78: signalCanBuild 100.0% -2025-07-23T19:39:15.4726074Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:87: awaitSubmittedTxs 100.0% -2025-07-23T19:39:15.4726311Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:119: waitForEvent 91.7% -2025-07-23T19:39:15.4726574Z github.com/ava-labs/coreth/plugin/evm/block_builder.go:145: waitForNeedToBuild 100.0% -2025-07-23T19:39:15.4726802Z github.com/ava-labs/coreth/plugin/evm/client/client.go:49: NewClient 0.0% -2025-07-23T19:39:15.4727045Z github.com/ava-labs/coreth/plugin/evm/client/client.go:57: NewCChainClient 0.0% -2025-07-23T19:39:15.4727262Z github.com/ava-labs/coreth/plugin/evm/client/client.go:62: IssueTx 0.0% -2025-07-23T19:39:15.4727515Z github.com/ava-labs/coreth/plugin/evm/client/client.go:82: GetAtomicTxStatus 0.0% -2025-07-23T19:39:15.4727743Z github.com/ava-labs/coreth/plugin/evm/client/client.go:91: GetAtomicTx 0.0% -2025-07-23T19:39:15.4727988Z github.com/ava-labs/coreth/plugin/evm/client/client.go:106: GetAtomicUTXOs 0.0% -2025-07-23T19:39:15.4728431Z github.com/ava-labs/coreth/plugin/evm/client/client.go:138: StartCPUProfiler 0.0% -2025-07-23T19:39:15.4728686Z github.com/ava-labs/coreth/plugin/evm/client/client.go:142: StopCPUProfiler 0.0% -2025-07-23T19:39:15.4728934Z github.com/ava-labs/coreth/plugin/evm/client/client.go:146: MemoryProfile 0.0% -2025-07-23T19:39:15.4729162Z github.com/ava-labs/coreth/plugin/evm/client/client.go:150: LockProfile 0.0% -2025-07-23T19:39:15.4729395Z github.com/ava-labs/coreth/plugin/evm/client/client.go:159: SetLogLevel 0.0% -2025-07-23T19:39:15.4729622Z github.com/ava-labs/coreth/plugin/evm/client/client.go:170: GetVMConfig 0.0% -2025-07-23T19:39:15.4729857Z github.com/ava-labs/coreth/plugin/evm/client/utils.go:8: ParseEthAddress 0.0% -2025-07-23T19:39:15.4730083Z github.com/ava-labs/coreth/plugin/evm/config/config.go:265: EthAPIs 0.0% -2025-07-23T19:39:15.4730311Z github.com/ava-labs/coreth/plugin/evm/config/config.go:269: SetDefaults 0.0% -2025-07-23T19:39:15.4730554Z github.com/ava-labs/coreth/plugin/evm/config/config.go:327: UnmarshalJSON 80.0% -2025-07-23T19:39:15.4730891Z github.com/ava-labs/coreth/plugin/evm/config/config.go:337: String 0.0% -2025-07-23T19:39:15.4731117Z github.com/ava-labs/coreth/plugin/evm/config/config.go:342: MarshalJSON 0.0% -2025-07-23T19:39:15.4731339Z github.com/ava-labs/coreth/plugin/evm/config/config.go:347: Validate 0.0% -2025-07-23T19:39:15.4731568Z github.com/ava-labs/coreth/plugin/evm/config/config.go:382: Deprecate 57.1% -2025-07-23T19:39:15.4731813Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:28: New 0.0% -2025-07-23T19:39:15.4732065Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:35: Dial 0.0% -2025-07-23T19:39:15.4732342Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:40: DialContext 0.0% -2025-07-23T19:39:15.4732638Z github.com/ava-labs/coreth/plugin/evm/customethclient/ethclient.go:60: OnBlockDecoded 0.0% -2025-07-23T19:39:15.4732894Z github.com/ava-labs/coreth/plugin/evm/customlogs/log_ext.go:8: FlattenLogs 100.0% -2025-07-23T19:39:15.4733250Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:16: writeCurrentTimeMarker 0.0% -2025-07-23T19:39:15.4733576Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:25: readTimeMarker 0.0% -2025-07-23T19:39:15.4733913Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:44: WriteOfflinePruning 0.0% -2025-07-23T19:39:15.4734249Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:50: ReadOfflinePruning 0.0% -2025-07-23T19:39:15.4734592Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:55: DeleteOfflinePruning 0.0% -2025-07-23T19:39:15.4734953Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:61: WritePopulateMissingTries 0.0% -2025-07-23T19:39:15.4735311Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:67: ReadPopulateMissingTries 0.0% -2025-07-23T19:39:15.4735674Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:73: DeletePopulateMissingTries 0.0% -2025-07-23T19:39:15.4736025Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:79: WritePruningDisabled 0.0% -2025-07-23T19:39:15.4736359Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:85: HasPruningDisabled 0.0% -2025-07-23T19:39:15.4736688Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:90: WriteAcceptorTip 0.0% -2025-07-23T19:39:15.4737018Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_metadata_ext.go:97: ReadAcceptorTip 0.0% -2025-07-23T19:39:15.4737363Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:15: ReadSnapshotBlockHash 0.0% -2025-07-23T19:39:15.4737719Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:25: WriteSnapshotBlockHash 50.0% -2025-07-23T19:39:15.4738320Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:35: DeleteSnapshotBlockHash 0.0% -2025-07-23T19:39:15.4738672Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_snapshot_ext.go:42: IterateAccountSnapshots 0.0% -2025-07-23T19:39:15.4738983Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:18: ReadSyncRoot 0.0% -2025-07-23T19:39:15.4739290Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:31: WriteSyncRoot 0.0% -2025-07-23T19:39:15.4739607Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:36: AddCodeToFetch 50.0% -2025-07-23T19:39:15.4739923Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:43: DeleteCodeToFetch 0.0% -2025-07-23T19:39:15.4740260Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:52: NewCodeToFetchIterator 0.0% -2025-07-23T19:39:15.4740576Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:59: codeToFetchKey 100.0% -2025-07-23T19:39:15.4740921Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:69: NewSyncSegmentsIterator 0.0% -2025-07-23T19:39:15.4741355Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:81: WriteSyncSegment 100.0% -2025-07-23T19:39:15.4741668Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:86: ClearSyncSegments 0.0% -2025-07-23T19:39:15.4742002Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:94: ClearAllSyncSegments 100.0% -2025-07-23T19:39:15.4742342Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:100: UnpackSyncSegmentKey 0.0% -2025-07-23T19:39:15.4742673Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:108: packSyncSegmentKey 100.0% -2025-07-23T19:39:15.4743040Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:119: NewSyncStorageTriesIterator 0.0% -2025-07-23T19:39:15.4743380Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:124: WriteSyncStorageTrie 100.0% -2025-07-23T19:39:15.4743714Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:130: ClearSyncStorageTrie 0.0% -2025-07-23T19:39:15.4744063Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:138: ClearAllSyncStorageTries 0.0% -2025-07-23T19:39:15.4744408Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:144: UnpackSyncStorageTrieKey 0.0% -2025-07-23T19:39:15.4744759Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:152: packSyncStorageTrieKey 100.0% -2025-07-23T19:39:15.4745089Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:161: WriteSyncPerformed 100.0% -2025-07-23T19:39:15.4745429Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:171: NewSyncPerformedIterator 0.0% -2025-07-23T19:39:15.4745775Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:177: UnpackSyncPerformedKey 0.0% -2025-07-23T19:39:15.4746118Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:182: GetLatestSyncPerformed 0.0% -2025-07-23T19:39:15.4746427Z github.com/ava-labs/coreth/plugin/evm/customrawdb/accessors_state_sync.go:198: clearPrefix 68.8% -2025-07-23T19:39:15.4746721Z github.com/ava-labs/coreth/plugin/evm/customrawdb/database_ext.go:17: InspectDatabase 100.0% -2025-07-23T19:39:15.4747019Z github.com/ava-labs/coreth/plugin/evm/customrawdb/database_ext.go:67: ParseStateSchemeExt 0.0% -2025-07-23T19:39:15.4747299Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:16: SetBlockExtra 100.0% -2025-07-23T19:39:15.4747540Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:33: Copy 100.0% -2025-07-23T19:39:15.4747850Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:48: BodyRLPFieldsForEncoding 100.0% -2025-07-23T19:39:15.4748408Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:61: BodyRLPFieldPointersForDecoding 100.0% -2025-07-23T19:39:15.4748737Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:78: BlockRLPFieldsForEncoding 100.0% -2025-07-23T19:39:15.4749076Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:92: BlockRLPFieldPointersForDecoding 100.0% -2025-07-23T19:39:15.4749347Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:104: BlockExtData 100.0% -2025-07-23T19:39:15.4749615Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:111: BlockVersion 100.0% -2025-07-23T19:39:15.4749915Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:115: BlockExtDataGasUsed 100.0% -2025-07-23T19:39:15.4750181Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:123: BlockGasCost 100.0% -2025-07-23T19:39:15.4750464Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:131: CalcExtDataHash 66.7% -2025-07-23T19:39:15.4750764Z github.com/ava-labs/coreth/plugin/evm/customtypes/block_ext.go:138: NewBlockWithExtData 100.0% -2025-07-23T19:39:15.4751204Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_json.go:18: MarshalJSON 100.0% -2025-07-23T19:39:15.4751537Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_json.go:72: UnmarshalJSON 76.2% -2025-07-23T19:39:15.4751845Z github.com/ava-labs/coreth/plugin/evm/customtypes/gen_header_serializable_rlp.go:8: EncodeRLP 85.9% -2025-07-23T19:39:15.4752125Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:17: GetHeaderExtra 100.0% -2025-07-23T19:39:15.4752404Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:22: SetHeaderExtra 100.0% -2025-07-23T19:39:15.4752690Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:28: WithHeaderExtra 100.0% -2025-07-23T19:39:15.4752957Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:45: EncodeRLP 100.0% -2025-07-23T19:39:15.4753219Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:56: DecodeRLP 100.0% -2025-07-23T19:39:15.4753489Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:70: EncodeJSON 100.0% -2025-07-23T19:39:15.4753744Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:81: DecodeJSON 83.3% -2025-07-23T19:39:15.4754000Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:93: PostCopy 100.0% -2025-07-23T19:39:15.4754280Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:106: updateFromEth 100.0% -2025-07-23T19:39:15.4754549Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:128: updateToEth 100.0% -2025-07-23T19:39:15.4754841Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:150: updateFromExtras 100.0% -2025-07-23T19:39:15.4755121Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:156: updateToExtras 100.0% -2025-07-23T19:39:15.4755373Z github.com/ava-labs/coreth/plugin/evm/customtypes/header_ext.go:233: Hash 100.0% -2025-07-23T19:39:15.4755660Z github.com/ava-labs/coreth/plugin/evm/customtypes/state_account_ext.go:14: IsMultiCoin 0.0% -2025-07-23T19:39:15.4755944Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:22: WrapDatabase 100.0% -2025-07-23T19:39:15.4756197Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:25: Stat 0.0% -2025-07-23T19:39:15.4756468Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:28: NewBatch 100.0% -2025-07-23T19:39:15.4756755Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:32: NewBatchWithSize 0.0% -2025-07-23T19:39:15.4757028Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:36: NewSnapshot 0.0% -2025-07-23T19:39:15.4757302Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:44: NewIterator 100.0% -2025-07-23T19:39:15.4757605Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:57: NewIteratorWithStart 0.0% -2025-07-23T19:39:15.4757989Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:65: ValueSize 100.0% -2025-07-23T19:39:15.4758350Z github.com/ava-labs/coreth/plugin/evm/database/wrapped_database.go:68: Replay 100.0% -2025-07-23T19:39:15.4758606Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:38: NewGossipEthTxPool 75.0% -2025-07-23T19:39:15.4758838Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:70: IsSubscribed 100.0% -2025-07-23T19:39:15.4759056Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:74: Subscribe 92.6% -2025-07-23T19:39:15.4759265Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:119: Add 100.0% -2025-07-23T19:39:15.4759466Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:125: Has 100.0% -2025-07-23T19:39:15.4759691Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:129: Iterate 100.0% -2025-07-23T19:39:15.4759907Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:135: GetFilter 0.0% -2025-07-23T19:39:15.4760148Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:144: MarshalGossip 100.0% -2025-07-23T19:39:15.4760507Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:148: UnmarshalGossip 100.0% -2025-07-23T19:39:15.4760729Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:160: GossipID 100.0% -2025-07-23T19:39:15.4760936Z github.com/ava-labs/coreth/plugin/evm/eth_gossiper.go:170: Add 75.0% -2025-07-23T19:39:15.4761172Z github.com/ava-labs/coreth/plugin/evm/extension/config.go:161: Validate 55.6% -2025-07-23T19:39:15.4761435Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:19: NewTxGossipHandler 100.0% -2025-07-23T19:39:15.4761670Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:61: AppGossip 100.0% -2025-07-23T19:39:15.4761901Z github.com/ava-labs/coreth/plugin/evm/gossip/handler.go:65: AppRequest 100.0% -2025-07-23T19:39:15.4762129Z github.com/ava-labs/coreth/plugin/evm/header/base_fee.go:21: BaseFee 100.0% -2025-07-23T19:39:15.4762403Z github.com/ava-labs/coreth/plugin/evm/header/base_fee.go:50: EstimateNextBaseFee 100.0% -2025-07-23T19:39:15.4762667Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:28: BlockGasCost 100.0% -2025-07-23T19:39:15.4762962Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:60: BlockGasCostWithStep 100.0% -2025-07-23T19:39:15.4763247Z github.com/ava-labs/coreth/plugin/evm/header/block_gas_cost.go:88: EstimateRequiredTip 100.0% -2025-07-23T19:39:15.4763545Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_state.go:19: feeStateBeforeBlock 100.0% -2025-07-23T19:39:15.4763843Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_state.go:51: feeStateAfterBlock 100.0% -2025-07-23T19:39:15.4764132Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:40: baseFeeFromWindow 97.4% -2025-07-23T19:39:15.4764405Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:148: feeWindow 100.0% -2025-07-23T19:39:15.4764730Z github.com/ava-labs/coreth/plugin/evm/header/dynamic_fee_windower.go:221: selectBigWithinBounds 100.0% -2025-07-23T19:39:15.4764962Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:29: ExtraPrefix 100.0% -2025-07-23T19:39:15.4765215Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:61: VerifyExtraPrefix 100.0% -2025-07-23T19:39:15.4765448Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:116: VerifyExtra 100.0% -2025-07-23T19:39:15.4765730Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:169: PredicateBytesFromExtra 100.0% -2025-07-23T19:39:15.4766004Z github.com/ava-labs/coreth/plugin/evm/header/extra.go:187: SetPredicateBytesInExtra 100.0% -2025-07-23T19:39:15.4766234Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:28: GasLimit 100.0% -2025-07-23T19:39:15.4766487Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:61: VerifyGasUsed 100.0% -2025-07-23T19:39:15.4766853Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:97: VerifyGasLimit 100.0% -2025-07-23T19:39:15.4767102Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:159: GasCapacity 100.0% -2025-07-23T19:39:15.4767399Z github.com/ava-labs/coreth/plugin/evm/header/gas_limit.go:179: RemainingAtomicGasCapacity 100.0% -2025-07-23T19:39:15.4767606Z github.com/ava-labs/coreth/plugin/evm/health.go:11: HealthCheck 0.0% -2025-07-23T19:39:15.4767817Z github.com/ava-labs/coreth/plugin/evm/log/log.go:26: InitLogger 55.0% -2025-07-23T19:39:15.4768033Z github.com/ava-labs/coreth/plugin/evm/log/log.go:62: SetLogLevel 100.0% -2025-07-23T19:39:15.4768340Z github.com/ava-labs/coreth/plugin/evm/log/log.go:77: trimPrefixes 88.9% -2025-07-23T19:39:15.4768546Z github.com/ava-labs/coreth/plugin/evm/log/log.go:92: getSource 0.0% -2025-07-23T19:39:15.4768742Z github.com/ava-labs/coreth/plugin/evm/log/log.go:104: Handle 0.0% -2025-07-23T19:39:15.4768990Z github.com/ava-labs/coreth/plugin/evm/message/block_request.go:24: String 0.0% -2025-07-23T19:39:15.4769337Z github.com/ava-labs/coreth/plugin/evm/message/block_request.go:31: Handle 0.0% -2025-07-23T19:39:15.4769638Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:31: NewBlockSyncSummary 80.0% -2025-07-23T19:39:15.4769920Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:53: GetBlockHash 100.0% -2025-07-23T19:39:15.4770200Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:57: GetBlockRoot 100.0% -2025-07-23T19:39:15.4770466Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:61: Bytes 100.0% -2025-07-23T19:39:15.4770728Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:65: Height 100.0% -2025-07-23T19:39:15.4770969Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:69: ID 0.0% -2025-07-23T19:39:15.4771229Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:73: String 0.0% -2025-07-23T19:39:15.4771493Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary.go:77: Accept 66.7% -2025-07-23T19:39:15.4771851Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_parser.go:14: NewBlockSyncSummaryParser 100.0% -2025-07-23T19:39:15.4772136Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_parser.go:18: Parse 80.0% -2025-07-23T19:39:15.4772460Z github.com/ava-labs/coreth/plugin/evm/message/block_sync_summary_provider.go:14: StateSummaryAtBlock 0.0% -2025-07-23T19:39:15.4772699Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:23: String 0.0% -2025-07-23T19:39:15.4772932Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:31: Handle 0.0% -2025-07-23T19:39:15.4773189Z github.com/ava-labs/coreth/plugin/evm/message/code_request.go:35: NewCodeRequest 0.0% -2025-07-23T19:39:15.4773408Z github.com/ava-labs/coreth/plugin/evm/message/codec.go:20: init 88.9% -2025-07-23T19:39:15.4773674Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:35: HandleLeafsRequest 0.0% -2025-07-23T19:39:15.4773942Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:39: HandleBlockRequest 0.0% -2025-07-23T19:39:15.4774196Z github.com/ava-labs/coreth/plugin/evm/message/handler.go:43: HandleCodeRequest 0.0% -2025-07-23T19:39:15.4774433Z github.com/ava-labs/coreth/plugin/evm/message/leafs_request.go:40: String 0.0% -2025-07-23T19:39:15.4774672Z github.com/ava-labs/coreth/plugin/evm/message/leafs_request.go:47: Handle 0.0% -2025-07-23T19:39:15.4774918Z github.com/ava-labs/coreth/plugin/evm/message/request.go:25: RequestToBytes 0.0% -2025-07-23T19:39:15.4775182Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:39: newNetworkHandler 100.0% -2025-07-23T19:39:15.4775437Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:54: HandleLeafsRequest 60.0% -2025-07-23T19:39:15.4775697Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:63: HandleBlockRequest 100.0% -2025-07-23T19:39:15.4776063Z github.com/ava-labs/coreth/plugin/evm/network_handler.go:67: HandleCodeRequest 0.0% -2025-07-23T19:39:15.4776289Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:99: NewClient 100.0% -2025-07-23T19:39:15.4776540Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:127: StateSyncEnabled 100.0% -2025-07-23T19:39:15.4776817Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:134: GetOngoingSyncStateSummary 0.0% -2025-07-23T19:39:15.4777071Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:153: ClearOngoingSummary 60.0% -2025-07-23T19:39:15.4777326Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:165: ParseStateSummary 100.0% -2025-07-23T19:39:15.4777548Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:171: stateSync 71.4% -2025-07-23T19:39:15.4777791Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:189: acceptSyncSummary 92.0% -2025-07-23T19:39:15.4778021Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:257: syncBlocks 89.3% -2025-07-23T19:39:15.4778356Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:304: syncStateTrie 77.8% -2025-07-23T19:39:15.4778691Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:326: Shutdown 100.0% -2025-07-23T19:39:15.4778914Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:336: finishSync 66.7% -2025-07-23T19:39:15.4779151Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:405: commitVMMarkers 66.7% -2025-07-23T19:39:15.4779368Z github.com/ava-labs/coreth/plugin/evm/sync/client.go:420: Error 100.0% -2025-07-23T19:39:15.4779583Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:36: NewServer 100.0% -2025-07-23T19:39:15.4779849Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:48: GetLastStateSummary 75.0% -2025-07-23T19:39:15.4780083Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:64: GetStateSummary 66.7% -2025-07-23T19:39:15.4780335Z github.com/ava-labs/coreth/plugin/evm/sync/server.go:82: stateSummaryAtHeight 62.5% -2025-07-23T19:39:15.4780605Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:53: ParseState 100.0% -2025-07-23T19:39:15.4780849Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:74: Target 100.0% -2025-07-23T19:39:15.4781112Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:83: MaxCapacity 100.0% -2025-07-23T19:39:15.4781365Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:91: GasPrice 100.0% -2025-07-23T19:39:15.4781628Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:99: AdvanceTime 100.0% -2025-07-23T19:39:15.4781891Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:114: ConsumeGas 100.0% -2025-07-23T19:39:15.4782185Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:144: UpdateTargetExcess 100.0% -2025-07-23T19:39:15.4782427Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:160: Bytes 100.0% -2025-07-23T19:39:15.4782731Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:170: DesiredTargetExcess 100.0% -2025-07-23T19:39:15.4783003Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:184: targetExcess 100.0% -2025-07-23T19:39:15.4783271Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:195: scaleExcess 100.0% -2025-07-23T19:39:15.4783559Z github.com/ava-labs/coreth/plugin/evm/upgrade/acp176/acp176.go:214: mulWithUpperBound 100.0% -2025-07-23T19:39:15.4783815Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:67: ParseWindow 100.0% -2025-07-23T19:39:15.4784050Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:87: Add 100.0% -2025-07-23T19:39:15.4784282Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:94: Shift 100.0% -2025-07-23T19:39:15.4784513Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:108: Sum 100.0% -2025-07-23T19:39:15.4784747Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:112: Bytes 100.0% -2025-07-23T19:39:15.4785086Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap3/window.go:121: add 100.0% -2025-07-23T19:39:15.4785342Z github.com/ava-labs/coreth/plugin/evm/upgrade/ap4/cost.go:53: BlockGasCost 93.3% -2025-07-23T19:39:15.4785536Z github.com/ava-labs/coreth/plugin/evm/version.go:15: init 50.0% -2025-07-23T19:39:15.4785717Z github.com/ava-labs/coreth/plugin/evm/vm.go:175: init 100.0% -2025-07-23T19:39:15.4785916Z github.com/ava-labs/coreth/plugin/evm/vm.go:271: Initialize 80.3% -2025-07-23T19:39:15.4786125Z github.com/ava-labs/coreth/plugin/evm/vm.go:500: parseGenesis 76.9% -2025-07-23T19:39:15.4786348Z github.com/ava-labs/coreth/plugin/evm/vm.go:530: initializeMetrics 54.5% -2025-07-23T19:39:15.4786558Z github.com/ava-labs/coreth/plugin/evm/vm.go:549: initializeChain 84.2% -2025-07-23T19:39:15.4786781Z github.com/ava-labs/coreth/plugin/evm/vm.go:604: initializeStateSync 76.7% -2025-07-23T19:39:15.4787000Z github.com/ava-labs/coreth/plugin/evm/vm.go:704: initChainState 75.0% -2025-07-23T19:39:15.4787266Z github.com/ava-labs/coreth/plugin/evm/vm.go:737: SetState 83.3% -2025-07-23T19:39:15.4787492Z github.com/ava-labs/coreth/plugin/evm/vm.go:752: onBootstrapStarted 71.4% -2025-07-23T19:39:15.4787734Z github.com/ava-labs/coreth/plugin/evm/vm.go:768: onNormalOperationsStarted 75.0% -2025-07-23T19:39:15.4787950Z github.com/ava-labs/coreth/plugin/evm/vm.go:779: initBlockBuilding 91.3% -2025-07-23T19:39:15.4788252Z github.com/ava-labs/coreth/plugin/evm/vm.go:886: WaitForEvent 77.8% -2025-07-23T19:39:15.4788441Z github.com/ava-labs/coreth/plugin/evm/vm.go:907: Shutdown 76.9% -2025-07-23T19:39:15.4788637Z github.com/ava-labs/coreth/plugin/evm/vm.go:929: buildBlock 100.0% -2025-07-23T19:39:15.4788871Z github.com/ava-labs/coreth/plugin/evm/vm.go:933: buildBlockWithContext 86.7% -2025-07-23T19:39:15.4789066Z github.com/ava-labs/coreth/plugin/evm/vm.go:978: parseBlock 77.8% -2025-07-23T19:39:15.4789278Z github.com/ava-labs/coreth/plugin/evm/vm.go:997: ParseEthBlock 75.0% -2025-07-23T19:39:15.4789472Z github.com/ava-labs/coreth/plugin/evm/vm.go:1008: getBlock 100.0% -2025-07-23T19:39:15.4789685Z github.com/ava-labs/coreth/plugin/evm/vm.go:1021: GetAcceptedBlock 90.0% -2025-07-23T19:39:15.4789896Z github.com/ava-labs/coreth/plugin/evm/vm.go:1041: SetPreference 75.0% -2025-07-23T19:39:15.4790117Z github.com/ava-labs/coreth/plugin/evm/vm.go:1057: GetBlockIDAtHeight 85.7% -2025-07-23T19:39:15.4790307Z github.com/ava-labs/coreth/plugin/evm/vm.go:1070: Version 0.0% -2025-07-23T19:39:15.4790512Z github.com/ava-labs/coreth/plugin/evm/vm.go:1075: CreateHandlers 0.0% -2025-07-23T19:39:15.4790715Z github.com/ava-labs/coreth/plugin/evm/vm.go:1122: NewHTTPHandler 0.0% -2025-07-23T19:39:15.4790935Z github.com/ava-labs/coreth/plugin/evm/vm.go:1126: chainConfigExtra 100.0% -2025-07-23T19:39:15.4791120Z github.com/ava-labs/coreth/plugin/evm/vm.go:1130: rules 100.0% -2025-07-23T19:39:15.4791329Z github.com/ava-labs/coreth/plugin/evm/vm.go:1136: currentRules 100.0% -2025-07-23T19:39:15.4791588Z github.com/ava-labs/coreth/plugin/evm/vm.go:1144: requirePrimaryNetworkSigners 0.0% -2025-07-23T19:39:15.4791827Z github.com/ava-labs/coreth/plugin/evm/vm.go:1153: startContinuousProfiler 91.7% -2025-07-23T19:39:15.4792046Z github.com/ava-labs/coreth/plugin/evm/vm.go:1183: ReadLastAccepted 70.0% -2025-07-23T19:39:15.4792259Z github.com/ava-labs/coreth/plugin/evm/vm.go:1207: attachEthService 0.0% -2025-07-23T19:39:15.4792477Z github.com/ava-labs/coreth/plugin/evm/vm.go:1242: stateSyncEnabled 100.0% -2025-07-23T19:39:15.4792704Z github.com/ava-labs/coreth/plugin/evm/vm.go:1252: PutLastAcceptedID 100.0% -2025-07-23T19:39:15.4792934Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:20: initializeDBs 100.0% -2025-07-23T19:39:15.4793169Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:35: inspectDatabases 0.0% -2025-07-23T19:39:15.4793497Z github.com/ava-labs/coreth/plugin/evm/vm_database.go:54: inspectDB 0.0% -2025-07-23T19:39:15.4793753Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:28: SetExtensionConfig 66.7% -2025-07-23T19:39:15.4793998Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:41: GetExtendedBlock 75.0% -2025-07-23T19:39:15.4794279Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:53: LastAcceptedExtendedBlock 75.0% -2025-07-23T19:39:15.4794507Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:64: ChainConfig 100.0% -2025-07-23T19:39:15.4794736Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:68: Blockchain 100.0% -2025-07-23T19:39:15.4794951Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:72: Config 100.0% -2025-07-23T19:39:15.4795193Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:76: MetricRegistry 100.0% -2025-07-23T19:39:15.4795414Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:80: Validators 0.0% -2025-07-23T19:39:15.4795748Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:84: VersionDB 100.0% -2025-07-23T19:39:15.4795981Z github.com/ava-labs/coreth/plugin/evm/vm_extensible.go:88: SyncerClient 0.0% -2025-07-23T19:39:15.4796203Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:58: wrapBlock 85.7% -2025-07-23T19:39:15.4796418Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:75: ID 100.0% -2025-07-23T19:39:15.4796632Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:78: Accept 76.5% -2025-07-23T19:39:15.4796910Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:125: handlePrecompileAccept 78.6% -2025-07-23T19:39:15.4797131Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:159: Reject 83.3% -2025-07-23T19:39:15.4797351Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:176: Parent 100.0% -2025-07-23T19:39:15.4797571Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:181: Height 100.0% -2025-07-23T19:39:15.4797800Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:186: Timestamp 100.0% -2025-07-23T19:39:15.4798021Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:191: Verify 100.0% -2025-07-23T19:39:15.4798399Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:199: ShouldVerifyWithContext 72.7% -2025-07-23T19:39:15.4798662Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:223: VerifyWithContext 100.0% -2025-07-23T19:39:15.4798883Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:233: verify 100.0% -2025-07-23T19:39:15.4799134Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:279: semanticVerify 100.0% -2025-07-23T19:39:15.4799379Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:295: syntacticVerify 71.0% -2025-07-23T19:39:15.4799631Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:434: verifyPredicates 85.0% -2025-07-23T19:39:15.4799849Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:468: Bytes 75.0% -2025-07-23T19:39:15.4800066Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:476: String 0.0% -2025-07-23T19:39:15.4800305Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:478: GetEthBlock 100.0% -2025-07-23T19:39:15.4800559Z github.com/ava-labs/coreth/plugin/evm/wrapped_block.go:482: GetBlockExtension 100.0% -2025-07-23T19:39:15.4800765Z github.com/ava-labs/coreth/plugin/factory/factory.go:25: New 0.0% -2025-07-23T19:39:15.4800988Z github.com/ava-labs/coreth/plugin/factory/factory.go:29: NewPluginVM 0.0% -2025-07-23T19:39:15.4801161Z github.com/ava-labs/coreth/plugin/main.go:19: main 0.0% -2025-07-23T19:39:15.4801375Z github.com/ava-labs/coreth/plugin/params.go:13: corethFlagSet 0.0% -2025-07-23T19:39:15.4801565Z github.com/ava-labs/coreth/plugin/params.go:22: getViper 0.0% -2025-07-23T19:39:15.4801766Z github.com/ava-labs/coreth/plugin/params.go:35: PrintVersion 0.0% -2025-07-23T19:39:15.4802136Z github.com/ava-labs/coreth/precompile/contract/contract.go:32: IsActivated 0.0% -2025-07-23T19:39:15.4802455Z github.com/ava-labs/coreth/precompile/contract/contract.go:40: NewStatefulPrecompileFunction 0.0% -2025-07-23T19:39:15.4802818Z github.com/ava-labs/coreth/precompile/contract/contract.go:47: NewStatefulPrecompileFunctionWithActivator 0.0% -2025-07-23T19:39:15.4803128Z github.com/ava-labs/coreth/precompile/contract/contract.go:65: NewStatefulPrecompileContract 0.0% -2025-07-23T19:39:15.4803350Z github.com/ava-labs/coreth/precompile/contract/contract.go:84: Run 0.0% -2025-07-23T19:39:15.4803602Z github.com/ava-labs/coreth/precompile/contract/mocks.go:38: NewMockStateDB 0.0% -2025-07-23T19:39:15.4803819Z github.com/ava-labs/coreth/precompile/contract/mocks.go:45: EXPECT 0.0% -2025-07-23T19:39:15.4804054Z github.com/ava-labs/coreth/precompile/contract/mocks.go:50: AddBalance 0.0% -2025-07-23T19:39:15.4804282Z github.com/ava-labs/coreth/precompile/contract/mocks.go:56: AddBalance 0.0% -2025-07-23T19:39:15.4804550Z github.com/ava-labs/coreth/precompile/contract/mocks.go:62: AddBalanceMultiCoin 0.0% -2025-07-23T19:39:15.4804922Z github.com/ava-labs/coreth/precompile/contract/mocks.go:68: AddBalanceMultiCoin 0.0% -2025-07-23T19:39:15.4805143Z github.com/ava-labs/coreth/precompile/contract/mocks.go:74: AddLog 0.0% -2025-07-23T19:39:15.4805363Z github.com/ava-labs/coreth/precompile/contract/mocks.go:80: AddLog 0.0% -2025-07-23T19:39:15.4805605Z github.com/ava-labs/coreth/precompile/contract/mocks.go:86: CreateAccount 0.0% -2025-07-23T19:39:15.4805844Z github.com/ava-labs/coreth/precompile/contract/mocks.go:92: CreateAccount 0.0% -2025-07-23T19:39:15.4806060Z github.com/ava-labs/coreth/precompile/contract/mocks.go:98: Exist 0.0% -2025-07-23T19:39:15.4806274Z github.com/ava-labs/coreth/precompile/contract/mocks.go:106: Exist 0.0% -2025-07-23T19:39:15.4806505Z github.com/ava-labs/coreth/precompile/contract/mocks.go:112: GetBalance 0.0% -2025-07-23T19:39:15.4806752Z github.com/ava-labs/coreth/precompile/contract/mocks.go:120: GetBalance 0.0% -2025-07-23T19:39:15.4807025Z github.com/ava-labs/coreth/precompile/contract/mocks.go:126: GetBalanceMultiCoin 0.0% -2025-07-23T19:39:15.4807300Z github.com/ava-labs/coreth/precompile/contract/mocks.go:134: GetBalanceMultiCoin 0.0% -2025-07-23T19:39:15.4807525Z github.com/ava-labs/coreth/precompile/contract/mocks.go:140: GetNonce 0.0% -2025-07-23T19:39:15.4807748Z github.com/ava-labs/coreth/precompile/contract/mocks.go:148: GetNonce 0.0% -2025-07-23T19:39:15.4808040Z github.com/ava-labs/coreth/precompile/contract/mocks.go:154: GetPredicateStorageSlots 0.0% -2025-07-23T19:39:15.4808422Z github.com/ava-labs/coreth/precompile/contract/mocks.go:163: GetPredicateStorageSlots 0.0% -2025-07-23T19:39:15.4808651Z github.com/ava-labs/coreth/precompile/contract/mocks.go:169: GetState 0.0% -2025-07-23T19:39:15.4808877Z github.com/ava-labs/coreth/precompile/contract/mocks.go:177: GetState 0.0% -2025-07-23T19:39:15.4809108Z github.com/ava-labs/coreth/precompile/contract/mocks.go:183: GetTxHash 0.0% -2025-07-23T19:39:15.4809339Z github.com/ava-labs/coreth/precompile/contract/mocks.go:191: GetTxHash 0.0% -2025-07-23T19:39:15.4809555Z github.com/ava-labs/coreth/precompile/contract/mocks.go:197: Logs 0.0% -2025-07-23T19:39:15.4809773Z github.com/ava-labs/coreth/precompile/contract/mocks.go:205: Logs 0.0% -2025-07-23T19:39:15.4810029Z github.com/ava-labs/coreth/precompile/contract/mocks.go:211: RevertToSnapshot 0.0% -2025-07-23T19:39:15.4810281Z github.com/ava-labs/coreth/precompile/contract/mocks.go:217: RevertToSnapshot 0.0% -2025-07-23T19:39:15.4810510Z github.com/ava-labs/coreth/precompile/contract/mocks.go:223: SetNonce 0.0% -2025-07-23T19:39:15.4810731Z github.com/ava-labs/coreth/precompile/contract/mocks.go:229: SetNonce 0.0% -2025-07-23T19:39:15.4810952Z github.com/ava-labs/coreth/precompile/contract/mocks.go:235: SetState 0.0% -2025-07-23T19:39:15.4811348Z github.com/ava-labs/coreth/precompile/contract/mocks.go:241: SetState 0.0% -2025-07-23T19:39:15.4811573Z github.com/ava-labs/coreth/precompile/contract/mocks.go:247: Snapshot 0.0% -2025-07-23T19:39:15.4811801Z github.com/ava-labs/coreth/precompile/contract/mocks.go:255: Snapshot 0.0% -2025-07-23T19:39:15.4812068Z github.com/ava-labs/coreth/precompile/contract/mocks.go:261: SubBalanceMultiCoin 0.0% -2025-07-23T19:39:15.4812335Z github.com/ava-labs/coreth/precompile/contract/mocks.go:267: SubBalanceMultiCoin 0.0% -2025-07-23T19:39:15.4812619Z github.com/ava-labs/coreth/precompile/contract/mocks.go:285: NewMockAccessibleState 0.0% -2025-07-23T19:39:15.4812844Z github.com/ava-labs/coreth/precompile/contract/mocks.go:292: EXPECT 0.0% -2025-07-23T19:39:15.4813098Z github.com/ava-labs/coreth/precompile/contract/mocks.go:297: GetBlockContext 0.0% -2025-07-23T19:39:15.4813351Z github.com/ava-labs/coreth/precompile/contract/mocks.go:305: GetBlockContext 0.0% -2025-07-23T19:39:15.4813699Z github.com/ava-labs/coreth/precompile/contract/mocks.go:311: GetChainConfig 0.0% -2025-07-23T19:39:15.4813949Z github.com/ava-labs/coreth/precompile/contract/mocks.go:319: GetChainConfig 0.0% -2025-07-23T19:39:15.4814202Z github.com/ava-labs/coreth/precompile/contract/mocks.go:325: GetPrecompileEnv 0.0% -2025-07-23T19:39:15.4814450Z github.com/ava-labs/coreth/precompile/contract/mocks.go:333: GetPrecompileEnv 0.0% -2025-07-23T19:39:15.4814698Z github.com/ava-labs/coreth/precompile/contract/mocks.go:339: GetSnowContext 0.0% -2025-07-23T19:39:15.4814943Z github.com/ava-labs/coreth/precompile/contract/mocks.go:347: GetSnowContext 0.0% -2025-07-23T19:39:15.4815181Z github.com/ava-labs/coreth/precompile/contract/mocks.go:353: GetStateDB 0.0% -2025-07-23T19:39:15.4815414Z github.com/ava-labs/coreth/precompile/contract/mocks.go:361: GetStateDB 0.0% -2025-07-23T19:39:15.4815685Z github.com/ava-labs/coreth/precompile/contract/mocks.go:379: NewMockBlockContext 0.0% -2025-07-23T19:39:15.4815917Z github.com/ava-labs/coreth/precompile/contract/mocks.go:386: EXPECT 0.0% -2025-07-23T19:39:15.4816182Z github.com/ava-labs/coreth/precompile/contract/mocks.go:391: GetPredicateResults 0.0% -2025-07-23T19:39:15.4816453Z github.com/ava-labs/coreth/precompile/contract/mocks.go:399: GetPredicateResults 0.0% -2025-07-23T19:39:15.4816673Z github.com/ava-labs/coreth/precompile/contract/mocks.go:405: Number 0.0% -2025-07-23T19:39:15.4816892Z github.com/ava-labs/coreth/precompile/contract/mocks.go:413: Number 0.0% -2025-07-23T19:39:15.4817127Z github.com/ava-labs/coreth/precompile/contract/mocks.go:419: Timestamp 0.0% -2025-07-23T19:39:15.4817353Z github.com/ava-labs/coreth/precompile/contract/mocks.go:427: Timestamp 0.0% -2025-07-23T19:39:15.4817640Z github.com/ava-labs/coreth/precompile/contract/utils.go:35: CalculateFunctionSelector 0.0% -2025-07-23T19:39:15.4817874Z github.com/ava-labs/coreth/precompile/contract/utils.go:44: DeductGas 0.0% -2025-07-23T19:39:15.4818190Z github.com/ava-labs/coreth/precompile/contract/utils.go:53: ParseABI 0.0% -2025-07-23T19:39:15.4818458Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:57: NewConfig 100.0% -2025-07-23T19:39:15.4818742Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:67: NewDefaultConfig 100.0% -2025-07-23T19:39:15.4819021Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:73: NewDisableConfig 0.0% -2025-07-23T19:39:15.4819256Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:84: Key 0.0% -2025-07-23T19:39:15.4819503Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:87: Verify 100.0% -2025-07-23T19:39:15.4819753Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:107: Equal 100.0% -2025-07-23T19:39:15.4819997Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:117: Accept 0.0% -2025-07-23T19:39:15.4820406Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:145: PredicateGas 84.6% -2025-07-23T19:39:15.4820696Z github.com/ava-labs/coreth/precompile/contracts/warp/config.go:186: VerifyPredicate 80.0% -2025-07-23T19:39:15.4821007Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:85: PackGetBlockchainID 100.0% -2025-07-23T19:39:15.4821369Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:91: PackGetBlockchainIDOutput 100.0% -2025-07-23T19:39:15.4821662Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:96: getBlockchainID 83.3% -2025-07-23T19:39:15.4822026Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:111: UnpackGetVerifiedWarpBlockHashInput 0.0% -2025-07-23T19:39:15.4822377Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:125: PackGetVerifiedWarpBlockHash 100.0% -2025-07-23T19:39:15.4822738Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:131: PackGetVerifiedWarpBlockHashOutput 100.0% -2025-07-23T19:39:15.4823216Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:140: UnpackGetVerifiedWarpBlockHashOutput 0.0% -2025-07-23T19:39:15.4823545Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:147: getVerifiedWarpBlockHash 100.0% -2025-07-23T19:39:15.4823901Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:153: UnpackGetVerifiedWarpMessageInput 100.0% -2025-07-23T19:39:15.4824244Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:167: PackGetVerifiedWarpMessage 100.0% -2025-07-23T19:39:15.4824599Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:173: PackGetVerifiedWarpMessageOutput 100.0% -2025-07-23T19:39:15.4824957Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:182: UnpackGetVerifiedWarpMessageOutput 0.0% -2025-07-23T19:39:15.4825281Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:191: getVerifiedWarpMessage 100.0% -2025-07-23T19:39:15.4825619Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:197: UnpackSendWarpMessageInput 100.0% -2025-07-23T19:39:15.4825940Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:209: PackSendWarpMessage 100.0% -2025-07-23T19:39:15.4826270Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:215: PackSendWarpMessageOutput 100.0% -2025-07-23T19:39:15.4826614Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:221: UnpackSendWarpMessageOutput 0.0% -2025-07-23T19:39:15.4826908Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:232: sendWarpMessage 81.5% -2025-07-23T19:39:15.4827232Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:301: PackSendWarpMessageEvent 100.0% -2025-07-23T19:39:15.4827590Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:306: UnpackSendWarpEventDataToMessage 80.0% -2025-07-23T19:39:15.4827898Z github.com/ava-labs/coreth/precompile/contracts/warp/contract.go:316: createWarpPrecompile 81.8% -2025-07-23T19:39:15.4828295Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:29: init 75.0% -2025-07-23T19:39:15.4828634Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:48: handleWarpMessage 96.7% -2025-07-23T19:39:15.4828952Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:98: packFailed 100.0% -2025-07-23T19:39:15.4829284Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:102: handleMessage 100.0% -2025-07-23T19:39:15.4829598Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:119: packFailed 100.0% -2025-07-23T19:39:15.4829928Z github.com/ava-labs/coreth/precompile/contracts/warp/contract_warp_handler.go:123: handleMessage 100.0% -2025-07-23T19:39:15.4830171Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:35: init 50.0% -2025-07-23T19:39:15.4830548Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:45: MakeConfig 0.0% -2025-07-23T19:39:15.4830806Z github.com/ava-labs/coreth/precompile/contracts/warp/module.go:50: Configure 0.0% -2025-07-23T19:39:15.4831023Z github.com/ava-labs/coreth/precompile/modules/module.go:27: Len 100.0% -2025-07-23T19:39:15.4831244Z github.com/ava-labs/coreth/precompile/modules/module.go:31: Swap 100.0% -2025-07-23T19:39:15.4831467Z github.com/ava-labs/coreth/precompile/modules/module.go:35: Less 100.0% -2025-07-23T19:39:15.4831743Z github.com/ava-labs/coreth/precompile/modules/registerer.go:37: ReservedAddress 75.0% -2025-07-23T19:39:15.4832018Z github.com/ava-labs/coreth/precompile/modules/registerer.go:48: RegisterModule 46.2% -2025-07-23T19:39:15.4832334Z github.com/ava-labs/coreth/precompile/modules/registerer.go:72: GetPrecompileModuleByAddress 0.0% -2025-07-23T19:39:15.4832617Z github.com/ava-labs/coreth/precompile/modules/registerer.go:81: GetPrecompileModule 0.0% -2025-07-23T19:39:15.4832898Z github.com/ava-labs/coreth/precompile/modules/registerer.go:90: RegisteredModules 0.0% -2025-07-23T19:39:15.4833308Z github.com/ava-labs/coreth/precompile/modules/registerer.go:94: insertSortedByAddress 100.0% -2025-07-23T19:39:15.4833599Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:32: NewMockPredicater 0.0% -2025-07-23T19:39:15.4833852Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:39: EXPECT 0.0% -2025-07-23T19:39:15.4834125Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:44: PredicateGas 0.0% -2025-07-23T19:39:15.4834400Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:53: PredicateGas 0.0% -2025-07-23T19:39:15.4834680Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:59: VerifyPredicate 0.0% -2025-07-23T19:39:15.4834967Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:67: VerifyPredicate 0.0% -2025-07-23T19:39:15.4835244Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:85: NewMockConfig 0.0% -2025-07-23T19:39:15.4835495Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:92: EXPECT 0.0% -2025-07-23T19:39:15.4835745Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:97: Equal 0.0% -2025-07-23T19:39:15.4835991Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:105: Equal 0.0% -2025-07-23T19:39:15.4836259Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:111: IsDisabled 0.0% -2025-07-23T19:39:15.4836530Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:119: IsDisabled 0.0% -2025-07-23T19:39:15.4836771Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:125: Key 0.0% -2025-07-23T19:39:15.4837014Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:133: Key 0.0% -2025-07-23T19:39:15.4837276Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:139: Timestamp 0.0% -2025-07-23T19:39:15.4837538Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:147: Timestamp 0.0% -2025-07-23T19:39:15.4837797Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:153: Verify 0.0% -2025-07-23T19:39:15.4838046Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:161: Verify 0.0% -2025-07-23T19:39:15.4838442Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:179: NewMockChainConfig 0.0% -2025-07-23T19:39:15.4838695Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:186: EXPECT 0.0% -2025-07-23T19:39:15.4838953Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:191: IsDurango 0.0% -2025-07-23T19:39:15.4839216Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:199: IsDurango 0.0% -2025-07-23T19:39:15.4839503Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:217: NewMockAccepter 0.0% -2025-07-23T19:39:15.4839760Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:224: EXPECT 0.0% -2025-07-23T19:39:15.4840124Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:229: Accept 0.0% -2025-07-23T19:39:15.4840376Z github.com/ava-labs/coreth/precompile/precompileconfig/mocks.go:237: Accept 0.0% -2025-07-23T19:39:15.4840660Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:17: Timestamp 0.0% -2025-07-23T19:39:15.4840943Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:22: IsDisabled 0.0% -2025-07-23T19:39:15.4841211Z github.com/ava-labs/coreth/precompile/precompileconfig/upgradeable.go:28: Equal 0.0% -2025-07-23T19:39:15.4841528Z github.com/ava-labs/coreth/precompile/precompiletest/test_config.go:28: RunVerifyTests 100.0% -2025-07-23T19:39:15.4841826Z github.com/ava-labs/coreth/precompile/precompiletest/test_config.go:51: RunEqualTests 100.0% -2025-07-23T19:39:15.4842102Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:66: Run 100.0% -2025-07-23T19:39:15.4842381Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:88: setup 96.0% -2025-07-23T19:39:15.4842821Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:135: RunPrecompileTests 100.0% -2025-07-23T19:39:15.4843140Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:153: newTestStateDB 100.0% -2025-07-23T19:39:15.4843490Z github.com/ava-labs/coreth/precompile/precompiletest/test_precompile.go:163: GetPredicateStorageSlots 100.0% -2025-07-23T19:39:15.4843764Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:26: Run 100.0% -2025-07-23T19:39:15.4844077Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:43: RunPredicateTests 100.0% -2025-07-23T19:39:15.4844369Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:53: RunBenchmark 0.0% -2025-07-23T19:39:15.4844703Z github.com/ava-labs/coreth/precompile/precompiletest/test_predicate.go:73: RunPredicateBenchmarks 0.0% -2025-07-23T19:39:15.4844952Z github.com/ava-labs/coreth/predicate/predicate_bytes.go:28: PackPredicate 100.0% -2025-07-23T19:39:15.4845211Z github.com/ava-labs/coreth/predicate/predicate_bytes.go:36: UnpackPredicate 87.5% -2025-07-23T19:39:15.4845436Z github.com/ava-labs/coreth/predicate/predicate_results.go:24: init 83.3% -2025-07-23T19:39:15.4845702Z github.com/ava-labs/coreth/predicate/predicate_results.go:47: GetPredicateResults 0.0% -2025-07-23T19:39:15.4845948Z github.com/ava-labs/coreth/predicate/predicate_results.go:56: NewResults 100.0% -2025-07-23T19:39:15.4846210Z github.com/ava-labs/coreth/predicate/predicate_results.go:62: NewResultsFromMap 100.0% -2025-07-23T19:39:15.4846458Z github.com/ava-labs/coreth/predicate/predicate_results.go:69: ParseResults 71.4% -2025-07-23T19:39:15.4846699Z github.com/ava-labs/coreth/predicate/predicate_results.go:82: GetResults 100.0% -2025-07-23T19:39:15.4846945Z github.com/ava-labs/coreth/predicate/predicate_results.go:91: SetTxResults 100.0% -2025-07-23T19:39:15.4847219Z github.com/ava-labs/coreth/predicate/predicate_results.go:101: DeleteTxResults 100.0% -2025-07-23T19:39:15.4847450Z github.com/ava-labs/coreth/predicate/predicate_results.go:106: Bytes 100.0% -2025-07-23T19:39:15.4847678Z github.com/ava-labs/coreth/predicate/predicate_results.go:110: String 0.0% -2025-07-23T19:39:15.4847979Z github.com/ava-labs/coreth/predicate/predicate_slots.go:20: PreparePredicateStorageSlots 0.0% -2025-07-23T19:39:15.4848306Z github.com/ava-labs/coreth/predicate/predicate_tx.go:16: NewPredicateTx 0.0% -2025-07-23T19:39:15.4848520Z github.com/ava-labs/coreth/rpc/client.go:128: newClientConn 100.0% -2025-07-23T19:39:15.4848700Z github.com/ava-labs/coreth/rpc/client.go:141: close 100.0% -2025-07-23T19:39:15.4848873Z github.com/ava-labs/coreth/rpc/client.go:161: wait 100.0% -2025-07-23T19:39:15.4849045Z github.com/ava-labs/coreth/rpc/client.go:189: Dial 100.0% -2025-07-23T19:39:15.4849361Z github.com/ava-labs/coreth/rpc/client.go:197: DialContext 100.0% -2025-07-23T19:39:15.4849563Z github.com/ava-labs/coreth/rpc/client.go:208: DialOptions 80.0% -2025-07-23T19:39:15.4849777Z github.com/ava-labs/coreth/rpc/client.go:242: ClientFromContext 100.0% -2025-07-23T19:39:15.4849965Z github.com/ava-labs/coreth/rpc/client.go:247: newClient 100.0% -2025-07-23T19:39:15.4850161Z github.com/ava-labs/coreth/rpc/client.go:257: initClient 100.0% -2025-07-23T19:39:15.4850348Z github.com/ava-labs/coreth/rpc/client.go:293: RegisterName 0.0% -2025-07-23T19:39:15.4850526Z github.com/ava-labs/coreth/rpc/client.go:297: nextID 100.0% -2025-07-23T19:39:15.4850739Z github.com/ava-labs/coreth/rpc/client.go:304: SupportedModules 100.0% -2025-07-23T19:39:15.4850913Z github.com/ava-labs/coreth/rpc/client.go:313: Close 100.0% -2025-07-23T19:39:15.4851098Z github.com/ava-labs/coreth/rpc/client.go:327: SetHeader 83.3% -2025-07-23T19:39:15.4851276Z github.com/ava-labs/coreth/rpc/client.go:342: Call 100.0% -2025-07-23T19:39:15.4851572Z github.com/ava-labs/coreth/rpc/client.go:352: CallContext 95.2% -2025-07-23T19:39:15.4851762Z github.com/ava-labs/coreth/rpc/client.go:400: BatchCall 100.0% -2025-07-23T19:39:15.4851967Z github.com/ava-labs/coreth/rpc/client.go:414: BatchCallContext 85.7% -2025-07-23T19:39:15.4852143Z github.com/ava-labs/coreth/rpc/client.go:485: Notify 75.0% -2025-07-23T19:39:15.4852339Z github.com/ava-labs/coreth/rpc/client.go:500: EthSubscribe 100.0% -2025-07-23T19:39:15.4852526Z github.com/ava-labs/coreth/rpc/client.go:506: ShhSubscribe 0.0% -2025-07-23T19:39:15.4852713Z github.com/ava-labs/coreth/rpc/client.go:522: Subscribe 81.2% -2025-07-23T19:39:15.4852939Z github.com/ava-labs/coreth/rpc/client.go:559: SupportsSubscriptions 0.0% -2025-07-23T19:39:15.4853122Z github.com/ava-labs/coreth/rpc/client.go:563: newMessage 83.3% -2025-07-23T19:39:15.4853298Z github.com/ava-labs/coreth/rpc/client.go:576: send 100.0% -2025-07-23T19:39:15.4853472Z github.com/ava-labs/coreth/rpc/client.go:591: write 100.0% -2025-07-23T19:39:15.4853656Z github.com/ava-labs/coreth/rpc/client.go:608: reconnect 93.3% -2025-07-23T19:39:15.4853832Z github.com/ava-labs/coreth/rpc/client.go:636: dispatch 94.1% -2025-07-23T19:39:15.4854012Z github.com/ava-labs/coreth/rpc/client.go:717: drainRead 100.0% -2025-07-23T19:39:15.4854183Z github.com/ava-labs/coreth/rpc/client.go:728: read 100.0% -2025-07-23T19:39:15.4854386Z github.com/ava-labs/coreth/rpc/client_opt.go:57: initHeaders 100.0% -2025-07-23T19:39:15.4854580Z github.com/ava-labs/coreth/rpc/client_opt.go:63: setHeader 100.0% -2025-07-23T19:39:15.4854785Z github.com/ava-labs/coreth/rpc/client_opt.go:70: applyOption 100.0% -2025-07-23T19:39:15.4855009Z github.com/ava-labs/coreth/rpc/client_opt.go:75: WithWebsocketDialer 0.0% -2025-07-23T19:39:15.4855273Z github.com/ava-labs/coreth/rpc/client_opt.go:83: WithWebsocketMessageSizeLimit 100.0% -2025-07-23T19:39:15.4855466Z github.com/ava-labs/coreth/rpc/client_opt.go:91: WithHeader 0.0% -2025-07-23T19:39:15.4855664Z github.com/ava-labs/coreth/rpc/client_opt.go:100: WithHeaders 0.0% -2025-07-23T19:39:15.4855879Z github.com/ava-labs/coreth/rpc/client_opt.go:110: WithHTTPClient 0.0% -2025-07-23T19:39:15.4856077Z github.com/ava-labs/coreth/rpc/client_opt.go:119: WithHTTPAuth 0.0% -2025-07-23T19:39:15.4856301Z github.com/ava-labs/coreth/rpc/client_opt.go:139: WithBatchItemLimit 0.0% -2025-07-23T19:39:15.4856546Z github.com/ava-labs/coreth/rpc/client_opt.go:151: WithBatchResponseSizeLimit 0.0% -2025-07-23T19:39:15.4856797Z github.com/ava-labs/coreth/rpc/context_headers.go:39: NewContextWithHeaders 87.5% -2025-07-23T19:39:15.4857045Z github.com/ava-labs/coreth/rpc/context_headers.go:56: headersFromContext 100.0% -2025-07-23T19:39:15.4857346Z github.com/ava-labs/coreth/rpc/context_headers.go:62: setHeaders 100.0% -2025-07-23T19:39:15.4857520Z github.com/ava-labs/coreth/rpc/errors.go:40: Error 66.7% -2025-07-23T19:39:15.4857709Z github.com/ava-labs/coreth/rpc/errors.go:89: ErrorCode 100.0% -2025-07-23T19:39:15.4857878Z github.com/ava-labs/coreth/rpc/errors.go:91: Error 100.0% -2025-07-23T19:39:15.4858053Z github.com/ava-labs/coreth/rpc/errors.go:97: Error 0.0% -2025-07-23T19:39:15.4858329Z github.com/ava-labs/coreth/rpc/errors.go:101: ErrorCode 0.0% -2025-07-23T19:39:15.4858490Z github.com/ava-labs/coreth/rpc/errors.go:111: Is 0.0% -2025-07-23T19:39:15.4858684Z github.com/ava-labs/coreth/rpc/errors.go:125: ErrorCode 100.0% -2025-07-23T19:39:15.4858855Z github.com/ava-labs/coreth/rpc/errors.go:127: Error 100.0% -2025-07-23T19:39:15.4859044Z github.com/ava-labs/coreth/rpc/errors.go:134: ErrorCode 100.0% -2025-07-23T19:39:15.4859219Z github.com/ava-labs/coreth/rpc/errors.go:136: Error 100.0% -2025-07-23T19:39:15.4859403Z github.com/ava-labs/coreth/rpc/errors.go:141: ErrorCode 100.0% -2025-07-23T19:39:15.4859706Z github.com/ava-labs/coreth/rpc/errors.go:143: Error 100.0% -2025-07-23T19:39:15.4859881Z github.com/ava-labs/coreth/rpc/errors.go:148: ErrorCode 0.0% -2025-07-23T19:39:15.4860049Z github.com/ava-labs/coreth/rpc/errors.go:150: Error 0.0% -2025-07-23T19:39:15.4860235Z github.com/ava-labs/coreth/rpc/errors.go:155: ErrorCode 100.0% -2025-07-23T19:39:15.4860404Z github.com/ava-labs/coreth/rpc/errors.go:157: Error 100.0% -2025-07-23T19:39:15.4860588Z github.com/ava-labs/coreth/rpc/errors.go:165: ErrorCode 100.0% -2025-07-23T19:39:15.4860756Z github.com/ava-labs/coreth/rpc/errors.go:167: Error 100.0% -2025-07-23T19:39:15.4860947Z github.com/ava-labs/coreth/rpc/handler.go:96: newHandler 100.0% -2025-07-23T19:39:15.4861133Z github.com/ava-labs/coreth/rpc/handler.go:130: nextCall 100.0% -2025-07-23T19:39:15.4861338Z github.com/ava-labs/coreth/rpc/handler.go:144: pushResponse 100.0% -2025-07-23T19:39:15.4861516Z github.com/ava-labs/coreth/rpc/handler.go:155: write 100.0% -2025-07-23T19:39:15.4861735Z github.com/ava-labs/coreth/rpc/handler.go:164: respondWithError 100.0% -2025-07-23T19:39:15.4861916Z github.com/ava-labs/coreth/rpc/handler.go:178: doWrite 100.0% -2025-07-23T19:39:15.4862109Z github.com/ava-labs/coreth/rpc/handler.go:193: addLimiter 66.7% -2025-07-23T19:39:15.4862298Z github.com/ava-labs/coreth/rpc/handler.go:201: handleBatch 84.1% -2025-07-23T19:39:15.4862540Z github.com/ava-labs/coreth/rpc/handler.go:283: respondWithBatchTooLarge 100.0% -2025-07-23T19:39:15.4862734Z github.com/ava-labs/coreth/rpc/handler.go:298: handleMsg 100.0% -2025-07-23T19:39:15.4862951Z github.com/ava-labs/coreth/rpc/handler.go:307: handleNonBatchCall 66.7% -2025-07-23T19:39:15.4863129Z github.com/ava-labs/coreth/rpc/handler.go:346: close 100.0% -2025-07-23T19:39:15.4863329Z github.com/ava-labs/coreth/rpc/handler.go:354: addRequestOp 100.0% -2025-07-23T19:39:15.4863542Z github.com/ava-labs/coreth/rpc/handler.go:361: removeRequestOp 100.0% -2025-07-23T19:39:15.4863759Z github.com/ava-labs/coreth/rpc/handler.go:368: cancelAllRequests 100.0% -2025-07-23T19:39:15.4863970Z github.com/ava-labs/coreth/rpc/handler.go:390: addSubscriptions 100.0% -2025-07-23T19:39:15.4864208Z github.com/ava-labs/coreth/rpc/handler.go:402: cancelServerSubscriptions 100.0% -2025-07-23T19:39:15.4864401Z github.com/ava-labs/coreth/rpc/handler.go:415: awaitLimit 22.2% -2025-07-23T19:39:15.4864597Z github.com/ava-labs/coreth/rpc/handler.go:435: consumeLimit 28.6% -2025-07-23T19:39:15.4864799Z github.com/ava-labs/coreth/rpc/handler.go:450: startCallProc 87.5% -2025-07-23T19:39:15.4865008Z github.com/ava-labs/coreth/rpc/handler.go:484: handleResponses 93.3% -2025-07-23T19:39:15.4865356Z github.com/ava-labs/coreth/rpc/handler.go:541: handleSubscriptionResult 66.7% -2025-07-23T19:39:15.4865570Z github.com/ava-labs/coreth/rpc/handler.go:553: handleCallMsg 100.0% -2025-07-23T19:39:15.4865756Z github.com/ava-labs/coreth/rpc/handler.go:595: handleCall 95.5% -2025-07-23T19:39:15.4865962Z github.com/ava-labs/coreth/rpc/handler.go:635: handleSubscribe 83.3% -2025-07-23T19:39:15.4866154Z github.com/ava-labs/coreth/rpc/handler.go:668: runMethod 100.0% -2025-07-23T19:39:15.4866345Z github.com/ava-labs/coreth/rpc/handler.go:677: unsubscribe 87.5% -2025-07-23T19:39:15.4866522Z github.com/ava-labs/coreth/rpc/handler.go:692: String 0.0% -2025-07-23T19:39:15.4866694Z github.com/ava-labs/coreth/rpc/handler.go:706: Write 66.7% -2025-07-23T19:39:15.4866900Z github.com/ava-labs/coreth/rpc/handler.go:716: formatErrorData 66.7% -2025-07-23T19:39:15.4867073Z github.com/ava-labs/coreth/rpc/http.go:68: writeJSON 0.0% -2025-07-23T19:39:15.4867287Z github.com/ava-labs/coreth/rpc/http.go:72: writeJSONSkipDeadline 0.0% -2025-07-23T19:39:15.4867537Z github.com/ava-labs/coreth/rpc/http.go:76: peerInfo 0.0% -2025-07-23T19:39:15.4867709Z github.com/ava-labs/coreth/rpc/http.go:80: remoteAddr 0.0% -2025-07-23T19:39:15.4867875Z github.com/ava-labs/coreth/rpc/http.go:84: readBatch 0.0% -2025-07-23T19:39:15.4868039Z github.com/ava-labs/coreth/rpc/http.go:89: close 0.0% -2025-07-23T19:39:15.4868296Z github.com/ava-labs/coreth/rpc/http.go:93: closed 0.0% -2025-07-23T19:39:15.4868470Z github.com/ava-labs/coreth/rpc/http.go:139: DialHTTP 100.0% -2025-07-23T19:39:15.4868679Z github.com/ava-labs/coreth/rpc/http.go:147: DialHTTPWithClient 85.7% -2025-07-23T19:39:15.4868897Z github.com/ava-labs/coreth/rpc/http.go:160: newClientTransportHTTP 90.9% -2025-07-23T19:39:15.4869073Z github.com/ava-labs/coreth/rpc/http.go:186: sendHTTP 90.9% -2025-07-23T19:39:15.4869270Z github.com/ava-labs/coreth/rpc/http.go:203: sendBatchHTTP 80.0% -2025-07-23T19:39:15.4869439Z github.com/ava-labs/coreth/rpc/http.go:219: doRequest 81.5% -2025-07-23T19:39:15.4869648Z github.com/ava-labs/coreth/rpc/http.go:271: newHTTPServerConn 47.1% -2025-07-23T19:39:15.4869811Z github.com/ava-labs/coreth/rpc/http.go:313: Close 100.0% -2025-07-23T19:39:15.4869989Z github.com/ava-labs/coreth/rpc/http.go:316: RemoteAddr 100.0% -2025-07-23T19:39:15.4870194Z github.com/ava-labs/coreth/rpc/http.go:321: SetWriteDeadline 100.0% -2025-07-23T19:39:15.4870369Z github.com/ava-labs/coreth/rpc/http.go:324: ServeHTTP 100.0% -2025-07-23T19:39:15.4870570Z github.com/ava-labs/coreth/rpc/http.go:355: validateRequest 92.3% -2025-07-23T19:39:15.4870784Z github.com/ava-labs/coreth/rpc/http.go:381: ContextRequestTimeout 50.0% -2025-07-23T19:39:15.4870970Z github.com/ava-labs/coreth/rpc/inproc.go:36: DialInProc 100.0% -2025-07-23T19:39:15.4871171Z github.com/ava-labs/coreth/rpc/json.go:82: isNotification 100.0% -2025-07-23T19:39:15.4871335Z github.com/ava-labs/coreth/rpc/json.go:86: isCall 100.0% -2025-07-23T19:39:15.4871518Z github.com/ava-labs/coreth/rpc/json.go:90: isResponse 100.0% -2025-07-23T19:39:15.4871693Z github.com/ava-labs/coreth/rpc/json.go:94: hasValidID 100.0% -2025-07-23T19:39:15.4871889Z github.com/ava-labs/coreth/rpc/json.go:98: hasValidVersion 100.0% -2025-07-23T19:39:15.4872077Z github.com/ava-labs/coreth/rpc/json.go:102: isSubscribe 100.0% -2025-07-23T19:39:15.4872267Z github.com/ava-labs/coreth/rpc/json.go:106: isUnsubscribe 100.0% -2025-07-23T19:39:15.4872439Z github.com/ava-labs/coreth/rpc/json.go:110: namespace 100.0% -2025-07-23T19:39:15.4872608Z github.com/ava-labs/coreth/rpc/json.go:115: String 0.0% -2025-07-23T19:39:15.4872799Z github.com/ava-labs/coreth/rpc/json.go:120: errorResponse 100.0% -2025-07-23T19:39:15.4872976Z github.com/ava-labs/coreth/rpc/json.go:126: response 100.0% -2025-07-23T19:39:15.4873287Z github.com/ava-labs/coreth/rpc/json.go:134: errorMessage 100.0% -2025-07-23T19:39:15.4873453Z github.com/ava-labs/coreth/rpc/json.go:156: Error 66.7% -2025-07-23T19:39:15.4873632Z github.com/ava-labs/coreth/rpc/json.go:163: ErrorCode 100.0% -2025-07-23T19:39:15.4873806Z github.com/ava-labs/coreth/rpc/json.go:167: ErrorData 100.0% -2025-07-23T19:39:15.4873994Z github.com/ava-labs/coreth/rpc/json.go:208: NewFuncCodec 100.0% -2025-07-23T19:39:15.4874171Z github.com/ava-labs/coreth/rpc/json.go:223: NewCodec 100.0% -2025-07-23T19:39:15.4874344Z github.com/ava-labs/coreth/rpc/json.go:234: peerInfo 100.0% -2025-07-23T19:39:15.4874526Z github.com/ava-labs/coreth/rpc/json.go:239: remoteAddr 100.0% -2025-07-23T19:39:15.4874700Z github.com/ava-labs/coreth/rpc/json.go:243: readBatch 100.0% -2025-07-23T19:39:15.4874871Z github.com/ava-labs/coreth/rpc/json.go:261: writeJSON 100.0% -2025-07-23T19:39:15.4875097Z github.com/ava-labs/coreth/rpc/json.go:265: writeJSONSkipDeadline 100.0% -2025-07-23T19:39:15.4875407Z github.com/ava-labs/coreth/rpc/json.go:280: close 100.0% -2025-07-23T19:39:15.4875583Z github.com/ava-labs/coreth/rpc/json.go:288: closed 100.0% -2025-07-23T19:39:15.4875774Z github.com/ava-labs/coreth/rpc/json.go:296: parseMessage 100.0% -2025-07-23T19:39:15.4875943Z github.com/ava-labs/coreth/rpc/json.go:313: isBatch 60.0% -2025-07-23T19:39:15.4876171Z github.com/ava-labs/coreth/rpc/json.go:327: parsePositionalArguments 84.6% -2025-07-23T19:39:15.4876377Z github.com/ava-labs/coreth/rpc/json.go:355: parseArgumentArray 75.0% -2025-07-23T19:39:15.4876592Z github.com/ava-labs/coreth/rpc/json.go:376: parseSubscriptionName 75.0% -2025-07-23T19:39:15.4876828Z github.com/ava-labs/coreth/rpc/metrics.go:58: updateServeTimeHistogram 0.0% -2025-07-23T19:39:15.4877009Z github.com/ava-labs/coreth/rpc/server.go:74: NewServer 100.0% -2025-07-23T19:39:15.4877218Z github.com/ava-labs/coreth/rpc/server.go:95: SetBatchLimits 100.0% -2025-07-23T19:39:15.4877423Z github.com/ava-labs/coreth/rpc/server.go:103: SetHTTPBodyLimit 0.0% -2025-07-23T19:39:15.4877620Z github.com/ava-labs/coreth/rpc/server.go:111: RegisterName 100.0% -2025-07-23T19:39:15.4877812Z github.com/ava-labs/coreth/rpc/server.go:120: ServeCodec 87.5% -2025-07-23T19:39:15.4877997Z github.com/ava-labs/coreth/rpc/server.go:138: trackCodec 83.3% -2025-07-23T19:39:15.4878285Z github.com/ava-labs/coreth/rpc/server.go:149: untrackCodec 100.0% -2025-07-23T19:39:15.4878503Z github.com/ava-labs/coreth/rpc/server.go:159: serveSingleRequest 60.0% -2025-07-23T19:39:15.4878671Z github.com/ava-labs/coreth/rpc/server.go:188: Stop 100.0% -2025-07-23T19:39:15.4878854Z github.com/ava-labs/coreth/rpc/server.go:207: Modules 100.0% -2025-07-23T19:39:15.4879074Z github.com/ava-labs/coreth/rpc/server.go:248: PeerInfoFromContext 100.0% -2025-07-23T19:39:15.4879274Z github.com/ava-labs/coreth/rpc/service.go:71: registerName 89.5% -2025-07-23T19:39:15.4879460Z github.com/ava-labs/coreth/rpc/service.go:106: callback 83.3% -2025-07-23T19:39:15.4879658Z github.com/ava-labs/coreth/rpc/service.go:117: subscription 100.0% -2025-07-23T19:39:15.4879872Z github.com/ava-labs/coreth/rpc/service.go:126: suitableCallbacks 91.7% -2025-07-23T19:39:15.4880066Z github.com/ava-labs/coreth/rpc/service.go:146: newCallback 100.0% -2025-07-23T19:39:15.4880261Z github.com/ava-labs/coreth/rpc/service.go:175: makeArgTypes 100.0% -2025-07-23T19:39:15.4880436Z github.com/ava-labs/coreth/rpc/service.go:194: call 100.0% -2025-07-23T19:39:15.4880631Z github.com/ava-labs/coreth/rpc/service.go:229: isErrorType 100.0% -2025-07-23T19:39:15.4880850Z github.com/ava-labs/coreth/rpc/service.go:234: isSubscriptionType 100.0% -2025-07-23T19:39:15.4881038Z github.com/ava-labs/coreth/rpc/service.go:243: isPubSub 100.0% -2025-07-23T19:39:15.4881359Z github.com/ava-labs/coreth/rpc/service.go:254: formatName 100.0% -2025-07-23T19:39:15.4881559Z github.com/ava-labs/coreth/rpc/subscription.go:67: NewID 100.0% -2025-07-23T19:39:15.4881785Z github.com/ava-labs/coreth/rpc/subscription.go:72: randomIDGenerator 91.7% -2025-07-23T19:39:15.4881980Z github.com/ava-labs/coreth/rpc/subscription.go:94: encodeID 80.0% -2025-07-23T19:39:15.4882227Z github.com/ava-labs/coreth/rpc/subscription.go:106: NotifierFromContext 100.0% -2025-07-23T19:39:15.4882463Z github.com/ava-labs/coreth/rpc/subscription.go:128: CreateSubscription 75.0% -2025-07-23T19:39:15.4882661Z github.com/ava-labs/coreth/rpc/subscription.go:143: Notify 80.0% -2025-07-23T19:39:15.4882856Z github.com/ava-labs/coreth/rpc/subscription.go:161: Closed 100.0% -2025-07-23T19:39:15.4883084Z github.com/ava-labs/coreth/rpc/subscription.go:167: takeSubscription 100.0% -2025-07-23T19:39:15.4883291Z github.com/ava-labs/coreth/rpc/subscription.go:177: activate 100.0% -2025-07-23T19:39:15.4883584Z github.com/ava-labs/coreth/rpc/subscription.go:190: send 100.0% -2025-07-23T19:39:15.4883769Z github.com/ava-labs/coreth/rpc/subscription.go:211: Err 100.0% -2025-07-23T19:39:15.4883987Z github.com/ava-labs/coreth/rpc/subscription.go:216: MarshalJSON 100.0% -2025-07-23T19:39:15.4884235Z github.com/ava-labs/coreth/rpc/subscription.go:248: newClientSubscription 100.0% -2025-07-23T19:39:15.4884424Z github.com/ava-labs/coreth/rpc/subscription.go:271: Err 100.0% -2025-07-23T19:39:15.4884633Z github.com/ava-labs/coreth/rpc/subscription.go:277: Unsubscribe 100.0% -2025-07-23T19:39:15.4884832Z github.com/ava-labs/coreth/rpc/subscription.go:289: deliver 100.0% -2025-07-23T19:39:15.4885028Z github.com/ava-labs/coreth/rpc/subscription.go:299: close 100.0% -2025-07-23T19:39:15.4885210Z github.com/ava-labs/coreth/rpc/subscription.go:308: run 100.0% -2025-07-23T19:39:15.4885410Z github.com/ava-labs/coreth/rpc/subscription.go:335: forward 95.7% -2025-07-23T19:39:15.4885622Z github.com/ava-labs/coreth/rpc/subscription.go:383: unmarshal 100.0% -2025-07-23T19:39:15.4885858Z github.com/ava-labs/coreth/rpc/subscription.go:389: requestUnsubscribe 100.0% -2025-07-23T19:39:15.4886052Z github.com/ava-labs/coreth/rpc/types.go:90: UnmarshalJSON 81.0% -2025-07-23T19:39:15.4886218Z github.com/ava-labs/coreth/rpc/types.go:127: Int64 0.0% -2025-07-23T19:39:15.4886403Z github.com/ava-labs/coreth/rpc/types.go:134: MarshalText 100.0% -2025-07-23T19:39:15.4886577Z github.com/ava-labs/coreth/rpc/types.go:138: String 66.7% -2025-07-23T19:39:15.4886754Z github.com/ava-labs/coreth/rpc/types.go:159: IsAccepted 0.0% -2025-07-23T19:39:15.4886927Z github.com/ava-labs/coreth/rpc/types.go:163: IsLatest 0.0% -2025-07-23T19:39:15.4887120Z github.com/ava-labs/coreth/rpc/types.go:173: UnmarshalJSON 84.4% -2025-07-23T19:39:15.4887293Z github.com/ava-labs/coreth/rpc/types.go:237: Number 100.0% -2025-07-23T19:39:15.4887467Z github.com/ava-labs/coreth/rpc/types.go:244: String 80.0% -2025-07-23T19:39:15.4887631Z github.com/ava-labs/coreth/rpc/types.go:254: Hash 100.0% -2025-07-23T19:39:15.4887870Z github.com/ava-labs/coreth/rpc/types.go:261: BlockNumberOrHashWithNumber 100.0% -2025-07-23T19:39:15.4888211Z github.com/ava-labs/coreth/rpc/types.go:269: BlockNumberOrHashWithHash 100.0% -2025-07-23T19:39:15.4888437Z github.com/ava-labs/coreth/rpc/websocket.go:61: WebsocketHandler 100.0% -2025-07-23T19:39:15.4888701Z github.com/ava-labs/coreth/rpc/websocket.go:65: WebsocketHandlerWithDuration 100.0% -2025-07-23T19:39:15.4888935Z github.com/ava-labs/coreth/rpc/websocket.go:86: wsHandshakeValidator 100.0% -2025-07-23T19:39:15.4889111Z github.com/ava-labs/coreth/rpc/websocket.go:132: Error 0.0% -2025-07-23T19:39:15.4889331Z github.com/ava-labs/coreth/rpc/websocket.go:140: originIsAllowed 100.0% -2025-07-23T19:39:15.4889657Z github.com/ava-labs/coreth/rpc/websocket.go:150: ruleAllowsOrigin 62.5% -2025-07-23T19:39:15.4889877Z github.com/ava-labs/coreth/rpc/websocket.go:178: parseOriginURL 92.9% -2025-07-23T19:39:15.4890113Z github.com/ava-labs/coreth/rpc/websocket.go:205: DialWebsocketWithDialer 0.0% -2025-07-23T19:39:15.4890317Z github.com/ava-labs/coreth/rpc/websocket.go:223: DialWebsocket 85.7% -2025-07-23T19:39:15.4890549Z github.com/ava-labs/coreth/rpc/websocket.go:235: newClientTransportWS 87.5% -2025-07-23T19:39:15.4890759Z github.com/ava-labs/coreth/rpc/websocket.go:278: wsClientHeaders 90.9% -2025-07-23T19:39:15.4890974Z github.com/ava-labs/coreth/rpc/websocket.go:305: newWebsocketCodec 84.6% -2025-07-23T19:39:15.4891164Z github.com/ava-labs/coreth/rpc/websocket.go:337: close 100.0% -2025-07-23T19:39:15.4891356Z github.com/ava-labs/coreth/rpc/websocket.go:342: peerInfo 100.0% -2025-07-23T19:39:15.4891570Z github.com/ava-labs/coreth/rpc/websocket.go:346: writeJSON 100.0% -2025-07-23T19:39:15.4891910Z github.com/ava-labs/coreth/rpc/websocket.go:350: writeJSONSkipDeadline 100.0% -2025-07-23T19:39:15.4892101Z github.com/ava-labs/coreth/rpc/websocket.go:363: pingLoop 50.0% -2025-07-23T19:39:15.4892322Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:55: Crit 0.0% -2025-07-23T19:39:15.4892574Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:58: Warn 0.0% -2025-07-23T19:39:15.4892965Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:61: Info 0.0% -2025-07-23T19:39:15.4893364Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:66: GetWarnings 0.0% -2025-07-23T19:39:15.4893604Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:103: String 0.0% -2025-07-23T19:39:15.4893862Z github.com/ava-labs/coreth/signer/core/apitypes/types.go:112: ToTransaction 0.0% -2025-07-23T19:39:15.4894073Z github.com/ava-labs/coreth/sync/client/client.go:99: NewClient 100.0% -2025-07-23T19:39:15.4894283Z github.com/ava-labs/coreth/sync/client/client.go:114: GetLeafs 100.0% -2025-07-23T19:39:15.4894538Z github.com/ava-labs/coreth/sync/client/client.go:132: parseLeafsResponse 88.5% -2025-07-23T19:39:15.4894745Z github.com/ava-labs/coreth/sync/client/client.go:188: GetBlocks 100.0% -2025-07-23T19:39:15.4894970Z github.com/ava-labs/coreth/sync/client/client.go:207: parseBlocks 100.0% -2025-07-23T19:39:15.4895174Z github.com/ava-labs/coreth/sync/client/client.go:243: GetCode 100.0% -2025-07-23T19:39:15.4895380Z github.com/ava-labs/coreth/sync/client/client.go:257: parseCode 93.3% -2025-07-23T19:39:15.4895573Z github.com/ava-labs/coreth/sync/client/client.go:289: get 72.1% -2025-07-23T19:39:15.4895834Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:51: NewCallbackLeafSyncer 0.0% -2025-07-23T19:39:15.4896062Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:62: workerLoop 0.0% -2025-07-23T19:39:15.4896272Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:80: syncTask 0.0% -2025-07-23T19:39:15.4896478Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:149: Start 0.0% -2025-07-23T19:39:15.4896683Z github.com/ava-labs/coreth/sync/client/leaf_syncer.go:171: Done 0.0% -2025-07-23T19:39:15.4896929Z github.com/ava-labs/coreth/sync/client/stats/stats.go:42: NewMessageMetric 100.0% -2025-07-23T19:39:15.4897160Z github.com/ava-labs/coreth/sync/client/stats/stats.go:53: IncRequested 100.0% -2025-07-23T19:39:15.4897396Z github.com/ava-labs/coreth/sync/client/stats/stats.go:57: IncSucceeded 100.0% -2025-07-23T19:39:15.4897618Z github.com/ava-labs/coreth/sync/client/stats/stats.go:61: IncFailed 100.0% -2025-07-23T19:39:15.4897869Z github.com/ava-labs/coreth/sync/client/stats/stats.go:65: IncInvalidResponse 0.0% -2025-07-23T19:39:15.4898212Z github.com/ava-labs/coreth/sync/client/stats/stats.go:69: IncReceived 100.0% -2025-07-23T19:39:15.4898631Z github.com/ava-labs/coreth/sync/client/stats/stats.go:73: UpdateRequestLatency 100.0% -2025-07-23T19:39:15.4898914Z github.com/ava-labs/coreth/sync/client/stats/stats.go:84: NewClientSyncerStats 100.0% -2025-07-23T19:39:15.4899134Z github.com/ava-labs/coreth/sync/client/stats/stats.go:97: GetMetric 62.5% -2025-07-23T19:39:15.4899368Z github.com/ava-labs/coreth/sync/client/stats/stats.go:121: IncRequested 0.0% -2025-07-23T19:39:15.4899595Z github.com/ava-labs/coreth/sync/client/stats/stats.go:122: IncSucceeded 0.0% -2025-07-23T19:39:15.4899812Z github.com/ava-labs/coreth/sync/client/stats/stats.go:123: IncFailed 0.0% -2025-07-23T19:39:15.4900070Z github.com/ava-labs/coreth/sync/client/stats/stats.go:124: IncInvalidResponse 0.0% -2025-07-23T19:39:15.4900296Z github.com/ava-labs/coreth/sync/client/stats/stats.go:125: IncReceived 0.0% -2025-07-23T19:39:15.4900555Z github.com/ava-labs/coreth/sync/client/stats/stats.go:126: UpdateRequestLatency 0.0% -2025-07-23T19:39:15.4900800Z github.com/ava-labs/coreth/sync/client/stats/stats.go:128: NewNoOpStats 100.0% -2025-07-23T19:39:15.4901136Z github.com/ava-labs/coreth/sync/client/stats/stats.go:132: GetMetric 100.0% -2025-07-23T19:39:15.4901366Z github.com/ava-labs/coreth/sync/client/test_client.go:44: NewTestClient 0.0% -2025-07-23T19:39:15.4901575Z github.com/ava-labs/coreth/sync/client/test_client.go:58: GetLeafs 0.0% -2025-07-23T19:39:15.4901804Z github.com/ava-labs/coreth/sync/client/test_client.go:77: LeavesReceived 0.0% -2025-07-23T19:39:15.4902016Z github.com/ava-labs/coreth/sync/client/test_client.go:81: GetCode 0.0% -2025-07-23T19:39:15.4902241Z github.com/ava-labs/coreth/sync/client/test_client.go:105: CodeReceived 0.0% -2025-07-23T19:39:15.4902459Z github.com/ava-labs/coreth/sync/client/test_client.go:109: GetBlocks 0.0% -2025-07-23T19:39:15.4902692Z github.com/ava-labs/coreth/sync/client/test_client.go:136: BlocksReceived 0.0% -2025-07-23T19:39:15.4902949Z github.com/ava-labs/coreth/sync/client/test_client.go:142: newTestBlockParser 100.0% -2025-07-23T19:39:15.4903192Z github.com/ava-labs/coreth/sync/client/test_client.go:146: ParseEthBlock 100.0% -2025-07-23T19:39:15.4903466Z github.com/ava-labs/coreth/sync/client/test_network.go:31: SendSyncedAppRequestAny 80.0% -2025-07-23T19:39:15.4903733Z github.com/ava-labs/coreth/sync/client/test_network.go:42: SendSyncedAppRequest 75.0% -2025-07-23T19:39:15.4903959Z github.com/ava-labs/coreth/sync/client/test_network.go:52: processTest 84.6% -2025-07-23T19:39:15.4904171Z github.com/ava-labs/coreth/sync/client/test_network.go:76: Gossip 0.0% -2025-07-23T19:39:15.4904408Z github.com/ava-labs/coreth/sync/client/test_network.go:80: testResponse 100.0% -2025-07-23T19:39:15.4904642Z github.com/ava-labs/coreth/sync/client/test_network.go:89: testResponses 100.0% -2025-07-23T19:39:15.4904876Z github.com/ava-labs/coreth/sync/client/test_network.go:95: TrackBandwidth 0.0% -2025-07-23T19:39:15.4905175Z github.com/ava-labs/coreth/sync/handlers/block_request.go:36: NewBlockRequestHandler 100.0% -2025-07-23T19:39:15.4905434Z github.com/ava-labs/coreth/sync/handlers/block_request.go:49: OnBlockRequest 87.8% -2025-07-23T19:39:15.4905713Z github.com/ava-labs/coreth/sync/handlers/code_request.go:29: NewCodeRequestHandler 100.0% -2025-07-23T19:39:15.4905958Z github.com/ava-labs/coreth/sync/handlers/code_request.go:43: OnCodeRequest 82.1% -2025-07-23T19:39:15.4906183Z github.com/ava-labs/coreth/sync/handlers/code_request.go:85: isUnique 100.0% -2025-07-23T19:39:15.4906473Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:58: NewLeafsRequestHandler 100.0% -2025-07-23T19:39:15.4906721Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:81: OnLeafsRequest 89.8% -2025-07-23T19:39:15.4906974Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:186: handleRequest 73.9% -2025-07-23T19:39:15.4907319Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:230: fillFromSnapshot 69.5% -2025-07-23T19:39:15.4907590Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:333: generateRangeProof 73.3% -2025-07-23T19:39:15.4907859Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:360: verifyRangeProof 100.0% -2025-07-23T19:39:15.4908193Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:372: iterateVals 87.5% -2025-07-23T19:39:15.4908449Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:393: isRangeValid 88.9% -2025-07-23T19:39:15.4908684Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:410: nextKey 100.0% -2025-07-23T19:39:15.4908929Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:424: fillFromTrie 94.4% -2025-07-23T19:39:15.4909216Z github.com/ava-labs/coreth/sync/handlers/leafs_request.go:459: readLeafsFromSnapshot 92.3% -2025-07-23T19:39:15.4909468Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:88: IncBlockRequest 100.0% -2025-07-23T19:39:15.4909731Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:92: IncMissingBlockHash 0.0% -2025-07-23T19:39:15.4910123Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:96: UpdateBlocksReturned 100.0% -2025-07-23T19:39:15.4910440Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:100: UpdateBlockRequestProcessingTime 100.0% -2025-07-23T19:39:15.4910689Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:104: IncCodeRequest 0.0% -2025-07-23T19:39:15.4910947Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:108: IncMissingCodeHash 0.0% -2025-07-23T19:39:15.4911234Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:112: IncTooManyHashesRequested 0.0% -2025-07-23T19:39:15.4911530Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:116: IncDuplicateHashesRequested 0.0% -2025-07-23T19:39:15.4911788Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:120: UpdateCodeReadTime 0.0% -2025-07-23T19:39:15.4912076Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:124: UpdateCodeBytesReturned 0.0% -2025-07-23T19:39:15.4912332Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:128: IncLeafsRequest 100.0% -2025-07-23T19:39:15.4912607Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:132: IncInvalidLeafsRequest 0.0% -2025-07-23T19:39:15.4912925Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:136: UpdateLeafsRequestProcessingTime 100.0% -2025-07-23T19:39:15.4913196Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:140: UpdateLeafsReturned 100.0% -2025-07-23T19:39:15.4913468Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:144: UpdateReadLeafsTime 100.0% -2025-07-23T19:39:15.4913749Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:148: UpdateSnapshotReadTime 100.0% -2025-07-23T19:39:15.4914050Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:152: UpdateGenerateRangeProofTime 100.0% -2025-07-23T19:39:15.4914355Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:156: UpdateRangeProofValsReturned 100.0% -2025-07-23T19:39:15.4914601Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:160: IncMissingRoot 0.0% -2025-07-23T19:39:15.4914842Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:161: IncTrieError 0.0% -2025-07-23T19:39:15.4915084Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:162: IncProofError 0.0% -2025-07-23T19:39:15.4915351Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:163: IncSnapshotReadError 0.0% -2025-07-23T19:39:15.4915665Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:164: IncSnapshotReadAttempt 100.0% -2025-07-23T19:39:15.4916082Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:165: IncSnapshotReadSuccess 0.0% -2025-07-23T19:39:15.4916368Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:166: IncSnapshotSegmentValid 0.0% -2025-07-23T19:39:15.4916662Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:167: IncSnapshotSegmentInvalid 100.0% -2025-07-23T19:39:15.4917073Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:172: GetOrRegisterHandlerStats 66.7% -2025-07-23T19:39:15.4917350Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:214: NewNoopHandlerStats 100.0% -2025-07-23T19:39:15.4917601Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:219: IncBlockRequest 0.0% -2025-07-23T19:39:15.4917863Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:220: IncMissingBlockHash 0.0% -2025-07-23T19:39:15.4918245Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:221: UpdateBlocksReturned 0.0% -2025-07-23T19:39:15.4918556Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:222: UpdateBlockRequestProcessingTime 0.0% -2025-07-23T19:39:15.4918806Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:223: IncCodeRequest 0.0% -2025-07-23T19:39:15.4919062Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:224: IncMissingCodeHash 0.0% -2025-07-23T19:39:15.4919348Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:225: IncTooManyHashesRequested 0.0% -2025-07-23T19:39:15.4919756Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:226: IncDuplicateHashesRequested 0.0% -2025-07-23T19:39:15.4920014Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:227: UpdateCodeReadTime 0.0% -2025-07-23T19:39:15.4920297Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:228: UpdateCodeBytesReturned 0.0% -2025-07-23T19:39:15.4920546Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:229: IncLeafsRequest 0.0% -2025-07-23T19:39:15.4920818Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:230: IncInvalidLeafsRequest 0.0% -2025-07-23T19:39:15.4921128Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:231: UpdateLeafsRequestProcessingTime 0.0% -2025-07-23T19:39:15.4921423Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:232: UpdateLeafsReturned 0.0% -2025-07-23T19:39:15.4921698Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:233: UpdateReadLeafsTime 0.0% -2025-07-23T19:39:15.4921980Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:234: UpdateSnapshotReadTime 0.0% -2025-07-23T19:39:15.4922279Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:235: UpdateGenerateRangeProofTime 0.0% -2025-07-23T19:39:15.4922580Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:236: UpdateRangeProofValsReturned 0.0% -2025-07-23T19:39:15.4922825Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:237: IncMissingRoot 0.0% -2025-07-23T19:39:15.4923063Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:238: IncTrieError 0.0% -2025-07-23T19:39:15.4923311Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:239: IncProofError 0.0% -2025-07-23T19:39:15.4923578Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:240: IncSnapshotReadError 0.0% -2025-07-23T19:39:15.4923858Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:241: IncSnapshotReadAttempt 0.0% -2025-07-23T19:39:15.4924134Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:242: IncSnapshotReadSuccess 0.0% -2025-07-23T19:39:15.4924419Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:243: IncSnapshotSegmentValid 0.0% -2025-07-23T19:39:15.4924707Z github.com/ava-labs/coreth/sync/handlers/stats/stats.go:244: IncSnapshotSegmentInvalid 0.0% -2025-07-23T19:39:15.4924979Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:49: Reset 100.0% -2025-07-23T19:39:15.4925292Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:80: IncBlockRequest 100.0% -2025-07-23T19:39:15.4925616Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:86: IncMissingBlockHash 100.0% -2025-07-23T19:39:15.4925939Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:92: UpdateBlocksReturned 100.0% -2025-07-23T19:39:15.4926326Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:98: UpdateBlockRequestProcessingTime 100.0% -2025-07-23T19:39:15.4926749Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:104: IncCodeRequest 100.0% -2025-07-23T19:39:15.4927069Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:110: IncMissingCodeHash 0.0% -2025-07-23T19:39:15.4927419Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:116: IncTooManyHashesRequested 100.0% -2025-07-23T19:39:15.4927772Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:122: IncDuplicateHashesRequested 100.0% -2025-07-23T19:39:15.4928193Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:128: UpdateCodeReadTime 100.0% -2025-07-23T19:39:15.4928538Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:134: UpdateCodeBytesReturned 100.0% -2025-07-23T19:39:15.4928857Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:140: IncLeafsRequest 100.0% -2025-07-23T19:39:15.4929199Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:146: IncInvalidLeafsRequest 100.0% -2025-07-23T19:39:15.4929633Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:152: UpdateLeafsReturned 100.0% -2025-07-23T19:39:15.4930008Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:158: UpdateLeafsRequestProcessingTime 100.0% -2025-07-23T19:39:15.4930328Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:164: UpdateReadLeafsTime 100.0% -2025-07-23T19:39:15.4930690Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:170: UpdateGenerateRangeProofTime 100.0% -2025-07-23T19:39:15.4931133Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:176: UpdateSnapshotReadTime 100.0% -2025-07-23T19:39:15.4931497Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:182: UpdateRangeProofValsReturned 100.0% -2025-07-23T19:39:15.4931818Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:188: IncMissingRoot 100.0% -2025-07-23T19:39:15.4932121Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:194: IncTrieError 100.0% -2025-07-23T19:39:15.4932421Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:200: IncProofError 0.0% -2025-07-23T19:39:15.4932741Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:206: IncSnapshotReadError 0.0% -2025-07-23T19:39:15.4933078Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:212: IncSnapshotReadAttempt 100.0% -2025-07-23T19:39:15.4933420Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:218: IncSnapshotReadSuccess 100.0% -2025-07-23T19:39:15.4933761Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:224: IncSnapshotSegmentValid 100.0% -2025-07-23T19:39:15.4934112Z github.com/ava-labs/coreth/sync/handlers/stats/statstest/test_stats.go:230: IncSnapshotSegmentInvalid 100.0% -2025-07-23T19:39:15.4934357Z github.com/ava-labs/coreth/sync/handlers/test_providers.go:21: GetBlock 100.0% -2025-07-23T19:39:15.4934601Z github.com/ava-labs/coreth/sync/handlers/test_providers.go:29: Snapshots 100.0% -2025-07-23T19:39:15.4934856Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:63: newCodeSyncer 100.0% -2025-07-23T19:39:15.4935079Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:75: start 93.3% -2025-07-23T19:39:15.4935378Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:107: addCodeToFetchFromDBToQueue 55.0% -2025-07-23T19:39:15.4935601Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:143: work 100.0% -2025-07-23T19:39:15.4935865Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:180: fulfillCodeRequest 92.3% -2025-07-23T19:39:15.4936100Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:204: addCode 91.7% -2025-07-23T19:39:15.4936397Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:230: notifyAccountTrieCompleted 100.0% -2025-07-23T19:39:15.4936852Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:236: addHashesToQueue 100.0% -2025-07-23T19:39:15.4937091Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:249: setError 100.0% -2025-07-23T19:39:15.4937313Z github.com/ava-labs/coreth/sync/statesync/code_syncer.go:257: Done 100.0% -2025-07-23T19:39:15.4937575Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:65: NewStateSyncer 84.6% -2025-07-23T19:39:15.4937856Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:113: onStorageTrieFinished 80.0% -2025-07-23T19:39:15.4946915Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:136: onMainTrieFinished 87.5% -2025-07-23T19:39:15.4947388Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:156: onSyncComplete 100.0% -2025-07-23T19:39:15.4947747Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:165: storageTrieProducer 82.6% -2025-07-23T19:39:15.4948034Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:220: Start 100.0% -2025-07-23T19:39:15.4948701Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:247: Done 100.0% -2025-07-23T19:39:15.4948987Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:250: addTrieInProgress 100.0% -2025-07-23T19:39:15.4949282Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:259: removeTrieInProgress 85.7% -2025-07-23T19:39:15.4949541Z github.com/ava-labs/coreth/sync/statesync/state_syncer.go:274: onSyncFailure 85.7% -2025-07-23T19:39:15.4949934Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_sync.go:21: FillAccountsWithOverlappingStorage 100.0% -2025-07-23T19:39:15.4950232Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:29: GenerateTrie 66.7% -2025-07-23T19:39:15.4950506Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:39: FillTrie 95.7% -2025-07-23T19:39:15.4950853Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:78: AssertTrieConsistency 81.5% -2025-07-23T19:39:15.4951170Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:118: CorruptTrie 71.4% -2025-07-23T19:39:15.4951480Z github.com/ava-labs/coreth/sync/statesync/statesynctest/test_trie.go:146: FillAccounts 77.3% -2025-07-23T19:39:15.4951770Z github.com/ava-labs/coreth/sync/statesync/sync_helpers.go:16: writeAccountSnapshot 100.0% -2025-07-23T19:39:15.4952098Z github.com/ava-labs/coreth/sync/statesync/sync_helpers.go:23: writeAccountStorageSnapshotFromTrie 0.0% -2025-07-23T19:39:15.4952350Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:20: NewTrieQueue 100.0% -2025-07-23T19:39:15.4952632Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:28: clearIfRootDoesNotMatch 66.7% -2025-07-23T19:39:15.4952904Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:50: RegisterStorageTrie 100.0% -2025-07-23T19:39:15.4953159Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:56: StorageTrieDone 100.0% -2025-07-23T19:39:15.4953405Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:65: getNextTrie 100.0% -2025-07-23T19:39:15.4953643Z github.com/ava-labs/coreth/sync/statesync/trie_queue.go:97: countTries 100.0% -2025-07-23T19:39:15.4953899Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:66: NewTrieToSync 100.0% -2025-07-23T19:39:15.4954152Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:86: loadSegments 76.0% -2025-07-23T19:39:15.4954403Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:142: startSyncing 100.0% -2025-07-23T19:39:15.4954646Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:152: addSegment 100.0% -2025-07-23T19:39:15.4954912Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:166: segmentFinished 76.9% -2025-07-23T19:39:15.4955200Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:245: createSegmentsIfNeeded 66.7% -2025-07-23T19:39:15.4955573Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:254: shouldSegment 83.3% -2025-07-23T19:39:15.4955831Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:277: createSegments 0.0% -2025-07-23T19:39:15.4956062Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:336: String 0.0% -2025-07-23T19:39:15.4956294Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:346: Root 100.0% -2025-07-23T19:39:15.4956532Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:347: Account 100.0% -2025-07-23T19:39:15.4956757Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:348: End 100.0% -2025-07-23T19:39:15.4957004Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:349: NodeType 100.0% -2025-07-23T19:39:15.4957235Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:350: OnStart 100.0% -2025-07-23T19:39:15.4957476Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:351: OnFinish 100.0% -2025-07-23T19:39:15.4957715Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:353: Start 100.0% -2025-07-23T19:39:15.4958062Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:360: OnLeafs 92.9% -2025-07-23T19:39:15.4958453Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:391: estimateSize 83.3% -2025-07-23T19:39:15.4958697Z github.com/ava-labs/coreth/sync/statesync/trie_segments.go:415: addPadding 0.0% -2025-07-23T19:39:15.4958971Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:45: newTrieSyncStats 100.0% -2025-07-23T19:39:15.4959256Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:59: incTriesSegmented 0.0% -2025-07-23T19:39:15.4959511Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:65: incLeafs 72.7% -2025-07-23T19:39:15.4959894Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:84: estimateSegmentsInProgressTime 25.0% -2025-07-23T19:39:15.4960230Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:101: trieDone 100.0% -2025-07-23T19:39:15.4963211Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:118: updateETA 76.9% -2025-07-23T19:39:15.4963520Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:145: setTriesRemaining 100.0% -2025-07-23T19:39:15.4963764Z github.com/ava-labs/coreth/sync/statesync/trie_sync_stats.go:155: roundETA 80.0% -2025-07-23T19:39:15.4964045Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:41: NewMainTrieTask 100.0% -2025-07-23T19:39:15.4964301Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:47: IterateLeafs 100.0% -2025-07-23T19:39:15.4964552Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:53: OnStart 100.0% -2025-07-23T19:39:15.4964789Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:57: OnFinish 100.0% -2025-07-23T19:39:15.4965024Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:61: OnLeafs 92.3% -2025-07-23T19:39:15.4965308Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:97: NewStorageTrieTask 100.0% -2025-07-23T19:39:15.4965569Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:105: IterateLeafs 100.0% -2025-07-23T19:39:15.4965802Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:111: OnStart 54.5% -2025-07-23T19:39:15.4966042Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:138: OnFinish 100.0% -2025-07-23T19:39:15.4966278Z github.com/ava-labs/coreth/sync/statesync/trie_sync_tasks.go:142: OnLeafs 100.0% -2025-07-23T19:39:15.4966499Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:25: Next 85.7% -2025-07-23T19:39:15.4966708Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:37: Key 66.7% -2025-07-23T19:39:15.4966923Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:44: Value 66.7% -2025-07-23T19:39:15.4967132Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:51: Error 66.7% -2025-07-23T19:39:15.4967499Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:63: Key 100.0% -2025-07-23T19:39:15.4967731Z github.com/ava-labs/coreth/sync/syncutils/iterators.go:67: Value 100.0% -2025-07-23T19:39:15.4967995Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:38: NewAccountTrie 100.0% -2025-07-23T19:39:15.4968370Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:53: GetAccount 87.5% -2025-07-23T19:39:15.4968612Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:87: GetStorage 72.2% -2025-07-23T19:39:15.4968867Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:123: UpdateAccount 88.9% -2025-07-23T19:39:15.4969120Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:138: UpdateStorage 92.3% -2025-07-23T19:39:15.4969373Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:159: DeleteAccount 100.0% -2025-07-23T19:39:15.4969624Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:170: DeleteStorage 100.0% -2025-07-23T19:39:15.4969859Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:186: Hash 60.0% -2025-07-23T19:39:15.4970199Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:195: hash 85.7% -2025-07-23T19:39:15.4970432Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:209: Commit 85.7% -2025-07-23T19:39:15.4970710Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:229: UpdateContractCode 100.0% -2025-07-23T19:39:15.4970939Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:234: GetKey 0.0% -2025-07-23T19:39:15.4971186Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:239: NodeIterator 0.0% -2025-07-23T19:39:15.4971418Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:244: Prove 0.0% -2025-07-23T19:39:15.4971648Z github.com/ava-labs/coreth/triedb/firewood/account_trie.go:248: Copy 57.1% -2025-07-23T19:39:15.4971911Z github.com/ava-labs/coreth/triedb/firewood/database.go:79: BackendConstructor 100.0% -2025-07-23T19:39:15.4972115Z github.com/ava-labs/coreth/triedb/firewood/database.go:97: New 66.7% -2025-07-23T19:39:15.4972354Z github.com/ava-labs/coreth/triedb/firewood/database.go:126: validatePath 50.0% -2025-07-23T19:39:15.4972574Z github.com/ava-labs/coreth/triedb/firewood/database.go:163: Scheme 100.0% -2025-07-23T19:39:15.4972805Z github.com/ava-labs/coreth/triedb/firewood/database.go:168: Initialized 66.7% -2025-07-23T19:39:15.4973027Z github.com/ava-labs/coreth/triedb/firewood/database.go:182: Update 93.8% -2025-07-23T19:39:15.4973247Z github.com/ava-labs/coreth/triedb/firewood/database.go:226: propose 82.6% -2025-07-23T19:39:15.4973463Z github.com/ava-labs/coreth/triedb/firewood/database.go:291: Commit 82.8% -2025-07-23T19:39:15.4973676Z github.com/ava-labs/coreth/triedb/firewood/database.go:353: Size 100.0% -2025-07-23T19:39:15.4973896Z github.com/ava-labs/coreth/triedb/firewood/database.go:358: Reference 0.0% -2025-07-23T19:39:15.4974129Z github.com/ava-labs/coreth/triedb/firewood/database.go:370: Dereference 0.0% -2025-07-23T19:39:15.4974333Z github.com/ava-labs/coreth/triedb/firewood/database.go:374: Cap 0.0% -2025-07-23T19:39:15.4974548Z github.com/ava-labs/coreth/triedb/firewood/database.go:378: Close 100.0% -2025-07-23T19:39:15.4974792Z github.com/ava-labs/coreth/triedb/firewood/database.go:392: createProposal 66.7% -2025-07-23T19:39:15.4975081Z github.com/ava-labs/coreth/triedb/firewood/database.go:432: cleanupCommittedProposal 100.0% -2025-07-23T19:39:15.4975310Z github.com/ava-labs/coreth/triedb/firewood/database.go:452: dereference 85.7% -2025-07-23T19:39:15.4975582Z github.com/ava-labs/coreth/triedb/firewood/database.go:471: removeProposalFromMap 100.0% -2025-07-23T19:39:15.4975798Z github.com/ava-labs/coreth/triedb/firewood/database.go:490: Reader 100.0% -2025-07-23T19:39:15.4976007Z github.com/ava-labs/coreth/triedb/firewood/database.go:505: Node 66.7% -2025-07-23T19:39:15.4976381Z github.com/ava-labs/coreth/triedb/firewood/database.go:519: getProposalHash 81.8% -2025-07-23T19:39:15.4976659Z github.com/ava-labs/coreth/triedb/firewood/database.go:563: arrangeKeyValuePairs 100.0% -2025-07-23T19:39:15.4976921Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:18: NewStorageTrie 100.0% -2025-07-23T19:39:15.4977154Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:28: Commit 100.0% -2025-07-23T19:39:15.4977375Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:33: Hash 100.0% -2025-07-23T19:39:15.4977590Z github.com/ava-labs/coreth/triedb/firewood/storage_trie.go:39: Copy 0.0% -2025-07-23T19:39:15.4977849Z github.com/ava-labs/coreth/triedb/hashdb/database.go:119: BackendConstructor 100.0% -2025-07-23T19:39:15.4978076Z github.com/ava-labs/coreth/triedb/hashdb/database.go:181: forChildren 100.0% -2025-07-23T19:39:15.4978395Z github.com/ava-labs/coreth/triedb/hashdb/database.go:189: New 83.3% -2025-07-23T19:39:15.4978626Z github.com/ava-labs/coreth/triedb/hashdb/database.go:209: insert 100.0% -2025-07-23T19:39:15.4978942Z github.com/ava-labs/coreth/triedb/hashdb/database.go:239: node 89.3% -2025-07-23T19:39:15.4979167Z github.com/ava-labs/coreth/triedb/hashdb/database.go:295: Reference 100.0% -2025-07-23T19:39:15.4979388Z github.com/ava-labs/coreth/triedb/hashdb/database.go:303: reference 100.0% -2025-07-23T19:39:15.4979612Z github.com/ava-labs/coreth/triedb/hashdb/database.go:328: Dereference 88.2% -2025-07-23T19:39:15.4979840Z github.com/ava-labs/coreth/triedb/hashdb/database.go:357: dereference 100.0% -2025-07-23T19:39:15.4980080Z github.com/ava-labs/coreth/triedb/hashdb/database.go:410: writeFlushItems 71.4% -2025-07-23T19:39:15.4980286Z github.com/ava-labs/coreth/triedb/hashdb/database.go:438: Cap 0.0% -2025-07-23T19:39:15.4980495Z github.com/ava-labs/coreth/triedb/hashdb/database.go:518: Commit 87.9% -2025-07-23T19:39:15.4980705Z github.com/ava-labs/coreth/triedb/hashdb/database.go:576: commit 90.9% -2025-07-23T19:39:15.4980964Z github.com/ava-labs/coreth/triedb/hashdb/database.go:607: removeFromDirties 100.0% -2025-07-23T19:39:15.4981188Z github.com/ava-labs/coreth/triedb/hashdb/database.go:646: Initialized 100.0% -2025-07-23T19:39:15.4981399Z github.com/ava-labs/coreth/triedb/hashdb/database.go:654: Update 80.0% -2025-07-23T19:39:15.4981604Z github.com/ava-labs/coreth/triedb/hashdb/database.go:674: update 95.2% -2025-07-23T19:39:15.4981807Z github.com/ava-labs/coreth/triedb/hashdb/database.go:721: Size 100.0% -2025-07-23T19:39:15.4982017Z github.com/ava-labs/coreth/triedb/hashdb/database.go:733: Close 100.0% -2025-07-23T19:39:15.4982228Z github.com/ava-labs/coreth/triedb/hashdb/database.go:741: Scheme 100.0% -2025-07-23T19:39:15.4982437Z github.com/ava-labs/coreth/triedb/hashdb/database.go:747: Reader 100.0% -2025-07-23T19:39:15.4982646Z github.com/ava-labs/coreth/triedb/hashdb/database.go:761: Node 100.0% -2025-07-23T19:39:15.4982896Z github.com/ava-labs/coreth/triedb/pathdb/database.go:108: BackendConstructor 0.0% -2025-07-23T19:39:15.4983119Z github.com/ava-labs/coreth/triedb/pathdb/database.go:114: sanitize 60.0% -2025-07-23T19:39:15.4983319Z github.com/ava-labs/coreth/triedb/pathdb/database.go:163: New 100.0% -2025-07-23T19:39:15.4983528Z github.com/ava-labs/coreth/triedb/pathdb/database.go:231: Reader 100.0% -2025-07-23T19:39:15.4983742Z github.com/ava-labs/coreth/triedb/pathdb/database.go:246: Update 71.4% -2025-07-23T19:39:15.4983948Z github.com/ava-labs/coreth/triedb/pathdb/database.go:269: Commit 80.0% -2025-07-23T19:39:15.4984160Z github.com/ava-labs/coreth/triedb/pathdb/database.go:284: Disable 72.7% -2025-07-23T19:39:15.4984364Z github.com/ava-labs/coreth/triedb/pathdb/database.go:310: Enable 88.2% -2025-07-23T19:39:15.4984580Z github.com/ava-labs/coreth/triedb/pathdb/database.go:356: Recover 100.0% -2025-07-23T19:39:15.4984922Z github.com/ava-labs/coreth/triedb/pathdb/database.go:362: Recoverable 100.0% -2025-07-23T19:39:15.4985129Z github.com/ava-labs/coreth/triedb/pathdb/database.go:394: Close 100.0% -2025-07-23T19:39:15.4985329Z github.com/ava-labs/coreth/triedb/pathdb/database.go:416: Size 0.0% -2025-07-23T19:39:15.4985559Z github.com/ava-labs/coreth/triedb/pathdb/database.go:430: Initialized 0.0% -2025-07-23T19:39:15.4985787Z github.com/ava-labs/coreth/triedb/pathdb/database.go:445: SetBufferSize 0.0% -2025-07-23T19:39:15.4985993Z github.com/ava-labs/coreth/triedb/pathdb/database.go:458: Scheme 0.0% -2025-07-23T19:39:15.4986224Z github.com/ava-labs/coreth/triedb/pathdb/database.go:464: modifyAllowed 60.0% -2025-07-23T19:39:15.4986456Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:59: newDiffLayer 100.0% -2025-07-23T19:39:15.4986681Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:91: rootHash 100.0% -2025-07-23T19:39:15.4986900Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:96: stateID 100.0% -2025-07-23T19:39:15.4987217Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:102: parentLayer 100.0% -2025-07-23T19:39:15.4987420Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:112: node 82.4% -2025-07-23T19:39:15.4987627Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:146: Node 100.0% -2025-07-23T19:39:15.4987849Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:152: update 100.0% -2025-07-23T19:39:15.4988065Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:157: persist 77.8% -2025-07-23T19:39:15.4988503Z github.com/ava-labs/coreth/triedb/pathdb/difflayer.go:179: diffToDisk 75.0% -2025-07-23T19:39:15.4988745Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:57: newDiskLayer 100.0% -2025-07-23T19:39:15.4988964Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:74: rootHash 100.0% -2025-07-23T19:39:15.4989185Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:79: stateID 100.0% -2025-07-23T19:39:15.4989423Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:85: parentLayer 100.0% -2025-07-23T19:39:15.4989640Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:91: isStale 100.0% -2025-07-23T19:39:15.4989860Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:99: markStale 80.0% -2025-07-23T19:39:15.4990065Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:111: Node 81.1% -2025-07-23T19:39:15.4990288Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:175: update 100.0% -2025-07-23T19:39:15.4990502Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:182: commit 85.7% -2025-07-23T19:39:15.4990709Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:252: revert 0.0% -2025-07-23T19:39:15.4990945Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:300: setBufferSize 0.0% -2025-07-23T19:39:15.4991146Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:311: size 0.0% -2025-07-23T19:39:15.4991373Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:322: resetCache 83.3% -2025-07-23T19:39:15.4991607Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:342: newHasher 100.0% -2025-07-23T19:39:15.4991813Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:346: hash 100.0% -2025-07-23T19:39:15.4992036Z github.com/ava-labs/coreth/triedb/pathdb/disklayer.go:350: release 100.0% -2025-07-23T19:39:15.4992295Z github.com/ava-labs/coreth/triedb/pathdb/errors.go:67: newUnexpectedNodeError 0.0% -2025-07-23T19:39:15.4992505Z github.com/ava-labs/coreth/triedb/pathdb/history.go:158: encode 100.0% -2025-07-23T19:39:15.4992714Z github.com/ava-labs/coreth/triedb/pathdb/history.go:169: decode 100.0% -2025-07-23T19:39:15.4992917Z github.com/ava-labs/coreth/triedb/pathdb/history.go:185: encode 100.0% -2025-07-23T19:39:15.4993127Z github.com/ava-labs/coreth/triedb/pathdb/history.go:194: decode 100.0% -2025-07-23T19:39:15.4993454Z github.com/ava-labs/coreth/triedb/pathdb/history.go:210: encode 87.5% -2025-07-23T19:39:15.4993659Z github.com/ava-labs/coreth/triedb/pathdb/history.go:223: decode 62.5% -2025-07-23T19:39:15.4993879Z github.com/ava-labs/coreth/triedb/pathdb/history.go:263: newHistory 92.9% -2025-07-23T19:39:15.4994085Z github.com/ava-labs/coreth/triedb/pathdb/history.go:304: encode 100.0% -2025-07-23T19:39:15.4994287Z github.com/ava-labs/coreth/triedb/pathdb/history.go:365: verify 60.0% -2025-07-23T19:39:15.4994512Z github.com/ava-labs/coreth/triedb/pathdb/history.go:376: readAccount 75.0% -2025-07-23T19:39:15.4994733Z github.com/ava-labs/coreth/triedb/pathdb/history.go:409: readStorage 76.2% -2025-07-23T19:39:15.4994939Z github.com/ava-labs/coreth/triedb/pathdb/history.go:456: decode 85.0% -2025-07-23T19:39:15.4995157Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:85: loadJournal 77.3% -2025-07-23T19:39:15.4995379Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:127: loadLayers 100.0% -2025-07-23T19:39:15.4995713Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:149: loadDiskLayer 81.8% -2025-07-23T19:39:15.4995938Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:190: loadDiffLayer 83.3% -2025-07-23T19:39:15.4996151Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:257: journal 77.8% -2025-07-23T19:39:15.4996359Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:291: journal 80.0% -2025-07-23T19:39:15.4996567Z github.com/ava-labs/coreth/triedb/pathdb/journal.go:350: Journal 76.0% -2025-07-23T19:39:15.4996803Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:52: newLayerTree 100.0% -2025-07-23T19:39:15.4997008Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:60: reset 100.0% -2025-07-23T19:39:15.4997205Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:73: get 100.0% -2025-07-23T19:39:15.4997417Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:82: forEach 0.0% -2025-07-23T19:39:15.4997620Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:92: len 100.0% -2025-07-23T19:39:15.4997827Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:100: add 81.8% -2025-07-23T19:39:15.4998026Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:125: cap 79.0% -2025-07-23T19:39:15.4998351Z github.com/ava-labs/coreth/triedb/pathdb/layertree.go:236: bottom 90.9% -2025-07-23T19:39:15.4998604Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:54: newNodeBuffer 100.0% -2025-07-23T19:39:15.4998809Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:73: node 72.7% -2025-07-23T19:39:15.4999031Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:94: commit 100.0% -2025-07-23T19:39:15.4999244Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:139: revert 0.0% -2025-07-23T19:39:15.4999470Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:189: updateSize 57.1% -2025-07-23T19:39:15.4999697Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:201: reset 100.0% -2025-07-23T19:39:15.4999908Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:209: empty 0.0% -2025-07-23T19:39:15.5000123Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:215: setSize 0.0% -2025-07-23T19:39:15.5000340Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:222: flush 88.2% -2025-07-23T19:39:15.5000571Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:254: writeNodes 100.0% -2025-07-23T19:39:15.5000803Z github.com/ava-labs/coreth/triedb/pathdb/nodebuffer.go:283: cacheKey 100.0% -2025-07-23T19:39:15.5001034Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:55: newTestHasher 80.0% -2025-07-23T19:39:15.5001234Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:71: Get 0.0% -2025-07-23T19:39:15.5001453Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:81: Update 100.0% -2025-07-23T19:39:15.5001790Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:87: Delete 100.0% -2025-07-23T19:39:15.5002007Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:94: Commit 93.8% -2025-07-23T19:39:15.5002212Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:126: hash 100.0% -2025-07-23T19:39:15.5002451Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:152: newHashLoader 100.0% -2025-07-23T19:39:15.5002669Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:160: OpenTrie 0.0% -2025-07-23T19:39:15.5002907Z github.com/ava-labs/coreth/triedb/pathdb/testutils.go:165: OpenStorageTrie 0.0% -2025-07-23T19:39:15.5003105Z github.com/ava-labs/coreth/utils/address_range.go:20: Contains 0.0% -2025-07-23T19:39:15.5003347Z github.com/ava-labs/coreth/utils/bounded_workers.go:22: NewBoundedWorkers 0.0% -2025-07-23T19:39:15.5003564Z github.com/ava-labs/coreth/utils/bounded_workers.go:31: startWorker 0.0% -2025-07-23T19:39:15.5003772Z github.com/ava-labs/coreth/utils/bounded_workers.go:51: Execute 0.0% -2025-07-23T19:39:15.5003971Z github.com/ava-labs/coreth/utils/bounded_workers.go:75: Wait 0.0% -2025-07-23T19:39:15.5004257Z github.com/ava-labs/coreth/utils/bytes.go:9: IncrOne 100.0% -2025-07-23T19:39:15.5004467Z github.com/ava-labs/coreth/utils/bytes.go:23: HashSliceToBytes 100.0% -2025-07-23T19:39:15.5004669Z github.com/ava-labs/coreth/utils/bytes.go:33: BytesToHashSlice 100.0% -2025-07-23T19:39:15.5004897Z github.com/ava-labs/coreth/utils/metered_cache.go:37: NewMeteredCache 0.0% -2025-07-23T19:39:15.5005132Z github.com/ava-labs/coreth/utils/metered_cache.go:60: updateStatsIfNeeded 0.0% -2025-07-23T19:39:15.5005320Z github.com/ava-labs/coreth/utils/metered_cache.go:81: Del 0.0% -2025-07-23T19:39:15.5005505Z github.com/ava-labs/coreth/utils/metered_cache.go:86: Get 0.0% -2025-07-23T19:39:15.5005699Z github.com/ava-labs/coreth/utils/metered_cache.go:91: GetBig 0.0% -2025-07-23T19:39:15.5005882Z github.com/ava-labs/coreth/utils/metered_cache.go:96: Has 0.0% -2025-07-23T19:39:15.5006090Z github.com/ava-labs/coreth/utils/metered_cache.go:101: HasGet 0.0% -2025-07-23T19:39:15.5006281Z github.com/ava-labs/coreth/utils/metered_cache.go:106: Set 0.0% -2025-07-23T19:39:15.5006481Z github.com/ava-labs/coreth/utils/metered_cache.go:111: SetBig 0.0% -2025-07-23T19:39:15.5006662Z github.com/ava-labs/coreth/utils/numbers.go:11: NewUint64 0.0% -2025-07-23T19:39:15.5006867Z github.com/ava-labs/coreth/utils/numbers.go:13: TimeToNewUint64 0.0% -2025-07-23T19:39:15.5007064Z github.com/ava-labs/coreth/utils/numbers.go:18: Uint64ToTime 0.0% -2025-07-23T19:39:15.5007264Z github.com/ava-labs/coreth/utils/numbers.go:25: Uint64PtrEqual 0.0% -2025-07-23T19:39:15.5007456Z github.com/ava-labs/coreth/utils/numbers.go:34: BigEqual 100.0% -2025-07-23T19:39:15.5007662Z github.com/ava-labs/coreth/utils/numbers.go:43: BigEqualUint64 100.0% -2025-07-23T19:39:15.5007894Z github.com/ava-labs/coreth/utils/numbers.go:51: BigLessOrEqualUint64 100.0% -2025-07-23T19:39:15.5008207Z github.com/ava-labs/coreth/utils/rpc/handler.go:16: NewHandler 0.0% -2025-07-23T19:39:15.5008433Z github.com/ava-labs/coreth/utils/snow.go:17: NewTestValidatorState 0.0% -2025-07-23T19:39:15.5008635Z github.com/ava-labs/coreth/utils/utilstest/key.go:24: NewKey 100.0% -2025-07-23T19:39:15.5008837Z github.com/ava-labs/coreth/warp/backend.go:65: NewBackend 100.0% -2025-07-23T19:39:15.5009064Z github.com/ava-labs/coreth/warp/backend.go:88: initOffChainMessages 76.9% -2025-07-23T19:39:15.5009260Z github.com/ava-labs/coreth/warp/backend.go:113: AddMessage 71.4% -2025-07-23T19:39:15.5009484Z github.com/ava-labs/coreth/warp/backend.go:130: GetMessageSignature 100.0% -2025-07-23T19:39:15.5009698Z github.com/ava-labs/coreth/warp/backend.go:144: GetBlockSignature 73.3% -2025-07-23T19:39:15.5009891Z github.com/ava-labs/coreth/warp/backend.go:172: GetMessage 83.3% -2025-07-23T19:39:15.5010201Z github.com/ava-labs/coreth/warp/backend.go:194: signMessage 80.0% -2025-07-23T19:39:15.5010391Z github.com/ava-labs/coreth/warp/client.go:31: NewClient 0.0% -2025-07-23T19:39:15.5010575Z github.com/ava-labs/coreth/warp/client.go:41: GetMessage 0.0% -2025-07-23T19:39:15.5010786Z github.com/ava-labs/coreth/warp/client.go:49: GetMessageSignature 0.0% -2025-07-23T19:39:15.5011031Z github.com/ava-labs/coreth/warp/client.go:57: GetMessageAggregateSignature 0.0% -2025-07-23T19:39:15.5011236Z github.com/ava-labs/coreth/warp/client.go:65: GetBlockSignature 0.0% -2025-07-23T19:39:15.5011471Z github.com/ava-labs/coreth/warp/client.go:73: GetBlockAggregateSignature 0.0% -2025-07-23T19:39:15.5011662Z github.com/ava-labs/coreth/warp/service.go:32: NewAPI 0.0% -2025-07-23T19:39:15.5011847Z github.com/ava-labs/coreth/warp/service.go:42: GetMessage 0.0% -2025-07-23T19:39:15.5012070Z github.com/ava-labs/coreth/warp/service.go:51: GetMessageSignature 0.0% -2025-07-23T19:39:15.5012279Z github.com/ava-labs/coreth/warp/service.go:64: GetBlockSignature 0.0% -2025-07-23T19:39:15.5012676Z github.com/ava-labs/coreth/warp/service.go:73: GetMessageAggregateSignature 0.0% -2025-07-23T19:39:15.5012916Z github.com/ava-labs/coreth/warp/service.go:82: GetBlockAggregateSignature 0.0% -2025-07-23T19:39:15.5013130Z github.com/ava-labs/coreth/warp/service.go:95: aggregateSignatures 0.0% -2025-07-23T19:39:15.5013349Z github.com/ava-labs/coreth/warp/validators/state.go:31: NewState 100.0% -2025-07-23T19:39:15.5013587Z github.com/ava-labs/coreth/warp/validators/state.go:40: GetValidatorSet 100.0% -2025-07-23T19:39:15.5013790Z github.com/ava-labs/coreth/warp/verifier_backend.go:23: Verify 76.9% -2025-07-23T19:39:15.5014042Z github.com/ava-labs/coreth/warp/verifier_backend.go:58: verifyBlockMessage 100.0% -2025-07-23T19:39:15.5014271Z github.com/ava-labs/coreth/warp/verifier_stats.go:14: newVerifierStats 100.0% -2025-07-23T19:39:15.5014530Z github.com/ava-labs/coreth/warp/verifier_stats.go:21: IncBlockValidationFail 100.0% -2025-07-23T19:39:15.5014782Z github.com/ava-labs/coreth/warp/verifier_stats.go:25: IncMessageParseFail 100.0% -2025-07-23T19:39:15.5015039Z github.com/ava-labs/coreth/warp/warptest/block_client.go:23: GetAcceptedBlock 100.0% -2025-07-23T19:39:15.5015299Z github.com/ava-labs/coreth/warp/warptest/block_client.go:30: MakeBlockClient 100.0% -2025-07-23T19:39:15.5015400Z total: (statements) 60.0% diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/1_Set up job.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/1_Set up job.txt deleted file mode 100644 index 3e5ef8cbfe..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/1_Set up job.txt +++ /dev/null @@ -1,50 +0,0 @@ -2025-07-23T19:28:54.5252718Z Current runner version: '2.326.0' -2025-07-23T19:28:54.5275784Z ##[group]Runner Image Provisioner -2025-07-23T19:28:54.5277158Z Hosted Compute Agent -2025-07-23T19:28:54.5277941Z Version: 20250711.363 -2025-07-23T19:28:54.5279041Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c -2025-07-23T19:28:54.5280207Z Build Date: 2025-07-11T20:04:25Z -2025-07-23T19:28:54.5281144Z ##[endgroup] -2025-07-23T19:28:54.5281890Z ##[group]Operating System -2025-07-23T19:28:54.5282815Z Ubuntu -2025-07-23T19:28:54.5283580Z 24.04.2 -2025-07-23T19:28:54.5284237Z LTS -2025-07-23T19:28:54.5285092Z ##[endgroup] -2025-07-23T19:28:54.5285860Z ##[group]Runner Image -2025-07-23T19:28:54.5286696Z Image: ubuntu-24.04 -2025-07-23T19:28:54.5287394Z Version: 20250720.1.0 -2025-07-23T19:28:54.5289378Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md -2025-07-23T19:28:54.5291732Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 -2025-07-23T19:28:54.5293798Z ##[endgroup] -2025-07-23T19:28:54.5297969Z ##[group]GITHUB_TOKEN Permissions -2025-07-23T19:28:54.5301354Z Actions: write -2025-07-23T19:28:54.5302135Z Attestations: write -2025-07-23T19:28:54.5303021Z Checks: write -2025-07-23T19:28:54.5303867Z Contents: write -2025-07-23T19:28:54.5304721Z Deployments: write -2025-07-23T19:28:54.5305545Z Discussions: write -2025-07-23T19:28:54.5306524Z Issues: write -2025-07-23T19:28:54.5307292Z Metadata: read -2025-07-23T19:28:54.5308404Z Models: read -2025-07-23T19:28:54.5309499Z Packages: write -2025-07-23T19:28:54.5310344Z Pages: write -2025-07-23T19:28:54.5311205Z PullRequests: write -2025-07-23T19:28:54.5312218Z RepositoryProjects: write -2025-07-23T19:28:54.5313210Z SecurityEvents: write -2025-07-23T19:28:54.5314209Z Statuses: write -2025-07-23T19:28:54.5315260Z ##[endgroup] -2025-07-23T19:28:54.5318077Z Secret source: Actions -2025-07-23T19:28:54.5319334Z Prepare workflow directory -2025-07-23T19:28:54.5782163Z Prepare all required actions -2025-07-23T19:28:54.5837087Z Getting action download info -2025-07-23T19:28:54.8949202Z ##[group]Download immutable action package 'actions/checkout@v4' -2025-07-23T19:28:54.8950356Z Version: 4.2.2 -2025-07-23T19:28:54.8951360Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 -2025-07-23T19:28:54.8952525Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 -2025-07-23T19:28:54.8953287Z ##[endgroup] -2025-07-23T19:28:54.9874276Z ##[group]Download immutable action package 'actions/setup-go@v5' -2025-07-23T19:28:54.9875043Z Version: 5.5.0 -2025-07-23T19:28:54.9875772Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb -2025-07-23T19:28:54.9876767Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 -2025-07-23T19:28:54.9877473Z ##[endgroup] -2025-07-23T19:28:55.3208614Z Complete job name: Golang Unit Tests (ubuntu-latest) diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/21_Post Run actions_setup-go@v5.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/21_Post Run actions_setup-go@v5.txt deleted file mode 100644 index 41aca5e4b7..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/21_Post Run actions_setup-go@v5.txt +++ /dev/null @@ -1,6 +0,0 @@ -2025-07-23T19:39:15.5068973Z Post job cleanup. -2025-07-23T19:39:15.7636309Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:39:15.7681414Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:39:15.7711592Z /home/runner/go/pkg/mod -2025-07-23T19:39:15.7771663Z /home/runner/.cache/go-build -2025-07-23T19:39:15.7777369Z Cache hit occurred on the primary key setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d, not saving cache. diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/22_Post Run actions_checkout@v4.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/22_Post Run actions_checkout@v4.txt deleted file mode 100644 index e4696d744a..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/22_Post Run actions_checkout@v4.txt +++ /dev/null @@ -1,12 +0,0 @@ -2025-07-23T19:39:15.7894892Z Post job cleanup. -2025-07-23T19:39:15.8866287Z [command]/usr/bin/git version -2025-07-23T19:39:15.8901664Z git version 2.50.1 -2025-07-23T19:39:15.8944135Z Temporarily overriding HOME='/home/runner/work/_temp/101d9922-e92b-4888-8039-5f9f345795cc' before making global git config changes -2025-07-23T19:39:15.8945234Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:39:15.8956697Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:39:15.8990411Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:39:15.9021332Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:39:15.9258042Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:39:15.9278905Z http.https://github.com/.extraheader -2025-07-23T19:39:15.9291531Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader -2025-07-23T19:39:15.9323375Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/23_Complete job.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/23_Complete job.txt deleted file mode 100644 index a79fb14e3a..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/23_Complete job.txt +++ /dev/null @@ -1 +0,0 @@ -2025-07-23T19:39:15.9663691Z Cleaning up orphan processes diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/2_Run actions_checkout@v4.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/2_Run actions_checkout@v4.txt deleted file mode 100644 index 68979da8ca..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/2_Run actions_checkout@v4.txt +++ /dev/null @@ -1,85 +0,0 @@ -2025-07-23T19:28:55.3815735Z ##[group]Run actions/checkout@v4 -2025-07-23T19:28:55.3816640Z with: -2025-07-23T19:28:55.3817040Z repository: ava-labs/coreth -2025-07-23T19:28:55.3817679Z token: *** -2025-07-23T19:28:55.3818068Z ssh-strict: true -2025-07-23T19:28:55.3818633Z ssh-user: git -2025-07-23T19:28:55.3819110Z persist-credentials: true -2025-07-23T19:28:55.3819551Z clean: true -2025-07-23T19:28:55.3819942Z sparse-checkout-cone-mode: true -2025-07-23T19:28:55.3820405Z fetch-depth: 1 -2025-07-23T19:28:55.3820790Z fetch-tags: false -2025-07-23T19:28:55.3821186Z show-progress: true -2025-07-23T19:28:55.3821597Z lfs: false -2025-07-23T19:28:55.3821962Z submodules: false -2025-07-23T19:28:55.3822370Z set-safe-directory: true -2025-07-23T19:28:55.3823065Z ##[endgroup] -2025-07-23T19:28:55.4877654Z Syncing repository: ava-labs/coreth -2025-07-23T19:28:55.4879707Z ##[group]Getting Git version info -2025-07-23T19:28:55.4880403Z Working directory is '/home/runner/work/coreth/coreth' -2025-07-23T19:28:55.4881295Z [command]/usr/bin/git version -2025-07-23T19:28:55.4927676Z git version 2.50.1 -2025-07-23T19:28:55.4960792Z ##[endgroup] -2025-07-23T19:28:55.4971438Z Temporarily overriding HOME='/home/runner/work/_temp/befb0eca-fb3f-4a02-a4de-d1960c4d6cff' before making global git config changes -2025-07-23T19:28:55.4974300Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:28:55.4976292Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:28:55.5010645Z Deleting the contents of '/home/runner/work/coreth/coreth' -2025-07-23T19:28:55.5014187Z ##[group]Initializing the repository -2025-07-23T19:28:55.5017770Z [command]/usr/bin/git init /home/runner/work/coreth/coreth -2025-07-23T19:28:55.5077736Z hint: Using 'master' as the name for the initial branch. This default branch name -2025-07-23T19:28:55.5079549Z hint: is subject to change. To configure the initial branch name to use in all -2025-07-23T19:28:55.5081003Z hint: of your new repositories, which will suppress this warning, call: -2025-07-23T19:28:55.5082098Z hint: -2025-07-23T19:28:55.5082629Z hint: git config --global init.defaultBranch -2025-07-23T19:28:55.5083213Z hint: -2025-07-23T19:28:55.5083742Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and -2025-07-23T19:28:55.5084621Z hint: 'development'. The just-created branch can be renamed via this command: -2025-07-23T19:28:55.5085298Z hint: -2025-07-23T19:28:55.5085746Z hint: git branch -m -2025-07-23T19:28:55.5086451Z hint: -2025-07-23T19:28:55.5087133Z hint: Disable this message with "git config set advice.defaultBranchName false" -2025-07-23T19:28:55.5088051Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ -2025-07-23T19:28:55.5091680Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth -2025-07-23T19:28:55.5122123Z ##[endgroup] -2025-07-23T19:28:55.5123347Z ##[group]Disabling automatic garbage collection -2025-07-23T19:28:55.5125739Z [command]/usr/bin/git config --local gc.auto 0 -2025-07-23T19:28:55.5156323Z ##[endgroup] -2025-07-23T19:28:55.5157488Z ##[group]Setting up auth -2025-07-23T19:28:55.5163531Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:28:55.5194669Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:28:55.5476758Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:28:55.5508036Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:28:55.5751461Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** -2025-07-23T19:28:55.5797110Z ##[endgroup] -2025-07-23T19:28:55.5797932Z ##[group]Fetching the repository -2025-07-23T19:28:55.5807792Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge -2025-07-23T19:28:56.1034350Z From https://github.com/ava-labs/coreth -2025-07-23T19:28:56.1036189Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge -2025-07-23T19:28:56.1061344Z ##[endgroup] -2025-07-23T19:28:56.1062647Z ##[group]Determining the checkout info -2025-07-23T19:28:56.1064147Z ##[endgroup] -2025-07-23T19:28:56.1069022Z [command]/usr/bin/git sparse-checkout disable -2025-07-23T19:28:56.1107291Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig -2025-07-23T19:28:56.1136096Z ##[group]Checking out the ref -2025-07-23T19:28:56.1140603Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge -2025-07-23T19:28:56.2232869Z Note: switching to 'refs/remotes/pull/1065/merge'. -2025-07-23T19:28:56.2234317Z -2025-07-23T19:28:56.2235227Z You are in 'detached HEAD' state. You can look around, make experimental -2025-07-23T19:28:56.2237304Z changes and commit them, and you can discard any commits you make in this -2025-07-23T19:28:56.2239474Z state without impacting any branches by switching back to a branch. -2025-07-23T19:28:56.2240207Z -2025-07-23T19:28:56.2240754Z If you want to create a new branch to retain commits you create, you may -2025-07-23T19:28:56.2242093Z do so (now or later) by using -c with the switch command. Example: -2025-07-23T19:28:56.2243009Z -2025-07-23T19:28:56.2243317Z git switch -c -2025-07-23T19:28:56.2243762Z -2025-07-23T19:28:56.2244071Z Or undo this operation with: -2025-07-23T19:28:56.2244514Z -2025-07-23T19:28:56.2244775Z git switch - -2025-07-23T19:28:56.2245160Z -2025-07-23T19:28:56.2245733Z Turn off this advice by setting config variable advice.detachedHead to false -2025-07-23T19:28:56.2246726Z -2025-07-23T19:28:56.2247777Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 -2025-07-23T19:28:56.2251123Z ##[endgroup] -2025-07-23T19:28:56.2281486Z [command]/usr/bin/git log -1 --format=%H -2025-07-23T19:28:56.2303766Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/4_Run actions_setup-go@v5.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/4_Run actions_setup-go@v5.txt deleted file mode 100644 index 30b757eef8..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/4_Run actions_setup-go@v5.txt +++ /dev/null @@ -1,79 +0,0 @@ -2025-07-23T19:28:56.2600373Z ##[group]Run actions/setup-go@v5 -2025-07-23T19:28:56.2601453Z with: -2025-07-23T19:28:56.2602260Z go-version-file: go.mod -2025-07-23T19:28:56.2603204Z check-latest: false -2025-07-23T19:28:56.2604360Z token: *** -2025-07-23T19:28:56.2605178Z cache: true -2025-07-23T19:28:56.2605988Z ##[endgroup] -2025-07-23T19:28:56.4204644Z Setup go version spec 1.23.9 -2025-07-23T19:28:56.4215866Z Attempting to download 1.23.9... -2025-07-23T19:28:56.7474880Z matching 1.23.9... -2025-07-23T19:28:56.7515870Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz -2025-07-23T19:28:57.2963206Z Extracting Go... -2025-07-23T19:28:57.3063009Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/2608b46e-5bc4-41b4-861d-ee2edbf1ffd4 -f /home/runner/work/_temp/f2203187-69d5-475d-85d1-f2452dbefc33 -2025-07-23T19:28:58.9503832Z Successfully extracted go to /home/runner/work/_temp/2608b46e-5bc4-41b4-861d-ee2edbf1ffd4 -2025-07-23T19:28:58.9504806Z Adding to the cache ... -2025-07-23T19:29:03.1923244Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 -2025-07-23T19:29:03.1924859Z Added go to the path -2025-07-23T19:29:03.1927769Z Successfully set up Go version 1.23.9 -2025-07-23T19:29:03.2123130Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:29:03.2149696Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:29:03.2177913Z /home/runner/go/pkg/mod -2025-07-23T19:29:03.2193229Z /home/runner/.cache/go-build -2025-07-23T19:29:03.3457865Z Cache hit for: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:04.3870268Z Received 192937984 of 743127682 (26.0%), 182.5 MBs/sec -2025-07-23T19:29:05.3882678Z Received 402653184 of 743127682 (54.2%), 191.0 MBs/sec -2025-07-23T19:29:06.3884906Z Received 658505728 of 743127682 (88.6%), 208.6 MBs/sec -2025-07-23T19:29:06.8440609Z Received 743127682 of 743127682 (100.0%), 204.5 MBs/sec -2025-07-23T19:29:06.8442564Z Cache Size: ~709 MB (743127682 B) -2025-07-23T19:29:06.8564798Z [command]/usr/bin/tar -xf /home/runner/work/_temp/ec881acd-ae8f-4528-804a-8272d685508f/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd -2025-07-23T19:29:14.1899842Z Cache restored successfully -2025-07-23T19:29:14.3280097Z Cache restored from key: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:14.3303694Z go version go1.23.9 linux/amd64 -2025-07-23T19:29:14.3304001Z -2025-07-23T19:29:14.3304395Z ##[group]go env -2025-07-23T19:29:14.4781870Z GO111MODULE='' -2025-07-23T19:29:14.4782305Z GOARCH='amd64' -2025-07-23T19:29:14.4782698Z GOBIN='' -2025-07-23T19:29:14.4783058Z GOCACHE='/home/runner/.cache/go-build' -2025-07-23T19:29:14.4783536Z GOENV='/home/runner/.config/go/env' -2025-07-23T19:29:14.4784529Z GOEXE='' -2025-07-23T19:29:14.4784805Z GOEXPERIMENT='' -2025-07-23T19:29:14.4785107Z GOFLAGS='' -2025-07-23T19:29:14.4785430Z GOHOSTARCH='amd64' -2025-07-23T19:29:14.4785744Z GOHOSTOS='linux' -2025-07-23T19:29:14.4786038Z GOINSECURE='' -2025-07-23T19:29:14.4786368Z GOMODCACHE='/home/runner/go/pkg/mod' -2025-07-23T19:29:14.4786760Z GONOPROXY='' -2025-07-23T19:29:14.4787043Z GONOSUMDB='' -2025-07-23T19:29:14.4787741Z GOOS='linux' -2025-07-23T19:29:14.4788051Z GOPATH='/home/runner/go' -2025-07-23T19:29:14.4788844Z GOPRIVATE='' -2025-07-23T19:29:14.4789374Z GOPROXY='https://proxy.golang.org,direct' -2025-07-23T19:29:14.4789867Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' -2025-07-23T19:29:14.4790305Z GOSUMDB='sum.golang.org' -2025-07-23T19:29:14.4790634Z GOTMPDIR='' -2025-07-23T19:29:14.4790911Z GOTOOLCHAIN='auto' -2025-07-23T19:29:14.4791404Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' -2025-07-23T19:29:14.4791935Z GOVCS='' -2025-07-23T19:29:14.4792212Z GOVERSION='go1.23.9' -2025-07-23T19:29:14.4792523Z GODEBUG='' -2025-07-23T19:29:14.4792803Z GOTELEMETRY='local' -2025-07-23T19:29:14.4793453Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' -2025-07-23T19:29:14.4794234Z GCCGO='gccgo' -2025-07-23T19:29:14.4794527Z GOAMD64='v1' -2025-07-23T19:29:14.4794799Z AR='ar' -2025-07-23T19:29:14.4795048Z CC='gcc' -2025-07-23T19:29:14.4795298Z CXX='g++' -2025-07-23T19:29:14.4795565Z CGO_ENABLED='1' -2025-07-23T19:29:14.4795921Z GOMOD='/home/runner/work/coreth/coreth/go.mod' -2025-07-23T19:29:14.4796329Z GOWORK='' -2025-07-23T19:29:14.4796627Z CGO_CFLAGS='-O2 -g' -2025-07-23T19:29:14.4796922Z CGO_CPPFLAGS='' -2025-07-23T19:29:14.4797227Z CGO_CXXFLAGS='-O2 -g' -2025-07-23T19:29:14.4797562Z CGO_FFLAGS='-O2 -g' -2025-07-23T19:29:14.4797873Z CGO_LDFLAGS='-O2 -g' -2025-07-23T19:29:14.4798399Z PKG_CONFIG='pkg-config' -2025-07-23T19:29:14.4799402Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build2181527828=/tmp/go-build -gno-record-gcc-switches' -2025-07-23T19:29:14.4800237Z -2025-07-23T19:29:14.4800683Z ##[endgroup] diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/6_Run go mod download.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/6_Run go mod download.txt deleted file mode 100644 index f8e576e7ed..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/6_Run go mod download.txt +++ /dev/null @@ -1,4 +0,0 @@ -2025-07-23T19:29:14.4963398Z ##[group]Run go mod download -2025-07-23T19:29:14.4963733Z go mod download -2025-07-23T19:29:14.4997118Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:14.4997389Z ##[endgroup] diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/7_Check generated codec files are up to date.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/7_Check generated codec files are up to date.txt deleted file mode 100644 index fb1f48ed68..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/7_Check generated codec files are up to date.txt +++ /dev/null @@ -1,10 +0,0 @@ -2025-07-23T19:29:14.5786094Z ##[group]Run ./scripts/run_task.sh check-generate-codec -2025-07-23T19:29:14.5786586Z ./scripts/run_task.sh check-generate-codec -2025-07-23T19:29:14.5815188Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:14.5815485Z ##[endgroup] -2025-07-23T19:29:15.5306158Z task: [generate-codec] grep -lr -E '^// Code generated by github\.com\/fjl\/gencodec\. DO NOT EDIT\.$' . | xargs -r rm -2025-07-23T19:29:15.5465310Z task: [generate-codec] go generate -run "github.com/fjl/gencodec" ./... -2025-07-23T19:29:22.5040173Z task: [check-clean-branch] git add --all -2025-07-23T19:29:22.5624793Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null -2025-07-23T19:29:22.5675800Z task: [check-clean-branch] git status --short -2025-07-23T19:29:22.5744410Z task: [check-clean-branch] git diff-index --quiet HEAD diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/8_Check generated mocks are up to date.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/8_Check generated mocks are up to date.txt deleted file mode 100644 index fed021c7f0..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/8_Check generated mocks are up to date.txt +++ /dev/null @@ -1,10 +0,0 @@ -2025-07-23T19:29:22.5877792Z ##[group]Run ./scripts/run_task.sh check-generate-mocks -2025-07-23T19:29:22.5878908Z ./scripts/run_task.sh check-generate-mocks -2025-07-23T19:29:22.5907651Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:22.5907895Z ##[endgroup] -2025-07-23T19:29:23.0133975Z task: [generate-mocks] grep -lr -E '^// Code generated by MockGen\. DO NOT EDIT\.$' . | xargs -r rm -2025-07-23T19:29:23.0278707Z task: [generate-mocks] go generate -run "go.uber.org/mock/mockgen" ./... -2025-07-23T19:29:29.6979927Z task: [check-clean-branch] git add --all -2025-07-23T19:29:29.7052575Z task: [check-clean-branch] git update-index --really-refresh >> /dev/null -2025-07-23T19:29:29.7094199Z task: [check-clean-branch] git status --short -2025-07-23T19:29:29.7166303Z task: [check-clean-branch] git diff-index --quiet HEAD diff --git a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/9_Run ._scripts_run_task.sh build.txt b/logs_42241282643/Golang Unit Tests (ubuntu-latest)/9_Run ._scripts_run_task.sh build.txt deleted file mode 100644 index eb6f31f743..0000000000 --- a/logs_42241282643/Golang Unit Tests (ubuntu-latest)/9_Run ._scripts_run_task.sh build.txt +++ /dev/null @@ -1,7 +0,0 @@ -2025-07-23T19:29:29.7295401Z ##[group]Run ./scripts/run_task.sh build -2025-07-23T19:29:29.7295747Z ./scripts/run_task.sh build -2025-07-23T19:29:29.7324573Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:29.7324809Z ##[endgroup] -2025-07-23T19:29:30.1577556Z task: [build] ./scripts/build.sh -2025-07-23T19:29:30.1786073Z Using branch: d85ec03 -2025-07-23T19:29:30.1802849Z Building Coreth @ GitCommit: d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 at /home/runner/.avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy diff --git a/logs_42241282643/Lint/16_Post Run actions_checkout@v4.txt b/logs_42241282643/Lint/16_Post Run actions_checkout@v4.txt deleted file mode 100644 index b27a32d881..0000000000 --- a/logs_42241282643/Lint/16_Post Run actions_checkout@v4.txt +++ /dev/null @@ -1,12 +0,0 @@ -2025-07-23T19:30:07.5175429Z Post job cleanup. -2025-07-23T19:30:07.6108842Z [command]/usr/bin/git version -2025-07-23T19:30:07.6143824Z git version 2.50.1 -2025-07-23T19:30:07.6190915Z Temporarily overriding HOME='/home/runner/work/_temp/9677b321-d7be-49b4-8b47-75fbc3723d01' before making global git config changes -2025-07-23T19:30:07.6192027Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:30:07.6195770Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:30:07.6228589Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:30:07.6259156Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:30:07.6478683Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:30:07.6497722Z http.https://github.com/.extraheader -2025-07-23T19:30:07.6509587Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader -2025-07-23T19:30:07.6538379Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" diff --git a/logs_42241282643/Lint/17_Complete job.txt b/logs_42241282643/Lint/17_Complete job.txt deleted file mode 100644 index 7af046ddd0..0000000000 --- a/logs_42241282643/Lint/17_Complete job.txt +++ /dev/null @@ -1 +0,0 @@ -2025-07-23T19:30:07.6858647Z Cleaning up orphan processes diff --git a/logs_42241282643/Lint/1_Set up job.txt b/logs_42241282643/Lint/1_Set up job.txt deleted file mode 100644 index e1650c3187..0000000000 --- a/logs_42241282643/Lint/1_Set up job.txt +++ /dev/null @@ -1,50 +0,0 @@ -2025-07-23T19:28:54.7285991Z Current runner version: '2.326.0' -2025-07-23T19:28:54.7311362Z ##[group]Runner Image Provisioner -2025-07-23T19:28:54.7312151Z Hosted Compute Agent -2025-07-23T19:28:54.7312771Z Version: 20250711.363 -2025-07-23T19:28:54.7313347Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c -2025-07-23T19:28:54.7314017Z Build Date: 2025-07-11T20:04:25Z -2025-07-23T19:28:54.7314644Z ##[endgroup] -2025-07-23T19:28:54.7315181Z ##[group]Operating System -2025-07-23T19:28:54.7315745Z Ubuntu -2025-07-23T19:28:54.7316172Z 24.04.2 -2025-07-23T19:28:54.7317069Z LTS -2025-07-23T19:28:54.7317524Z ##[endgroup] -2025-07-23T19:28:54.7318000Z ##[group]Runner Image -2025-07-23T19:28:54.7318632Z Image: ubuntu-24.04 -2025-07-23T19:28:54.7319140Z Version: 20250720.1.0 -2025-07-23T19:28:54.7320111Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md -2025-07-23T19:28:54.7321403Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 -2025-07-23T19:28:54.7322544Z ##[endgroup] -2025-07-23T19:28:54.7324919Z ##[group]GITHUB_TOKEN Permissions -2025-07-23T19:28:54.7327000Z Actions: write -2025-07-23T19:28:54.7327690Z Attestations: write -2025-07-23T19:28:54.7328184Z Checks: write -2025-07-23T19:28:54.7328654Z Contents: write -2025-07-23T19:28:54.7329258Z Deployments: write -2025-07-23T19:28:54.7329733Z Discussions: write -2025-07-23T19:28:54.7330209Z Issues: write -2025-07-23T19:28:54.7330720Z Metadata: read -2025-07-23T19:28:54.7331208Z Models: read -2025-07-23T19:28:54.7331687Z Packages: write -2025-07-23T19:28:54.7332299Z Pages: write -2025-07-23T19:28:54.7332757Z PullRequests: write -2025-07-23T19:28:54.7333272Z RepositoryProjects: write -2025-07-23T19:28:54.7333860Z SecurityEvents: write -2025-07-23T19:28:54.7334462Z Statuses: write -2025-07-23T19:28:54.7334946Z ##[endgroup] -2025-07-23T19:28:54.7337331Z Secret source: Actions -2025-07-23T19:28:54.7338102Z Prepare workflow directory -2025-07-23T19:28:54.7662641Z Prepare all required actions -2025-07-23T19:28:54.7700999Z Getting action download info -2025-07-23T19:28:55.1589622Z ##[group]Download immutable action package 'actions/checkout@v4' -2025-07-23T19:28:55.1590782Z Version: 4.2.2 -2025-07-23T19:28:55.1591877Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 -2025-07-23T19:28:55.1593195Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 -2025-07-23T19:28:55.1594010Z ##[endgroup] -2025-07-23T19:28:55.2611670Z ##[group]Download immutable action package 'actions/setup-go@v5' -2025-07-23T19:28:55.2612648Z Version: 5.5.0 -2025-07-23T19:28:55.2613451Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb -2025-07-23T19:28:55.2614414Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 -2025-07-23T19:28:55.2615240Z ##[endgroup] -2025-07-23T19:28:55.5639364Z Complete job name: Lint diff --git a/logs_42241282643/Lint/2_Run actions_checkout@v4.txt b/logs_42241282643/Lint/2_Run actions_checkout@v4.txt deleted file mode 100644 index e2d9da16fb..0000000000 --- a/logs_42241282643/Lint/2_Run actions_checkout@v4.txt +++ /dev/null @@ -1,85 +0,0 @@ -2025-07-23T19:28:55.6281588Z ##[group]Run actions/checkout@v4 -2025-07-23T19:28:55.6282496Z with: -2025-07-23T19:28:55.6282959Z repository: ava-labs/coreth -2025-07-23T19:28:55.6283648Z token: *** -2025-07-23T19:28:55.6284109Z ssh-strict: true -2025-07-23T19:28:55.6284542Z ssh-user: git -2025-07-23T19:28:55.6284978Z persist-credentials: true -2025-07-23T19:28:55.6285488Z clean: true -2025-07-23T19:28:55.6285935Z sparse-checkout-cone-mode: true -2025-07-23T19:28:55.6286677Z fetch-depth: 1 -2025-07-23T19:28:55.6287133Z fetch-tags: false -2025-07-23T19:28:55.6287574Z show-progress: true -2025-07-23T19:28:55.6288014Z lfs: false -2025-07-23T19:28:55.6288422Z submodules: false -2025-07-23T19:28:55.6288862Z set-safe-directory: true -2025-07-23T19:28:55.6289660Z ##[endgroup] -2025-07-23T19:28:55.7412106Z Syncing repository: ava-labs/coreth -2025-07-23T19:28:55.7415318Z ##[group]Getting Git version info -2025-07-23T19:28:55.7416863Z Working directory is '/home/runner/work/coreth/coreth' -2025-07-23T19:28:55.7418755Z [command]/usr/bin/git version -2025-07-23T19:28:55.7454440Z git version 2.50.1 -2025-07-23T19:28:55.7481452Z ##[endgroup] -2025-07-23T19:28:55.7498707Z Temporarily overriding HOME='/home/runner/work/_temp/7f4d34e6-b629-46b0-b54a-489047ff8aac' before making global git config changes -2025-07-23T19:28:55.7501874Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:28:55.7504301Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:28:55.7542599Z Deleting the contents of '/home/runner/work/coreth/coreth' -2025-07-23T19:28:55.7546548Z ##[group]Initializing the repository -2025-07-23T19:28:55.7550403Z [command]/usr/bin/git init /home/runner/work/coreth/coreth -2025-07-23T19:28:55.7668996Z hint: Using 'master' as the name for the initial branch. This default branch name -2025-07-23T19:28:55.7671013Z hint: is subject to change. To configure the initial branch name to use in all -2025-07-23T19:28:55.7672819Z hint: of your new repositories, which will suppress this warning, call: -2025-07-23T19:28:55.7674220Z hint: -2025-07-23T19:28:55.7675057Z hint: git config --global init.defaultBranch -2025-07-23T19:28:55.7675829Z hint: -2025-07-23T19:28:55.7676688Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and -2025-07-23T19:28:55.7677796Z hint: 'development'. The just-created branch can be renamed via this command: -2025-07-23T19:28:55.7678624Z hint: -2025-07-23T19:28:55.7679040Z hint: git branch -m -2025-07-23T19:28:55.7679521Z hint: -2025-07-23T19:28:55.7680135Z hint: Disable this message with "git config set advice.defaultBranchName false" -2025-07-23T19:28:55.7681203Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ -2025-07-23T19:28:55.7690564Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth -2025-07-23T19:28:55.7734069Z ##[endgroup] -2025-07-23T19:28:55.7735352Z ##[group]Disabling automatic garbage collection -2025-07-23T19:28:55.7738386Z [command]/usr/bin/git config --local gc.auto 0 -2025-07-23T19:28:55.7772627Z ##[endgroup] -2025-07-23T19:28:55.7773401Z ##[group]Setting up auth -2025-07-23T19:28:55.7784091Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:28:55.7824412Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:28:55.8134184Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:28:55.8163995Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:28:55.8401619Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** -2025-07-23T19:28:55.8442946Z ##[endgroup] -2025-07-23T19:28:55.8443834Z ##[group]Fetching the repository -2025-07-23T19:28:55.8451657Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge -2025-07-23T19:28:56.3796699Z From https://github.com/ava-labs/coreth -2025-07-23T19:28:56.3798611Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge -2025-07-23T19:28:56.3822544Z ##[endgroup] -2025-07-23T19:28:56.3824092Z ##[group]Determining the checkout info -2025-07-23T19:28:56.3825296Z ##[endgroup] -2025-07-23T19:28:56.3828909Z [command]/usr/bin/git sparse-checkout disable -2025-07-23T19:28:56.3866070Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig -2025-07-23T19:28:56.3893794Z ##[group]Checking out the ref -2025-07-23T19:28:56.3897107Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge -2025-07-23T19:28:56.5008648Z Note: switching to 'refs/remotes/pull/1065/merge'. -2025-07-23T19:28:56.5009567Z -2025-07-23T19:28:56.5010319Z You are in 'detached HEAD' state. You can look around, make experimental -2025-07-23T19:28:56.5011928Z changes and commit them, and you can discard any commits you make in this -2025-07-23T19:28:56.5014078Z state without impacting any branches by switching back to a branch. -2025-07-23T19:28:56.5015645Z -2025-07-23T19:28:56.5016923Z If you want to create a new branch to retain commits you create, you may -2025-07-23T19:28:56.5019171Z do so (now or later) by using -c with the switch command. Example: -2025-07-23T19:28:56.5020538Z -2025-07-23T19:28:56.5021217Z git switch -c -2025-07-23T19:28:56.5022287Z -2025-07-23T19:28:56.5022886Z Or undo this operation with: -2025-07-23T19:28:56.5023760Z -2025-07-23T19:28:56.5024212Z git switch - -2025-07-23T19:28:56.5024890Z -2025-07-23T19:28:56.5026017Z Turn off this advice by setting config variable advice.detachedHead to false -2025-07-23T19:28:56.5028031Z -2025-07-23T19:28:56.5029859Z HEAD is now at d85ec03 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 -2025-07-23T19:28:56.5035346Z ##[endgroup] -2025-07-23T19:28:56.5062830Z [command]/usr/bin/git log -1 --format=%H -2025-07-23T19:28:56.5085711Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 diff --git a/logs_42241282643/Lint/4_Run actions_setup-go@v5.txt b/logs_42241282643/Lint/4_Run actions_setup-go@v5.txt deleted file mode 100644 index b974aa5f2e..0000000000 --- a/logs_42241282643/Lint/4_Run actions_setup-go@v5.txt +++ /dev/null @@ -1,79 +0,0 @@ -2025-07-23T19:28:56.5403330Z ##[group]Run actions/setup-go@v5 -2025-07-23T19:28:56.5404503Z with: -2025-07-23T19:28:56.5405348Z go-version-file: go.mod -2025-07-23T19:28:56.5406527Z check-latest: false -2025-07-23T19:28:56.5407768Z token: *** -2025-07-23T19:28:56.5408617Z cache: true -2025-07-23T19:28:56.5409492Z ##[endgroup] -2025-07-23T19:28:56.7220072Z Setup go version spec 1.23.9 -2025-07-23T19:28:56.7236184Z Attempting to download 1.23.9... -2025-07-23T19:28:57.0090191Z matching 1.23.9... -2025-07-23T19:28:57.0130534Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz -2025-07-23T19:28:57.5881155Z Extracting Go... -2025-07-23T19:28:57.5979247Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/6a2ca727-1390-4aa5-890a-80b94a46f362 -f /home/runner/work/_temp/a8b54835-6227-4553-a3c0-533eed767c9f -2025-07-23T19:28:59.2811269Z Successfully extracted go to /home/runner/work/_temp/6a2ca727-1390-4aa5-890a-80b94a46f362 -2025-07-23T19:28:59.2812085Z Adding to the cache ... -2025-07-23T19:29:03.6671481Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 -2025-07-23T19:29:03.6675312Z Added go to the path -2025-07-23T19:29:03.6676181Z Successfully set up Go version 1.23.9 -2025-07-23T19:29:03.6869910Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:29:03.6900801Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:29:03.6937178Z /home/runner/go/pkg/mod -2025-07-23T19:29:03.6957916Z /home/runner/.cache/go-build -2025-07-23T19:29:03.7653106Z Cache hit for: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:04.8324754Z Received 176160768 of 743127682 (23.7%), 166.5 MBs/sec -2025-07-23T19:29:05.8404595Z Received 402653184 of 743127682 (54.2%), 190.4 MBs/sec -2025-07-23T19:29:06.8401603Z Received 641728512 of 743127682 (86.4%), 202.9 MBs/sec -2025-07-23T19:29:07.4514541Z Received 743127682 of 743127682 (100.0%), 195.3 MBs/sec -2025-07-23T19:29:07.4515464Z Cache Size: ~709 MB (743127682 B) -2025-07-23T19:29:07.4627042Z [command]/usr/bin/tar -xf /home/runner/work/_temp/d536043f-5a09-4e50-8110-ac5952001aec/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd -2025-07-23T19:29:14.3057506Z Cache restored successfully -2025-07-23T19:29:14.4415783Z Cache restored from key: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:14.4443228Z go version go1.23.9 linux/amd64 -2025-07-23T19:29:14.4443442Z -2025-07-23T19:29:14.4443713Z ##[group]go env -2025-07-23T19:29:14.6216538Z GO111MODULE='' -2025-07-23T19:29:14.6217279Z GOARCH='amd64' -2025-07-23T19:29:14.6218788Z GOBIN='' -2025-07-23T19:29:14.6219196Z GOCACHE='/home/runner/.cache/go-build' -2025-07-23T19:29:14.6219704Z GOENV='/home/runner/.config/go/env' -2025-07-23T19:29:14.6220125Z GOEXE='' -2025-07-23T19:29:14.6220799Z GOEXPERIMENT='' -2025-07-23T19:29:14.6221134Z GOFLAGS='' -2025-07-23T19:29:14.6221475Z GOHOSTARCH='amd64' -2025-07-23T19:29:14.6221819Z GOHOSTOS='linux' -2025-07-23T19:29:14.6222117Z GOINSECURE='' -2025-07-23T19:29:14.6222457Z GOMODCACHE='/home/runner/go/pkg/mod' -2025-07-23T19:29:14.6222852Z GONOPROXY='' -2025-07-23T19:29:14.6223137Z GONOSUMDB='' -2025-07-23T19:29:14.6223414Z GOOS='linux' -2025-07-23T19:29:14.6223714Z GOPATH='/home/runner/go' -2025-07-23T19:29:14.6224059Z GOPRIVATE='' -2025-07-23T19:29:14.6224634Z GOPROXY='https://proxy.golang.org,direct' -2025-07-23T19:29:14.6225139Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' -2025-07-23T19:29:14.6225579Z GOSUMDB='sum.golang.org' -2025-07-23T19:29:14.6225912Z GOTMPDIR='' -2025-07-23T19:29:14.6226205Z GOTOOLCHAIN='auto' -2025-07-23T19:29:14.6226906Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' -2025-07-23T19:29:14.6227445Z GOVCS='' -2025-07-23T19:29:14.6227733Z GOVERSION='go1.23.9' -2025-07-23T19:29:14.6228052Z GODEBUG='' -2025-07-23T19:29:14.6228345Z GOTELEMETRY='local' -2025-07-23T19:29:14.6228750Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' -2025-07-23T19:29:14.6229490Z GCCGO='gccgo' -2025-07-23T19:29:14.6229772Z GOAMD64='v1' -2025-07-23T19:29:14.6230051Z AR='ar' -2025-07-23T19:29:14.6230341Z CC='gcc' -2025-07-23T19:29:14.6230605Z CXX='g++' -2025-07-23T19:29:14.6230874Z CGO_ENABLED='1' -2025-07-23T19:29:14.6231255Z GOMOD='/home/runner/work/coreth/coreth/go.mod' -2025-07-23T19:29:14.6231685Z GOWORK='' -2025-07-23T19:29:14.6231968Z CGO_CFLAGS='-O2 -g' -2025-07-23T19:29:14.6232268Z CGO_CPPFLAGS='' -2025-07-23T19:29:14.6232588Z CGO_CXXFLAGS='-O2 -g' -2025-07-23T19:29:14.6232897Z CGO_FFLAGS='-O2 -g' -2025-07-23T19:29:14.6233207Z CGO_LDFLAGS='-O2 -g' -2025-07-23T19:29:14.6233547Z PKG_CONFIG='pkg-config' -2025-07-23T19:29:14.6234544Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build2870971817=/tmp/go-build -gno-record-gcc-switches' -2025-07-23T19:29:14.6235423Z -2025-07-23T19:29:14.6235852Z ##[endgroup] diff --git a/logs_42241282643/Lint/6_Run all lint checks.txt b/logs_42241282643/Lint/6_Run all lint checks.txt deleted file mode 100644 index a395ca1300..0000000000 --- a/logs_42241282643/Lint/6_Run all lint checks.txt +++ /dev/null @@ -1,51 +0,0 @@ -2025-07-23T19:29:14.6408264Z ##[group]Run ./scripts/run_task.sh lint-all-ci -2025-07-23T19:29:14.6408675Z ./scripts/run_task.sh lint-all-ci -2025-07-23T19:29:14.6442885Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:14.6443211Z ##[endgroup] -2025-07-23T19:29:15.4094647Z task: [lint] ./scripts/lint.sh -2025-07-23T19:29:15.4166893Z Running 'golangci_lint license_header require_error_is_no_funcs_as_params single_import interface_compliance_nil require_no_error_inline_func import_testing_only_in_tests' at: Wed Jul 23 19:29:15 UTC 2025 -2025-07-23T19:29:15.4192512Z find: warning: -path ./ will not match anything because it ends with /. -2025-07-23T19:29:15.4494196Z START: 'golangci_lint' at Wed Jul 23 19:29:15 UTC 2025 -2025-07-23T19:30:03.0594111Z SUCCESS: 'golangci_lint' completed at Wed Jul 23 19:30:03 UTC 2025 -2025-07-23T19:30:03.0614513Z START: 'license_header' at Wed Jul 23 19:30:03 UTC 2025 -2025-07-23T19:30:03.0618951Z Running license tool on upstream files with header for upstream... -2025-07-23T19:30:03.6289756Z 1 file does not have the correct license header: -2025-07-23T19:30:03.6290273Z ./core/state/database_test.go -2025-07-23T19:30:03.6294300Z exit status 1 -2025-07-23T19:30:03.6316094Z Running license tool on remaining files with default header... -2025-07-23T19:30:04.0109864Z SUCCESS: 'license_header' completed at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0131126Z START: 'require_error_is_no_funcs_as_params' at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0237529Z SUCCESS: 'require_error_is_no_funcs_as_params' completed at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0259074Z START: 'single_import' at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0358249Z SUCCESS: 'single_import' completed at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0378159Z START: 'interface_compliance_nil' at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0514146Z SUCCESS: 'interface_compliance_nil' completed at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0533738Z START: 'require_no_error_inline_func' at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0651810Z SUCCESS: 'require_no_error_inline_func' completed at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.0671742Z START: 'import_testing_only_in_tests' at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.1045679Z SUCCESS: 'import_testing_only_in_tests' completed at Wed Jul 23 19:30:04 UTC 2025 -2025-07-23T19:30:04.1046562Z ALL SUCCESS! -2025-07-23T19:30:04.1091049Z task: [actionlint] ./scripts/actionlint.sh -2025-07-23T19:30:07.1235336Z Checking use of scripts/* in GitHub Actions workflows... -2025-07-23T19:30:07.1334227Z task: [shellcheck] ./scripts/shellcheck.sh -2025-07-23T19:30:07.4978675Z -2025-07-23T19:30:07.4979258Z In /home/runner/work/coreth/coreth/scripts/build_test.sh line 59: -2025-07-23T19:30:07.4980332Z test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" $PACKAGES 2>&1) || command_status=$? -2025-07-23T19:30:07.4985705Z ^-------^ SC2086 (info): Double quote to prevent globbing and word splitting. -2025-07-23T19:30:07.4986094Z -2025-07-23T19:30:07.4986191Z Did you mean: -2025-07-23T19:30:07.4987315Z test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" "$PACKAGES" 2>&1) || command_status=$? -2025-07-23T19:30:07.4987916Z -2025-07-23T19:30:07.4987921Z -2025-07-23T19:30:07.4988135Z In /home/runner/work/coreth/coreth/scripts/build_test.sh line 112: -2025-07-23T19:30:07.4988885Z go test -run "^${test_name}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" $package -2025-07-23T19:30:07.4991775Z ^------^ SC2086 (info): Double quote to prevent globbing and word splitting. -2025-07-23T19:30:07.4992092Z -2025-07-23T19:30:07.4992188Z Did you mean: -2025-07-23T19:30:07.4992770Z go test -run "^${test_name}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" "$package" -2025-07-23T19:30:07.4993448Z -2025-07-23T19:30:07.4993545Z For more information: -2025-07-23T19:30:07.4993974Z https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ... -2025-07-23T19:30:07.5008101Z task: Failed to run task "lint-all-ci": exit status 123 -2025-07-23T19:30:07.5017709Z exit status 201 -2025-07-23T19:30:07.5072538Z ##[error]Process completed with exit code 1. diff --git a/logs_42241282643/e2e warp tests/13_Post Set up Go.txt b/logs_42241282643/e2e warp tests/13_Post Set up Go.txt deleted file mode 100644 index 94a89babf3..0000000000 --- a/logs_42241282643/e2e warp tests/13_Post Set up Go.txt +++ /dev/null @@ -1,6 +0,0 @@ -2025-07-23T19:32:33.7147722Z Post job cleanup. -2025-07-23T19:32:33.8724120Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:32:33.8761822Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:32:33.8786505Z /home/runner/go/pkg/mod -2025-07-23T19:32:33.8814333Z /home/runner/.cache/go-build -2025-07-23T19:32:33.8819136Z Cache hit occurred on the primary key setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d, not saving cache. diff --git a/logs_42241282643/e2e warp tests/14_Post Git checkout.txt b/logs_42241282643/e2e warp tests/14_Post Git checkout.txt deleted file mode 100644 index d8b058c824..0000000000 --- a/logs_42241282643/e2e warp tests/14_Post Git checkout.txt +++ /dev/null @@ -1,12 +0,0 @@ -2025-07-23T19:32:33.8917750Z Post job cleanup. -2025-07-23T19:32:33.9863783Z [command]/usr/bin/git version -2025-07-23T19:32:33.9904630Z git version 2.50.1 -2025-07-23T19:32:33.9956179Z Temporarily overriding HOME='/home/runner/work/_temp/9550696a-0377-4acd-a5e5-706ab8435ca6' before making global git config changes -2025-07-23T19:32:33.9957565Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:32:33.9961688Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:32:33.9997514Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:32:34.0030298Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:32:34.0251713Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:32:34.0272154Z http.https://github.com/.extraheader -2025-07-23T19:32:34.0285234Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader -2025-07-23T19:32:34.0314555Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" diff --git a/logs_42241282643/e2e warp tests/15_Complete job.txt b/logs_42241282643/e2e warp tests/15_Complete job.txt deleted file mode 100644 index 00fa9a4f5c..0000000000 --- a/logs_42241282643/e2e warp tests/15_Complete job.txt +++ /dev/null @@ -1 +0,0 @@ -2025-07-23T19:32:34.0637198Z Cleaning up orphan processes diff --git a/logs_42241282643/e2e warp tests/1_Set up job.txt b/logs_42241282643/e2e warp tests/1_Set up job.txt deleted file mode 100644 index 85fc823e0c..0000000000 --- a/logs_42241282643/e2e warp tests/1_Set up job.txt +++ /dev/null @@ -1,58 +0,0 @@ -2025-07-23T19:28:54.2428861Z Current runner version: '2.326.0' -2025-07-23T19:28:54.2462549Z ##[group]Runner Image Provisioner -2025-07-23T19:28:54.2463842Z Hosted Compute Agent -2025-07-23T19:28:54.2464899Z Version: 20250711.363 -2025-07-23T19:28:54.2466036Z Commit: 6785254374ce925a23743850c1cb91912ce5c14c -2025-07-23T19:28:54.2467194Z Build Date: 2025-07-11T20:04:25Z -2025-07-23T19:28:54.2468229Z ##[endgroup] -2025-07-23T19:28:54.2469248Z ##[group]Operating System -2025-07-23T19:28:54.2470188Z Ubuntu -2025-07-23T19:28:54.2470902Z 24.04.2 -2025-07-23T19:28:54.2471738Z LTS -2025-07-23T19:28:54.2472465Z ##[endgroup] -2025-07-23T19:28:54.2473218Z ##[group]Runner Image -2025-07-23T19:28:54.2474590Z Image: ubuntu-24.04 -2025-07-23T19:28:54.2475460Z Version: 20250720.1.0 -2025-07-23T19:28:54.2477273Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250720.1/images/ubuntu/Ubuntu2404-Readme.md -2025-07-23T19:28:54.2479934Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250720.1 -2025-07-23T19:28:54.2482088Z ##[endgroup] -2025-07-23T19:28:54.2486565Z ##[group]GITHUB_TOKEN Permissions -2025-07-23T19:28:54.2489418Z Actions: write -2025-07-23T19:28:54.2490295Z Attestations: write -2025-07-23T19:28:54.2491115Z Checks: write -2025-07-23T19:28:54.2491974Z Contents: write -2025-07-23T19:28:54.2492835Z Deployments: write -2025-07-23T19:28:54.2493608Z Discussions: write -2025-07-23T19:28:54.2494764Z Issues: write -2025-07-23T19:28:54.2495614Z Metadata: read -2025-07-23T19:28:54.2496468Z Models: read -2025-07-23T19:28:54.2497474Z Packages: write -2025-07-23T19:28:54.2498305Z Pages: write -2025-07-23T19:28:54.2499091Z PullRequests: write -2025-07-23T19:28:54.2500039Z RepositoryProjects: write -2025-07-23T19:28:54.2501047Z SecurityEvents: write -2025-07-23T19:28:54.2502250Z Statuses: write -2025-07-23T19:28:54.2503144Z ##[endgroup] -2025-07-23T19:28:54.2506224Z Secret source: Actions -2025-07-23T19:28:54.2507549Z Prepare workflow directory -2025-07-23T19:28:54.2978798Z Prepare all required actions -2025-07-23T19:28:54.3034751Z Getting action download info -2025-07-23T19:28:54.5607945Z ##[group]Download immutable action package 'actions/checkout@v4' -2025-07-23T19:28:54.5609498Z Version: 4.2.2 -2025-07-23T19:28:54.5611139Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1 -2025-07-23T19:28:54.5612910Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683 -2025-07-23T19:28:54.5614365Z ##[endgroup] -2025-07-23T19:28:54.6722201Z ##[group]Download immutable action package 'actions/setup-go@v5' -2025-07-23T19:28:54.6723476Z Version: 5.5.0 -2025-07-23T19:28:54.6725091Z Digest: sha256:f5eeb2233d0c6714b5236de9b44ad0b935014e15eeab3c28d73dc44c1c641ebb -2025-07-23T19:28:54.6726835Z Source commit SHA: d35c59abb061a4a6fb18e82ac0862c26744d6ab5 -2025-07-23T19:28:54.6728056Z ##[endgroup] -2025-07-23T19:28:54.8999162Z Download action repository 'ava-labs/avalanchego@66ce7a7701db0c4b370f97b339478d5b5ebe919a' (SHA:66ce7a7701db0c4b370f97b339478d5b5ebe919a) -2025-07-23T19:28:55.9950173Z Getting action download info -2025-07-23T19:28:56.1465866Z Download action repository 'cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f' (SHA:02a151ada4993995686f9ed4f1be7cfbb229e56f) -2025-07-23T19:28:56.3752828Z ##[group]Download immutable action package 'actions/upload-artifact@v4' -2025-07-23T19:28:56.3753296Z Version: 4.6.2 -2025-07-23T19:28:56.3753675Z Digest: sha256:290722aa3281d5caf23d0acdc3dbeb3424786a1a01a9cc97e72f147225e37c38 -2025-07-23T19:28:56.3754419Z Source commit SHA: ea165f8d65b6e75b540449e92b4886f43607fa02 -2025-07-23T19:28:56.3754774Z ##[endgroup] -2025-07-23T19:28:56.5236741Z Complete job name: e2e warp tests diff --git a/logs_42241282643/e2e warp tests/2_Git checkout.txt b/logs_42241282643/e2e warp tests/2_Git checkout.txt deleted file mode 100644 index fd7d2ea24a..0000000000 --- a/logs_42241282643/e2e warp tests/2_Git checkout.txt +++ /dev/null @@ -1,789 +0,0 @@ -2025-07-23T19:28:56.6013092Z ##[group]Run actions/checkout@v4 -2025-07-23T19:28:56.6014228Z with: -2025-07-23T19:28:56.6014635Z fetch-depth: 0 -2025-07-23T19:28:56.6015267Z repository: ava-labs/coreth -2025-07-23T19:28:56.6016087Z token: *** -2025-07-23T19:28:56.6016478Z ssh-strict: true -2025-07-23T19:28:56.6016889Z ssh-user: git -2025-07-23T19:28:56.6017299Z persist-credentials: true -2025-07-23T19:28:56.6017744Z clean: true -2025-07-23T19:28:56.6018705Z sparse-checkout-cone-mode: true -2025-07-23T19:28:56.6019341Z fetch-tags: false -2025-07-23T19:28:56.6019900Z show-progress: true -2025-07-23T19:28:56.6020308Z lfs: false -2025-07-23T19:28:56.6020679Z submodules: false -2025-07-23T19:28:56.6021082Z set-safe-directory: true -2025-07-23T19:28:56.6022081Z ##[endgroup] -2025-07-23T19:28:56.7186785Z Syncing repository: ava-labs/coreth -2025-07-23T19:28:56.7188126Z ##[group]Getting Git version info -2025-07-23T19:28:56.7188550Z Working directory is '/home/runner/work/coreth/coreth' -2025-07-23T19:28:56.7189105Z [command]/usr/bin/git version -2025-07-23T19:28:56.7905562Z git version 2.50.1 -2025-07-23T19:28:56.7930726Z ##[endgroup] -2025-07-23T19:28:56.7943770Z Temporarily overriding HOME='/home/runner/work/_temp/d15459b7-157c-4910-bfea-980f7312e17a' before making global git config changes -2025-07-23T19:28:56.7945031Z Adding repository directory to the temporary git global config as a safe directory -2025-07-23T19:28:56.7949021Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/coreth/coreth -2025-07-23T19:28:56.7982279Z Deleting the contents of '/home/runner/work/coreth/coreth' -2025-07-23T19:28:56.7986125Z ##[group]Initializing the repository -2025-07-23T19:28:56.7990009Z [command]/usr/bin/git init /home/runner/work/coreth/coreth -2025-07-23T19:28:56.8052087Z hint: Using 'master' as the name for the initial branch. This default branch name -2025-07-23T19:28:56.8053137Z hint: is subject to change. To configure the initial branch name to use in all -2025-07-23T19:28:56.8054287Z hint: of your new repositories, which will suppress this warning, call: -2025-07-23T19:28:56.8055073Z hint: -2025-07-23T19:28:56.8055616Z hint: git config --global init.defaultBranch -2025-07-23T19:28:56.8056266Z hint: -2025-07-23T19:28:56.8056923Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and -2025-07-23T19:28:56.8057914Z hint: 'development'. The just-created branch can be renamed via this command: -2025-07-23T19:28:56.8058714Z hint: -2025-07-23T19:28:56.8059192Z hint: git branch -m -2025-07-23T19:28:56.8059687Z hint: -2025-07-23T19:28:56.8060359Z hint: Disable this message with "git config set advice.defaultBranchName false" -2025-07-23T19:28:56.8061347Z Initialized empty Git repository in /home/runner/work/coreth/coreth/.git/ -2025-07-23T19:28:56.8066319Z [command]/usr/bin/git remote add origin https://github.com/ava-labs/coreth -2025-07-23T19:28:56.8096692Z ##[endgroup] -2025-07-23T19:28:56.8097461Z ##[group]Disabling automatic garbage collection -2025-07-23T19:28:56.8101559Z [command]/usr/bin/git config --local gc.auto 0 -2025-07-23T19:28:56.8129610Z ##[endgroup] -2025-07-23T19:28:56.8130380Z ##[group]Setting up auth -2025-07-23T19:28:56.8137249Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2025-07-23T19:28:56.8166717Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2025-07-23T19:28:56.8473030Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2025-07-23T19:28:56.8502236Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2025-07-23T19:28:56.8718220Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** -2025-07-23T19:28:56.8759119Z ##[endgroup] -2025-07-23T19:28:56.8759843Z ##[group]Fetching the repository -2025-07-23T19:28:56.8768238Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* +d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4:refs/remotes/pull/1065/merge -2025-07-23T19:29:08.4723831Z From https://github.com/ava-labs/coreth -2025-07-23T19:29:08.4726670Z * [new branch] 001-align-trie -> origin/001-align-trie -2025-07-23T19:29:08.4730116Z * [new branch] AddContexts -> origin/AddContexts -2025-07-23T19:29:08.4731142Z * [new branch] RodrigoVillar/initial-gas-target -> origin/RodrigoVillar/initial-gas-target -2025-07-23T19:29:08.4732478Z * [new branch] aaronbuchwald/detailed-import-tx-chainid-errs -> origin/aaronbuchwald/detailed-import-tx-chainid-errs -2025-07-23T19:29:08.4733809Z * [new branch] aaronbuchwald/prefetch-state -> origin/aaronbuchwald/prefetch-state -2025-07-23T19:29:08.4736932Z * [new branch] aaronbuchwald/prefetch-state-single-step-build -> origin/aaronbuchwald/prefetch-state-single-step-build -2025-07-23T19:29:08.4738225Z * [new branch] add-chaindb -> origin/add-chaindb -2025-07-23T19:29:08.4744585Z * [new branch] add-contracts-gitignore -> origin/add-contracts-gitignore -2025-07-23T19:29:08.4745675Z * [new branch] add-sig-get-metrics -> origin/add-sig-get-metrics -2025-07-23T19:29:08.4746641Z * [new branch] alarso16/firewood-bootstrap -> origin/alarso16/firewood-bootstrap -2025-07-23T19:29:08.4747732Z * [new branch] alarso16/firewood-error-apis -> origin/alarso16/firewood-error-apis -2025-07-23T19:29:08.4748888Z * [new branch] alarso16/firewood-integration-rv -> origin/alarso16/firewood-integration-rv -2025-07-23T19:29:08.4750040Z * [new branch] alarso16/libevm-upstream-sync -> origin/alarso16/libevm-upstream-sync -2025-07-23T19:29:08.4751766Z * [new branch] alarso16/parallelize-syncers -> origin/alarso16/parallelize-syncers -2025-07-23T19:29:08.4754221Z * [new branch] alarso16/show-flake-lines -> origin/alarso16/show-flake-lines -2025-07-23T19:29:08.4756222Z * [new branch] alarso16/state-syncer-interface -> origin/alarso16/state-syncer-interface -2025-07-23T19:29:08.4758180Z * [new branch] alarso16/static-snapsync -> origin/alarso16/static-snapsync -2025-07-23T19:29:08.4760461Z * [new branch] alt-fix-snapshot -> origin/alt-fix-snapshot -2025-07-23T19:29:08.4762659Z * [new branch] ap1-committed-gas -> origin/ap1-committed-gas -2025-07-23T19:29:08.4766261Z * [new branch] arr4n/abstract-customtypes-def-vs-access -> origin/arr4n/abstract-customtypes-def-vs-access -2025-07-23T19:29:08.4767975Z * [new branch] arr4n/libevm-clean-history -> origin/arr4n/libevm-clean-history -2025-07-23T19:29:08.4770306Z * [new branch] arr4n/libevm-dirty-history -> origin/arr4n/libevm-dirty-history -2025-07-23T19:29:08.4772266Z * [new branch] arr4n/libevm-upstream-types -> origin/arr4n/libevm-upstream-types -2025-07-23T19:29:08.4774820Z * [new branch] arr4n/metric-registration-order -> origin/arr4n/metric-registration-order -2025-07-23T19:29:08.4776839Z * [new branch] arr4n/min-gas-cap-sketch -> origin/arr4n/min-gas-cap-sketch -2025-07-23T19:29:08.4779091Z * [new branch] arr4n/test-only-build-tags -> origin/arr4n/test-only-build-tags -2025-07-23T19:29:08.4781098Z * [new branch] ast-drawing -> origin/ast-drawing -2025-07-23T19:29:08.4783311Z * [new branch] atomic-000 -> origin/atomic-000 -2025-07-23T19:29:08.4785982Z * [new branch] atomic-mempool-refactor -> origin/atomic-mempool-refactor -2025-07-23T19:29:08.4787692Z * [new branch] atomic-refactor -> origin/atomic-refactor -2025-07-23T19:29:08.4790049Z * [new branch] atomic-refactor-ctd -> origin/atomic-refactor-ctd -2025-07-23T19:29:08.4792234Z * [new branch] atomic-tx-verifier -> origin/atomic-tx-verifier -2025-07-23T19:29:08.4794306Z * [new branch] atomic-vm-api -> origin/atomic-vm-api -2025-07-23T19:29:08.4796790Z * [new branch] atomic-vm-backend -> origin/atomic-vm-backend -2025-07-23T19:29:08.4798814Z * [new branch] atomic-vm-finalize -> origin/atomic-vm-finalize -2025-07-23T19:29:08.4800797Z * [new branch] atomic-vm-mempool-gossip -> origin/atomic-vm-mempool-gossip -2025-07-23T19:29:08.4803261Z * [new branch] atomic-vm-pkg -> origin/atomic-vm-pkg -2025-07-23T19:29:08.4805669Z * [new branch] atomic-vm-refactor -> origin/atomic-vm-refactor -2025-07-23T19:29:08.4807908Z * [new branch] atomic-vm-refactor-finalize -> origin/atomic-vm-refactor-finalize -2025-07-23T19:29:08.4810052Z * [new branch] atomic-vm-syncers -> origin/atomic-vm-syncers -2025-07-23T19:29:08.4812214Z * [new branch] atomic-vm-wrapper -> origin/atomic-vm-wrapper -2025-07-23T19:29:08.4814692Z * [new branch] auto-pr-subnet-evm -> origin/auto-pr-subnet-evm -2025-07-23T19:29:08.4817042Z * [new branch] auto-pr-subnet-evm-test -> origin/auto-pr-subnet-evm-test -2025-07-23T19:29:08.4819061Z * [new branch] auto-sync-subnet-evm -> origin/auto-sync-subnet-evm -2025-07-23T19:29:08.4821548Z * [new branch] avoid-modifying-global-var-tests -> origin/avoid-modifying-global-var-tests -2025-07-23T19:29:08.4823589Z * [new branch] avoid-overriding-commit-interval -> origin/avoid-overriding-commit-interval -2025-07-23T19:29:08.4826003Z * [new branch] backfill_blocks -> origin/backfill_blocks -2025-07-23T19:29:08.4828345Z * [new branch] backfill_blocks_0 -> origin/backfill_blocks_0 -2025-07-23T19:29:08.4830378Z * [new branch] bench-nft -> origin/bench-nft -2025-07-23T19:29:08.4832795Z * [new branch] better-copy -> origin/better-copy -2025-07-23T19:29:08.4835084Z * [new branch] block-builder -> origin/block-builder -2025-07-23T19:29:08.4837774Z * [new branch] bloom-filter-gossip -> origin/bloom-filter-gossip -2025-07-23T19:29:08.4839892Z * [new branch] buf-modules -> origin/buf-modules -2025-07-23T19:29:08.4842350Z * [new branch] bump-avalanchego-master -> origin/bump-avalanchego-master -2025-07-23T19:29:08.4844350Z * [new branch] bump-compat-avago -> origin/bump-compat-avago -2025-07-23T19:29:08.4846771Z * [new branch] bump-pebble -> origin/bump-pebble -2025-07-23T19:29:08.4848975Z * [new branch] cancun-genesis -> origin/cancun-genesis -2025-07-23T19:29:08.4852021Z * [new branch] ceyonur/move-config -> origin/ceyonur/move-config -2025-07-23T19:29:08.4854423Z * [new branch] check-processing-blocks-for-atomic-txs -> origin/check-processing-blocks-for-atomic-txs -2025-07-23T19:29:08.4856420Z * [new branch] cleanup-wip -> origin/cleanup-wip -2025-07-23T19:29:08.4858857Z * [new branch] concrete-vm -> origin/concrete-vm -2025-07-23T19:29:08.4861094Z * [new branch] config-cleanup -> origin/config-cleanup -2025-07-23T19:29:08.4863327Z * [new branch] coreth-000 -> origin/coreth-000 -2025-07-23T19:29:08.4865946Z * [new branch] coreth-001 -> origin/coreth-001 -2025-07-23T19:29:08.4868119Z * [new branch] coreth-001-minimal -> origin/coreth-001-minimal -2025-07-23T19:29:08.4870612Z * [new branch] coreth-001-minimal-triedb-refcount -> origin/coreth-001-minimal-triedb-refcount -2025-07-23T19:29:08.4872815Z * [new branch] coreth-001-minimal-triedb-refcount-statedb-mod -> origin/coreth-001-minimal-triedb-refcount-statedb-mod -2025-07-23T19:29:08.4875119Z * [new branch] coreth-001-shared-statedb-triedb-backends -> origin/coreth-001-shared-statedb-triedb-backends -2025-07-23T19:29:08.4877135Z * [new branch] coreth-002 -> origin/coreth-002 -2025-07-23T19:29:08.4879721Z * [new branch] coreth-002-pathdb-mem -> origin/coreth-002-pathdb-mem -2025-07-23T19:29:08.4881921Z * [new branch] coreth-002-pathdb-mem-atomic -> origin/coreth-002-pathdb-mem-atomic -2025-07-23T19:29:08.4884096Z * [new branch] coreth-block-flex -> origin/coreth-block-flex -2025-07-23T19:29:08.4886776Z * [new branch] db-stats -> origin/db-stats -2025-07-23T19:29:08.4889157Z * [new branch] deferred-verification -> origin/deferred-verification -2025-07-23T19:29:08.4893827Z * [new branch] dependabot/github_actions/github/codeql-action-3.29.2 -> origin/dependabot/github_actions/github/codeql-action-3.29.2 -2025-07-23T19:29:08.4898126Z * [new branch] dependabot/go_modules/github.com/cespare/cp-1.1.1 -> origin/dependabot/go_modules/github.com/cespare/cp-1.1.1 -2025-07-23T19:29:08.4901309Z * [new branch] dependabot/go_modules/github.com/hashicorp/golang-lru-1.0.2 -> origin/dependabot/go_modules/github.com/hashicorp/golang-lru-1.0.2 -2025-07-23T19:29:08.4904654Z * [new branch] dependabot/go_modules/github.com/spf13/cast-1.9.2 -> origin/dependabot/go_modules/github.com/spf13/cast-1.9.2 -2025-07-23T19:29:08.4908511Z * [new branch] dependabot/go_modules/golang.org/x/crypto-0.40.0 -> origin/dependabot/go_modules/golang.org/x/crypto-0.40.0 -2025-07-23T19:29:08.4910434Z * [new branch] dependabot/go_modules/golang.org/x/oauth2-0.27.0 -> origin/dependabot/go_modules/golang.org/x/oauth2-0.27.0 -2025-07-23T19:29:08.4912785Z * [new branch] dependabot/go_modules/golang.org/x/tools-0.35.0 -> origin/dependabot/go_modules/golang.org/x/tools-0.35.0 -2025-07-23T19:29:08.4915016Z * [new branch] disable-gossip -> origin/disable-gossip -2025-07-23T19:29:08.4917648Z * [new branch] disable-new-gossip -> origin/disable-new-gossip -2025-07-23T19:29:08.4919989Z * [new branch] downgrade-bad-block-logs -> origin/downgrade-bad-block-logs -2025-07-23T19:29:08.4922307Z * [new branch] downgrade-logs -> origin/downgrade-logs -2025-07-23T19:29:08.4924978Z * [new branch] dynamic_state_sync_readiness_fix -> origin/dynamic_state_sync_readiness_fix -2025-07-23T19:29:08.4927679Z * [new branch] eth-call-depth-metrics -> origin/eth-call-depth-metrics -2025-07-23T19:29:08.4929921Z * [new branch] fastsync-all -> origin/fastsync-all -2025-07-23T19:29:08.4932329Z * [new branch] find-flake-add-logs -> origin/find-flake-add-logs -2025-07-23T19:29:08.4934845Z * [new branch] fix-derive-logs -> origin/fix-derive-logs -2025-07-23T19:29:08.4937262Z * [new branch] fix-error -> origin/fix-error -2025-07-23T19:29:08.4939774Z * [new branch] fix-setting-eth-upgrades-trace -> origin/fix-setting-eth-upgrades-trace -2025-07-23T19:29:08.4942027Z * [new branch] fix-upstream-licenses -> origin/fix-upstream-licenses -2025-07-23T19:29:08.4944462Z * [new branch] fork-refactor -> origin/fork-refactor -2025-07-23T19:29:08.4947063Z * [new branch] fupgrade-libevm-sync-upstream -> origin/fupgrade-libevm-sync-upstream -2025-07-23T19:29:08.4949070Z * [new branch] generic-cache -> origin/generic-cache -2025-07-23T19:29:08.4951564Z * [new branch] generic-set -> origin/generic-set -2025-07-23T19:29:08.4953777Z * [new branch] generic-sort -> origin/generic-sort -2025-07-23T19:29:08.4956447Z * [new branch] genericNodeID -> origin/genericNodeID -2025-07-23T19:29:08.4959563Z * [new branch] get-preference -> origin/get-preference -2025-07-23T19:29:08.4961321Z * [new branch] geth-compile-v1.14.7 -> origin/geth-compile-v1.14.7 -2025-07-23T19:29:08.4964177Z * [new branch] geth-migration -> origin/geth-migration -2025-07-23T19:29:08.4966562Z * [new branch] geth-v1.12.2-compile -> origin/geth-v1.12.2-compile -2025-07-23T19:29:08.4971014Z * [new branch] gh-readonly-queue/master/pr-1064-8fa714aa59bcec3f418c1cc8312789585993b1b1 -> origin/gh-readonly-queue/master/pr-1064-8fa714aa59bcec3f418c1cc8312789585993b1b1 -2025-07-23T19:29:08.4972849Z * [new branch] hyper-dep-with-commit-to-db -> origin/hyper-dep-with-commit-to-db -2025-07-23T19:29:08.4975260Z * [new branch] inspector -> origin/inspector -2025-07-23T19:29:08.4977735Z * [new branch] integration-testing -> origin/integration-testing -2025-07-23T19:29:08.4980084Z * [new branch] legacy-sdk -> origin/legacy-sdk -2025-07-23T19:29:08.4982575Z * [new branch] libevm -> origin/libevm -2025-07-23T19:29:08.4985142Z * [new branch] libevm-atomic-refactor -> origin/libevm-atomic-refactor -2025-07-23T19:29:08.4987742Z * [new branch] libevm-atomic-refactor-2 -> origin/libevm-atomic-refactor-2 -2025-07-23T19:29:08.4990222Z * [new branch] libevm-avalanchegov.1.12 -> origin/libevm-avalanchegov.1.12 -2025-07-23T19:29:08.4992725Z * [new branch] libevm-move-atomic-txs -> origin/libevm-move-atomic-txs -2025-07-23T19:29:08.4995242Z * [new branch] libevm-upstream-sync -> origin/libevm-upstream-sync -2025-07-23T19:29:08.4997583Z * [new branch] linter -> origin/linter -2025-07-23T19:29:08.5000190Z * [new branch] maru-update-ci -> origin/maru-update-ci -2025-07-23T19:29:08.5002470Z * [new branch] marun-bump-avalanchego -> origin/marun-bump-avalanchego -2025-07-23T19:29:08.5005062Z * [new branch] master -> origin/master -2025-07-23T19:29:08.5008208Z * [new branch] migrate-geth-v1.10.23 -> origin/migrate-geth-v1.10.23 -2025-07-23T19:29:08.5010702Z * [new branch] migrate-warp-precompile-warp-api-enabled -> origin/migrate-warp-precompile-warp-api-enabled -2025-07-23T19:29:08.5012264Z * [new branch] miner-upstream -> origin/miner-upstream -2025-07-23T19:29:08.5014622Z * [new branch] minimize-gossip-delays -> origin/minimize-gossip-delays -2025-07-23T19:29:08.5016635Z * [new branch] move-atomic-txs-config -> origin/move-atomic-txs-config -2025-07-23T19:29:08.5018515Z * [new branch] nativeassetcall-ut -> origin/nativeassetcall-ut -2025-07-23T19:29:08.5020785Z * [new branch] newevmblockcontext-refactor -> origin/newevmblockcontext-refactor -2025-07-23T19:29:08.5022580Z * [new branch] nit-network-upgrades -> origin/nit-network-upgrades -2025-07-23T19:29:08.5024731Z * [new branch] opentelemetry -> origin/opentelemetry -2025-07-23T19:29:08.5026846Z * [new branch] p2p-error -> origin/p2p-error -2025-07-23T19:29:08.5029052Z * [new branch] p2p-sampling -> origin/p2p-sampling -2025-07-23T19:29:08.5031216Z * [new branch] p2p-sender-ref -> origin/p2p-sender-ref -2025-07-23T19:29:08.5033452Z * [new branch] parallel-copy-based-prefetcher -> origin/parallel-copy-based-prefetcher -2025-07-23T19:29:08.5035758Z * [new branch] parallel-copy-based-prefetcher-no-abort -> origin/parallel-copy-based-prefetcher-no-abort -2025-07-23T19:29:08.5037506Z * [new branch] params-extra-refactor-0 -> origin/params-extra-refactor-0 -2025-07-23T19:29:08.5039632Z * [new branch] params-separation-attempt -> origin/params-separation-attempt -2025-07-23T19:29:08.5041473Z * [new branch] prefetch-state -> origin/prefetch-state -2025-07-23T19:29:08.5043748Z * [new branch] prefetch-tries-conservative -> origin/prefetch-tries-conservative -2025-07-23T19:29:08.5046204Z * [new branch] prefetch-tries-more-aggr -> origin/prefetch-tries-more-aggr -2025-07-23T19:29:08.5048593Z * [new branch] prestate-lookup-account-storage-update -> origin/prestate-lookup-account-storage-update -2025-07-23T19:29:08.5050516Z * [new branch] push-gossip-feature-branch -> origin/push-gossip-feature-branch -2025-07-23T19:29:08.5052444Z * [new branch] push-gossip-feature-branch-foobar -> origin/push-gossip-feature-branch-foobar -2025-07-23T19:29:08.5055976Z * [new branch] qdm12/acp176/min-target-per-second-var -> origin/qdm12/acp176/min-target-per-second-var -2025-07-23T19:29:08.5057689Z * [new branch] qdm12/blockchain-upstream -> origin/qdm12/blockchain-upstream -2025-07-23T19:29:08.5059331Z * [new branch] qdm12/miner-upstream -> origin/qdm12/miner-upstream -2025-07-23T19:29:08.5062613Z * [new branch] qdm12/params/add-missing-checkprecompilescompatible -> origin/qdm12/params/add-missing-checkprecompilescompatible -2025-07-23T19:29:08.5064191Z * [new branch] qdm12/upstream-params -> origin/qdm12/upstream-params -2025-07-23T19:29:08.5066841Z * [new branch] race-tests-ci-master -> origin/race-tests-ci-master -2025-07-23T19:29:08.5069031Z * [new branch] rebase-v1.12.0 -> origin/rebase-v1.12.0 -2025-07-23T19:29:08.5071392Z * [new branch] reduce-coreth-state-usage -> origin/reduce-coreth-state-usage -2025-07-23T19:29:08.5073627Z * [new branch] refactor-ap1-checks -> origin/refactor-ap1-checks -2025-07-23T19:29:08.5076413Z * [new branch] refactor-block-verification -> origin/refactor-block-verification -2025-07-23T19:29:08.5078538Z * [new branch] refactor-gas -> origin/refactor-gas -2025-07-23T19:29:08.5080814Z * [new branch] refactor-proposer-vm -> origin/refactor-proposer-vm -2025-07-23T19:29:08.5083035Z * [new branch] refactor-statedb -> origin/refactor-statedb -2025-07-23T19:29:08.5085576Z * [new branch] refactor-vm-conflicts -> origin/refactor-vm-conflicts -2025-07-23T19:29:08.5087955Z * [new branch] register-p256v-precompile -> origin/register-p256v-precompile -2025-07-23T19:29:08.5090254Z * [new branch] remove-async-accept -> origin/remove-async-accept -2025-07-23T19:29:08.5092515Z * [new branch] remove-atomic -> origin/remove-atomic -2025-07-23T19:29:08.5095034Z * [new branch] remove-cb58 -> origin/remove-cb58 -2025-07-23T19:29:08.5097405Z * [new branch] remove-db-manager -> origin/remove-db-manager -2025-07-23T19:29:08.5099787Z * [new branch] remove-fork-compat-check -> origin/remove-fork-compat-check -2025-07-23T19:29:08.5102064Z * [new branch] remove-gasSelfdestructAP1 -> origin/remove-gasSelfdestructAP1 -2025-07-23T19:29:08.5104384Z * [new branch] remove-old-rules -> origin/remove-old-rules -2025-07-23T19:29:08.5107042Z * [new branch] remove-semaphore -> origin/remove-semaphore -2025-07-23T19:29:08.5109502Z * [new branch] remove-set-preference-warn-log -> origin/remove-set-preference-warn-log -2025-07-23T19:29:08.5112441Z * [new branch] remove-unused-interface-definition -> origin/remove-unused-interface-definition -2025-07-23T19:29:08.5114424Z * [new branch] rename-chains -> origin/rename-chains -2025-07-23T19:29:08.5116728Z * [new branch] rename-choices -> origin/rename-choices -2025-07-23T19:29:08.5118812Z * [new branch] rename-constants -> origin/rename-constants -2025-07-23T19:29:08.5122102Z * [new branch] repair-atomic-trie-root-height-map-measure-synchronous -> origin/repair-atomic-trie-root-height-map-measure-synchronous -2025-07-23T19:29:08.5123576Z * [new branch] repro-522 -> origin/repro-522 -2025-07-23T19:29:08.5126186Z * [new branch] repro-bloom -> origin/repro-bloom -2025-07-23T19:29:08.5128594Z * [new branch] reprocess-atomics -> origin/reprocess-atomics -2025-07-23T19:29:08.5130948Z * [new branch] reprocess-block-refactor-callexpert -> origin/reprocess-block-refactor-callexpert -2025-07-23T19:29:08.5132913Z * [new branch] reprocess-blocks -> origin/reprocess-blocks -2025-07-23T19:29:08.5135660Z * [new branch] reprocess-blocks-ap1-committed-gas -> origin/reprocess-blocks-ap1-committed-gas -2025-07-23T19:29:08.5137743Z * [new branch] reprocess-blocks-refactor-gas -> origin/reprocess-blocks-refactor-gas -2025-07-23T19:29:08.5139885Z * [new branch] reprocess-blocks-use-libevm -> origin/reprocess-blocks-use-libevm -2025-07-23T19:29:08.5142169Z * [new branch] reprocess-blocks-use-libevm-trace -> origin/reprocess-blocks-use-libevm-trace -2025-07-23T19:29:08.5144364Z * [new branch] reprocess-checkroots -> origin/reprocess-checkroots -2025-07-23T19:29:08.5146724Z * [new branch] return-vm-type -> origin/return-vm-type -2025-07-23T19:29:08.5149118Z * [new branch] rewrite-test-retry-logic -> origin/rewrite-test-retry-logic -2025-07-23T19:29:08.5152269Z * [new branch] rkuris/firewood-bootstrap-suggestions -> origin/rkuris/firewood-bootstrap-suggestions -2025-07-23T19:29:08.5154584Z * [new branch] sae-poc -> origin/sae-poc -2025-07-23T19:29:08.5157164Z * [new branch] script-reprocess -> origin/script-reprocess -2025-07-23T19:29:08.5159577Z * [new branch] script-reprocess-x -> origin/script-reprocess-x -2025-07-23T19:29:08.5161827Z * [new branch] script-reprocess-y -> origin/script-reprocess-y -2025-07-23T19:29:08.5164441Z * [new branch] sdk-push-gossip-interfaces -> origin/sdk-push-gossip-interfaces -2025-07-23T19:29:08.5166977Z * [new branch] seperate-atomic-pkg-base -> origin/seperate-atomic-pkg-base -2025-07-23T19:29:08.5169328Z * [new branch] simulations -> origin/simulations -2025-07-23T19:29:08.5171793Z * [new branch] snapserve-frequent-commits -> origin/snapserve-frequent-commits -2025-07-23T19:29:08.5174496Z * [new branch] snyk-fix-2b08d3d44bb91dc52bab15989aa0a542 -> origin/snyk-fix-2b08d3d44bb91dc52bab15989aa0a542 -2025-07-23T19:29:08.5176816Z * [new branch] subnet-evm-000 -> origin/subnet-evm-000 -2025-07-23T19:29:08.5179328Z * [new branch] subscribeToEvents -> origin/subscribeToEvents -2025-07-23T19:29:08.5181841Z * [new branch] support-multiple-code-hashes -> origin/support-multiple-code-hashes -2025-07-23T19:29:08.5184387Z * [new branch] sync-enabled-updateFrequency -> origin/sync-enabled-updateFrequency -2025-07-23T19:29:08.5186863Z * [new branch] sync-hacks -> origin/sync-hacks -2025-07-23T19:29:08.5189347Z * [new branch] sync-subnet-evm-branch -> origin/sync-subnet-evm-branch -2025-07-23T19:29:08.5191802Z * [new branch] sync-subnet-evm-ccff8037 -> origin/sync-subnet-evm-ccff8037 -2025-07-23T19:29:08.5194290Z * [new branch] test-atomic-syncer -> origin/test-atomic-syncer -2025-07-23T19:29:08.5196949Z * [new branch] test-atomic-syncer-with-cmd -> origin/test-atomic-syncer-with-cmd -2025-07-23T19:29:08.5199279Z * [new branch] test-avago -> origin/test-avago -2025-07-23T19:29:08.5201672Z * [new branch] test-cleanup -> origin/test-cleanup -2025-07-23T19:29:08.5204510Z * [new branch] toEngine -> origin/toEngine -2025-07-23T19:29:08.5207086Z * [new branch] trie-benchmarks -> origin/trie-benchmarks -2025-07-23T19:29:08.5209540Z * [new branch] trie-prefetcher-alt -> origin/trie-prefetcher-alt -2025-07-23T19:29:08.5212501Z * [new branch] tsachi/acp118-nodeid -> origin/tsachi/acp118-nodeid -2025-07-23T19:29:08.5214879Z * [new branch] tsachi/gossip-mempool -> origin/tsachi/gossip-mempool -2025-07-23T19:29:08.5217267Z * [new branch] tx-lookup-skip -> origin/tx-lookup-skip -2025-07-23T19:29:08.5219789Z * [new branch] unexport-visitor -> origin/unexport-visitor -2025-07-23T19:29:08.5222218Z * [new branch] update-avago -> origin/update-avago -2025-07-23T19:29:08.5224857Z * [new branch] update-avago-telepoter -> origin/update-avago-telepoter -2025-07-23T19:29:08.5227205Z * [new branch] update-comment -> origin/update-comment -2025-07-23T19:29:08.5229743Z * [new branch] updated-version -> origin/updated-version -2025-07-23T19:29:08.5232193Z * [new branch] upgrade2 -> origin/upgrade2 -2025-07-23T19:29:08.5234867Z * [new branch] use-libevm-extra -> origin/use-libevm-extra -2025-07-23T19:29:08.5237329Z * [new branch] use-libevm-snapshot-blockhashes -> origin/use-libevm-snapshot-blockhashes -2025-07-23T19:29:08.5239904Z * [new branch] use-libevm-statedb-backends-optional-params -> origin/use-libevm-statedb-backends-optional-params -2025-07-23T19:29:08.5242158Z * [new branch] use-libevm-statedb-statedb -> origin/use-libevm-statedb-statedb -2025-07-23T19:29:08.5244889Z * [new branch] use-libevm-statedb-statedb-blockchain -> origin/use-libevm-statedb-statedb-blockchain -2025-07-23T19:29:08.5247350Z * [new branch] use-upstream-log -> origin/use-upstream-log -2025-07-23T19:29:08.5249801Z * [new branch] v0.11.7-release-notes -> origin/v0.11.7-release-notes -2025-07-23T19:29:08.5252393Z * [new branch] validator-gossiper -> origin/validator-gossiper -2025-07-23T19:29:08.5255014Z * [new branch] vm-integration-fixture -> origin/vm-integration-fixture -2025-07-23T19:29:08.5257557Z * [new branch] warp-test-test -> origin/warp-test-test -2025-07-23T19:29:08.5259982Z * [new branch] wip-branch -> origin/wip-branch -2025-07-23T19:29:08.5262484Z * [new branch] xxx-bench-storagetrie -> origin/xxx-bench-storagetrie -2025-07-23T19:29:08.5265031Z * [new branch] xxx-bench-storagetrie-2 -> origin/xxx-bench-storagetrie-2 -2025-07-23T19:29:08.5267977Z * [new branch] yacovm/subscriptions -> origin/yacovm/subscriptions -2025-07-23T19:29:08.5269691Z * [new tag] app-error-0.12.9 -> app-error-0.12.9 -2025-07-23T19:29:08.5271475Z * [new tag] remove-crosschain-coreth -> remove-crosschain-coreth -2025-07-23T19:29:08.5272731Z * [new tag] update-id -> update-id -2025-07-23T19:29:08.5274222Z * [new tag] v0.1.0 -> v0.1.0 -2025-07-23T19:29:08.5275477Z * [new tag] v0.10.0 -> v0.10.0 -2025-07-23T19:29:08.5276821Z * [new tag] v0.10.0-rc.0 -> v0.10.0-rc.0 -2025-07-23T19:29:08.5278354Z * [new tag] v0.10.0-rc.1 -> v0.10.0-rc.1 -2025-07-23T19:29:08.5279632Z * [new tag] v0.10.0-rc.2 -> v0.10.0-rc.2 -2025-07-23T19:29:08.5280945Z * [new tag] v0.10.1 -> v0.10.1 -2025-07-23T19:29:08.5282305Z * [new tag] v0.10.1-patch -> v0.10.1-patch -2025-07-23T19:29:08.5283708Z * [new tag] v0.10.1-rc.0 -> v0.10.1-rc.0 -2025-07-23T19:29:08.5285326Z * [new tag] v0.10.1-rc.0-patch -> v0.10.1-rc.0-patch -2025-07-23T19:29:08.5287015Z * [new tag] v0.11.0 -> v0.11.0 -2025-07-23T19:29:08.5288220Z * [new tag] v0.11.0-rc.0 -> v0.11.0-rc.0 -2025-07-23T19:29:08.5289608Z * [new tag] v0.11.0-rc.0-patch -> v0.11.0-rc.0-patch -2025-07-23T19:29:08.5290968Z * [new tag] v0.11.0-rc.1 -> v0.11.0-rc.1 -2025-07-23T19:29:08.5292387Z * [new tag] v0.11.0-rc.2 -> v0.11.0-rc.2 -2025-07-23T19:29:08.5293727Z * [new tag] v0.11.0-rc.3 -> v0.11.0-rc.3 -2025-07-23T19:29:08.5295728Z * [new tag] v0.11.0-rc.4 -> v0.11.0-rc.4 -2025-07-23T19:29:08.5296967Z * [new tag] v0.11.0-rc.4-patch -> v0.11.0-rc.4-patch -2025-07-23T19:29:08.5298270Z * [new tag] v0.11.1 -> v0.11.1 -2025-07-23T19:29:08.5299636Z * [new tag] v0.11.1-rc.0 -> v0.11.1-rc.0 -2025-07-23T19:29:08.5301019Z * [new tag] v0.11.1-rc.1 -> v0.11.1-rc.1 -2025-07-23T19:29:08.5302406Z * [new tag] v0.11.1-rc.2 -> v0.11.1-rc.2 -2025-07-23T19:29:08.5304064Z * [new tag] v0.11.1-rc.3 -> v0.11.1-rc.3 -2025-07-23T19:29:08.5305482Z * [new tag] v0.11.1-rc.4 -> v0.11.1-rc.4 -2025-07-23T19:29:08.5306685Z * [new tag] v0.11.1-rc.5 -> v0.11.1-rc.5 -2025-07-23T19:29:08.5307939Z * [new tag] v0.11.1-rc.6 -> v0.11.1-rc.6 -2025-07-23T19:29:08.5309475Z * [new tag] v0.11.1-rc.7 -> v0.11.1-rc.7 -2025-07-23T19:29:08.5310774Z * [new tag] v0.11.2 -> v0.11.2 -2025-07-23T19:29:08.5312021Z * [new tag] v0.11.2-rc.0 -> v0.11.2-rc.0 -2025-07-23T19:29:08.5313795Z * [new tag] v0.11.3 -> v0.11.3 -2025-07-23T19:29:08.5315184Z * [new tag] v0.11.3-rc.0 -> v0.11.3-rc.0 -2025-07-23T19:29:08.5316395Z * [new tag] v0.11.3-rc.1 -> v0.11.3-rc.1 -2025-07-23T19:29:08.5318045Z * [new tag] v0.11.4 -> v0.11.4 -2025-07-23T19:29:08.5319300Z * [new tag] v0.11.4-rc.0 -> v0.11.4-rc.0 -2025-07-23T19:29:08.5320817Z * [new tag] v0.11.5 -> v0.11.5 -2025-07-23T19:29:08.5321930Z * [new tag] v0.11.5-rc.0 -> v0.11.5-rc.0 -2025-07-23T19:29:08.5323656Z * [new tag] v0.11.6 -> v0.11.6 -2025-07-23T19:29:08.5324889Z * [new tag] v0.11.6-rc.0 -> v0.11.6-rc.0 -2025-07-23T19:29:08.5326628Z * [new tag] v0.11.7 -> v0.11.7 -2025-07-23T19:29:08.5328045Z * [new tag] v0.11.7-rc.0 -> v0.11.7-rc.0 -2025-07-23T19:29:08.5329607Z * [new tag] v0.11.7-rc.1 -> v0.11.7-rc.1 -2025-07-23T19:29:08.5330943Z * [new tag] v0.11.7-rc.2 -> v0.11.7-rc.2 -2025-07-23T19:29:08.5332149Z * [new tag] v0.11.7-rc.3 -> v0.11.7-rc.3 -2025-07-23T19:29:08.5333749Z * [new tag] v0.11.8 -> v0.11.8 -2025-07-23T19:29:08.5335281Z * [new tag] v0.11.8-rc.0 -> v0.11.8-rc.0 -2025-07-23T19:29:08.5336934Z * [new tag] v0.11.8-rc.1 -> v0.11.8-rc.1 -2025-07-23T19:29:08.5338208Z * [new tag] v0.11.8-rc.2 -> v0.11.8-rc.2 -2025-07-23T19:29:08.5339818Z * [new tag] v0.11.8-rc.3 -> v0.11.8-rc.3 -2025-07-23T19:29:08.5341144Z * [new tag] v0.11.9 -> v0.11.9 -2025-07-23T19:29:08.5342350Z * [new tag] v0.11.9-rc.0 -> v0.11.9-rc.0 -2025-07-23T19:29:08.5344139Z * [new tag] v0.12.0 -> v0.12.0 -2025-07-23T19:29:08.5345505Z * [new tag] v0.12.0-rc.0 -> v0.12.0-rc.0 -2025-07-23T19:29:08.5346906Z * [new tag] v0.12.0-rc.1 -> v0.12.0-rc.1 -2025-07-23T19:29:08.5348552Z * [new tag] v0.12.0-rc.2 -> v0.12.0-rc.2 -2025-07-23T19:29:08.5349810Z * [new tag] v0.12.1 -> v0.12.1 -2025-07-23T19:29:08.5351120Z * [new tag] v0.12.1-rc.0 -> v0.12.1-rc.0 -2025-07-23T19:29:08.5352814Z * [new tag] v0.12.10 -> v0.12.10 -2025-07-23T19:29:08.5354257Z * [new tag] v0.12.10-rc.0 -> v0.12.10-rc.0 -2025-07-23T19:29:08.5355982Z * [new tag] v0.12.10-rc.1 -> v0.12.10-rc.1 -2025-07-23T19:29:08.5357176Z * [new tag] v0.12.10-rc.2 -> v0.12.10-rc.2 -2025-07-23T19:29:08.5358930Z * [new tag] v0.12.10-rc.3 -> v0.12.10-rc.3 -2025-07-23T19:29:08.5360235Z * [new tag] v0.12.10-rc.4 -> v0.12.10-rc.4 -2025-07-23T19:29:08.5361423Z * [new tag] v0.12.10-rc.5 -> v0.12.10-rc.5 -2025-07-23T19:29:08.5363466Z * [new tag] v0.12.10-wip-bloom-metrics -> v0.12.10-wip-bloom-metrics -2025-07-23T19:29:08.5364761Z * [new tag] v0.12.11-rc.0 -> v0.12.11-rc.0 -2025-07-23T19:29:08.5366534Z * [new tag] v0.12.11-rc.1 -> v0.12.11-rc.1 -2025-07-23T19:29:08.5367875Z * [new tag] v0.12.11-rc.2 -> v0.12.11-rc.2 -2025-07-23T19:29:08.5369543Z * [new tag] v0.12.11-rc.3 -> v0.12.11-rc.3 -2025-07-23T19:29:08.5370845Z * [new tag] v0.12.2 -> v0.12.2 -2025-07-23T19:29:08.5372513Z * [new tag] v0.12.2-rc.0 -> v0.12.2-rc.0 -2025-07-23T19:29:08.5373795Z * [new tag] v0.12.3 -> v0.12.3 -2025-07-23T19:29:08.5375809Z * [new tag] v0.12.3-rc.0 -> v0.12.3-rc.0 -2025-07-23T19:29:08.5376931Z * [new tag] v0.12.3-rc.1 -> v0.12.3-rc.1 -2025-07-23T19:29:08.5378456Z * [new tag] v0.12.4 -> v0.12.4 -2025-07-23T19:29:08.5380097Z * [new tag] v0.12.4-rc.0 -> v0.12.4-rc.0 -2025-07-23T19:29:08.5381452Z * [new tag] v0.12.4-rc.1 -> v0.12.4-rc.1 -2025-07-23T19:29:08.5383135Z * [new tag] v0.12.4-rc.2 -> v0.12.4-rc.2 -2025-07-23T19:29:08.5384635Z * [new tag] v0.12.4-rc.3 -> v0.12.4-rc.3 -2025-07-23T19:29:08.5385890Z * [new tag] v0.12.4-rc.4 -> v0.12.4-rc.4 -2025-07-23T19:29:08.5387573Z * [new tag] v0.12.5 -> v0.12.5 -2025-07-23T19:29:08.5388929Z * [new tag] v0.12.5-rc.0 -> v0.12.5-rc.0 -2025-07-23T19:29:08.5390482Z * [new tag] v0.12.5-rc.1 -> v0.12.5-rc.1 -2025-07-23T19:29:08.5392018Z * [new tag] v0.12.5-rc.2 -> v0.12.5-rc.2 -2025-07-23T19:29:08.5393378Z * [new tag] v0.12.5-rc.3 -> v0.12.5-rc.3 -2025-07-23T19:29:08.5395205Z * [new tag] v0.12.5-rc.4 -> v0.12.5-rc.4 -2025-07-23T19:29:08.5396507Z * [new tag] v0.12.5-rc.5 -> v0.12.5-rc.5 -2025-07-23T19:29:08.5398151Z * [new tag] v0.12.5-rc.6 -> v0.12.5-rc.6 -2025-07-23T19:29:08.5399504Z * [new tag] v0.12.6 -> v0.12.6 -2025-07-23T19:29:08.5401125Z * [new tag] v0.12.6-rc.0 -> v0.12.6-rc.0 -2025-07-23T19:29:08.5402279Z * [new tag] v0.12.6-rc.1 -> v0.12.6-rc.1 -2025-07-23T19:29:08.5404033Z * [new tag] v0.12.6-rc.2 -> v0.12.6-rc.2 -2025-07-23T19:29:08.5405733Z * [new tag] v0.12.7 -> v0.12.7 -2025-07-23T19:29:08.5407127Z * [new tag] v0.12.7-rc.0 -> v0.12.7-rc.0 -2025-07-23T19:29:08.5408725Z * [new tag] v0.12.7-rc.1 -> v0.12.7-rc.1 -2025-07-23T19:29:08.5410260Z * [new tag] v0.12.8-rc.0 -> v0.12.8-rc.0 -2025-07-23T19:29:08.5411679Z * [new tag] v0.12.8-rc.1 -> v0.12.8-rc.1 -2025-07-23T19:29:08.5413324Z * [new tag] v0.12.9-rc.0 -> v0.12.9-rc.0 -2025-07-23T19:29:08.5414611Z * [new tag] v0.12.9-rc.1 -> v0.12.9-rc.1 -2025-07-23T19:29:08.5416007Z * [new tag] v0.12.9-rc.2 -> v0.12.9-rc.2 -2025-07-23T19:29:08.5417878Z * [new tag] v0.12.9-rc.3 -> v0.12.9-rc.3 -2025-07-23T19:29:08.5419224Z * [new tag] v0.12.9-rc.4 -> v0.12.9-rc.4 -2025-07-23T19:29:08.5420875Z * [new tag] v0.12.9-rc.5 -> v0.12.9-rc.5 -2025-07-23T19:29:08.5422552Z * [new tag] v0.12.9-rc.6 -> v0.12.9-rc.6 -2025-07-23T19:29:08.5424082Z * [new tag] v0.12.9-rc.7 -> v0.12.9-rc.7 -2025-07-23T19:29:08.5425823Z * [new tag] v0.12.9-rc.8 -> v0.12.9-rc.8 -2025-07-23T19:29:08.5427121Z * [new tag] v0.12.9-rc.9 -> v0.12.9-rc.9 -2025-07-23T19:29:08.5428862Z * [new tag] v0.13.0-rc.0 -> v0.13.0-rc.0 -2025-07-23T19:29:08.5430270Z * [new tag] v0.13.1 -> v0.13.1 -2025-07-23T19:29:08.5431922Z * [new tag] v0.13.1-rc.0 -> v0.13.1-rc.0 -2025-07-23T19:29:08.5433339Z * [new tag] v0.13.1-rc.1 -> v0.13.1-rc.1 -2025-07-23T19:29:08.5434960Z * [new tag] v0.13.1-rc.2 -> v0.13.1-rc.2 -2025-07-23T19:29:08.5436591Z * [new tag] v0.13.1-rc.3 -> v0.13.1-rc.3 -2025-07-23T19:29:08.5437942Z * [new tag] v0.13.1-rc.4 -> v0.13.1-rc.4 -2025-07-23T19:29:08.5439700Z * [new tag] v0.13.1-rc.5 -> v0.13.1-rc.5 -2025-07-23T19:29:08.5441288Z * [new tag] v0.13.2 -> v0.13.2 -2025-07-23T19:29:08.5442653Z * [new tag] v0.13.2-rc.0 -> v0.13.2-rc.0 -2025-07-23T19:29:08.5444290Z * [new tag] v0.13.2-rc.1 -> v0.13.2-rc.1 -2025-07-23T19:29:08.5445835Z * [new tag] v0.13.2-rc.2 -> v0.13.2-rc.2 -2025-07-23T19:29:08.5447657Z * [new tag] v0.13.2-stake-sampling -> v0.13.2-stake-sampling -2025-07-23T19:29:08.5449356Z * [new tag] v0.13.2-stake-sampling.2 -> v0.13.2-stake-sampling.2 -2025-07-23T19:29:08.5450761Z * [new tag] v0.13.3 -> v0.13.3 -2025-07-23T19:29:08.5452560Z * [new tag] v0.13.3-rc.0 -> v0.13.3-rc.0 -2025-07-23T19:29:08.5454333Z * [new tag] v0.13.3-rc.1 -> v0.13.3-rc.1 -2025-07-23T19:29:08.5456216Z * [new tag] v0.13.3-rc.2 -> v0.13.3-rc.2 -2025-07-23T19:29:08.5457911Z * [new tag] v0.13.4 -> v0.13.4 -2025-07-23T19:29:08.5459542Z * [new tag] v0.13.4-connect-self -> v0.13.4-connect-self -2025-07-23T19:29:08.5461240Z * [new tag] v0.13.4-geth-1.13.8 -> v0.13.4-geth-1.13.8 -2025-07-23T19:29:08.5462925Z * [new tag] v0.13.4-rc.0 -> v0.13.4-rc.0 -2025-07-23T19:29:08.5464722Z * [new tag] v0.13.5 -> v0.13.5 -2025-07-23T19:29:08.5466420Z * [new tag] v0.13.5-rc.0 -> v0.13.5-rc.0 -2025-07-23T19:29:08.5468142Z * [new tag] v0.13.5-remove-optional-gatherer -> v0.13.5-remove-optional-gatherer -2025-07-23T19:29:08.5469650Z * [new tag] v0.13.5-remove-optional-gatherer.2 -> v0.13.5-remove-optional-gatherer.2 -2025-07-23T19:29:08.5471184Z * [new tag] v0.13.6-rc.0 -> v0.13.6-rc.0 -2025-07-23T19:29:08.5472969Z * [new tag] v0.13.6-rc.1 -> v0.13.6-rc.1 -2025-07-23T19:29:08.5474841Z * [new tag] v0.13.6-remove-status -> v0.13.6-remove-status -2025-07-23T19:29:08.5476490Z * [new tag] v0.13.7 -> v0.13.7 -2025-07-23T19:29:08.5478201Z * [new tag] v0.13.7-acp-118-handlers -> v0.13.7-acp-118-handlers -2025-07-23T19:29:08.5479550Z * [new tag] v0.13.7-fixed-genesis-upgrade -> v0.13.7-fixed-genesis-upgrade -2025-07-23T19:29:08.5481312Z * [new tag] v0.13.7-rc.0 -> v0.13.7-rc.0 -2025-07-23T19:29:08.5482870Z * [new tag] v0.13.7-remove-status -> v0.13.7-remove-status -2025-07-23T19:29:08.5484783Z * [new tag] v0.13.8 -> v0.13.8 -2025-07-23T19:29:08.5486559Z * [new tag] v0.13.8-fix-genesis-upgrade -> v0.13.8-fix-genesis-upgrade -2025-07-23T19:29:08.5487989Z * [new tag] v0.13.8-fixed-genesis-upgrade -> v0.13.8-fixed-genesis-upgrade -2025-07-23T19:29:08.5489725Z * [new tag] v0.13.9-rc.0 -> v0.13.9-rc.0 -2025-07-23T19:29:08.5491122Z * [new tag] v0.13.9-rc.1 -> v0.13.9-rc.1 -2025-07-23T19:29:08.5493107Z * [new tag] v0.13.9-rc.2-encapsulate-signer -> v0.13.9-rc.2-encapsulate-signer -2025-07-23T19:29:08.5494850Z * [new tag] v0.13.9-rc.3-acp118-nodeid -> v0.13.9-rc.3-acp118-nodeid -2025-07-23T19:29:08.5496610Z * [new tag] v0.13.9-rc.3-acp118-nodeid2 -> v0.13.9-rc.3-acp118-nodeid2 -2025-07-23T19:29:08.5497997Z * [new tag] v0.13.9-rc.3-acp118-nodeid3 -> v0.13.9-rc.3-acp118-nodeid3 -2025-07-23T19:29:08.5500061Z * [new tag] v0.14.0 -> v0.14.0 -2025-07-23T19:29:08.5501733Z * [new tag] v0.14.1-acp-176.0 -> v0.14.1-acp-176.0 -2025-07-23T19:29:08.5503399Z * [new tag] v0.14.1-acp-176.1 -> v0.14.1-acp-176.1 -2025-07-23T19:29:08.5505503Z * [new tag] v0.14.1-libevm.rc.1 -> v0.14.1-libevm.rc.1 -2025-07-23T19:29:08.5507238Z * [new tag] v0.14.1-libevm.rc.2 -> v0.14.1-libevm.rc.2 -2025-07-23T19:29:08.5508909Z * [new tag] v0.14.1-rc.0 -> v0.14.1-rc.0 -2025-07-23T19:29:08.5510581Z * [new tag] v0.14.1-rc.1 -> v0.14.1-rc.1 -2025-07-23T19:29:08.5512265Z * [new tag] v0.14.1-rc.2 -> v0.14.1-rc.2 -2025-07-23T19:29:08.5514112Z * [new tag] v0.14.1-rc.3 -> v0.14.1-rc.3 -2025-07-23T19:29:08.5516257Z * [new tag] v0.14.1-rename-fortuna.0 -> v0.14.1-rename-fortuna.0 -2025-07-23T19:29:08.5517717Z * [new tag] v0.14.1-update-fee-api.0 -> v0.14.1-update-fee-api.0 -2025-07-23T19:29:08.5519573Z * [new tag] v0.14.2-verify-interface -> v0.14.2-verify-interface -2025-07-23T19:29:08.5521355Z * [new tag] v0.14.2-verify-interface2 -> v0.14.2-verify-interface2 -2025-07-23T19:29:08.5523094Z * [new tag] v0.14.2-verify-interface3 -> v0.14.2-verify-interface3 -2025-07-23T19:29:08.5524981Z * [new tag] v0.14.2-verify-interface4 -> v0.14.2-verify-interface4 -2025-07-23T19:29:08.5526796Z * [new tag] v0.14.2-verify-interface5 -> v0.14.2-verify-interface5 -2025-07-23T19:29:08.5528258Z * [new tag] v0.14.2-verify-interface6 -> v0.14.2-verify-interface6 -2025-07-23T19:29:08.5530013Z * [new tag] v0.15.0 -> v0.15.0 -2025-07-23T19:29:08.5531758Z * [new tag] v0.15.0-rc.0 -> v0.15.0-rc.0 -2025-07-23T19:29:08.5533152Z * [new tag] v0.15.0-rc.1 -> v0.15.0-rc.1 -2025-07-23T19:29:08.5535199Z * [new tag] v0.15.1 -> v0.15.1 -2025-07-23T19:29:08.5537025Z * [new tag] v0.15.1-rc.0 -> v0.15.1-rc.0 -2025-07-23T19:29:08.5538591Z * [new tag] v0.15.1-rc.1 -> v0.15.1-rc.1 -2025-07-23T19:29:08.5540442Z * [new tag] v0.15.2 -> v0.15.2 -2025-07-23T19:29:08.5542218Z * [new tag] v0.15.2-rc.0 -> v0.15.2-rc.0 -2025-07-23T19:29:08.5544119Z * [new tag] v0.15.3-rc.0 -> v0.15.3-rc.0 -2025-07-23T19:29:08.5545920Z * [new tag] v0.15.3-rc.1 -> v0.15.3-rc.1 -2025-07-23T19:29:08.5547549Z * [new tag] v0.2.0 -> v0.2.0 -2025-07-23T19:29:08.5549206Z * [new tag] v0.2.1 -> v0.2.1 -2025-07-23T19:29:08.5550866Z * [new tag] v0.2.10 -> v0.2.10 -2025-07-23T19:29:08.5552424Z * [new tag] v0.2.11 -> v0.2.11 -2025-07-23T19:29:08.5554316Z * [new tag] v0.2.12 -> v0.2.12 -2025-07-23T19:29:08.5556771Z * [new tag] v0.2.12-rc.1 -> v0.2.12-rc.1 -2025-07-23T19:29:08.5558308Z * [new tag] v0.2.13 -> v0.2.13 -2025-07-23T19:29:08.5559807Z * [new tag] v0.2.14 -> v0.2.14 -2025-07-23T19:29:08.5561541Z * [new tag] v0.2.14-rc.1 -> v0.2.14-rc.1 -2025-07-23T19:29:08.5562907Z * [new tag] v0.2.15 -> v0.2.15 -2025-07-23T19:29:08.5564792Z * [new tag] v0.2.15-rc.1 -> v0.2.15-rc.1 -2025-07-23T19:29:08.5566138Z * [new tag] v0.2.15-rc.2 -> v0.2.15-rc.2 -2025-07-23T19:29:08.5568023Z * [new tag] v0.2.15-rc.3 -> v0.2.15-rc.3 -2025-07-23T19:29:08.5569307Z * [new tag] v0.2.15-rc.4 -> v0.2.15-rc.4 -2025-07-23T19:29:08.5570628Z * [new tag] v0.2.2 -> v0.2.2 -2025-07-23T19:29:08.5572334Z * [new tag] v0.2.3 -> v0.2.3 -2025-07-23T19:29:08.5573691Z * [new tag] v0.2.4 -> v0.2.4 -2025-07-23T19:29:08.5575734Z * [new tag] v0.2.5 -> v0.2.5 -2025-07-23T19:29:08.5577057Z * [new tag] v0.2.6 -> v0.2.6 -2025-07-23T19:29:08.5578589Z * [new tag] v0.2.7-rc.1 -> v0.2.7-rc.1 -2025-07-23T19:29:08.5580143Z * [new tag] v0.2.7-rc.2 -> v0.2.7-rc.2 -2025-07-23T19:29:08.5581611Z * [new tag] v0.2.7-rc.3 -> v0.2.7-rc.3 -2025-07-23T19:29:08.5583229Z * [new tag] v0.2.7-rc.4 -> v0.2.7-rc.4 -2025-07-23T19:29:08.5584808Z * [new tag] v0.2.8 -> v0.2.8 -2025-07-23T19:29:08.5586489Z * [new tag] v0.2.8-rc.1 -> v0.2.8-rc.1 -2025-07-23T19:29:08.5588054Z * [new tag] v0.2.8-rc.2 -> v0.2.8-rc.2 -2025-07-23T19:29:08.5589412Z * [new tag] v0.2.8-rc.3 -> v0.2.8-rc.3 -2025-07-23T19:29:08.5591139Z * [new tag] v0.2.8-rc.4 -> v0.2.8-rc.4 -2025-07-23T19:29:08.5592466Z * [new tag] v0.2.8-rc.5 -> v0.2.8-rc.5 -2025-07-23T19:29:08.5594286Z * [new tag] v0.2.8-rc.6 -> v0.2.8-rc.6 -2025-07-23T19:29:08.5596061Z * [new tag] v0.3.0-rc.1 -> v0.3.0-rc.1 -2025-07-23T19:29:08.5597592Z * [new tag] v0.3.0-rc.2 -> v0.3.0-rc.2 -2025-07-23T19:29:08.5599293Z * [new tag] v0.3.0-rc.3 -> v0.3.0-rc.3 -2025-07-23T19:29:08.5600492Z * [new tag] v0.3.0-rc.4 -> v0.3.0-rc.4 -2025-07-23T19:29:08.5602249Z * [new tag] v0.3.0-rc.5 -> v0.3.0-rc.5 -2025-07-23T19:29:08.5604028Z * [new tag] v0.3.0-rc.6 -> v0.3.0-rc.6 -2025-07-23T19:29:08.5605679Z * [new tag] v0.3.1 -> v0.3.1 -2025-07-23T19:29:08.5607300Z * [new tag] v0.3.1-rc.1 -> v0.3.1-rc.1 -2025-07-23T19:29:08.5608702Z * [new tag] v0.3.1-rc.2 -> v0.3.1-rc.2 -2025-07-23T19:29:08.5610442Z * [new tag] v0.3.10 -> v0.3.10 -2025-07-23T19:29:08.5611815Z * [new tag] v0.3.11 -> v0.3.11 -2025-07-23T19:29:08.5613375Z * [new tag] v0.3.11-update-id -> v0.3.11-update-id -2025-07-23T19:29:08.5614834Z * [new tag] v0.3.11-update-id-2 -> v0.3.11-update-id-2 -2025-07-23T19:29:08.5616714Z * [new tag] v0.3.11-update-id-3 -> v0.3.11-update-id-3 -2025-07-23T19:29:08.5618068Z * [new tag] v0.3.12 -> v0.3.12 -2025-07-23T19:29:08.5619888Z * [new tag] v0.3.12-id-update -> v0.3.12-id-update -2025-07-23T19:29:08.5621262Z * [new tag] v0.3.13 -> v0.3.13 -2025-07-23T19:29:08.5623048Z * [new tag] v0.3.14 -> v0.3.14 -2025-07-23T19:29:08.5624879Z * [new tag] v0.3.15 -> v0.3.15 -2025-07-23T19:29:08.5626566Z * [new tag] v0.3.15-rc.1 -> v0.3.15-rc.1 -2025-07-23T19:29:08.5628143Z * [new tag] v0.3.15-rc.2 -> v0.3.15-rc.2 -2025-07-23T19:29:08.5629924Z * [new tag] v0.3.16 -> v0.3.16 -2025-07-23T19:29:08.5631583Z * [new tag] v0.3.17 -> v0.3.17 -2025-07-23T19:29:08.5633217Z * [new tag] v0.3.17-rc.1 -> v0.3.17-rc.1 -2025-07-23T19:29:08.5634723Z * [new tag] v0.3.18 -> v0.3.18 -2025-07-23T19:29:08.5636628Z * [new tag] v0.3.18-rc.1 -> v0.3.18-rc.1 -2025-07-23T19:29:08.5638332Z * [new tag] v0.3.18-rc.2 -> v0.3.18-rc.2 -2025-07-23T19:29:08.5639950Z * [new tag] v0.3.19 -> v0.3.19 -2025-07-23T19:29:08.5641585Z * [new tag] v0.3.19-rc.1 -> v0.3.19-rc.1 -2025-07-23T19:29:08.5643348Z * [new tag] v0.3.2 -> v0.3.2 -2025-07-23T19:29:08.5645330Z * [new tag] v0.3.20 -> v0.3.20 -2025-07-23T19:29:08.5647193Z * [new tag] v0.3.20-rc.1 -> v0.3.20-rc.1 -2025-07-23T19:29:08.5669136Z * [new tag] v0.3.20-rc.2 -> v0.3.20-rc.2 -2025-07-23T19:29:08.5675167Z * [new tag] v0.3.20-rc.3 -> v0.3.20-rc.3 -2025-07-23T19:29:08.5675930Z * [new tag] v0.3.20-rc.4 -> v0.3.20-rc.4 -2025-07-23T19:29:08.5676591Z * [new tag] v0.3.21 -> v0.3.21 -2025-07-23T19:29:08.5677236Z * [new tag] v0.3.21-rc.1 -> v0.3.21-rc.1 -2025-07-23T19:29:08.5677911Z * [new tag] v0.3.22 -> v0.3.22 -2025-07-23T19:29:08.5678541Z * [new tag] v0.3.23 -> v0.3.23 -2025-07-23T19:29:08.5679162Z * [new tag] v0.3.24 -> v0.3.24 -2025-07-23T19:29:08.5679796Z * [new tag] v0.3.24-rc.1 -> v0.3.24-rc.1 -2025-07-23T19:29:08.5680454Z * [new tag] v0.3.25 -> v0.3.25 -2025-07-23T19:29:08.5681094Z * [new tag] v0.3.25-rc.1 -> v0.3.25-rc.1 -2025-07-23T19:29:08.5681767Z * [new tag] v0.3.26 -> v0.3.26 -2025-07-23T19:29:08.5682429Z * [new tag] v0.3.27 -> v0.3.27 -2025-07-23T19:29:08.5683090Z * [new tag] v0.3.27-rc.1 -> v0.3.27-rc.1 -2025-07-23T19:29:08.5683748Z * [new tag] v0.3.3-rc.1 -> v0.3.3-rc.1 -2025-07-23T19:29:08.5684587Z * [new tag] v0.3.3-rc.2 -> v0.3.3-rc.2 -2025-07-23T19:29:08.5685284Z * [new tag] v0.3.3-rc.3 -> v0.3.3-rc.3 -2025-07-23T19:29:08.5685980Z * [new tag] v0.3.3-rc.4 -> v0.3.3-rc.4 -2025-07-23T19:29:08.5686617Z * [new tag] v0.3.3-rc.5 -> v0.3.3-rc.5 -2025-07-23T19:29:08.5687249Z * [new tag] v0.3.3-rc.6 -> v0.3.3-rc.6 -2025-07-23T19:29:08.5687888Z * [new tag] v0.3.3-rc.7 -> v0.3.3-rc.7 -2025-07-23T19:29:08.5688513Z * [new tag] v0.3.4 -> v0.3.4 -2025-07-23T19:29:08.5689145Z * [new tag] v0.3.5 -> v0.3.5 -2025-07-23T19:29:08.5689774Z * [new tag] v0.3.5-rc.1 -> v0.3.5-rc.1 -2025-07-23T19:29:08.5690440Z * [new tag] v0.3.5-rc.2 -> v0.3.5-rc.2 -2025-07-23T19:29:08.5691733Z * [new tag] v0.3.5-rc.3 -> v0.3.5-rc.3 -2025-07-23T19:29:08.5693314Z * [new tag] v0.3.6 -> v0.3.6 -2025-07-23T19:29:08.5695711Z * [new tag] v0.3.7 -> v0.3.7 -2025-07-23T19:29:08.5697048Z * [new tag] v0.3.8 -> v0.3.8 -2025-07-23T19:29:08.5698610Z * [new tag] v0.3.9 -> v0.3.9 -2025-07-23T19:29:08.5700622Z * [new tag] v0.4.0 -> v0.4.0 -2025-07-23T19:29:08.5702220Z * [new tag] v0.4.0-rc.1 -> v0.4.0-rc.1 -2025-07-23T19:29:08.5704248Z * [new tag] v0.4.0-rc.2 -> v0.4.0-rc.2 -2025-07-23T19:29:08.5705959Z * [new tag] v0.4.0-rc.3 -> v0.4.0-rc.3 -2025-07-23T19:29:08.5707823Z * [new tag] v0.4.0-rc.4 -> v0.4.0-rc.4 -2025-07-23T19:29:08.5709350Z * [new tag] v0.4.0-rc.5 -> v0.4.0-rc.5 -2025-07-23T19:29:08.5711323Z * [new tag] v0.4.0-rc.6 -> v0.4.0-rc.6 -2025-07-23T19:29:08.5712915Z * [new tag] v0.4.0-rc.7 -> v0.4.0-rc.7 -2025-07-23T19:29:08.5715079Z * [new tag] v0.4.0-rc.8 -> v0.4.0-rc.8 -2025-07-23T19:29:08.5716580Z * [new tag] v0.4.1 -> v0.4.1 -2025-07-23T19:29:08.5718215Z * [new tag] v0.4.1-rc.1 -> v0.4.1-rc.1 -2025-07-23T19:29:08.5719976Z * [new tag] v0.4.2 -> v0.4.2 -2025-07-23T19:29:08.5722023Z * [new tag] v0.4.2-rc.1 -> v0.4.2-rc.1 -2025-07-23T19:29:08.5723573Z * [new tag] v0.4.2-rc.2 -> v0.4.2-rc.2 -2025-07-23T19:29:08.5725775Z * [new tag] v0.4.2-rc.3 -> v0.4.2-rc.3 -2025-07-23T19:29:08.5727241Z * [new tag] v0.4.2-rc.4 -> v0.4.2-rc.4 -2025-07-23T19:29:08.5729310Z * [new tag] v0.4.3-rc.1 -> v0.4.3-rc.1 -2025-07-23T19:29:08.5730825Z * [new tag] v0.4.3-rc.2 -> v0.4.3-rc.2 -2025-07-23T19:29:08.5732688Z * [new tag] v0.4.3-rc.3 -> v0.4.3-rc.3 -2025-07-23T19:29:08.5734445Z * [new tag] v0.4.3-rc.4 -> v0.4.3-rc.4 -2025-07-23T19:29:08.5736411Z * [new tag] v0.5.0 -> v0.5.0 -2025-07-23T19:29:08.5738338Z * [new tag] v0.5.0-rc.1 -> v0.5.0-rc.1 -2025-07-23T19:29:08.5739949Z * [new tag] v0.5.0-rc.2 -> v0.5.0-rc.2 -2025-07-23T19:29:08.5741838Z * [new tag] v0.5.1 -> v0.5.1 -2025-07-23T19:29:08.5743449Z * [new tag] v0.5.1-metervm -> v0.5.1-metervm -2025-07-23T19:29:08.5745255Z * [new tag] v0.5.1-metervm2 -> v0.5.1-metervm2 -2025-07-23T19:29:08.5747241Z * [new tag] v0.5.1-rc.1 -> v0.5.1-rc.1 -2025-07-23T19:29:08.5748519Z * [new tag] v0.5.1-rc.2 -> v0.5.1-rc.2 -2025-07-23T19:29:08.5750442Z * [new tag] v0.5.2 -> v0.5.2 -2025-07-23T19:29:08.5752065Z * [new tag] v0.5.2-pre-upgrade.1 -> v0.5.2-pre-upgrade.1 -2025-07-23T19:29:08.5753611Z * [new tag] v0.5.2-rc.1 -> v0.5.2-rc.1 -2025-07-23T19:29:08.5755898Z * [new tag] v0.5.2-rc.2 -> v0.5.2-rc.2 -2025-07-23T19:29:08.5757681Z * [new tag] v0.5.2-rc.3 -> v0.5.2-rc.3 -2025-07-23T19:29:08.5759230Z * [new tag] v0.5.2-rc.4 -> v0.5.2-rc.4 -2025-07-23T19:29:08.5761273Z * [new tag] v0.5.2-rc.5 -> v0.5.2-rc.5 -2025-07-23T19:29:08.5762795Z * [new tag] v0.5.3 -> v0.5.3 -2025-07-23T19:29:08.5764495Z * [new tag] v0.5.3-metervm3 -> v0.5.3-metervm3 -2025-07-23T19:29:08.5766377Z * [new tag] v0.5.3-metervm4 -> v0.5.3-metervm4 -2025-07-23T19:29:08.5768004Z * [new tag] v0.5.3-rc.1 -> v0.5.3-rc.1 -2025-07-23T19:29:08.5769671Z * [new tag] v0.5.3-rc.2 -> v0.5.3-rc.2 -2025-07-23T19:29:08.5771670Z * [new tag] v0.5.4 -> v0.5.4 -2025-07-23T19:29:08.5773500Z * [new tag] v0.5.4-rc.1 -> v0.5.4-rc.1 -2025-07-23T19:29:08.5775597Z * [new tag] v0.5.4-rc.10 -> v0.5.4-rc.10 -2025-07-23T19:29:08.5777384Z * [new tag] v0.5.4-rc.11 -> v0.5.4-rc.11 -2025-07-23T19:29:08.5779435Z * [new tag] v0.5.4-rc.12 -> v0.5.4-rc.12 -2025-07-23T19:29:08.5780786Z * [new tag] v0.5.4-rc.13 -> v0.5.4-rc.13 -2025-07-23T19:29:08.5782884Z * [new tag] v0.5.4-rc.2 -> v0.5.4-rc.2 -2025-07-23T19:29:08.5785009Z * [new tag] v0.5.4-rc.3 -> v0.5.4-rc.3 -2025-07-23T19:29:08.5786961Z * [new tag] v0.5.4-rc.4 -> v0.5.4-rc.4 -2025-07-23T19:29:08.5788860Z * [new tag] v0.5.4-rc.5 -> v0.5.4-rc.5 -2025-07-23T19:29:08.5790987Z * [new tag] v0.5.4-rc.6 -> v0.5.4-rc.6 -2025-07-23T19:29:08.5792795Z * [new tag] v0.5.4-rc.7 -> v0.5.4-rc.7 -2025-07-23T19:29:08.5794476Z * [new tag] v0.5.4-rc.8 -> v0.5.4-rc.8 -2025-07-23T19:29:08.5796815Z * [new tag] v0.5.4-rc.9 -> v0.5.4-rc.9 -2025-07-23T19:29:08.5798203Z * [new tag] v0.5.5 -> v0.5.5 -2025-07-23T19:29:08.5800137Z * [new tag] v0.5.5-rc.0 -> v0.5.5-rc.0 -2025-07-23T19:29:08.5801926Z * [new tag] v0.5.5-rc.1 -> v0.5.5-rc.1 -2025-07-23T19:29:08.5804076Z * [new tag] v0.5.6 -> v0.5.6 -2025-07-23T19:29:08.5805920Z * [new tag] v0.5.6-rc.0 -> v0.5.6-rc.0 -2025-07-23T19:29:08.5807715Z * [new tag] v0.5.6-rc.1 -> v0.5.6-rc.1 -2025-07-23T19:29:08.5809574Z * [new tag] v0.5.6-rc.2 -> v0.5.6-rc.2 -2025-07-23T19:29:08.5811553Z * [new tag] v0.5.6-rc.3 -> v0.5.6-rc.3 -2025-07-23T19:29:08.5813347Z * [new tag] v0.5.6-rc.4 -> v0.5.6-rc.4 -2025-07-23T19:29:08.5815162Z * [new tag] v0.5.6-rc.5 -> v0.5.6-rc.5 -2025-07-23T19:29:08.5816638Z * [new tag] v0.5.6-rc.6 -> v0.5.6-rc.6 -2025-07-23T19:29:08.5818744Z * [new tag] v0.5.7 -> v0.5.7 -2025-07-23T19:29:08.5820564Z * [new tag] v0.5.7-rc.0 -> v0.5.7-rc.0 -2025-07-23T19:29:08.5822483Z * [new tag] v0.5.7-rc.1 -> v0.5.7-rc.1 -2025-07-23T19:29:08.5824816Z * [new tag] v0.6.0 -> v0.6.0 -2025-07-23T19:29:08.5826916Z * [new tag] v0.6.0-rc.0 -> v0.6.0-rc.0 -2025-07-23T19:29:08.5828275Z * [new tag] v0.6.0-rc.1 -> v0.6.0-rc.1 -2025-07-23T19:29:08.5830321Z * [new tag] v0.6.1 -> v0.6.1 -2025-07-23T19:29:08.5832045Z * [new tag] v0.6.1-rc.0 -> v0.6.1-rc.0 -2025-07-23T19:29:08.5834176Z * [new tag] v0.6.1-rc.1 -> v0.6.1-rc.1 -2025-07-23T19:29:08.5836249Z * [new tag] v0.6.1-rc.2 -> v0.6.1-rc.2 -2025-07-23T19:29:08.5837623Z * [new tag] v0.6.1-rc.3 -> v0.6.1-rc.3 -2025-07-23T19:29:08.5839724Z * [new tag] v0.6.2 -> v0.6.2 -2025-07-23T19:29:08.5841034Z * [new tag] v0.6.2-rc.0 -> v0.6.2-rc.0 -2025-07-23T19:29:08.5843043Z * [new tag] v0.6.3 -> v0.6.3 -2025-07-23T19:29:08.5844758Z * [new tag] v0.6.3-rc.0 -> v0.6.3-rc.0 -2025-07-23T19:29:08.5846740Z * [new tag] v0.6.3-rc.1 -> v0.6.3-rc.1 -2025-07-23T19:29:08.5848560Z * [new tag] v0.6.4-rc.0 -> v0.6.4-rc.0 -2025-07-23T19:29:08.5850664Z * [new tag] v0.7.0 -> v0.7.0 -2025-07-23T19:29:08.5853063Z * [new tag] v0.7.0-rc.0 -> v0.7.0-rc.0 -2025-07-23T19:29:08.5854476Z * [new tag] v0.7.0-rc.1 -> v0.7.0-rc.1 -2025-07-23T19:29:08.5856644Z * [new tag] v0.7.0-rc.10 -> v0.7.0-rc.10 -2025-07-23T19:29:08.5858161Z * [new tag] v0.7.0-rc.11 -> v0.7.0-rc.11 -2025-07-23T19:29:08.5859949Z * [new tag] v0.7.0-rc.12 -> v0.7.0-rc.12 -2025-07-23T19:29:08.5861690Z * [new tag] v0.7.0-rc.13 -> v0.7.0-rc.13 -2025-07-23T19:29:08.5863215Z * [new tag] v0.7.0-rc.14 -> v0.7.0-rc.14 -2025-07-23T19:29:08.5864806Z * [new tag] v0.7.0-rc.2 -> v0.7.0-rc.2 -2025-07-23T19:29:08.5866606Z * [new tag] v0.7.0-rc.3 -> v0.7.0-rc.3 -2025-07-23T19:29:08.5868259Z * [new tag] v0.7.0-rc.4 -> v0.7.0-rc.4 -2025-07-23T19:29:08.5869907Z * [new tag] v0.7.0-rc.5 -> v0.7.0-rc.5 -2025-07-23T19:29:08.5871723Z * [new tag] v0.7.0-rc.6 -> v0.7.0-rc.6 -2025-07-23T19:29:08.5873153Z * [new tag] v0.7.0-rc.8 -> v0.7.0-rc.8 -2025-07-23T19:29:08.5875077Z * [new tag] v0.7.0-rc.9 -> v0.7.0-rc.9 -2025-07-23T19:29:08.5876698Z * [new tag] v0.7.1 -> v0.7.1 -2025-07-23T19:29:08.5878422Z * [new tag] v0.7.1-rc.0 -> v0.7.1-rc.0 -2025-07-23T19:29:08.5879877Z * [new tag] v0.7.1-rc.1 -> v0.7.1-rc.1 -2025-07-23T19:29:08.5881131Z * [new tag] v0.7.1-rc.2 -> v0.7.1-rc.2 -2025-07-23T19:29:08.5882950Z * [new tag] v0.7.2 -> v0.7.2 -2025-07-23T19:29:08.5884279Z * [new tag] v0.7.2-rc.0 -> v0.7.2-rc.0 -2025-07-23T19:29:08.5885717Z * [new tag] v0.7.2-rc.1 -> v0.7.2-rc.1 -2025-07-23T19:29:08.5887305Z * [new tag] v0.7.3-rc.0 -> v0.7.3-rc.0 -2025-07-23T19:29:08.5888672Z * [new tag] v0.7.3-rc.1 -> v0.7.3-rc.1 -2025-07-23T19:29:08.5890444Z * [new tag] v0.7.3-rc.2 -> v0.7.3-rc.2 -2025-07-23T19:29:08.5891727Z * [new tag] v0.7.3-rc.3 -> v0.7.3-rc.3 -2025-07-23T19:29:08.5893600Z * [new tag] v0.7.4 -> v0.7.4 -2025-07-23T19:29:08.5894865Z * [new tag] v0.7.4-rc.0 -> v0.7.4-rc.0 -2025-07-23T19:29:08.5896292Z * [new tag] v0.7.4-rc.1 -> v0.7.4-rc.1 -2025-07-23T19:29:08.5897966Z * [new tag] v0.7.5 -> v0.7.5 -2025-07-23T19:29:08.5899213Z * [new tag] v0.7.5-rc.0 -> v0.7.5-rc.0 -2025-07-23T19:29:08.5900942Z * [new tag] v0.7.5-rc.1 -> v0.7.5-rc.1 -2025-07-23T19:29:08.5902049Z * [new tag] v0.7.5-rc.2 -> v0.7.5-rc.2 -2025-07-23T19:29:08.5903732Z * [new tag] v0.8.0 -> v0.8.0 -2025-07-23T19:29:08.5905575Z * [new tag] v0.8.0-rc.0 -> v0.8.0-rc.0 -2025-07-23T19:29:08.5907313Z * [new tag] v0.8.0-rc.1 -> v0.8.0-rc.1 -2025-07-23T19:29:08.5908760Z * [new tag] v0.8.0-rc.2 -> v0.8.0-rc.2 -2025-07-23T19:29:08.5910178Z * [new tag] v0.8.0-rc.3 -> v0.8.0-rc.3 -2025-07-23T19:29:08.5911924Z * [new tag] v0.8.1-rc.0 -> v0.8.1-rc.0 -2025-07-23T19:29:08.5913543Z * [new tag] v0.8.1-rc.1 -> v0.8.1-rc.1 -2025-07-23T19:29:08.5915101Z * [new tag] v0.8.1-rc.2 -> v0.8.1-rc.2 -2025-07-23T19:29:08.5916856Z * [new tag] v0.8.10 -> v0.8.10 -2025-07-23T19:29:08.5918255Z * [new tag] v0.8.10-rc.0 -> v0.8.10-rc.0 -2025-07-23T19:29:08.5928228Z * [new tag] v0.8.10-rc.1 -> v0.8.10-rc.1 -2025-07-23T19:29:08.5929867Z * [new tag] v0.8.10-rc.2 -> v0.8.10-rc.2 -2025-07-23T19:29:08.5931376Z * [new tag] v0.8.10-rc.3 -> v0.8.10-rc.3 -2025-07-23T19:29:08.5932744Z * [new tag] v0.8.10-rc.4 -> v0.8.10-rc.4 -2025-07-23T19:29:08.5934404Z * [new tag] v0.8.10-rc.5 -> v0.8.10-rc.5 -2025-07-23T19:29:08.5936277Z * [new tag] v0.8.10-rc.6 -> v0.8.10-rc.6 -2025-07-23T19:29:08.5937395Z * [new tag] v0.8.10-rc.7 -> v0.8.10-rc.7 -2025-07-23T19:29:08.5939116Z * [new tag] v0.8.11 -> v0.8.11 -2025-07-23T19:29:08.5940960Z * [new tag] v0.8.11-rc.0 -> v0.8.11-rc.0 -2025-07-23T19:29:08.5941987Z * [new tag] v0.8.11-rc.1 -> v0.8.11-rc.1 -2025-07-23T19:29:08.5943624Z * [new tag] v0.8.11-rc.10 -> v0.8.11-rc.10 -2025-07-23T19:29:08.5945086Z * [new tag] v0.8.11-rc.11 -> v0.8.11-rc.11 -2025-07-23T19:29:08.5946896Z * [new tag] v0.8.11-rc.2 -> v0.8.11-rc.2 -2025-07-23T19:29:08.5948354Z * [new tag] v0.8.11-rc.4 -> v0.8.11-rc.4 -2025-07-23T19:29:08.5950072Z * [new tag] v0.8.11-rc.5 -> v0.8.11-rc.5 -2025-07-23T19:29:08.5951130Z * [new tag] v0.8.11-rc.6 -> v0.8.11-rc.6 -2025-07-23T19:29:08.5952653Z * [new tag] v0.8.11-rc.7 -> v0.8.11-rc.7 -2025-07-23T19:29:08.5954766Z * [new tag] v0.8.11-rc.8 -> v0.8.11-rc.8 -2025-07-23T19:29:08.5956984Z * [new tag] v0.8.11-rc.9 -> v0.8.11-rc.9 -2025-07-23T19:29:08.5958608Z * [new tag] v0.8.12 -> v0.8.12 -2025-07-23T19:29:08.5961045Z * [new tag] v0.8.12-rc.0 -> v0.8.12-rc.0 -2025-07-23T19:29:08.5962511Z * [new tag] v0.8.12-rc.1 -> v0.8.12-rc.1 -2025-07-23T19:29:08.5964630Z * [new tag] v0.8.13 -> v0.8.13 -2025-07-23T19:29:08.5966608Z * [new tag] v0.8.13-rc.0 -> v0.8.13-rc.0 -2025-07-23T19:29:08.5968565Z * [new tag] v0.8.13-rc.1 -> v0.8.13-rc.1 -2025-07-23T19:29:08.5970160Z * [new tag] v0.8.13-rc.2 -> v0.8.13-rc.2 -2025-07-23T19:29:08.5971934Z * [new tag] v0.8.13-rc.3 -> v0.8.13-rc.3 -2025-07-23T19:29:08.5973659Z * [new tag] v0.8.13-rc.4 -> v0.8.13-rc.4 -2025-07-23T19:29:08.5975134Z * [new tag] v0.8.13-rc.5 -> v0.8.13-rc.5 -2025-07-23T19:29:08.5976843Z * [new tag] v0.8.14 -> v0.8.14 -2025-07-23T19:29:08.5978205Z * [new tag] v0.8.14-rc.0 -> v0.8.14-rc.0 -2025-07-23T19:29:08.5979604Z * [new tag] v0.8.15 -> v0.8.15 -2025-07-23T19:29:08.5981252Z * [new tag] v0.8.15-rc.0 -> v0.8.15-rc.0 -2025-07-23T19:29:08.5982510Z * [new tag] v0.8.15-rc.1 -> v0.8.15-rc.1 -2025-07-23T19:29:08.5983838Z * [new tag] v0.8.15-rc.2 -> v0.8.15-rc.2 -2025-07-23T19:29:08.5985766Z * [new tag] v0.8.16 -> v0.8.16 -2025-07-23T19:29:08.5987393Z * [new tag] v0.8.16-rc.0 -> v0.8.16-rc.0 -2025-07-23T19:29:08.5989145Z * [new tag] v0.8.16-rc.1 -> v0.8.16-rc.1 -2025-07-23T19:29:08.5990250Z * [new tag] v0.8.16-rc.2 -> v0.8.16-rc.2 -2025-07-23T19:29:08.5991946Z * [new tag] v0.8.2 -> v0.8.2 -2025-07-23T19:29:08.5993271Z * [new tag] v0.8.2-rc.0 -> v0.8.2-rc.0 -2025-07-23T19:29:08.5995058Z * [new tag] v0.8.3 -> v0.8.3 -2025-07-23T19:29:08.5997394Z * [new tag] v0.8.3-rc.0 -> v0.8.3-rc.0 -2025-07-23T19:29:08.5998821Z * [new tag] v0.8.3-rc.1 -> v0.8.3-rc.1 -2025-07-23T19:29:08.6000135Z * [new tag] v0.8.3-rc.2 -> v0.8.3-rc.2 -2025-07-23T19:29:08.6001916Z * [new tag] v0.8.3-rc.3 -> v0.8.3-rc.3 -2025-07-23T19:29:08.6003141Z * [new tag] v0.8.4 -> v0.8.4 -2025-07-23T19:29:08.6004995Z * [new tag] v0.8.4-rc.1 -> v0.8.4-rc.1 -2025-07-23T19:29:08.6006854Z * [new tag] v0.8.4-rc.2 -> v0.8.4-rc.2 -2025-07-23T19:29:08.6008238Z * [new tag] v0.8.4-rc.3 -> v0.8.4-rc.3 -2025-07-23T19:29:08.6010050Z * [new tag] v0.8.4-rc0 -> v0.8.4-rc0 -2025-07-23T19:29:08.6011270Z * [new tag] v0.8.5 -> v0.8.5 -2025-07-23T19:29:08.6012938Z * [new tag] v0.8.5-rc.0 -> v0.8.5-rc.0 -2025-07-23T19:29:08.6014401Z * [new tag] v0.8.5-rc.1 -> v0.8.5-rc.1 -2025-07-23T19:29:08.6015724Z * [new tag] v0.8.5-rc.2 -> v0.8.5-rc.2 -2025-07-23T19:29:08.6017892Z * [new tag] v0.8.6 -> v0.8.6 -2025-07-23T19:29:08.6018958Z * [new tag] v0.8.6-rc.0 -> v0.8.6-rc.0 -2025-07-23T19:29:08.6020339Z * [new tag] v0.8.6-rc.1 -> v0.8.6-rc.1 -2025-07-23T19:29:08.6021972Z * [new tag] v0.8.7 -> v0.8.7 -2025-07-23T19:29:08.6023374Z * [new tag] v0.8.7-rc.0 -> v0.8.7-rc.0 -2025-07-23T19:29:08.6025148Z * [new tag] v0.8.7-rc.1 -> v0.8.7-rc.1 -2025-07-23T19:29:08.6026357Z * [new tag] v0.8.7-rc.2 -> v0.8.7-rc.2 -2025-07-23T19:29:08.6028100Z * [new tag] v0.8.8 -> v0.8.8 -2025-07-23T19:29:08.6029255Z * [new tag] v0.8.8-rc.0 -> v0.8.8-rc.0 -2025-07-23T19:29:08.6031023Z * [new tag] v0.8.9 -> v0.8.9 -2025-07-23T19:29:08.6033445Z * [new tag] v0.8.9-rc.0 -> v0.8.9-rc.0 -2025-07-23T19:29:08.6036680Z * [new tag] v0.8.9-rc.1 -> v0.8.9-rc.1 -2025-07-23T19:29:08.6037337Z * [new tag] v0.9.0 -> v0.9.0 -2025-07-23T19:29:08.6037951Z * [new tag] v0.9.0-rc.0 -> v0.9.0-rc.0 -2025-07-23T19:29:08.6038598Z * [new tag] v0.9.0-rc.1 -> v0.9.0-rc.1 -2025-07-23T19:29:08.6039282Z * [new tag] v0.9.0-rc.11 -> v0.9.0-rc.11 -2025-07-23T19:29:08.6041151Z * [new tag] v0.9.0-rc.12 -> v0.9.0-rc.12 -2025-07-23T19:29:08.6042336Z * [new tag] v0.9.0-rc.13 -> v0.9.0-rc.13 -2025-07-23T19:29:08.6044311Z * [new tag] v0.9.0-rc.14 -> v0.9.0-rc.14 -2025-07-23T19:29:08.6046020Z * [new tag] v0.9.0-rc.2 -> v0.9.0-rc.2 -2025-07-23T19:29:08.6047370Z * [new tag] v0.9.0-rc.3 -> v0.9.0-rc.3 -2025-07-23T19:29:08.6049165Z * [new tag] v0.9.0-rc.4 -> v0.9.0-rc.4 -2025-07-23T19:29:08.6050592Z * [new tag] v0.9.0-rc.5 -> v0.9.0-rc.5 -2025-07-23T19:29:08.6052354Z * [new tag] v0.9.0-rc.6 -> v0.9.0-rc.6 -2025-07-23T19:29:08.6053608Z * [new tag] v0.9.0-rc.9 -> v0.9.0-rc.9 -2025-07-23T19:29:08.6056032Z * [new tag] with-avalanchego-test-pkg -> with-avalanchego-test-pkg -2025-07-23T19:29:08.6059187Z * [new ref] d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 -> pull/1065/merge -2025-07-23T19:29:08.6161516Z ##[endgroup] -2025-07-23T19:29:08.6161998Z ##[group]Determining the checkout info -2025-07-23T19:29:08.6162862Z ##[endgroup] -2025-07-23T19:29:08.6168716Z [command]/usr/bin/git sparse-checkout disable -2025-07-23T19:29:08.6210104Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig -2025-07-23T19:29:08.6236282Z ##[group]Checking out the ref -2025-07-23T19:29:08.6240631Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/1065/merge -2025-07-23T19:29:08.7375106Z Note: switching to 'refs/remotes/pull/1065/merge'. -2025-07-23T19:29:08.7375890Z -2025-07-23T19:29:08.7376153Z You are in 'detached HEAD' state. You can look around, make experimental -2025-07-23T19:29:08.7376755Z changes and commit them, and you can discard any commits you make in this -2025-07-23T19:29:08.7377277Z state without impacting any branches by switching back to a branch. -2025-07-23T19:29:08.7377596Z -2025-07-23T19:29:08.7377802Z If you want to create a new branch to retain commits you create, you may -2025-07-23T19:29:08.7378303Z do so (now or later) by using -c with the switch command. Example: -2025-07-23T19:29:08.7378623Z -2025-07-23T19:29:08.7378750Z git switch -c -2025-07-23T19:29:08.7378983Z -2025-07-23T19:29:08.7379099Z Or undo this operation with: -2025-07-23T19:29:08.7379283Z -2025-07-23T19:29:08.7379388Z git switch - -2025-07-23T19:29:08.7379540Z -2025-07-23T19:29:08.7379791Z Turn off this advice by setting config variable advice.detachedHead to false -2025-07-23T19:29:08.7380126Z -2025-07-23T19:29:08.7380475Z HEAD is now at d85ec0364 Merge d5f0d87367784f954ad4b3b1df561902a97b92fd into 8fa714aa59bcec3f418c1cc8312789585993b1b1 -2025-07-23T19:29:08.7391895Z ##[endgroup] -2025-07-23T19:29:08.7433421Z [command]/usr/bin/git log -1 --format=%H -2025-07-23T19:29:08.7455287Z d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 diff --git a/logs_42241282643/e2e warp tests/3_Set up Go.txt b/logs_42241282643/e2e warp tests/3_Set up Go.txt deleted file mode 100644 index 3683cb78f5..0000000000 --- a/logs_42241282643/e2e warp tests/3_Set up Go.txt +++ /dev/null @@ -1,79 +0,0 @@ -2025-07-23T19:29:08.7667409Z ##[group]Run actions/setup-go@v5 -2025-07-23T19:29:08.7667659Z with: -2025-07-23T19:29:08.7667838Z go-version-file: go.mod -2025-07-23T19:29:08.7668048Z check-latest: false -2025-07-23T19:29:08.7668362Z token: *** -2025-07-23T19:29:08.7668527Z cache: true -2025-07-23T19:29:08.7668695Z ##[endgroup] -2025-07-23T19:29:08.9269046Z Setup go version spec 1.23.9 -2025-07-23T19:29:08.9280250Z Attempting to download 1.23.9... -2025-07-23T19:29:09.2290844Z matching 1.23.9... -2025-07-23T19:29:09.2332563Z Acquiring 1.23.9 from https://github.com/actions/go-versions/releases/download/1.23.9-14875265214/go-1.23.9-linux-x64.tar.gz -2025-07-23T19:29:09.7498132Z Extracting Go... -2025-07-23T19:29:09.7602002Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/37ec91b0-76a2-4903-b265-0c32d531296b -f /home/runner/work/_temp/76e90d44-c8d9-4477-a2a6-b1069342d5ff -2025-07-23T19:29:11.3968581Z Successfully extracted go to /home/runner/work/_temp/37ec91b0-76a2-4903-b265-0c32d531296b -2025-07-23T19:29:11.3969244Z Adding to the cache ... -2025-07-23T19:29:15.6448799Z Successfully cached go to /opt/hostedtoolcache/go/1.23.9/x64 -2025-07-23T19:29:15.6449360Z Added go to the path -2025-07-23T19:29:15.6451812Z Successfully set up Go version 1.23.9 -2025-07-23T19:29:15.6642402Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOMODCACHE -2025-07-23T19:29:15.6670314Z [command]/opt/hostedtoolcache/go/1.23.9/x64/bin/go env GOCACHE -2025-07-23T19:29:15.6701225Z /home/runner/go/pkg/mod -2025-07-23T19:29:15.6715930Z /home/runner/.cache/go-build -2025-07-23T19:29:15.7377750Z Cache hit for: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:16.7739769Z Received 226492416 of 743127682 (30.5%), 214.9 MBs/sec -2025-07-23T19:29:17.7730177Z Received 436207616 of 743127682 (58.7%), 207.5 MBs/sec -2025-07-23T19:29:18.7730374Z Received 671088640 of 743127682 (90.3%), 213.0 MBs/sec -2025-07-23T19:29:19.0758735Z Received 743127682 of 743127682 (100.0%), 214.2 MBs/sec -2025-07-23T19:29:19.0760018Z Cache Size: ~709 MB (743127682 B) -2025-07-23T19:29:19.0878207Z [command]/usr/bin/tar -xf /home/runner/work/_temp/d2a69ecc-e327-4505-a636-70e75d99984a/cache.tzst -P -C /home/runner/work/coreth/coreth --use-compress-program unzstd -2025-07-23T19:29:25.9750734Z Cache restored successfully -2025-07-23T19:29:26.1098517Z Cache restored from key: setup-go-Linux-x64-ubuntu24-go-1.23.9-a15cb706c721cb75cb8e60eed27be6d55e2ca35325e99af49c70a2c101d4ff4d -2025-07-23T19:29:26.1119471Z go version go1.23.9 linux/amd64 -2025-07-23T19:29:26.1119669Z -2025-07-23T19:29:26.1119940Z ##[group]go env -2025-07-23T19:29:26.3282490Z GO111MODULE='' -2025-07-23T19:29:26.3283866Z GOARCH='amd64' -2025-07-23T19:29:26.3284689Z GOBIN='' -2025-07-23T19:29:26.3285075Z GOCACHE='/home/runner/.cache/go-build' -2025-07-23T19:29:26.3285553Z GOENV='/home/runner/.config/go/env' -2025-07-23T19:29:26.3285940Z GOEXE='' -2025-07-23T19:29:26.3286154Z GOEXPERIMENT='' -2025-07-23T19:29:26.3286419Z GOFLAGS='' -2025-07-23T19:29:26.3286703Z GOHOSTARCH='amd64' -2025-07-23T19:29:26.3287046Z GOHOSTOS='linux' -2025-07-23T19:29:26.3287617Z GOINSECURE='' -2025-07-23T19:29:26.3287975Z GOMODCACHE='/home/runner/go/pkg/mod' -2025-07-23T19:29:26.3288239Z GONOPROXY='' -2025-07-23T19:29:26.3288412Z GONOSUMDB='' -2025-07-23T19:29:26.3288571Z GOOS='linux' -2025-07-23T19:29:26.3288749Z GOPATH='/home/runner/go' -2025-07-23T19:29:26.3289243Z GOPRIVATE='' -2025-07-23T19:29:26.3289654Z GOPROXY='https://proxy.golang.org,direct' -2025-07-23T19:29:26.3290140Z GOROOT='/opt/hostedtoolcache/go/1.23.9/x64' -2025-07-23T19:29:26.3290601Z GOSUMDB='sum.golang.org' -2025-07-23T19:29:26.3290971Z GOTMPDIR='' -2025-07-23T19:29:26.3291269Z GOTOOLCHAIN='auto' -2025-07-23T19:29:26.3291904Z GOTOOLDIR='/opt/hostedtoolcache/go/1.23.9/x64/pkg/tool/linux_amd64' -2025-07-23T19:29:26.3292462Z GOVCS='' -2025-07-23T19:29:26.3292739Z GOVERSION='go1.23.9' -2025-07-23T19:29:26.3293053Z GODEBUG='' -2025-07-23T19:29:26.3293338Z GOTELEMETRY='local' -2025-07-23T19:29:26.3293748Z GOTELEMETRYDIR='/home/runner/.config/go/telemetry' -2025-07-23T19:29:26.3294746Z GCCGO='gccgo' -2025-07-23T19:29:26.3295041Z GOAMD64='v1' -2025-07-23T19:29:26.3295322Z AR='ar' -2025-07-23T19:29:26.3295576Z CC='gcc' -2025-07-23T19:29:26.3295838Z CXX='g++' -2025-07-23T19:29:26.3296108Z CGO_ENABLED='1' -2025-07-23T19:29:26.3296484Z GOMOD='/home/runner/work/coreth/coreth/go.mod' -2025-07-23T19:29:26.3296783Z GOWORK='' -2025-07-23T19:29:26.3296960Z CGO_CFLAGS='-O2 -g' -2025-07-23T19:29:26.3297152Z CGO_CPPFLAGS='' -2025-07-23T19:29:26.3297666Z CGO_CXXFLAGS='-O2 -g' -2025-07-23T19:29:26.3297956Z CGO_FFLAGS='-O2 -g' -2025-07-23T19:29:26.3298140Z CGO_LDFLAGS='-O2 -g' -2025-07-23T19:29:26.3298353Z PKG_CONFIG='pkg-config' -2025-07-23T19:29:26.3299569Z GOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build906995900=/tmp/go-build -gno-record-gcc-switches' -2025-07-23T19:29:26.3300478Z -2025-07-23T19:29:26.3300945Z ##[endgroup] diff --git a/logs_42241282643/e2e warp tests/6_Build AvalancheGo and update Coreth dependency.txt b/logs_42241282643/e2e warp tests/6_Build AvalancheGo and update Coreth dependency.txt deleted file mode 100644 index 80aec1b83b..0000000000 --- a/logs_42241282643/e2e warp tests/6_Build AvalancheGo and update Coreth dependency.txt +++ /dev/null @@ -1,48 +0,0 @@ -2025-07-23T19:29:26.3468484Z ##[group]Run ./scripts/run_task.sh build-avalanchego-with-coreth -2025-07-23T19:29:26.3468987Z ./scripts/run_task.sh build-avalanchego-with-coreth -2025-07-23T19:29:26.3502624Z shell: /usr/bin/bash -e {0} -2025-07-23T19:29:26.3502967Z env: -2025-07-23T19:29:26.3503275Z AVALANCHEGO_CLONE_PATH: /tmp/e2e/warp/avalanchego -2025-07-23T19:29:26.3503702Z ##[endgroup] -2025-07-23T19:29:27.4620185Z task: [build-avalanchego-with-coreth] ./scripts/build_avalanchego_with_coreth.sh -2025-07-23T19:29:27.4745320Z checking out target AvalancheGo version v1.13.3-rc.1 -2025-07-23T19:29:27.4745703Z creating new clone -2025-07-23T19:29:27.4758630Z Cloning into '/tmp/e2e/warp/avalanchego'... -2025-07-23T19:29:34.6710774Z Switched to a new branch 'test-v1.13.3-rc.1' -2025-07-23T19:29:34.6722802Z updating coreth dependency to point to /home/runner/work/coreth/coreth -2025-07-23T19:29:34.7223076Z go: downloading connectrpc.com/connect v1.18.1 -2025-07-23T19:29:34.7244097Z go: downloading github.com/prometheus/client_golang v1.16.0 -2025-07-23T19:29:34.7283843Z go: downloading github.com/prometheus/client_model v0.3.0 -2025-07-23T19:29:34.7285989Z go: downloading github.com/prometheus/common v0.42.0 -2025-07-23T19:29:34.7957690Z go: downloading google.golang.org/protobuf v1.35.2 -2025-07-23T19:29:34.9971339Z go: downloading github.com/jackpal/gateway v1.0.6 -2025-07-23T19:29:35.0009809Z go: downloading github.com/ava-labs/simplex v0.0.0-20250626192006-220e6aeacdc1 -2025-07-23T19:29:35.0157339Z go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.4 -2025-07-23T19:29:35.0400961Z go: downloading github.com/compose-spec/compose-go v1.20.2 -2025-07-23T19:29:35.1168246Z go: downloading github.com/antithesishq/antithesis-sdk-go v0.3.8 -2025-07-23T19:29:35.2134228Z go: downloading github.com/prometheus/procfs v0.10.1 -2025-07-23T19:29:35.2732155Z go: downloading github.com/ava-labs/ledger-avalanche/go v0.0.0-20241009183145-e6f90a8a1a60 -2025-07-23T19:29:35.3187692Z go: downloading github.com/tyler-smith/go-bip32 v1.0.0 -2025-07-23T19:29:35.3529802Z go: downloading github.com/nbutton23/zxcvbn-go v0.0.0-20180912185939-ae427f1e4c1d -2025-07-23T19:29:35.3566296Z go: downloading connectrpc.com/grpcreflect v1.3.0 -2025-07-23T19:29:35.3793520Z go: downloading github.com/inconshreveable/mousetrap v1.1.0 -2025-07-23T19:29:35.3871338Z go: downloading github.com/distribution/reference v0.5.0 -2025-07-23T19:29:35.3872462Z go: downloading github.com/docker/go-connections v0.4.0 -2025-07-23T19:29:35.3885609Z go: downloading github.com/docker/go-units v0.5.0 -2025-07-23T19:29:35.4010892Z go: downloading github.com/mattn/go-shellwords v1.0.12 -2025-07-23T19:29:35.4032509Z go: downloading github.com/opencontainers/go-digest v1.0.0 -2025-07-23T19:29:35.4047771Z go: downloading gotest.tools/v3 v3.4.0 -2025-07-23T19:29:35.4192007Z go: downloading github.com/klauspost/compress v1.15.15 -2025-07-23T19:29:35.4386239Z go: downloading github.com/zondax/ledger-go v1.0.0 -2025-07-23T19:29:35.4532111Z go: downloading github.com/ava-labs/firewood-go-ethhash/ffi v0.0.8 -2025-07-23T19:29:35.4587761Z go: downloading github.com/FactomProject/basen v0.0.0-20150613233007-fe3947df716e -2025-07-23T19:29:35.5324080Z go: downloading github.com/FactomProject/btcutilecc v0.0.0-20130527213604-d3a63a5752ec -2025-07-23T19:29:35.6012880Z go: downloading golang.org/x/oauth2 v0.21.0 -2025-07-23T19:29:35.6432200Z go: downloading github.com/golang-jwt/jwt/v4 v4.5.0 -2025-07-23T19:29:35.6688138Z go: downloading github.com/zondax/hid v0.9.2 -2025-07-23T19:29:35.6771022Z go: downloading github.com/golang-jwt/jwt v3.2.2+incompatible -2025-07-23T19:29:35.7067961Z go: downloading github.com/cmars/basen v0.0.0-20150613233007-fe3947df716e -2025-07-23T19:29:35.7163212Z go: downloading launchpad.net/gocheck v0.0.0-20140225173054-000000000087 -2025-07-23T19:29:35.7269370Z go: downloading github.com/sirupsen/logrus v1.9.0 -2025-07-23T19:29:37.5539311Z building avalanchego -2025-07-23T19:29:37.5659517Z Building AvalancheGo with [go version go1.23.9 linux/amd64]... diff --git a/logs_42241282643/e2e warp tests/7_Run Warp E2E Tests.txt b/logs_42241282643/e2e warp tests/7_Run Warp E2E Tests.txt deleted file mode 100644 index 3b41daceef..0000000000 --- a/logs_42241282643/e2e warp tests/7_Run Warp E2E Tests.txt +++ /dev/null @@ -1,826 +0,0 @@ -2025-07-23T19:30:52.5253270Z ##[group]Run ava-labs/avalanchego/.github/actions/run-monitored-tmpnet-cmd@66ce7a7701db0c4b370f97b339478d5b5ebe919a -2025-07-23T19:30:52.5253805Z with: -2025-07-23T19:30:52.5254192Z run: ./scripts/run_task.sh test-e2e-warp-ci -2025-07-23T19:30:52.5254542Z run_env: AVALANCHEGO_BUILD_PATH=/tmp/e2e/warp/avalanchego/build -2025-07-23T19:30:52.5254854Z artifact_prefix: warp -2025-07-23T19:30:52.5255056Z runtime: process -2025-07-23T19:30:52.5255249Z repository_owner: ava-labs -2025-07-23T19:30:52.5255459Z repository_name: coreth -2025-07-23T19:30:52.5255656Z workflow: CI -2025-07-23T19:30:52.5255831Z run_id: 16480013789 -2025-07-23T19:30:52.5256005Z run_number: 5026 -2025-07-23T19:30:52.5256180Z run_attempt: 1 -2025-07-23T19:30:52.5256349Z job: e2e_warp -2025-07-23T19:30:52.5256535Z ##[endgroup] -2025-07-23T19:30:52.5351273Z ##[group]Run cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f -2025-07-23T19:30:52.5351649Z with: -2025-07-23T19:30:52.5351817Z enable_kvm: true -2025-07-23T19:30:52.5352026Z ##[endgroup] -2025-07-23T19:30:52.5367468Z ##[group]Run ${GITHUB_ACTION_PATH}/install-nix.sh -2025-07-23T19:30:52.5367826Z ${GITHUB_ACTION_PATH}/install-nix.sh -2025-07-23T19:30:52.5396773Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-07-23T19:30:52.5397086Z env: -2025-07-23T19:30:52.5397258Z INPUT_EXTRA_NIX_CONFIG: -2025-07-23T19:30:52.5397477Z INPUT_GITHUB_ACCESS_TOKEN: -2025-07-23T19:30:52.5397692Z INPUT_INSTALL_OPTIONS: -2025-07-23T19:30:52.5397886Z INPUT_INSTALL_URL: -2025-07-23T19:30:52.5398068Z INPUT_NIX_PATH: -2025-07-23T19:30:52.5398254Z INPUT_ENABLE_KVM: true -2025-07-23T19:30:52.5398662Z GITHUB_TOKEN: *** -2025-07-23T19:30:52.5398844Z ##[endgroup] -2025-07-23T19:30:52.5472677Z ##[group]Enabling KVM support -2025-07-23T19:30:52.5539648Z KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm" -2025-07-23T19:30:52.5842674Z Enabled KVM -2025-07-23T19:30:52.5843321Z ##[endgroup] -2025-07-23T19:30:52.5844261Z ##[group]Installing Nix -2025-07-23T19:30:52.6129670Z installer options: --no-channel-add --darwin-use-unencrypted-nix-store-volume --nix-extra-conf-file /tmp/tmp.W0ihg3Z3cO/nix.conf --daemon --daemon-user-count 8 -2025-07-23T19:30:52.9227119Z * Host releases.nixos.org:443 was resolved. -2025-07-23T19:30:52.9227698Z * IPv6: 2a04:4e42:77::729 -2025-07-23T19:30:52.9228048Z * IPv4: 146.75.30.217 -2025-07-23T19:30:52.9228378Z * Trying 146.75.30.217:443... -2025-07-23T19:30:52.9278018Z * Connected to releases.nixos.org (146.75.30.217) port 443 -2025-07-23T19:30:52.9292363Z * ALPN: curl offers h2,http/1.1 -2025-07-23T19:30:52.9294133Z } [5 bytes data] -2025-07-23T19:30:52.9294896Z * TLSv1.3 (OUT), TLS handshake, Client hello (1): -2025-07-23T19:30:52.9296388Z } [512 bytes data] -2025-07-23T19:30:52.9506175Z * CAfile: /etc/ssl/certs/ca-certificates.crt -2025-07-23T19:30:52.9506721Z * CApath: /etc/ssl/certs -2025-07-23T19:30:52.9510336Z { [5 bytes data] -2025-07-23T19:30:52.9511135Z * TLSv1.3 (IN), TLS handshake, Server hello (2): -2025-07-23T19:30:52.9511623Z { [104 bytes data] -2025-07-23T19:30:52.9512020Z * TLSv1.2 (IN), TLS handshake, Certificate (11): -2025-07-23T19:30:52.9512472Z { [2827 bytes data] -2025-07-23T19:30:52.9513034Z * TLSv1.2 (IN), TLS handshake, Server key exchange (12): -2025-07-23T19:30:52.9513511Z { [300 bytes data] -2025-07-23T19:30:52.9514275Z * TLSv1.2 (IN), TLS handshake, Server finished (14): -2025-07-23T19:30:52.9514739Z { [4 bytes data] -2025-07-23T19:30:52.9516391Z * TLSv1.2 (OUT), TLS handshake, Client key exchange (16): -2025-07-23T19:30:52.9516897Z } [37 bytes data] -2025-07-23T19:30:52.9517330Z * TLSv1.2 (OUT), TLS change cipher, Change cipher spec (1): -2025-07-23T19:30:52.9517835Z } [1 bytes data] -2025-07-23T19:30:52.9518140Z * TLSv1.2 (OUT), TLS handshake, Finished (20): -2025-07-23T19:30:52.9518406Z } [16 bytes data] -2025-07-23T19:30:52.9570150Z * TLSv1.2 (IN), TLS handshake, Finished (20): -2025-07-23T19:30:52.9570628Z { [16 bytes data] -2025-07-23T19:30:52.9571224Z * SSL connection using TLSv1.2 / ECDHE-RSA-CHACHA20-POLY1305 / X25519 / RSASSA-PSS -2025-07-23T19:30:52.9572183Z * ALPN: server accepted h2 -2025-07-23T19:30:52.9572410Z * Server certificate: -2025-07-23T19:30:52.9572629Z * subject: CN=releases.nixos.org -2025-07-23T19:30:52.9572876Z * start date: Oct 11 20:56:16 2024 GMT -2025-07-23T19:30:52.9573126Z * expire date: Nov 12 20:56:15 2025 GMT -2025-07-23T19:30:52.9573501Z * subjectAltName: host "releases.nixos.org" matched cert's "releases.nixos.org" -2025-07-23T19:30:52.9574214Z * issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Atlas R3 DV TLS CA 2024 Q4 -2025-07-23T19:30:52.9574579Z * SSL certificate verify ok. -2025-07-23T19:30:52.9575006Z * Certificate level 0: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption -2025-07-23T19:30:52.9575621Z * Certificate level 1: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption -2025-07-23T19:30:52.9576265Z * Certificate level 2: Public key type RSA (2048/112 Bits/secBits), signed using sha256WithRSAEncryption -2025-07-23T19:30:52.9576696Z } [5 bytes data] -2025-07-23T19:30:52.9576885Z * using HTTP/2 -2025-07-23T19:30:52.9577216Z * [HTTP/2] [1] OPENED stream for https://releases.nixos.org/nix/nix-2.26.3/install -2025-07-23T19:30:52.9577574Z * [HTTP/2] [1] [:method: GET] -2025-07-23T19:30:52.9577795Z * [HTTP/2] [1] [:scheme: https] -2025-07-23T19:30:52.9578053Z * [HTTP/2] [1] [:authority: releases.nixos.org] -2025-07-23T19:30:52.9578343Z * [HTTP/2] [1] [:path: /nix/nix-2.26.3/install] -2025-07-23T19:30:52.9578602Z * [HTTP/2] [1] [user-agent: curl/8.5.0] -2025-07-23T19:30:52.9578844Z * [HTTP/2] [1] [accept: */*] -2025-07-23T19:30:52.9579064Z } [5 bytes data] -2025-07-23T19:30:52.9579261Z > GET /nix/nix-2.26.3/install HTTP/2 -2025-07-23T19:30:52.9579502Z > Host: releases.nixos.org -2025-07-23T19:30:52.9579747Z > User-Agent: curl/8.5.0 -2025-07-23T19:30:52.9580128Z > Accept: */* -2025-07-23T19:30:52.9580289Z > -2025-07-23T19:30:52.9621308Z { [5 bytes data] -2025-07-23T19:30:52.9642724Z < HTTP/2 200 -2025-07-23T19:30:52.9643374Z < last-modified: Wed, 05 Mar 2025 18:21:15 GMT -2025-07-23T19:30:52.9644579Z < etag: "c6753896884bce9b95ec3ca7be157ef6" -2025-07-23T19:30:52.9645197Z < x-amz-server-side-encryption: AES256 -2025-07-23T19:30:52.9645739Z < content-type: text/plain -2025-07-23T19:30:52.9646190Z < server: AmazonS3 -2025-07-23T19:30:52.9646576Z < via: 1.1 varnish, 1.1 varnish -2025-07-23T19:30:52.9647054Z < access-control-allow-origin: * -2025-07-23T19:30:52.9647527Z < accept-ranges: bytes -2025-07-23T19:30:52.9647941Z < date: Wed, 23 Jul 2025 19:30:52 GMT -2025-07-23T19:30:52.9648401Z < age: 9629 -2025-07-23T19:30:52.9648903Z < x-served-by: cache-dub4357-DUB, cache-iad-kiad7000142-IAD -2025-07-23T19:30:52.9649472Z < x-cache: HIT, HIT -2025-07-23T19:30:52.9649773Z < x-cache-hits: 3, 1 -2025-07-23T19:30:52.9650093Z < content-length: 4267 -2025-07-23T19:30:52.9650397Z < -2025-07-23T19:30:52.9650652Z { [4267 bytes data] -2025-07-23T19:30:52.9651048Z * Connection #0 to host releases.nixos.org left intact -2025-07-23T19:30:52.9721178Z downloading Nix 2.26.3 binary tarball for x86_64-linux from 'https://releases.nixos.org/nix/nix-2.26.3/nix-2.26.3-x86_64-linux.tar.xz' to '/tmp/nix-binary-tarball-unpack.BFXbScEBNw'... -2025-07-23T19:30:52.9789513Z % Total % Received % Xferd Average Speed Time Time Time Current -2025-07-23T19:30:52.9791319Z Dload Upload Total Spent Left Speed -2025-07-23T19:30:52.9792603Z -2025-07-23T19:30:53.0430705Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 -2025-07-23T19:30:53.1646723Z 0 22.6M 0 143k 0 0 2232k 0 0:00:10 --:--:-- 0:00:10 2207k -2025-07-23T19:30:53.1647259Z 100 22.6M 100 22.6M 0 0 121M 0 --:--:-- --:--:-- --:--:-- 121M -2025-07-23T19:30:54.7498707Z Note: a multi-user installation is possible. See https://nixos.org/manual/nix/stable/installation/installing-binary.html#multi-user-installation -2025-07-23T19:30:54.7508664Z Warning: the flag --darwin-use-unencrypted-nix-store-volume -2025-07-23T19:30:54.7509517Z is no longer needed and will be removed in the future. -2025-07-23T19:30:54.7510212Z -2025-07-23T19:30:54.7520151Z Switching to the Multi-user Installer -2025-07-23T19:30:54.7620316Z Welcome to the Multi-User Nix Installation -2025-07-23T19:30:54.7629721Z  -2025-07-23T19:30:54.7630244Z This installation tool will set up your computer with the Nix package -2025-07-23T19:30:54.7630861Z manager. This will happen in a few stages: -2025-07-23T19:30:54.7631054Z -2025-07-23T19:30:54.7631243Z 1. Make sure your computer doesn't already have Nix. If it does, I -2025-07-23T19:30:54.7631733Z will show you instructions on how to clean up your old install. -2025-07-23T19:30:54.7632096Z -2025-07-23T19:30:54.7632378Z 2. Show you what I am going to install and where. Then I will ask -2025-07-23T19:30:54.7632972Z if you are ready to continue. -2025-07-23T19:30:54.7633207Z -2025-07-23T19:30:54.7633515Z 3. Create the system users (uids [30001..30008]) and groups (gid 30000) -2025-07-23T19:30:54.7634279Z that the Nix daemon uses to run builds. To create system users -2025-07-23T19:30:54.7634705Z in a different range, exit and run this tool again with -2025-07-23T19:30:54.7635021Z NIX_FIRST_BUILD_UID set. -2025-07-23T19:30:54.7635181Z -2025-07-23T19:30:54.7635331Z 4. Perform the basic installation of the Nix files daemon. -2025-07-23T19:30:54.7635544Z -2025-07-23T19:30:54.7635725Z 5. Configure your shell to import special Nix Profile files, so you -2025-07-23T19:30:54.7636045Z can use Nix. -2025-07-23T19:30:54.7636156Z -2025-07-23T19:30:54.7636238Z 6. Start the Nix daemon. -2025-07-23T19:30:54.7636366Z -2025-07-23T19:30:54.7636626Z Would you like to see a more detailed list of what I will do? -2025-07-23T19:30:54.7637019Z No TTY, assuming you would say yes :) -2025-07-23T19:30:54.7642145Z -2025-07-23T19:30:54.7642434Z I will: -2025-07-23T19:30:54.7642566Z -2025-07-23T19:30:54.7642741Z - make sure your computer doesn't already have Nix files -2025-07-23T19:30:54.7643157Z (if it does, I will tell you how to clean them up.) -2025-07-23T19:30:54.7643840Z - create local users (see the list above for the users I'll make) -2025-07-23T19:30:54.7644690Z - create a local group (nixbld) -2025-07-23T19:30:54.7645006Z - install Nix in /nix -2025-07-23T19:30:54.7645245Z - create a configuration file in /etc/nix -2025-07-23T19:30:54.7645605Z - set up the "default profile" by creating some Nix-related files in -2025-07-23T19:30:54.7645937Z /root -2025-07-23T19:30:54.7657327Z - back up /etc/bash.bashrc to /etc/bash.bashrc.backup-before-nix -2025-07-23T19:30:54.7657797Z - update /etc/bash.bashrc to include some Nix configuration -2025-07-23T19:30:54.7668871Z - load and start a service (at /etc/systemd/system/nix-daemon.service -2025-07-23T19:30:54.7669363Z and /etc/systemd/system/nix-daemon.socket) for nix-daemon -2025-07-23T19:30:54.7669621Z -2025-07-23T19:30:54.7671449Z Ready to continue? -2025-07-23T19:30:54.7671987Z No TTY, assuming you would say yes :) -2025-07-23T19:30:54.7692828Z -2025-07-23T19:30:54.7693410Z ---- let's talk about sudo ----------------------------------------------------- -2025-07-23T19:30:54.7704564Z This script is going to call sudo a lot. Normally, it would show you -2025-07-23T19:30:54.7705345Z exactly what commands it is running and why. However, the script is -2025-07-23T19:30:54.7705710Z run in a headless fashion, like this: -2025-07-23T19:30:54.7705879Z -2025-07-23T19:30:54.7706041Z $ curl -L https://nixos.org/nix/install | sh -2025-07-23T19:30:54.7706353Z -2025-07-23T19:30:54.7706629Z or maybe in a CI pipeline. Because of that, I'm going to skip the -2025-07-23T19:30:54.7707111Z verbose output in the interest of brevity. -2025-07-23T19:30:54.7707294Z -2025-07-23T19:30:54.7707375Z If you would like to -2025-07-23T19:30:54.7707609Z see the output, try like this: -2025-07-23T19:30:54.7707756Z -2025-07-23T19:30:54.7707934Z $ curl -L -o install-nix https://nixos.org/nix/install -2025-07-23T19:30:54.7708231Z $ sh ./install-nix -2025-07-23T19:30:54.7708347Z -2025-07-23T19:30:54.7708564Z -2025-07-23T19:30:54.7708769Z ~~> Checking for artifacts of previous installs -2025-07-23T19:30:54.7716877Z Before I try to install, I'll check for signs Nix already is or has -2025-07-23T19:30:54.7717479Z been installed on this system. -2025-07-23T19:30:54.7750345Z -2025-07-23T19:30:54.7751044Z ---- Nix config report --------------------------------------------------------- -2025-07-23T19:30:54.7751808Z  Temp Dir: /tmp/tmp.eIS0LfBP7g -2025-07-23T19:30:54.7752355Z  Nix Root: /nix -2025-07-23T19:30:54.7752728Z  Build Users: 8 -2025-07-23T19:30:54.7752995Z  Build Group ID: 30000 -2025-07-23T19:30:54.7753257Z Build Group Name: nixbld -2025-07-23T19:30:54.7753406Z -2025-07-23T19:30:54.7753516Z build users: -2025-07-23T19:30:54.7753741Z  Username: UID -2025-07-23T19:30:54.7780622Z  nixbld1: 30001 -2025-07-23T19:30:54.7790747Z  nixbld2: 30002 -2025-07-23T19:30:54.7800674Z  nixbld3: 30003 -2025-07-23T19:30:54.7810874Z  nixbld4: 30004 -2025-07-23T19:30:54.7820854Z  nixbld5: 30005 -2025-07-23T19:30:54.7830777Z  nixbld6: 30006 -2025-07-23T19:30:54.7840529Z  nixbld7: 30007 -2025-07-23T19:30:54.7850712Z  nixbld8: 30008 -2025-07-23T19:30:54.7850995Z -2025-07-23T19:30:54.7851233Z Ready to continue? -2025-07-23T19:30:54.7851827Z No TTY, assuming you would say yes :) -2025-07-23T19:30:54.7852308Z -2025-07-23T19:30:54.7852613Z ~~> Setting up the build group nixbld -2025-07-23T19:30:54.8255172Z  Created: Yes -2025-07-23T19:30:54.8277990Z -2025-07-23T19:30:54.8278405Z ~~> Setting up the build user nixbld1 -2025-07-23T19:30:54.8428488Z useradd warning: nixbld1's uid 30001 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:54.8513656Z  Created: Yes -2025-07-23T19:30:54.8519207Z  Hidden: Yes -2025-07-23T19:30:54.8537204Z  Home Directory: /var/empty -2025-07-23T19:30:54.8557215Z  Note: Nix build user 1 -2025-07-23T19:30:54.8574914Z  Logins Disabled: Yes -2025-07-23T19:30:54.8597494Z  Member of nixbld: Yes -2025-07-23T19:30:54.8615458Z  PrimaryGroupID: 30000 -2025-07-23T19:30:54.8626211Z -2025-07-23T19:30:54.8626542Z ~~> Setting up the build user nixbld2 -2025-07-23T19:30:54.8754868Z useradd warning: nixbld2's uid 30002 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:54.8834230Z  Created: Yes -2025-07-23T19:30:54.8839512Z  Hidden: Yes -2025-07-23T19:30:54.8857379Z  Home Directory: /var/empty -2025-07-23T19:30:54.8877598Z  Note: Nix build user 2 -2025-07-23T19:30:54.8895448Z  Logins Disabled: Yes -2025-07-23T19:30:54.8913569Z  Member of nixbld: Yes -2025-07-23T19:30:54.8931720Z  PrimaryGroupID: 30000 -2025-07-23T19:30:54.8942401Z -2025-07-23T19:30:54.8942711Z ~~> Setting up the build user nixbld3 -2025-07-23T19:30:54.9073029Z useradd warning: nixbld3's uid 30003 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:54.9156799Z  Created: Yes -2025-07-23T19:30:54.9162019Z  Hidden: Yes -2025-07-23T19:30:54.9180465Z  Home Directory: /var/empty -2025-07-23T19:30:54.9200289Z  Note: Nix build user 3 -2025-07-23T19:30:54.9217816Z  Logins Disabled: Yes -2025-07-23T19:30:54.9236131Z  Member of nixbld: Yes -2025-07-23T19:30:54.9259374Z  PrimaryGroupID: 30000 -2025-07-23T19:30:54.9271356Z -2025-07-23T19:30:54.9272804Z ~~> Setting up the build user nixbld4 -2025-07-23T19:30:54.9401877Z useradd warning: nixbld4's uid 30004 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:54.9483579Z  Created: Yes -2025-07-23T19:30:54.9489187Z  Hidden: Yes -2025-07-23T19:30:54.9507712Z  Home Directory: /var/empty -2025-07-23T19:30:54.9527561Z  Note: Nix build user 4 -2025-07-23T19:30:54.9545436Z  Logins Disabled: Yes -2025-07-23T19:30:54.9563805Z  Member of nixbld: Yes -2025-07-23T19:30:54.9582130Z  PrimaryGroupID: 30000 -2025-07-23T19:30:54.9592895Z -2025-07-23T19:30:54.9593502Z ~~> Setting up the build user nixbld5 -2025-07-23T19:30:54.9740599Z useradd warning: nixbld5's uid 30005 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:54.9826935Z  Created: Yes -2025-07-23T19:30:54.9832246Z  Hidden: Yes -2025-07-23T19:30:54.9850505Z  Home Directory: /var/empty -2025-07-23T19:30:54.9870493Z  Note: Nix build user 5 -2025-07-23T19:30:54.9888218Z  Logins Disabled: Yes -2025-07-23T19:30:54.9906368Z  Member of nixbld: Yes -2025-07-23T19:30:54.9924854Z  PrimaryGroupID: 30000 -2025-07-23T19:30:54.9935212Z -2025-07-23T19:30:54.9935591Z ~~> Setting up the build user nixbld6 -2025-07-23T19:30:55.0064873Z useradd warning: nixbld6's uid 30006 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:55.0148582Z  Created: Yes -2025-07-23T19:30:55.0153995Z  Hidden: Yes -2025-07-23T19:30:55.0171940Z  Home Directory: /var/empty -2025-07-23T19:30:55.0192119Z  Note: Nix build user 6 -2025-07-23T19:30:55.0210166Z  Logins Disabled: Yes -2025-07-23T19:30:55.0229029Z  Member of nixbld: Yes -2025-07-23T19:30:55.0246943Z  PrimaryGroupID: 30000 -2025-07-23T19:30:55.0257882Z -2025-07-23T19:30:55.0258304Z ~~> Setting up the build user nixbld7 -2025-07-23T19:30:55.0386690Z useradd warning: nixbld7's uid 30007 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:55.0482587Z  Created: Yes -2025-07-23T19:30:55.0488048Z  Hidden: Yes -2025-07-23T19:30:55.0507672Z  Home Directory: /var/empty -2025-07-23T19:30:55.0528260Z  Note: Nix build user 7 -2025-07-23T19:30:55.0546374Z  Logins Disabled: Yes -2025-07-23T19:30:55.0565137Z  Member of nixbld: Yes -2025-07-23T19:30:55.0582804Z  PrimaryGroupID: 30000 -2025-07-23T19:30:55.0593468Z -2025-07-23T19:30:55.0594077Z ~~> Setting up the build user nixbld8 -2025-07-23T19:30:55.0727619Z useradd warning: nixbld8's uid 30008 is greater than SYS_UID_MAX 999 -2025-07-23T19:30:55.0813597Z  Created: Yes -2025-07-23T19:30:55.0819175Z  Hidden: Yes -2025-07-23T19:30:55.0838051Z  Home Directory: /var/empty -2025-07-23T19:30:55.0858038Z  Note: Nix build user 8 -2025-07-23T19:30:55.0876432Z  Logins Disabled: Yes -2025-07-23T19:30:55.0895155Z  Member of nixbld: Yes -2025-07-23T19:30:55.0913171Z  PrimaryGroupID: 30000 -2025-07-23T19:30:55.0913507Z -2025-07-23T19:30:55.0914060Z ~~> Setting up the basic directory structure -2025-07-23T19:30:55.1046982Z install: creating directory '/nix' -2025-07-23T19:30:55.1047535Z install: creating directory '/nix/var' -2025-07-23T19:30:55.1047996Z install: creating directory '/nix/var/log' -2025-07-23T19:30:55.1048336Z install: creating directory '/nix/var/log/nix' -2025-07-23T19:30:55.1048642Z install: creating directory '/nix/var/log/nix/drvs' -2025-07-23T19:30:55.1048941Z install: creating directory '/nix/var/nix' -2025-07-23T19:30:55.1049253Z install: creating directory '/nix/var/nix/db' -2025-07-23T19:30:55.1049782Z install: creating directory '/nix/var/nix/gcroots' -2025-07-23T19:30:55.1050139Z install: creating directory '/nix/var/nix/profiles' -2025-07-23T19:30:55.1050474Z install: creating directory '/nix/var/nix/temproots' -2025-07-23T19:30:55.1050816Z install: creating directory '/nix/var/nix/userpool' -2025-07-23T19:30:55.1051154Z install: creating directory '/nix/var/nix/daemon-socket' -2025-07-23T19:30:55.1051523Z install: creating directory '/nix/var/nix/gcroots/per-user' -2025-07-23T19:30:55.1051914Z install: creating directory '/nix/var/nix/profiles/per-user' -2025-07-23T19:30:55.1129229Z install: creating directory '/nix/store' -2025-07-23T19:30:55.1213749Z install: creating directory '/etc/nix' -2025-07-23T19:30:55.1224142Z -2025-07-23T19:30:55.1224682Z ~~> Installing Nix -2025-07-23T19:30:55.3190219Z  Alright! We have our first nix at /nix/store/x3235311q3n51rppm2y2ycwd7nb3mgpn-nix-2.26.3 -2025-07-23T19:30:55.3906022Z Just finished getting the nix database ready. -2025-07-23T19:30:55.3908871Z -2025-07-23T19:30:55.3910092Z ~~> Setting up shell profiles: /etc/bashrc /etc/profile.d/nix.sh /etc/zshrc /etc/bash.bashrc /etc/zsh/zshrc -2025-07-23T19:30:55.4075762Z  -2025-07-23T19:30:55.4076049Z # Nix -2025-07-23T19:30:55.4076482Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-07-23T19:30:55.4077359Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-07-23T19:30:55.4077945Z fi -2025-07-23T19:30:55.4078226Z # End Nix -2025-07-23T19:30:55.4078391Z -2025-07-23T19:30:55.4246690Z -2025-07-23T19:30:55.4246861Z # Nix -2025-07-23T19:30:55.4247314Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-07-23T19:30:55.4247941Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-07-23T19:30:55.4248486Z fi -2025-07-23T19:30:55.4248766Z # End Nix -2025-07-23T19:30:55.4248940Z -2025-07-23T19:30:55.4418548Z -2025-07-23T19:30:55.4418936Z # Nix -2025-07-23T19:30:55.4419634Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-07-23T19:30:55.4420521Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-07-23T19:30:55.4421078Z fi -2025-07-23T19:30:55.4421356Z # End Nix -2025-07-23T19:30:55.4421514Z -2025-07-23T19:30:55.4591652Z -2025-07-23T19:30:55.4592074Z # Nix -2025-07-23T19:30:55.4592630Z if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then -2025-07-23T19:30:55.4593534Z . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' -2025-07-23T19:30:55.4594753Z fi -2025-07-23T19:30:55.4595037Z # End Nix -2025-07-23T19:30:55.4595205Z -2025-07-23T19:30:55.4617675Z -2025-07-23T19:30:55.4618771Z ~~> Setting up shell profiles for Fish with conf.d/nix.fish inside /etc/fish /usr/local/etc/fish /opt/homebrew/etc/fish /opt/local/etc/fish -2025-07-23T19:30:55.4679374Z  -2025-07-23T19:30:55.4679808Z ~~> Setting up the default profile -2025-07-23T19:30:55.4970734Z installing 'nix-2.26.3' -2025-07-23T19:30:55.5101105Z building '/nix/store/5afca9ydks0pp5szkwwhi7a6m2zmgk9g-user-environment.drv'... -2025-07-23T19:30:55.5496231Z installing 'nss-cacert-3.107' -2025-07-23T19:30:55.5622625Z building '/nix/store/ilxzpc39hcw5jr229rmajjkyz1a0fym1-user-environment.drv'... -2025-07-23T19:30:55.5831260Z  -2025-07-23T19:30:55.5831794Z ~~> Setting up the nix-daemon systemd service -2025-07-23T19:30:55.6195270Z Created symlink /etc/systemd/system/nix-daemon.service → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.service. -2025-07-23T19:30:55.8843291Z Created symlink /etc/systemd/system/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. -2025-07-23T19:30:55.8845504Z Created symlink /etc/systemd/system/sockets.target.wants/nix-daemon.socket → /nix/var/nix/profiles/default/lib/systemd/system/nix-daemon.socket. -2025-07-23T19:30:56.4371560Z Alright! We're done! -2025-07-23T19:30:56.4392429Z Try it! Open a new terminal, and type: -2025-07-23T19:30:56.4392967Z -2025-07-23T19:30:56.4393234Z $ nix-shell -p nix-info --run "nix-info -m" -2025-07-23T19:30:56.4393571Z -2025-07-23T19:30:56.4394102Z Thank you for using this installer. If you have any feedback or need -2025-07-23T19:30:56.4394692Z help, don't hesitate: -2025-07-23T19:30:56.4394909Z -2025-07-23T19:30:56.4395059Z You can open an issue at -2025-07-23T19:30:56.4395679Z https://github.com/NixOS/nix/issues/new?labels=installer&template=installer.md -2025-07-23T19:30:56.4396196Z -2025-07-23T19:30:56.4396480Z Or get in touch with the community: https://nixos.org/community -2025-07-23T19:30:56.4412575Z -2025-07-23T19:30:56.4413295Z ---- Reminders ----------------------------------------------------------------- -2025-07-23T19:30:56.4414224Z [ 1 ] -2025-07-23T19:30:56.4415014Z Nix won't work in active shell sessions until you restart them. -2025-07-23T19:30:56.4415430Z -2025-07-23T19:30:56.5111168Z ##[endgroup] -2025-07-23T19:30:56.5169226Z ##[group]Run /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --command echo "dependencies installed" -2025-07-23T19:30:56.5170603Z /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --command echo "dependencies installed" -2025-07-23T19:30:56.5200320Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-07-23T19:30:56.5200626Z env: -2025-07-23T19:30:56.5200805Z TMPDIR: /home/runner/work/_temp -2025-07-23T19:30:56.5201046Z ##[endgroup] -2025-07-23T19:30:56.5267910Z No local flake found, will attempt to use avalanchego flake -2025-07-23T19:30:56.5350591Z Starting nix shell for github:ava-labs/avalanchego?ref=v1.13.3-rc.1 -2025-07-23T19:30:56.7350350Z unpacking 'github:ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a' into the Git cache... -2025-07-23T19:30:58.3945635Z copying path '/nix/store/i99indk3y6pc3sm0k1xx3nakm193lqzb-source' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7445169Z copying path '/nix/store/899rx4l5zz1za8nx7ijp7swv5ibc8wx2-git-2.47.2-doc' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7450941Z copying path '/nix/store/zpab59ialz19x6f65jbjf5xb8waa54av-iana-etc-20240318' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7474131Z copying path '/nix/store/dgzz9k53hz1qgklnj9667xzliyidj9cs-mailcap-2.1.54' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7480499Z copying path '/nix/store/hnpph37w6p5jfspwf5pksljpf0wqwjg3-perl5.40.0-Digest-HMAC-1.04' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7484836Z copying path '/nix/store/cnb01qfmg8c3irp630nplhwa201d7xsr-perl5.40.0-FCGI-ProcManager-0.28' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7486236Z copying path '/nix/store/v657ak4hdkixvq99rk3qvyh28in945dv-perl5.40.0-HTML-TagCloud-0.38' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7502209Z copying path '/nix/store/9qrv0d0yd9wss610gjzv3507ry6v9mzw-perl5.40.0-URI-5.21' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7506758Z copying path '/nix/store/pz7y4qd8lyhg9y6wmb9hynivx36f53zp-perl5.40.0-libnet-3.15' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7510214Z copying path '/nix/store/l6mypzy4rvkxd5kwzs18d88syirislib-tzdata-2024b' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7526236Z copying path '/nix/store/czlhi3r9b6ip4xyynwibfhm458ljwsir-gcc-13.3.0-libgcc' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7534048Z copying path '/nix/store/d8qbcrirc6jidfacy0qa50zy07i15xcz-gnu-config-2024-01-01' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7586503Z copying path '/nix/store/rscnjwdmhya0wcdmbygr3jpz6p39kvhr-perl5.40.0-Encode-Locale-1.05' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7590915Z copying path '/nix/store/w9yrswzdifcjhg0righ76aqb6bpslhkb-perl5.40.0-Mozilla-CA-20230821' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7593116Z copying path '/nix/store/74bbxwiamv62d2l089f1r8apv295vsry-perl5.40.0-HTML-Tagset-3.20' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7594818Z copying path '/nix/store/krx6xw6wxakapdkviirq57yh3nl3227h-perl5.40.0-IO-HTML-1.004' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7598037Z copying path '/nix/store/3r0pprxsd9n52nb2yqq3idwb75d0spzd-perl5.40.0-LWP-MediaTypes-6.04' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7690269Z copying path '/nix/store/maxa3xhmxggrc5v2vc0c3pjb79hjlkp9-glibc-2.40-66' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7694241Z copying path '/nix/store/dvsai0ym9czjl5mcsarcdwccb70615n4-linux-headers-6.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7705389Z copying path '/nix/store/x6i8jiz3yv3h209xfbz9a3ch1sm16167-dns-root-data-2024-06-20' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7708037Z copying path '/nix/store/5ahjfkydg49xvbr3vghhv317prgspnf3-mirrors-list' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7709749Z copying path '/nix/store/swnhrfysvmwjvibcafm0im377pcfs80v-curl-8.12.1-man' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7715293Z copying path '/nix/store/970fk2m63qra4ybkpp99rw7mld9fphlv-nghttp2-1.64.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7836642Z copying path '/nix/store/frpqzb3223826xq72s0fcjmjmj50wpyn-perl5.40.0-Authen-SASL-2.1700' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7886692Z copying path '/nix/store/ldlsmrf2rrq28s08mzjk245vr26dwwhi-perl5.40.0-Test-RequiresInternet-0.05' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7888406Z copying path '/nix/store/hz5m52dx8x6vvi5pp0yikxb3b05bmi2j-perl5.40.0-Test-Needs-0.002010' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7889972Z copying path '/nix/store/vlfgix8rcbj3l9yk0rna1damxkafbq18-perl5.40.0-Net-HTTP-6.23' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7901072Z copying path '/nix/store/vvjpgyk6jgd6k74pgpjrln6m6aqyiaig-perl5.40.0-Try-Tiny-0.31' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7905595Z copying path '/nix/store/6aqxgf5ygcscqsh4p9krd0dz2hc1cn0w-perl5.40.0-WWW-RobotRules-6.02' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7907315Z copying path '/nix/store/lj7p9q5kgmdcq768rvsgvjndi42mjcn8-publicsuffix-list-0-unstable-2024-10-25' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7908946Z copying path '/nix/store/5xvxvpl9armf0p6y9m4g1zl1mypvr9m7-perl5.40.0-TimeDate-2.33' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.7925639Z copying path '/nix/store/i9ymkbklv1q9yzl7wwx7300wbkqdln0r-update-autotools-gnu-config-scripts-hook' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8170577Z copying path '/nix/store/2h648f4xlzszyc01yf67xd2rgira65js-perl5.40.0-Test-Fatal-0.017' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8283200Z copying path '/nix/store/shx8jax9b662cd9nlml731hh9wks24v1-perl5.40.0-HTTP-Date-6.06' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8484773Z copying path '/nix/store/0m34prvcx3d3vd9f4djbaqji7yb9swsh-perl5.40.0-HTTP-CookieJar-0.014' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8486456Z copying path '/nix/store/i9hiqc4dfksm9cpqvff39smfpn49zbj6-perl5.40.0-File-Listing-6.16' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8839035Z copying path '/nix/store/23cshhh8k7z46gadr86krv15xphggawm-kubectl-1.31.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8844910Z copying path '/nix/store/1fqgvq0i498w4ynywyj224i49izzzqrk-protoc-gen-go-grpc-1.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8846457Z copying path '/nix/store/as8g73awbgrhpf5p6qjnrd5v9anw74ix-go-task-3.39.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8847822Z copying path '/nix/store/19402vwa1rndilww6fpbviz0lza8846p-kind-0.24.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:13.8849352Z copying path '/nix/store/i7r45jjmvfxiw8j7ihjx51jachylq1si-protoc-gen-go-1.35.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3491968Z copying path '/nix/store/vlgwyb076hkz7yv96sjnj9msb1jn1ggz-attr-2.5.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3494360Z copying path '/nix/store/8vpg72ik2kgxfj05lc56hkqrdrfl8xi9-bash-5.2p37' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3497658Z copying path '/nix/store/wg9gg3zkwcqhyycj0vkfnhgk5a4z9faq-ed-1.20.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3505639Z copying path '/nix/store/83s1wqvrx7yvy3g6dmdr2icgg3qqbjcp-brotli-1.1.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3507050Z copying path '/nix/store/c9z2sp8dyx1k0zk374v1142hmphashd0-buf-1.47.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3508467Z copying path '/nix/store/fcqfyri9kljs5jd7h556f004qmci1qin-expand-response-params' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3509894Z copying path '/nix/store/0hv5ymwkczx3ak8h3yldfbwbab33jnrw-expat-2.6.4' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3511207Z copying path '/nix/store/mhd0rk497xm0xnip7262xdw9bylvzh99-gcc-13.3.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3515305Z copying path '/nix/store/qiisx6c7qpyzq522j3icsfhj8ayw6ah4-bzip2-1.0.8' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3519548Z copying path '/nix/store/cfb4pxnfh2sf4csk8xh7abfqv96k66nh-glibc-2.40-66-getent' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3521192Z copying path '/nix/store/8k19h07hh2g1w5kp5yglzddswnvdmxpy-gmp-6.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3522590Z copying path '/nix/store/7zv1sq1k25gk2rvgxnm262vp5hydkv1a-gdbm-1.24-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3524128Z copying path '/nix/store/m3da56j3r7h4hp0kr8v1xsnk16x900yf-gnumake-4.4.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3527821Z copying path '/nix/store/2kiskq24j06g4qw3xs8zsy2dkawh4gxk-glibc-2.40-66-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3529337Z copying path '/nix/store/3p3fwczck2yn1wwfjnymzkz8w11vbvg7-gawk-5.3.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3648832Z copying path '/nix/store/3ks7b6p43dpvnlnxgvlcy2jaf1np37p2-gnused-4.9' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3738585Z copying path '/nix/store/1fby1pxf0z16lgl728i2sqwqr2hrw2h8-json-c-0.17' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3761536Z copying path '/nix/store/mwwpv4k7skbx4vr2qjc89pvs7mhmgapb-k9s-0.32.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3839657Z copying path '/nix/store/dyizbk50iglbibrbwbgw2mhgskwb6ham-acl-2.3.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3841848Z copying path '/nix/store/79kh226vw8rrk62jbs27hdad1clwy447-keyutils-1.6.3-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3935707Z copying path '/nix/store/r4p475lxvaklr9rj8l2a4sahkx5c0209-getent-glibc-2.40-66' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.3998337Z copying path '/nix/store/yyfzan4mn874v885jy6fs598gjb31c4l-bzip2-1.0.8-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4000725Z copying path '/nix/store/wnsn67xb3i072b6i496y002byvc3ipa3-kubernetes-helm-3.16.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4282854Z copying path '/nix/store/q57zi48njdcgxy4n8d5lm5pf746drc8f-isl-0.20' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4285260Z copying path '/nix/store/bpzy7snv1xr7s1z2xi7bw0q5z9j6g1gg-libantlr3c-3.4' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4368963Z copying path '/nix/store/0iabf1jhsfrrxkdi599kb8m37p82yr1z-audit-4.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4611654Z copying path '/nix/store/nc394xps4al1r99ziabqvajbkrhxr5b7-gzip-1.13' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4646621Z copying path '/nix/store/ky06iawcwsvxmx8yw66y2a7iy7b14yii-libapparmor-4.0.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4652826Z copying path '/nix/store/pmg7hw4ar16dhx5hk6jswvxy349wzsm7-gnutar-1.35' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4743494Z copying path '/nix/store/fx6mfndjsbb0dqn9jzf1ksz9wf1dlrq7-libcap-2.70-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4794557Z copying path '/nix/store/81awch8mhqanda1vy0c09bflgra4cxh0-glibc-2.40-66-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4815731Z copying path '/nix/store/7yf5ijcl2lh90xs5nkrdpfdvcmc9fnc5-libcbor-0.11.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.4859961Z copying path '/nix/store/bldybfhh9v9dvpms8kh87v1a6jp6i28p-libevent-2.1.12' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.5129155Z copying path '/nix/store/wxgvd9mivxdbahxidq751gxyz7x7jb8n-libffi-3.4.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.5295535Z copying path '/nix/store/p0c3g3dxr818lggbk6ms3nhm97g0pir9-libgpg-error-1.50' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.5435761Z copying path '/nix/store/2w8a5z0rcs4fk3ds3fnd03x6syjjl1hb-libmnl-1.0.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.5546315Z copying path '/nix/store/ywvi2y4yv3qyh0phw9y2ji17smh8nawj-libnfnetlink-1.0.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.5828063Z copying path '/nix/store/dg6d7zs1bwnhwb3sd3xdbldvpa163a5z-libnl-3.10.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.5903809Z copying path '/nix/store/xxc6rkndd68cq1225asn380bbj0512dg-libpsl-0.21.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.5996388Z copying path '/nix/store/qhs6zflzhdr11j6byf1c1j52z39hnaaw-db-4.8.30' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.6109285Z copying path '/nix/store/8g8wdqid20924fbppbljsl6l7gr0p21j-gettext-0.21.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.6219261Z copying path '/nix/store/dsxb6qvi21bzy21c98kb71wfbdj4lmz7-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.6509333Z copying path '/nix/store/nn7nj7xq8gdfyxqhchphzia7i34rwb0v-gmp-with-cxx-6.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.6516147Z copying path '/nix/store/rq8lq7r8vjqrbn2bgfglm9dxfi83gdg9-icu4c-74.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.6643408Z copying path '/nix/store/96m2mjx55syyky6zymjnbl3pvgxlwchb-libnftnl-1.2.8' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.6830341Z copying path '/nix/store/17195j62sjxjn0xwnmj3icr01n3d678r-libnetfilter_conntrack-1.1.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.6876024Z copying path '/nix/store/68vmpyiabh89l7hbp9z2hmwci74vnfi4-libseccomp-2.5.5-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.6997611Z copying path '/nix/store/wr7w1x0x1j4qli60wm22q3bc02dga08c-libtasn1-4.20.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.7196806Z copying path '/nix/store/hnh6ivl105y4sw0ifv4kbihrvbddmlkm-libxcrypt-4.4.36' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.7381714Z copying path '/nix/store/9yh47sg27z9263ll65d414rgcyrclk57-libxml2-2.13.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.7585622Z copying path '/nix/store/99jfkvhck3c2675n2cy71g40km6m0pf9-libassuan-2.5.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.7686172Z copying path '/nix/store/h9c111ckc8wg3ksxb7kj8cwhgaj52118-libgcrypt-1.10.3-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.7688132Z copying path '/nix/store/p9k3wzaw6d3wjgcbrfv2g1chj0mj2inb-lz4-1.10.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.7806530Z copying path '/nix/store/yh2c9f04q1vcfhpkamidrg3sdnwk5bvy-mpdecimal-4.0.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.7869269Z copying path '/nix/store/1h2yigiwy6bgpyzlywj36s5nqkgca8bv-libpcap-1.10.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.7977992Z copying path '/nix/store/9m68vvhnsq5cpkskphgw84ikl9m6wjwp-coreutils-9.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.8053053Z copying path '/nix/store/b75dbfz0gria25kn2qlfpnmp39h31spw-mpfr-4.2.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.8176482Z copying path '/nix/store/mgpn83jmnf37ky77a8qy6m466qqmlyqk-cln-1.3.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.8602809Z copying path '/nix/store/qvrp85i3yc9vw5x1vyx714m03jsf60rc-cvc4-1.8' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.8625491Z copying path '/nix/store/z7ndn3k8zfjrf713gq443q7a2ixzaab5-ncurses-6.4.20221231' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.9438530Z copying path '/nix/store/6s0zzvp9in28jkmzwh5p69v1zwpi5mi4-linux-pam-1.6.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.9568682Z copying path '/nix/store/q95qgxy40rx1ifa13j8l38sx3myvkhb9-nettle-3.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.9786597Z copying path '/nix/store/1w5jm9zaxwr5b8nvh41c7iz236my185m-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:14.9929784Z copying path '/nix/store/j4377imdqpm27h5hspds1skgsazyj0d9-nghttp2-1.64.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.0129610Z copying path '/nix/store/n9ya3i584zvcw6696326sdlg61d6lamf-npth-1.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.0142593Z copying path '/nix/store/kavgc464axad77kj4x4bza7s345nrhin-iptables-1.8.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.0323084Z copying path '/nix/store/pbjp09wrnbklrfy7n2h5qix15fl5ylhj-libmpc-1.3.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.0759965Z copying path '/nix/store/lr3cvmq5ahqcj29p8c6m0fdl1y8krc86-diffutils-3.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.0788429Z copying path '/nix/store/vc2d1bfy1a5y1195nq7k6p0zcm6q89nx-findutils-4.10.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.0861307Z copying path '/nix/store/isk8l71r4d1nl39mpv92ank2rs4cx3w9-openssl-3.3.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.1367243Z copying path '/nix/store/mqvgaq2bnb1701l7zcn0d6vd7w8b0z7l-openssl-3.3.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.2117561Z copying path '/nix/store/w8xb93nwhnhlkqd9kwahkzqvbg98qs74-nghttp2-1.64.0-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.2124199Z copying path '/nix/store/cjg4jmnnf26367irpagiiffrni9bk7z0-gnupg-2.4.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.2201154Z copying path '/nix/store/smd33cbgm2pwwnwj9l4b4fk39bdxfsfv-p11-kit-0.25.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.2327608Z copying path '/nix/store/zfjv48ikkqn3yhi8zi7lvqvxyscbg87n-patch-2.7.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.2815311Z copying path '/nix/store/9wwkzvmrlv43y71rbw8sbh9bamc62a16-patchelf-0.15.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3129389Z copying path '/nix/store/5md7gyz45fm4bmkg2kb9a1hnmg8ryk9j-pcre2-10.44' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3249490Z copying path '/nix/store/pgq4agv5wpanzr9a8mqlkncdbick7mn2-pcsclite-2.3.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3426512Z copying path '/nix/store/9sqpmkq9fcycsrldbsdxw93hvspy8pr9-perl5.40.0-Clone-0.46' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3439359Z copying path '/nix/store/jpk7s673pli65raimpl43jbhbg6ja4kx-perl5.40.0-FCGI-0.82' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3627076Z copying path '/nix/store/x4kgvzlrndlsc9mn2gyrx9dla0a5y7y3-perl5.40.0-TermReadKey-2.38' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3629480Z copying path '/nix/store/gda0f0dw64h74i98vkk7b7jwzxbkigzs-prometheus-2.55.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3669453Z copying path '/nix/store/mfj2pd4n7vbczdx381margrm9b9jkbpq-protoc-gen-connect-go-1.17.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3791066Z copying path '/nix/store/6hrwqlqxzvn3lry7fjyz4i6dkdmg38m6-perl5.40.0-HTTP-Message-6.45' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.3806390Z copying path '/nix/store/zwh1q2r2a1prmw4xxfpqa06ic7dl31yd-qrencode-4.1.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.4059846Z copying path '/nix/store/flw2dwllbq50954bk1qm6xwdzp8ikacl-systemd-minimal-libs-256.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.4181344Z copying path '/nix/store/88x6dfa5gnls0pmbvp4b9ci3bqqfja0n-util-linux-minimal-2.39.4-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.4184679Z copying path '/nix/store/7f8vg8z0q721jyahy1vjbg2x3irbk5az-unbound-1.22.0-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.4262633Z copying path '/nix/store/53rkjnnkbgg8pfn6ffpcdx4xbrl98yh8-readline-8.2p13' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.4286477Z copying path '/nix/store/mcr5gqxgkknqxa2vhnhixzd97vdsnsxi-perl5.40.0-HTML-Parser-3.81' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.4509527Z copying path '/nix/store/q73n7qdcl9yvlwh6p4n414vkxgnjjryp-perl5.40.0-HTTP-Cookies-6.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.5235645Z copying path '/nix/store/qjsj5vnbfpbg6r7jhd7znfgmcy0arn8n-gnugrep-3.11' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.5814059Z copying path '/nix/store/0z09m6fwgmc2a0zazp6lhyadfig10fd6-perl5.40.0-CGI-4.59' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.5966103Z copying path '/nix/store/qxp4rv76dpjbvs37c3sfq33ial7mxgb0-perl5.40.0-HTTP-Daemon-6.16' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.6034193Z copying path '/nix/store/q0fgny8kpagi6blmzyw15n4cmfx647kn-perl5.40.0-HTTP-Negotiate-6.01' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.6528757Z copying path '/nix/store/bhvah40258cfi5sj1wiy2zmdn5xgj4m1-krb5-1.21.3-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.6636992Z copying path '/nix/store/fvm65iknlk5kx9938xsc5485s9wzz1ig-lvm2-2.03.27-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.6817189Z copying path '/nix/store/pa7plncc30fhm909bis9haakh7gi0qbl-bash-interactive-5.2p37' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.6942825Z copying path '/nix/store/09pyjyjdr5mwmki9gb0yf809l54xr8p2-openssl-3.3.3-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.6946818Z copying path '/nix/store/dwyr8xvjby2l1zz92a5pfl6bq27jhrm6-krb5-1.21.3-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7024833Z copying path '/nix/store/6k8v1ffagipraln3nn12h1n22d5l9dvr-perl5.40.0-Net-SSLeay-1.92' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7095021Z copying path '/nix/store/j7k6mzbdydimzw4mf23ahq6a7rz2f7w2-util-linux-minimal-2.39.4-login' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7244135Z copying path '/nix/store/a9vgxnafcgb1khpjgn87ixmyv4dsqlp0-util-linux-minimal-2.39.4-mount' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7286621Z copying path '/nix/store/blkjagm7k01k9sghpyckw4y6dd6z0knl-util-linux-minimal-2.39.4-swap' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7436693Z copying path '/nix/store/sf31nmjhlsdp2h26vbwbpa7gwfn4i4na-xz-5.6.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7456489Z copying path '/nix/store/xv2bvwf6zv1hhlm9w4x0f7n0idhbsjh7-perl5.40.0-CGI-Fast-2.16' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7717815Z copying path '/nix/store/lmfya9by589b0qgc2pqps1zy4jhldkvq-cryptsetup-2.7.5' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7856127Z copying path '/nix/store/hgq0ircylcm0mx6y7ml9chcbwgrz9xg7-openssl-3.3.3-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7858620Z copying path '/nix/store/xxssfwyz4l32wiadvsrcf259nkb91myn-z3-4.11.2-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7915912Z copying path '/nix/store/vpg96mfr1jw5arlqg831i69g29v0sdb3-zlib-1.3.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7922155Z copying path '/nix/store/73pq792gn6i9qfywsnd347vg0152w8rw-perl5.40.0-IO-Socket-SSL-2.083' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.7956268Z copying path '/nix/store/6cf2yj12gf51jn5vdbdw01gmgvyj431s-zstd-1.5.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.8127613Z copying path '/nix/store/23j515bg7lgis34f0jkm9j6g00dpp2sh-binutils-2.43.1-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.8491903Z copying path '/nix/store/yk246qv4bbmr0mmh9y3gnfdkra5nnjgi-cracklib-2.10.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.8643474Z copying path '/nix/store/p751fjd81h3926ivxsq0x20lz5j7yscc-file-5.45' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.9017203Z copying path '/nix/store/yg4ahy7gahx91nq80achmzilrjyv0scj-gcc-13.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.9211463Z copying path '/nix/store/1md58p5vm4dixcwwpwrs78a7kjf6nnqk-gnutls-3.8.6' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.9484781Z copying path '/nix/store/nfdnparxrnv6sy627lw1c27pdqzpbfs2-kexec-tools-2.0.29' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.9551384Z copying path '/nix/store/n6zw4496n0bd9r6gjwkjmf5ja6757q32-krb5-1.21.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:15.9659812Z copying path '/nix/store/kc1sdzqnymjwy74chlnkq2xlxnmrg30x-libfido2-1.15.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.0294040Z copying path '/nix/store/yr9xanc3bgp95fj9kvbrrq47zhzni2i6-kmod-31' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.0490524Z copying path '/nix/store/qdypipr8zp0nkyrwqnakn3q3xhpghsrb-kmod-31-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.0804684Z copying path '/nix/store/6m49g3aqk5d5vdxp7chpgim5l6cfm7d6-libarchive-3.7.7-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.1055304Z copying path '/nix/store/pvyhn761hgn17fpr6fy168vcv1ciwsgl-libssh2-1.11.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.1181340Z copying path '/nix/store/22qnvg3zddkf7rbpckv676qpsc2najv9-binutils-2.43.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.1693070Z copying path '/nix/store/zfk4v9lxal3ch98qnf7zlciwgmk4w1ij-krb5-1.21.3-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.1877241Z copying path '/nix/store/17rp2wzkp8xfhxcd5zihx6qmnbaadlhs-libmicrohttpd-1.0.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.2304395Z copying path '/nix/store/qmz79v7x18zmi6g2iagxwazqfwbxzhra-libssh2-1.11.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.2735225Z copying path '/nix/store/q4j9jj8jw74216cw4chsqlwdnglwly6p-perl-5.40.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.2858040Z copying path '/nix/store/f2sjbvr2gbp1dl1fwak6b77j18wv2rm8-perl5.40.0-Net-SMTP-SSL-1.04' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.3207426Z copying path '/nix/store/w2m5p0fb6pmqq6dz2jqlvnyw7n4vcbpx-curl-8.12.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.3219915Z copying path '/nix/store/sh26c2jcz7w2gii2px77bqy64fd026jd-boost-1.81.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.3837053Z copying path '/nix/store/i7gfv740vcygvl9pgqwq29nkzmsp09ww-sqlite-3.46.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.4015800Z copying path '/nix/store/rbns8mzghhqxih4hj2js4mb4s6ivy5d1-xz-5.6.3-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.4017247Z copying path '/nix/store/ccrjbcfl5zcdp0n5mh69f4airrb9g8m4-zlib-1.3.1-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.4283498Z copying path '/nix/store/xmmli2ijsz2br6573z3sqsgg0spnj7i9-zstd-1.5.6-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.4822868Z copying path '/nix/store/lgfp6sl5hpykmld29rqvi9pam8ji8k24-curl-8.12.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.5038356Z copying path '/nix/store/0rg4nqym82ngd29dy8qm1bggm94dkry3-libssh2-1.11.1-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.5290197Z copying path '/nix/store/hsxp8g7zdr6wxk1mp812g8nbzvajzn4w-stdenv-linux' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.5876627Z copying path '/nix/store/gnnac2vpa466p2lpzskmbj5vjr6ikzhg-libpwquality-1.4.5-lib' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.5976179Z copying path '/nix/store/awbfciyq3cjvw6x8wd8wdjy8z2qxm98n-elfutils-0.191' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.6227974Z copying path '/nix/store/3hgwjb5hp0jm8fyi4vx9s4f3hjvp0n1r-tpm2-tss-4.1.3' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.6366376Z copying path '/nix/store/lhpwdis5hkyljz1d200bj1s6g51ljq9k-python3-3.12.8' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.6701949Z copying path '/nix/store/z9lnvmqymg80hk671fm2533ncczkf7z2-kbd-2.6.4' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.7488183Z copying path '/nix/store/8qf68jid6rr2f4c8ppyp0ixdlv0axnpn-curl-8.12.1-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.9819123Z copying path '/nix/store/007wiy8x5irdxzsdx3bdqx0k0a8hp6ji-shellcheck-0.10.0-bin' from 'https://cache.nixos.org'... -2025-07-23T19:31:16.9820652Z copying path '/nix/store/f95nqmgp2vaz1h68n36k605ay1ixnj0a-libbpf-1.4.7' from 'https://cache.nixos.org'... -2025-07-23T19:31:17.0428014Z copying path '/nix/store/04shrm4bvxw1yam87da7y9k872kqn777-curl-8.12.1-dev' from 'https://cache.nixos.org'... -2025-07-23T19:31:17.1735276Z building '/nix/store/rkn5fk95kmnbxk65bxlyzqnmsmafh1f1-kind-with-registry.sh.drv'... -2025-07-23T19:31:17.2480208Z copying path '/nix/store/w9qcpyhjrxsqrps91wkz8r4mqvg9zrxc-systemd-256.10' from 'https://cache.nixos.org'... -2025-07-23T19:31:17.3457987Z copying path '/nix/store/00x4qvjp4kcm932rv281v8n9y4xk9dv1-solc-0.8.21' from 'https://cache.nixos.org'... -2025-07-23T19:31:17.3569607Z copying path '/nix/store/1mv8pj4nxwnd9bbxshljc9p4cnl3rakj-binutils-wrapper-2.43.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:17.3988099Z copying path '/nix/store/ch1brsi5xwxgyv23csmvw1am9l40rf1c-shellcheck-0.10.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:18.3928347Z copying path '/nix/store/99accs107rzm78z74cj1wns59d0m1nh8-perl5.40.0-libwww-perl-6.72' from 'https://cache.nixos.org'... -2025-07-23T19:31:18.4427014Z copying path '/nix/store/7s649psqfmp6bf2ij6kba3nbwjp50z0w-promtail-3.2.1' from 'https://cache.nixos.org'... -2025-07-23T19:31:19.3718145Z copying path '/nix/store/1fwh9nv8n93rjc7i7j9gcm3whdqpgy84-git-2.47.2' from 'https://cache.nixos.org'... -2025-07-23T19:31:20.3471146Z copying path '/nix/store/gnd8f9h2ycxrfrvrga508c4n9cxy6720-gcc-wrapper-13.3.0' from 'https://cache.nixos.org'... -2025-07-23T19:31:20.3559070Z copying path '/nix/store/szfi0xd0cwdaldhkp8vlgi7jfv662nmd-stdenv-linux' from 'https://cache.nixos.org'... -2025-07-23T19:31:20.4069895Z building '/nix/store/mbmxfdxryq3wr2wxm5brh42mcad1gvzy-kind-with-registry-1.0.0.drv'... -2025-07-23T19:31:20.4979476Z building '/nix/store/gvy0rwami6li8s64cb1q1hv75mnglnjn-nix-shell-env.drv'... -2025-07-23T19:31:20.9272594Z this path will be fetched (0.10 MiB download, 0.10 MiB unpacked): -2025-07-23T19:31:20.9273342Z /nix/store/hlv28jlwzk6kqj6vljm9cn8i7pw030nx-bash-interactive-5.2p37-man -2025-07-23T19:31:20.9282846Z copying path '/nix/store/hlv28jlwzk6kqj6vljm9cn8i7pw030nx-bash-interactive-5.2p37-man' from 'https://cache.nixos.org'... -2025-07-23T19:31:21.0821439Z dependencies installed -2025-07-23T19:31:21.0886821Z ##[group]Run echo "::warning::Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch?" -2025-07-23T19:31:21.0888089Z echo "::warning::Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch?" -2025-07-23T19:31:21.0927464Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-07-23T19:31:21.0927969Z env: -2025-07-23T19:31:21.0928266Z TMPDIR: /home/runner/work/_temp -2025-07-23T19:31:21.0928609Z ##[endgroup] -2025-07-23T19:31:21.1011948Z ##[warning]Monitoring credentials not found. Skipping collector start. Is the PR from a fork branch? -2025-07-23T19:31:21.1043315Z ##[group]Run AVALANCHEGO_BUILD_PATH=/tmp/e2e/warp/avalanchego/build /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --impure --command bash -x ./scripts/run_task.sh test-e2e-warp-ci -2025-07-23T19:31:21.1046892Z AVALANCHEGO_BUILD_PATH=/tmp/e2e/warp/avalanchego/build /home/runner/work/_actions/ava-labs/avalanchego/66ce7a7701db0c4b370f97b339478d5b5ebe919a/.github/actions/run-monitored-tmpnet-cmd/nix-develop.sh --impure --command bash -x ./scripts/run_task.sh test-e2e-warp-ci -2025-07-23T19:31:21.1083798Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2025-07-23T19:31:21.1084319Z env: -2025-07-23T19:31:21.1084499Z TMPDIR: /home/runner/work/_temp -2025-07-23T19:31:21.1084742Z TMPNET_START_METRICS_COLLECTOR: false -2025-07-23T19:31:21.1084988Z TMPNET_START_LOGS_COLLECTOR: false -2025-07-23T19:31:21.1085227Z TMPNET_CHECK_METRICS_COLLECTED: false -2025-07-23T19:31:21.1085465Z TMPNET_CHECK_LOGS_COLLECTED: false -2025-07-23T19:31:21.1085674Z LOKI_USERNAME: -2025-07-23T19:31:21.1085852Z LOKI_PASSWORD: -2025-07-23T19:31:21.1086039Z PROMETHEUS_USERNAME: -2025-07-23T19:31:21.1086235Z PROMETHEUS_PASSWORD: -2025-07-23T19:31:21.1086422Z GH_REPO: ava-labs/coreth -2025-07-23T19:31:21.1086618Z GH_WORKFLOW: CI -2025-07-23T19:31:21.1086793Z GH_RUN_ID: 16480013789 -2025-07-23T19:31:21.1086982Z GH_RUN_NUMBER: 5026 -2025-07-23T19:31:21.1087162Z GH_RUN_ATTEMPT: 1 -2025-07-23T19:31:21.1087338Z GH_JOB_ID: e2e_warp -2025-07-23T19:31:21.1087512Z ##[endgroup] -2025-07-23T19:31:21.1311789Z No local flake found, will attempt to use avalanchego flake -2025-07-23T19:31:21.1398039Z Starting nix shell for github:ava-labs/avalanchego?ref=v1.13.3-rc.1 -2025-07-23T19:31:23.4703777Z + set -euo pipefail -2025-07-23T19:31:23.4704411Z + command -v task -2025-07-23T19:31:23.4704754Z + exec task test-e2e-warp-ci -2025-07-23T19:31:23.4930421Z task: [build] ./scripts/build.sh -2025-07-23T19:31:23.5222390Z Using branch: d85ec0364 -2025-07-23T19:31:23.5239388Z Building Coreth @ GitCommit: d85ec0364204a0b3e07e9cdc140a65c53b4d6ce4 at /home/runner/.avalanchego/plugins/srEXiWaHuhNyGwPUi444Tu47ZEDwxTWrbQiuD7FmgSAQ6X7Dy -2025-07-23T19:31:54.0361778Z task: [test-e2e-warp] ./scripts/run_ginkgo_warp.sh -2025-07-23T19:31:54.0569916Z Using branch: d85ec0364 -2025-07-23T19:31:54.0586743Z Running with extra args: --avalanchego-path=/tmp/e2e/warp/avalanchego/build/avalanchego -2025-07-23T19:32:11.2865231Z Running Suite: coreth warp e2e test - /home/runner/work/coreth/coreth/tests/warp -2025-07-23T19:32:11.2865942Z ================================================================================ -2025-07-23T19:32:11.2866544Z Random Seed: 1753299114 -2025-07-23T19:32:11.2866739Z -2025-07-23T19:32:11.2866907Z Will run 1 of 1 specs -2025-07-23T19:32:11.2867282Z ------------------------------ -2025-07-23T19:32:11.2867659Z [SynchronizedBeforeSuite]  -2025-07-23T19:32:11.2868238Z /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 -2025-07-23T19:32:11.2869371Z > Enter [SynchronizedBeforeSuite] TOP-LEVEL - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 @ 07/23/25 19:32:11.286 -2025-07-23T19:32:11.2875272Z INFO waiting for network to start {"timeoutSeconds": 120} -2025-07-23T19:32:11.2876704Z INFO preparing configuration for new network {"runtimeConfig": {"process":{"avalancheGoPath":"/tmp/e2e/warp/avalanchego/build/avalanchego","pluginDir":"/home/runner/.avalanchego/plugins"}}} -2025-07-23T19:32:11.2998438Z INFO starting network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e", "uuid": "831b7731-4dd7-401a-a2aa-7d4d54bfac1b"} -2025-07-23T19:32:11.9026676Z INFO started local node {"nodeID": "NodeID-3wsBNScnZA9m17LzxpzCGvmzcKf67tPHk", "dataDir": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e/NodeID-3wsBNScnZA9m17LzxpzCGvmzcKf67tPHk", "isEphemeral": false} -2025-07-23T19:32:12.4551147Z INFO started local node {"nodeID": "NodeID-AjFCBTWUwfRZHTnySyCjdknRp12LaqFon", "dataDir": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e/NodeID-AjFCBTWUwfRZHTnySyCjdknRp12LaqFon", "isEphemeral": false} -2025-07-23T19:32:12.4553333Z INFO waiting for nodes to report healthy -2025-07-23T19:32:14.4565017Z INFO node is healthy {"nodeID": "NodeID-AjFCBTWUwfRZHTnySyCjdknRp12LaqFon", "uri": "http://127.0.0.1:35575"} -2025-07-23T19:32:17.8564231Z INFO node is healthy {"nodeID": "NodeID-3wsBNScnZA9m17LzxpzCGvmzcKf67tPHk", "uri": "http://127.0.0.1:43963"} -2025-07-23T19:32:17.8566355Z INFO started network {"networkDir": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e", "uuid": "831b7731-4dd7-401a-a2aa-7d4d54bfac1b"} -2025-07-23T19:32:17.8570530Z INFO metrics and logs available via grafana (collectors must be running) {"url": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C831b7731-4dd7-401a-a2aa-7d4d54bfac1b&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299131299&to=now", "linkPath": "/home/runner/.tmpnet/networks/20250723-193211.287722-coreth-warp-e2e/metrics.txt"} -2025-07-23T19:32:17.8573190Z INFO network started successfully -2025-07-23T19:32:17.8581182Z INFO network nodes are available {"uris": [{"NodeID":"NodeID-3wsBNScnZA9m17LzxpzCGvmzcKf67tPHk","URI":"http://127.0.0.1:43963"},{"NodeID":"NodeID-AjFCBTWUwfRZHTnySyCjdknRp12LaqFon","URI":"http://127.0.0.1:35575"}]} -2025-07-23T19:32:17.8583746Z < Exit [SynchronizedBeforeSuite] TOP-LEVEL - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 @ 07/23/25 19:32:17.857 (6.571s) -2025-07-23T19:32:17.8587785Z > Enter [SynchronizedBeforeSuite] TOP-LEVEL - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 @ 07/23/25 19:32:17.857 -2025-07-23T19:32:17.8606402Z < Exit [SynchronizedBeforeSuite] TOP-LEVEL - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:79 @ 07/23/25 19:32:17.86 (2ms) -2025-07-23T19:32:17.8607797Z [SynchronizedBeforeSuite] PASSED [6.574 seconds] -2025-07-23T19:32:17.8608483Z ------------------------------ -2025-07-23T19:32:17.8608936Z [Warp] -2025-07-23T19:32:17.8609537Z /home/runner/work/coreth/coreth/tests/warp/warp_test.go:127 -2025-07-23T19:32:17.8610657Z C-Chain -> C-Chain -2025-07-23T19:32:17.8611495Z /home/runner/work/coreth/coreth/tests/warp/warp_test.go:156 -2025-07-23T19:32:17.8613307Z > Enter [BeforeEach] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/metrics_link.go:27 @ 07/23/25 19:32:17.86 -2025-07-23T19:32:17.8615605Z < Exit [BeforeEach] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/metrics_link.go:27 @ 07/23/25 19:32:17.86 (0s) -2025-07-23T19:32:17.8617342Z > Enter [It] C-Chain -> C-Chain - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:156 @ 07/23/25 19:32:17.86 -2025-07-23T19:32:17.8618792Z "level"=0 "msg"="Creating ethclient for blockchain A" "blockchainID"="2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo" -2025-07-23T19:32:17.8620197Z "level"=0 "msg"="Creating ethclient for blockchain A" "blockchainID"="2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo" -2025-07-23T19:32:17.8621590Z "level"=0 "msg"="Creating ethclient for blockchain B" "blockchainID"="2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo" -2025-07-23T19:32:17.8625694Z "level"=0 "msg"="Creating ethclient for blockchain B" "blockchainID"="2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo" -2025-07-23T19:32:19.8672933Z "level"=0 "msg"="Sending message from A to B" -2025-07-23T19:32:19.8679833Z "level"=0 "msg"="Sending sendWarpMessage transaction" "txHash"="0xcdd2c3e614865c0a389544350f188695a106bdab5883f66ee56725b3528fc8df" -2025-07-23T19:32:19.8686332Z "level"=0 "msg"="Waiting for transaction to be accepted" -2025-07-23T19:32:20.8697313Z "level"=0 "msg"="Constructing warp block hash unsigned message" "blockHash"="0x5c7afdebbd10e93279441062b28e528c80b6853d395915f4f5fbdd6730c0a77d" -2025-07-23T19:32:20.8698273Z "level"=0 "msg"="Fetching relevant warp logs from the newly produced block" -2025-07-23T19:32:20.8701442Z "level"=0 "msg"="Parsing logData as unsigned warp message" -2025-07-23T19:32:20.8704174Z "level"=0 "msg"="Parsed unsignedWarpMsg" "unsignedWarpMessageID"="2dJXPKGac79ZmsoVeyTQ2v4ZVMTDedMyvvqKY3Jfgvk65i8kKG" "unsignedWarpMessage"="UnsignedMessage(NetworkID = 88888, SourceChainID = 2Nzr7CwuX11Vo42ayWGcy7D1nWEEdxJwe3qjjN4xXoizHUaLzo, Payload = 000000000001000000148db97c7cece249c2b98bdc0226cc4c2a57bf52fc00000003010203)" -2025-07-23T19:32:20.8706441Z "level"=0 "msg"="client accepted the block containing SendWarpMessage" "client"=0 "height"=3 -2025-07-23T19:32:20.8709005Z "level"=0 "msg"="client accepted the block containing SendWarpMessage" "client"=1 "height"=3 -2025-07-23T19:32:20.8709808Z "level"=0 "msg"="Aggregating signatures via API" -2025-07-23T19:32:20.8725761Z "level"=0 "msg"="Aggregating signatures from validator set" "numValidators"=2 "totalWeight"=2000000000000000 -2025-07-23T19:32:20.8775430Z "level"=0 "msg"="Aggregated signatures for warp messages" "addressedCallMessage"="000000015b38b5a4cf0874043005ee5ab1209c8edefd431257b7e6764199106d78747918698d00000025000000000001000000148db97c7cece249c2b98bdc0226cc4c2a57bf52fc00000003010203000000000000000103b28a349108202d40221da58363b9a8755547558dd59fb77399eb02252498c183cc8177ecaeec86374c981087acb3263e0aed71170f7493c1ad984c130d900eb157ec34e968ac4ef5ce4e9ab2e40983dfdff9032992815b5925648feb51540098" "blockPayloadMessage"="000000015b38b5a4cf0874043005ee5ab1209c8edefd431257b7e6764199106d78747918698d000000260000000000005c7afdebbd10e93279441062b28e528c80b6853d395915f4f5fbdd6730c0a77d000000000000000103b6de3a05d724fe7067ff3bd8d610c2417ac356327cce728126648600c597dc32e5f7c78fc326f914aeacae4840616f07139c390ee35c1aa059071140b39740dc2a94f71d5c161a91a13d9b1e8f4a647265d7410fafc4ca3cd808a8a9f84b1619" -2025-07-23T19:32:20.8782372Z "level"=0 "msg"="Aggregating signatures via p2p aggregator" -2025-07-23T19:32:20.8783125Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:20.8794801Z "level"=0 "msg"="Fetching block payload aggregate signature via p2p API" -2025-07-23T19:32:20.8818010Z "level"=0 "msg"="Delivering addressed call payload to receiving subnet" -2025-07-23T19:32:20.8827960Z "level"=0 "msg"="Sending getVerifiedWarpMessage transaction" "txHash"="0x2c84ac1a0bb1cb97d7c051142046368d4f828b9453583d497eb46195dfbc114c" "txBytes"="02f9017383015b3803843b9aca008534630b8a00834c4b4094020000000000000000000000000000000000000580a46f8253500000000000000000000000000000000000000000000000000000000000000000f8dff8dd940200000000000000000000000000000000000005f8c6a0000000015b38b5a4cf0874043005ee5ab1209c8edefd431257b7e6764199106da078747918698d00000025000000000001000000148db97c7cece249c2b98bdc02a026cc4c2a57bf52fc00000003010203000000000000000103b28a349108202d40a0221da58363b9a8755547558dd59fb77399eb02252498c183cc8177ecaeec8637a04c981087acb3263e0aed71170f7493c1ad984c130d900eb157ec34e968ac4ef5a0ce4e9ab2e40983dfdff9032992815b5925648feb51540098ff0000000000000001a0389ea93aa7de9afca4268aff0963288bc18581b29eb3b0163d441cea1520172ea0569686ef255a3df87c0edea9d8129a5e39c42e282b3e1ae62ddfde1822bfc099" -2025-07-23T19:32:20.8833762Z "level"=0 "msg"="Waiting for transaction to be accepted" -2025-07-23T19:32:21.8842323Z "level"=0 "msg"="Fetching relevant warp logs and receipts from new block" -2025-07-23T19:32:21.8845195Z "level"=0 "msg"="Delivering block hash payload to receiving subnet" -2025-07-23T19:32:21.8856674Z "level"=0 "msg"="Sending getVerifiedWarpBlockHash transaction" "txHash"="0x7232381eb0a29380f4cbc22793f6b6621bada7742612c6af889f805f22d74b06" "txBytes"="02f9017383015b3804843b9aca008534630b8a00834c4b4094020000000000000000000000000000000000000580a4ce7f59290000000000000000000000000000000000000000000000000000000000000000f8dff8dd940200000000000000000000000000000000000005f8c6a0000000015b38b5a4cf0874043005ee5ab1209c8edefd431257b7e6764199106da078747918698d000000260000000000005c7afdebbd10e93279441062b28e528ca080b6853d395915f4f5fbdd6730c0a77d000000000000000103b6de3a05d724fea07067ff3bd8d610c2417ac356327cce728126648600c597dc32e5f7c78fc326f9a014aeacae4840616f07139c390ee35c1aa059071140b39740dc2a94f71d5c161aa091a13d9b1e8f4a647265d7410fafc4ca3cd808a8a9f84b1619ff00000000000001a06b09e4593d91fbf3bdf3e6d2a3f91cf48322ecd89740f036eec6c8b269861b82a005128aeaf8540fe0ff729a244d8cd48aadfd9dd91b02d05815d9703c1c0e69d7" -2025-07-23T19:32:21.8862841Z "level"=0 "msg"="Waiting for transaction to be accepted" -2025-07-23T19:32:22.8867952Z "level"=0 "msg"="Fetching relevant warp logs and receipts from new block" -2025-07-23T19:32:22.8870534Z "level"=0 "msg"="Executing warp load test" -2025-07-23T19:32:22.8875439Z "level"=0 "msg"="Distributing funds on sending subnet" "numKeys"=2 -2025-07-23T19:32:27.4089287Z "level"=0 "msg"="Distributing funds on receiving subnet" "numKeys"=2 -2025-07-23T19:32:29.0096990Z "level"=0 "msg"="Creating workers for each subnet..." -2025-07-23T19:32:29.0105130Z "level"=0 "msg"="Subscribing to warp send events on sending subnet" -2025-07-23T19:32:29.0108105Z "level"=0 "msg"="Generating tx sequence to send warp messages..." -2025-07-23T19:32:29.0127167Z "level"=0 "msg"="Executing warp send loader..." -2025-07-23T19:32:30.0353730Z "level"=0 "msg"="Executing warp delivery sequences..." -2025-07-23T19:32:30.0354585Z "level"=0 "msg"="Executing warp delivery..." -2025-07-23T19:32:30.0357086Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0358884Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0381993Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0403657Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0427877Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0441397Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0460714Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0471012Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0495871Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0510439Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0529751Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0549373Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0570581Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0587857Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0602726Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0618737Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0636601Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0653117Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0671616Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:30.0690977Z "level"=0 "msg"="Fetching addressed call aggregate signature via p2p API" -2025-07-23T19:32:33.0152384Z "level"=0 "msg"="Completed warp delivery successfully." -2025-07-23T19:32:33.0154990Z < Exit [It] C-Chain -> C-Chain - /home/runner/work/coreth/coreth/tests/warp/warp_test.go:156 @ 07/23/25 19:32:33.015 (15.155s) -2025-07-23T19:32:33.0157347Z > Enter [AfterEach] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/metrics_link.go:33 @ 07/23/25 19:32:33.015 -2025-07-23T19:32:33.0168779Z INFO metrics and logs available via grafana (collectors must be running) {"uri": "https://grafana-poc.avax-dev.network/d/kBQpRdWnk/avalanche-main-dashboard?&var-filter=network_uuid%7C%3D%7C831b7731-4dd7-401a-a2aa-7d4d54bfac1b&var-filter=is_ephemeral_node%7C%3D%7Cfalse&from=1753299137860&to=1753299165015"} -2025-07-23T19:32:33.0172225Z < Exit [AfterEach] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/metrics_link.go:33 @ 07/23/25 19:32:33.016 (1ms) -2025-07-23T19:32:33.0174994Z > Enter [DeferCleanup (Each)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0177589Z < Exit [DeferCleanup (Each)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0179637Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0181315Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0183239Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0185212Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0186780Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0188380Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0190435Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0192066Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0194370Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0196522Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0198200Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0200654Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0202309Z > Enter [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0204450Z < Exit [DeferCleanup (Each)] [Warp] - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0205841Z • [15.156 seconds] -2025-07-23T19:32:33.0206353Z ------------------------------ -2025-07-23T19:32:33.0206833Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0207832Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0209863Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0212309Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 (0s) -2025-07-23T19:32:33.0213698Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:32:33.0214441Z ------------------------------ -2025-07-23T19:32:33.0214914Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0216027Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0218134Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.016 -2025-07-23T19:32:33.0220601Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) -2025-07-23T19:32:33.0221966Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:32:33.0222530Z ------------------------------ -2025-07-23T19:32:33.0223011Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0224299Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0226648Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 -2025-07-23T19:32:33.0229138Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) -2025-07-23T19:32:33.0230521Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:32:33.0231070Z ------------------------------ -2025-07-23T19:32:33.0231556Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0232603Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0234906Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 -2025-07-23T19:32:33.0237460Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) -2025-07-23T19:32:33.0238884Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:32:33.0239477Z ------------------------------ -2025-07-23T19:32:33.0239985Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0241054Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0243300Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 -2025-07-23T19:32:33.0246304Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) -2025-07-23T19:32:33.0247555Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:32:33.0248160Z ------------------------------ -2025-07-23T19:32:33.0248662Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0249760Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0252013Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 -2025-07-23T19:32:33.0254817Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) -2025-07-23T19:32:33.0256263Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:32:33.0256871Z ------------------------------ -2025-07-23T19:32:33.0257378Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0258500Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0260751Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 -2025-07-23T19:32:33.0263270Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 (0s) -2025-07-23T19:32:33.0264314Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:32:33.0264667Z ------------------------------ -2025-07-23T19:32:33.0264971Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0265792Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0267027Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.017 -2025-07-23T19:32:33.0267797Z INFO shutting down network -2025-07-23T19:32:33.0971487Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.096 (80ms) -2025-07-23T19:32:33.0973091Z [DeferCleanup (Suite)] PASSED [0.080 seconds] -2025-07-23T19:32:33.0973732Z ------------------------------ -2025-07-23T19:32:33.0974442Z [DeferCleanup (Suite)]  -2025-07-23T19:32:33.0975571Z /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 -2025-07-23T19:32:33.0977880Z > Enter [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.096 -2025-07-23T19:32:33.0980266Z < Exit [DeferCleanup (Suite)] TOP-LEVEL - /home/runner/go/pkg/mod/github.com/ava-labs/avalanchego@v1.13.3-rc.1/tests/fixture/e2e/ginkgo_test_context.go:96 @ 07/23/25 19:32:33.096 (0s) -2025-07-23T19:32:33.0981703Z [DeferCleanup (Suite)] PASSED [0.000 seconds] -2025-07-23T19:32:33.0982293Z ------------------------------ -2025-07-23T19:32:33.0982590Z -2025-07-23T19:32:33.0983110Z Ran 1 of 1 Specs in 21.811 seconds -2025-07-23T19:32:33.0984259Z SUCCESS! -- 1 Passed | 0 Failed | 0 Pending | 0 Skipped -2025-07-23T19:32:33.0984973Z PASS -2025-07-23T19:32:33.1151644Z -2025-07-23T19:32:33.1152113Z Ginkgo ran 1 suite in 38.306979704s -2025-07-23T19:32:33.1152524Z Test Suite Passed -2025-07-23T19:32:33.1268502Z ##[group]Run actions/upload-artifact@v4 -2025-07-23T19:32:33.1268743Z with: -2025-07-23T19:32:33.1268915Z name: warp-tmpnet-data -2025-07-23T19:32:33.1269311Z path: ~/.tmpnet/networks -~/.tmpnet/prometheus/prometheus.log -~/.tmpnet/promtail/promtail.log - -2025-07-23T19:32:33.1269741Z if-no-files-found: error -2025-07-23T19:32:33.1269947Z compression-level: 6 -2025-07-23T19:32:33.1270135Z overwrite: false -2025-07-23T19:32:33.1270326Z include-hidden-files: false -2025-07-23T19:32:33.1270525Z env: -2025-07-23T19:32:33.1270696Z TMPDIR: /home/runner/work/_temp -2025-07-23T19:32:33.1270922Z ##[endgroup] -2025-07-23T19:32:33.3555535Z Multiple search paths detected. Calculating the least common ancestor of all paths -2025-07-23T19:32:33.3557757Z The least common ancestor is /home/runner/.tmpnet. This will be the root directory of the artifact -2025-07-23T19:32:33.3558415Z With the provided path, there will be 30 files uploaded -2025-07-23T19:32:33.3562845Z Artifact name is valid! -2025-07-23T19:32:33.3564382Z Root directory input is valid! -2025-07-23T19:32:33.4713329Z Beginning upload of artifact content to blob storage -2025-07-23T19:32:33.5880241Z Uploaded bytes 254232 -2025-07-23T19:32:33.6015135Z Finished uploading artifact content to blob storage! -2025-07-23T19:32:33.6018287Z SHA256 digest of uploaded artifact zip is 97986e70a9422e37f591caac4d5b55a84772901452c11682c77e38ac53246095 -2025-07-23T19:32:33.6020358Z Finalizing artifact upload -2025-07-23T19:32:33.6986944Z Artifact warp-tmpnet-data.zip successfully finalized. Artifact ID 3600323265 -2025-07-23T19:32:33.6988207Z Artifact warp-tmpnet-data has been successfully uploaded! Final size is 254232 bytes. Artifact ID is 3600323265 -2025-07-23T19:32:33.6994618Z Artifact download URL: https://github.com/ava-labs/coreth/actions/runs/16480013789/artifacts/3600323265 diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 0d8518e0b5..23891ef9b8 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -41,10 +41,23 @@ do # Extract test results for analysis echo "$test_output" > test.json + # Debug: Check if JSON output is valid + echo "Debug: JSON output size: $(echo "$test_output" | wc -l) lines" + echo "Debug: First few JSON lines:" + echo "$test_output" | head -5 + # Get tests that actually ran and failed RAN_TESTS=$(echo "$test_output" | jq -r 'select(.Action == "pass" or .Action == "fail") | .Test' 2>/dev/null | sort || echo "") FAILED_TESTS=$(echo "$test_output" | jq -r 'select(.Action == "fail") | .Test' 2>/dev/null | sort || echo "") + # Debug: Show what we found + echo "Debug: Found $(echo "$RAN_TESTS" | wc -l | tr -d ' ') tests that ran" + echo "Debug: Found $(echo "$FAILED_TESTS" | wc -l | tr -d ' ') tests that failed" + if [[ -n "$RAN_TESTS" ]]; then + echo "Debug: First few ran tests:" + echo "$RAN_TESTS" | head -3 + fi + # Detect missing tests by analyzing package-level results # Check for both complete package failures and partial test failures MISSING_TESTS="" @@ -65,8 +78,8 @@ do missing_package_tests=$(comm -23 <(echo "$expected_package_tests") <(echo "$ran_package_tests") 2>/dev/null || echo "") if [[ -n "$missing_package_tests" ]]; then - missing_count=$(echo "$missing_package_tests" | wc -l) - ran_count=$(echo "$ran_package_tests" | wc -l) + missing_count=$(echo "$missing_package_tests" | wc -l | tr -d ' ') + ran_count=$(echo "$ran_package_tests" | wc -l | tr -d ' ') echo "WARNING: Package $package has $package_has_tests tests, $ran_count ran, $missing_count missing - likely due to panic" MISSING_TESTS="${MISSING_TESTS}${MISSING_TESTS:+$'\n'}${missing_package_tests}" fi From eeb1a25da0774adccb8631b87ced3006ebeb337f Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Wed, 23 Jul 2025 16:15:28 -0400 Subject: [PATCH 06/32] rewrite get_all_tests --- scripts/build_test.sh | 66 ++++++++++++++++--------------------------- 1 file changed, 24 insertions(+), 42 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 23891ef9b8..146439dd0a 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -25,7 +25,15 @@ fi # This is useful for flaky tests MAX_RUNS=4 - +get_all_tests() { + local packages="$1" + local dirs + dirs=$(printf '%s\n' "$packages" | xargs go list -f '{{.Dir}}') + grep -R --include '*_test.go' -E '^[[:space:]]*func[[:space:]]+(Test[[:alnum:]_]+)\(' \ + $dirs | + sed -E 's/^.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | + sort -u +} # Get all packages to test PACKAGES=$(go list ./... | grep -v github.com/ava-labs/coreth/tests) @@ -34,6 +42,13 @@ for ((i = 1; i <= MAX_RUNS; i++)); do echo "Test run $i of $MAX_RUNS" + # Get expected tests (for comparison) on first run + if [[ $i -eq 1 ]]; then + echo "Getting expected test list..." + EXPECTED_TESTS=$(get_all_tests "$PACKAGES") + echo "Expected tests: $(echo "$EXPECTED_TESTS" | wc -l | tr -d ' ') tests" + fi + # Run tests with JSON output for better tracking echo "Running tests..." test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" "$PACKAGES" 2>&1) || command_status=$? @@ -41,50 +56,17 @@ do # Extract test results for analysis echo "$test_output" > test.json - # Debug: Check if JSON output is valid - echo "Debug: JSON output size: $(echo "$test_output" | wc -l) lines" - echo "Debug: First few JSON lines:" - echo "$test_output" | head -5 - # Get tests that actually ran and failed RAN_TESTS=$(echo "$test_output" | jq -r 'select(.Action == "pass" or .Action == "fail") | .Test' 2>/dev/null | sort || echo "") FAILED_TESTS=$(echo "$test_output" | jq -r 'select(.Action == "fail") | .Test' 2>/dev/null | sort || echo "") - # Debug: Show what we found - echo "Debug: Found $(echo "$RAN_TESTS" | wc -l | tr -d ' ') tests that ran" - echo "Debug: Found $(echo "$FAILED_TESTS" | wc -l | tr -d ' ') tests that failed" - if [[ -n "$RAN_TESTS" ]]; then - echo "Debug: First few ran tests:" - echo "$RAN_TESTS" | head -3 - fi + # Check if all expected tests ran + MISSING_TESTS=$(comm -23 <(echo "$EXPECTED_TESTS") <(echo "$RAN_TESTS") 2>/dev/null || echo "") - # Detect missing tests by analyzing package-level results - # Check for both complete package failures and partial test failures - MISSING_TESTS="" - while IFS= read -r package; do - [[ -z "$package" ]] && continue - - # Check if this package has any tests - package_has_tests=$(go test -list=".*" "$package" 2>/dev/null | grep -c "^Test" || echo "0") - - if [[ "$package_has_tests" -gt 0 ]]; then - # Get all expected tests for this package - expected_package_tests=$(go test -list=".*" "$package" 2>/dev/null | grep "^Test" | sed "s|^|$package/|" || true) - - # Get tests that actually ran from this package - ran_package_tests=$(echo "$RAN_TESTS" | grep "^$package/" || true) - - # Find missing tests by comparing expected vs ran - missing_package_tests=$(comm -23 <(echo "$expected_package_tests") <(echo "$ran_package_tests") 2>/dev/null || echo "") - - if [[ -n "$missing_package_tests" ]]; then - missing_count=$(echo "$missing_package_tests" | wc -l | tr -d ' ') - ran_count=$(echo "$ran_package_tests" | wc -l | tr -d ' ') - echo "WARNING: Package $package has $package_has_tests tests, $ran_count ran, $missing_count missing - likely due to panic" - MISSING_TESTS="${MISSING_TESTS}${MISSING_TESTS:+$'\n'}${missing_package_tests}" - fi - fi - done <<< "$PACKAGES" + if [[ -n "$MISSING_TESTS" ]]; then + echo "WARNING: Some tests did not run due to panics or other issues:" + echo "$MISSING_TESTS" + fi # If the test passed, exit if [[ ${command_status:-0} == 0 ]]; then @@ -117,7 +99,7 @@ do # Retry the specific tests that need it if [[ -n "$TESTS_TO_RETRY" ]]; then - echo "Retrying $(echo "$TESTS_TO_RETRY" | wc -l) tests..." + echo "Retrying tests: $TESTS_TO_RETRY" for test in $TESTS_TO_RETRY; do package=$(echo "$test" | cut -d'/' -f1) test_name=$(echo "$test" | cut -d'/' -f2) @@ -131,4 +113,4 @@ done # If we reach here, we have failed all retries echo "All retry attempts failed" -exit 1 +exit 1 \ No newline at end of file From df4d5f2834b0aebf23184ffe8952467ed4b36334 Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Wed, 23 Jul 2025 16:20:10 -0400 Subject: [PATCH 07/32] enhancements --- scripts/build_test.sh | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 146439dd0a..ad3b2d1372 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -25,21 +25,25 @@ fi # This is useful for flaky tests MAX_RUNS=4 +# Function to get all test names from packages get_all_tests() { local packages="$1" + + # Compute directories for each package under current build tags/platform local dirs dirs=$(printf '%s\n' "$packages" | xargs go list -f '{{.Dir}}') + + # Grep top-level Test functions in *_test.go and emit unique sorted names grep -R --include '*_test.go' -E '^[[:space:]]*func[[:space:]]+(Test[[:alnum:]_]+)\(' \ $dirs | sed -E 's/^.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | sort -u } -# Get all packages to test +# Get all packages to test (excluding the pure tests directory) PACKAGES=$(go list ./... | grep -v github.com/ava-labs/coreth/tests) -for ((i = 1; i <= MAX_RUNS; i++)); -do +for ((i = 1; i <= MAX_RUNS; i++)); do echo "Test run $i of $MAX_RUNS" # Get expected tests (for comparison) on first run @@ -51,7 +55,8 @@ do # Run tests with JSON output for better tracking echo "Running tests..." - test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" "$PACKAGES" 2>&1) || command_status=$? + test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" \ + -coverprofile=coverage.out -covermode=atomic "$@" "$PACKAGES" 2>&1) || command_status=$? # Extract test results for analysis echo "$test_output" > test.json @@ -113,4 +118,4 @@ done # If we reach here, we have failed all retries echo "All retry attempts failed" -exit 1 \ No newline at end of file +exit 1 From ffbe3e4f9c0062d7536adb6802815348cf06558e Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Wed, 23 Jul 2025 16:26:59 -0400 Subject: [PATCH 08/32] fix RAN TESTS --- scripts/build_test.sh | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index ad3b2d1372..5c1527298d 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -25,25 +25,23 @@ fi # This is useful for flaky tests MAX_RUNS=4 -# Function to get all test names from packages get_all_tests() { local packages="$1" - - # Compute directories for each package under current build tags/platform + # Map import paths → directories matching your build tags/platform local dirs dirs=$(printf '%s\n' "$packages" | xargs go list -f '{{.Dir}}') - - # Grep top-level Test functions in *_test.go and emit unique sorted names + # Grep for top-level Test functions in *_test.go grep -R --include '*_test.go' -E '^[[:space:]]*func[[:space:]]+(Test[[:alnum:]_]+)\(' \ $dirs | sed -E 's/^.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | sort -u } -# Get all packages to test (excluding the pure tests directory) +# Get all packages to test PACKAGES=$(go list ./... | grep -v github.com/ava-labs/coreth/tests) -for ((i = 1; i <= MAX_RUNS; i++)); do +for ((i = 1; i <= MAX_RUNS; i++)); +do echo "Test run $i of $MAX_RUNS" # Get expected tests (for comparison) on first run @@ -55,14 +53,17 @@ for ((i = 1; i <= MAX_RUNS; i++)); do # Run tests with JSON output for better tracking echo "Running tests..." - test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" \ - -coverprofile=coverage.out -covermode=atomic "$@" "$PACKAGES" 2>&1) || command_status=$? + test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" "$PACKAGES" 2>&1) || command_status=$? # Extract test results for analysis echo "$test_output" > test.json # Get tests that actually ran and failed - RAN_TESTS=$(echo "$test_output" | jq -r 'select(.Action == "pass" or .Action == "fail") | .Test' 2>/dev/null | sort || echo "") + RAN_TESTS=$(echo "$test_output" \ + | jq -r 'select(.Action == "pass" or .Action == "fail" or .Action == "skip") | .Test' 2>/dev/null \ + | sort || echo "") + + # Get tests that failed FAILED_TESTS=$(echo "$test_output" | jq -r 'select(.Action == "fail") | .Test' 2>/dev/null | sort || echo "") # Check if all expected tests ran @@ -106,10 +107,9 @@ for ((i = 1; i <= MAX_RUNS; i++)); do if [[ -n "$TESTS_TO_RETRY" ]]; then echo "Retrying tests: $TESTS_TO_RETRY" for test in $TESTS_TO_RETRY; do - package=$(echo "$test" | cut -d'/' -f1) - test_name=$(echo "$test" | cut -d'/' -f2) - echo "Retrying $test_name in $package" - go test -run "^${test_name}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" "$package" + echo "Retrying $test" + # run the single test pattern across all packages + go test -run "^${test}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" $PACKAGES done fi @@ -118,4 +118,4 @@ done # If we reach here, we have failed all retries echo "All retry attempts failed" -exit 1 +exit 1 \ No newline at end of file From 5db5447cb511740682e3abb6736ab90019744541 Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Wed, 23 Jul 2025 17:24:15 -0400 Subject: [PATCH 09/32] hmmm --- scripts/build_test.sh | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 5c1527298d..01474c1f16 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -32,7 +32,7 @@ get_all_tests() { dirs=$(printf '%s\n' "$packages" | xargs go list -f '{{.Dir}}') # Grep for top-level Test functions in *_test.go grep -R --include '*_test.go' -E '^[[:space:]]*func[[:space:]]+(Test[[:alnum:]_]+)\(' \ - $dirs | + "$dirs" | sed -E 's/^.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | sort -u } @@ -58,9 +58,17 @@ do # Extract test results for analysis echo "$test_output" > test.json - # Get tests that actually ran and failed + # Get tests that actually ran (including panics) and skipped RAN_TESTS=$(echo "$test_output" \ - | jq -r 'select(.Action == "pass" or .Action == "fail" or .Action == "skip") | .Test' 2>/dev/null \ + | jq -r ' + select( + .Action == "run" + or .Action == "pass" + or .Action == "fail" + or .Action == "skip" + ) + | .Test + ' 2>/dev/null \ | sort || echo "") # Get tests that failed @@ -108,8 +116,16 @@ do echo "Retrying tests: $TESTS_TO_RETRY" for test in $TESTS_TO_RETRY; do echo "Retrying $test" - # run the single test pattern across all packages - go test -run "^${test}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" $PACKAGES + # find the package directory containing that test + pkg_dir=$(grep -R --include='*_test.go' -l "func[[:space:]]\+${test}\(" "$CORETH_PATH" | head -n1) + if [[ -n "$pkg_dir" ]]; then + pkg=$(dirname "$pkg_dir" | xargs go list -f '{{.ImportPath}}' 2>/dev/null) + else + pkg="$PACKAGES" + fi + echo " → in package $pkg" + # run only that test in its package + go test -run "^${test}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" "$pkg" done fi @@ -118,4 +134,4 @@ done # If we reach here, we have failed all retries echo "All retry attempts failed" -exit 1 \ No newline at end of file +exit 1 From 93d73342ee84aa400e0afa187770a9b27002289d Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 10:31:22 -0400 Subject: [PATCH 10/32] try this --- scripts/build_test.sh | 184 +++++++++++++++--------------------------- 1 file changed, 63 insertions(+), 121 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 01474c1f16..a7a03f453d 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -1,137 +1,79 @@ #!/usr/bin/env bash +set -euo pipefail -set -o errexit -set -o nounset -set -o pipefail +CORETH_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. && pwd)" +source "$CORETH_ROOT/scripts/constants.sh" -# Avalanche root directory -CORETH_PATH=$( - cd "$(dirname "${BASH_SOURCE[0]}")" - cd .. && pwd -) +NO_RACE="${NO_RACE:-}" +RACE_FLAG="" +(( NO_RACE )) || RACE_FLAG="-race" +TIMEOUT="${TIMEOUT:-600s}" +MAX_RETRIES=4 +ALL_PKGS=( $(go list ./... | grep -v github.com/ava-labs/coreth/tests) ) -# Load the constants -source "$CORETH_PATH"/scripts/constants.sh +run_and_collect() { + local pkgs=("${!1}") + FAILED_TESTS=() + MISSING_TESTS=() -# We pass in the arguments to this script directly to enable easily passing parameters such as enabling race detection, -# parallelism, and test coverage. -# DO NOT RUN tests from the top level "tests" directory since they are run by ginkgo -race="-race" -if [[ -n "${NO_RACE:-}" ]]; then - race="" -fi + # Iterate per-package so we can list tests + for pkg in "${pkgs[@]}"; do + # 1) list all tests in this pkg + mapfile -t all_tests < <(go test -list . "$pkg" | grep '^Test') -# MAX_RUNS bounds the attempts to retry the tests before giving up -# This is useful for flaky tests -MAX_RUNS=4 + # 2) run tests with JSON output + go test -json -timeout="$TIMEOUT" $RACE_FLAG "$pkg" >"${pkg//\//_}.json" 2>&1 || true -get_all_tests() { - local packages="$1" - # Map import paths → directories matching your build tags/platform - local dirs - dirs=$(printf '%s\n' "$packages" | xargs go list -f '{{.Dir}}') - # Grep for top-level Test functions in *_test.go - grep -R --include '*_test.go' -E '^[[:space:]]*func[[:space:]]+(Test[[:alnum:]_]+)\(' \ - "$dirs" | - sed -E 's/^.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | - sort -u + # 3) collect which tests ran & failed + mapfile -t ran_tests < <( + jq -r 'select(.Package=="'"$pkg"'" and .Test!=null and .Action=="run") | "\(.Test)"' \ + "${pkg//\//_}.json" | sort -u + ) + mapfile -t failed_tests < <( + jq -r 'select(.Package=="'"$pkg"'" and .Test!=null and .Action=="fail") | "\(.Test)"' \ + "${pkg//\//_}.json" | sort -u + ) + + # 4) record failures + for t in "${failed_tests[@]}"; do + FAILED_TESTS+=("$pkg::$t") + done + + # 5) detect missing (panic/skipped) tests + for t in "${all_tests[@]}"; do + if ! printf '%s\n' "${ran_tests[@]}" | grep -qxF "$t"; then + MISSING_TESTS+=("$pkg::$t") + fi + done + done } -# Get all packages to test -PACKAGES=$(go list ./... | grep -v github.com/ava-labs/coreth/tests) +# Main retry loop +TARGET_PKGS=( "${ALL_PKGS[@]}" ) +for ((i=1; i<=MAX_RETRIES; i++)); do + echo ">>> Attempt #$i" + run_and_collect TARGET_PKGS[@] + + if [[ ${#FAILED_TESTS[@]} -eq 0 && ${#MISSING_TESTS[@]} -eq 0 ]]; then + echo "✅ All tests passed!" + exit 0 + fi -for ((i = 1; i <= MAX_RUNS; i++)); -do - echo "Test run $i of $MAX_RUNS" - - # Get expected tests (for comparison) on first run - if [[ $i -eq 1 ]]; then - echo "Getting expected test list..." - EXPECTED_TESTS=$(get_all_tests "$PACKAGES") - echo "Expected tests: $(echo "$EXPECTED_TESTS" | wc -l | tr -d ' ') tests" - fi - - # Run tests with JSON output for better tracking - echo "Running tests..." - test_output=$(go test -json -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" "$PACKAGES" 2>&1) || command_status=$? - - # Extract test results for analysis - echo "$test_output" > test.json - - # Get tests that actually ran (including panics) and skipped - RAN_TESTS=$(echo "$test_output" \ - | jq -r ' - select( - .Action == "run" - or .Action == "pass" - or .Action == "fail" - or .Action == "skip" - ) - | .Test - ' 2>/dev/null \ - | sort || echo "") - - # Get tests that failed - FAILED_TESTS=$(echo "$test_output" | jq -r 'select(.Action == "fail") | .Test' 2>/dev/null | sort || echo "") - - # Check if all expected tests ran - MISSING_TESTS=$(comm -23 <(echo "$EXPECTED_TESTS") <(echo "$RAN_TESTS") 2>/dev/null || echo "") - - if [[ -n "$MISSING_TESTS" ]]; then - echo "WARNING: Some tests did not run due to panics or other issues:" - echo "$MISSING_TESTS" - fi + echo "Will retry the following tests:" + printf ' %s\n' "${FAILED_TESTS[@]}" "${MISSING_TESTS[@]}" - # If the test passed, exit - if [[ ${command_status:-0} == 0 ]]; then - echo "All tests passed!" - rm -f test.json test.out - exit 0 - else - unset command_status # Clear the error code for the next run - fi + # Next pass: run only those specific tests + TARGET_PKGS=() # not needed when rerunning individual tests + # build a regexp for -run + RUN_REGEX=$(printf "%s|" "${FAILED_TESTS[@]##*::}" "${MISSING_TESTS[@]##*::}") + RUN_REGEX="^(${RUN_REGEX%|})\$" - # Check for unexpected failures - unexpected_failures=$(comm -23 <(echo "$FAILED_TESTS") <(sed 's/\r$//' ./scripts/known_flakes.txt) 2>/dev/null || echo "") - if [ -n "${unexpected_failures}" ]; then - echo "Unexpected test failures: ${unexpected_failures}" - exit 1 - fi + # re-run them all together + go test -json -timeout="$TIMEOUT" $RACE_FLAG -run "$RUN_REGEX" \ + "${ALL_PKGS[@]}" >retry.json 2>&1 || true - # Determine which tests to retry based on what happened - TESTS_TO_RETRY="" - - if [[ -z "$MISSING_TESTS" ]]; then - # All tests ran, only retry the failed ones - echo "All tests ran successfully. Retrying only failed tests..." - TESTS_TO_RETRY="$FAILED_TESTS" - else - # Some tests didn't run due to panics, retry missing + failed tests - echo "Some tests did not run due to panics. Retrying missing and failed tests..." - TESTS_TO_RETRY=$(echo -e "$MISSING_TESTS\n$FAILED_TESTS" | sort -u) - fi - - # Retry the specific tests that need it - if [[ -n "$TESTS_TO_RETRY" ]]; then - echo "Retrying tests: $TESTS_TO_RETRY" - for test in $TESTS_TO_RETRY; do - echo "Retrying $test" - # find the package directory containing that test - pkg_dir=$(grep -R --include='*_test.go' -l "func[[:space:]]\+${test}\(" "$CORETH_PATH" | head -n1) - if [[ -n "$pkg_dir" ]]; then - pkg=$(dirname "$pkg_dir" | xargs go list -f '{{.ImportPath}}' 2>/dev/null) - else - pkg="$PACKAGES" - fi - echo " → in package $pkg" - # run only that test in its package - go test -run "^${test}$" ${race:-} -timeout="${TIMEOUT:-600s}" "$@" "$pkg" - done - fi - - echo "Test run $i failed with known flakes, retrying..." + # parse retry.json again… (you can refactor run_and_collect to accept a file) done -# If we reach here, we have failed all retries -echo "All retry attempts failed" +echo "❌ Tests still failing after $MAX_RETRIES retries" exit 1 From b7f68e68c5e15ae4215f3520c350d05aa70e28c7 Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 10:42:48 -0400 Subject: [PATCH 11/32] fix env vars --- scripts/build_test.sh | 81 ++++++++++++++++++++++++++----------------- 1 file changed, 50 insertions(+), 31 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index a7a03f453d..e7774c3933 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -1,47 +1,53 @@ #!/usr/bin/env bash set -euo pipefail -CORETH_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. && pwd)" +# avalanche root directory +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +CORETH_ROOT="${CORETH_ROOT:-$(cd "$SCRIPT_DIR/.." && pwd)}" + +# Load the constants source "$CORETH_ROOT/scripts/constants.sh" +# Configure race detection NO_RACE="${NO_RACE:-}" RACE_FLAG="" (( NO_RACE )) || RACE_FLAG="-race" + +# Test settings TIMEOUT="${TIMEOUT:-600s}" MAX_RETRIES=4 ALL_PKGS=( $(go list ./... | grep -v github.com/ava-labs/coreth/tests) ) +# run_and_collect: execute tests per-package and gather failures + missing tests run_and_collect() { local pkgs=("${!1}") FAILED_TESTS=() MISSING_TESTS=() - # Iterate per-package so we can list tests for pkg in "${pkgs[@]}"; do - # 1) list all tests in this pkg + # 1) list all tests in this package mapfile -t all_tests < <(go test -list . "$pkg" | grep '^Test') - # 2) run tests with JSON output + # 2) run tests with JSON output (capture but don't exit) go test -json -timeout="$TIMEOUT" $RACE_FLAG "$pkg" >"${pkg//\//_}.json" 2>&1 || true - # 3) collect which tests ran & failed + # 3) collect ran and failed tests mapfile -t ran_tests < <( - jq -r 'select(.Package=="'"$pkg"'" and .Test!=null and .Action=="run") | "\(.Test)"' \ - "${pkg//\//_}.json" | sort -u + jq -r 'select(.Package=="'$pkg'" and .Test!=null and .Action=="run") | .Test' "${pkg//\//_}.json" | sort -u ) mapfile -t failed_tests < <( - jq -r 'select(.Package=="'"$pkg"'" and .Test!=null and .Action=="fail") | "\(.Test)"' \ - "${pkg//\//_}.json" | sort -u + jq -r 'select(.Package=="'$pkg'" and .Test!=null and .Action=="fail") | .Test' "${pkg//\//_}.json" | sort -u ) - # 4) record failures + # record failures for t in "${failed_tests[@]}"; do FAILED_TESTS+=("$pkg::$t") done - # 5) detect missing (panic/skipped) tests + # detect missing (panic or skip) tests for t in "${all_tests[@]}"; do - if ! printf '%s\n' "${ran_tests[@]}" | grep -qxF "$t"; then + if ! printf '%s +' "${ran_tests[@]}" | grep -qxF "$t"; then MISSING_TESTS+=("$pkg::$t") fi done @@ -49,31 +55,44 @@ run_and_collect() { } # Main retry loop -TARGET_PKGS=( "${ALL_PKGS[@]}" ) +target_tests=() for ((i=1; i<=MAX_RETRIES; i++)); do - echo ">>> Attempt #$i" - run_and_collect TARGET_PKGS[@] + echo "=== Test attempt #$i ===" - if [[ ${#FAILED_TESTS[@]} -eq 0 && ${#MISSING_TESTS[@]} -eq 0 ]]; then - echo "✅ All tests passed!" - exit 0 - fi + if [[ $i -eq 1 ]]; then + # first run on all packages + run_and_collect ALL_PKGS[@] + else + # on retries: combine failed + missing tests + if (( ${#FAILED_TESTS[@]} )); then + target_tests=("${FAILED_TESTS[@]}" "${MISSING_TESTS[@]}") + else + target_tests=("${MISSING_TESTS[@]}") + fi - echo "Will retry the following tests:" - printf ' %s\n' "${FAILED_TESTS[@]}" "${MISSING_TESTS[@]}" + # build regex for -run + tests_regex=$(printf "%s|" "${target_tests[@]##*::}") + tests_regex="^(${tests_regex%|})$" - # Next pass: run only those specific tests - TARGET_PKGS=() # not needed when rerunning individual tests - # build a regexp for -run - RUN_REGEX=$(printf "%s|" "${FAILED_TESTS[@]##*::}" "${MISSING_TESTS[@]##*::}") - RUN_REGEX="^(${RUN_REGEX%|})\$" + echo "Retrying only: ${target_tests[*]}" + go test -json -timeout="$TIMEOUT" $RACE_FLAG -run "$tests_regex" \ + "${ALL_PKGS[@]}" >retry.json 2>&1 || true - # re-run them all together - go test -json -timeout="$TIMEOUT" $RACE_FLAG -run "$RUN_REGEX" \ - "${ALL_PKGS[@]}" >retry.json 2>&1 || true + # collect results from retry file + run_and_collect retry.json # if refactor to accept JSON path + fi + + # exit conditions + if [[ ${#FAILED_TESTS[@]} -eq 0 && ${#MISSING_TESTS[@]} -eq 0 ]]; then + echo "✅ All tests passed on attempt #$i" + rm -f *.json coverage.out + exit 0 + fi - # parse retry.json again… (you can refactor run_and_collect to accept a file) + echo "Failures: ${FAILED_TESTS[*]}" + echo "Missing: ${MISSING_TESTS[*]}" + echo "Retrying..." done -echo "❌ Tests still failing after $MAX_RETRIES retries" +echo "❌ Tests still failing after $MAX_RETRIES attempts" exit 1 From b0fb02f6a53d4ca3584f0301ce093a313aa1e1e4 Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 10:44:57 -0400 Subject: [PATCH 12/32] change coreth path --- scripts/build_test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index e7774c3933..0672eddd92 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -3,10 +3,10 @@ set -euo pipefail # avalanche root directory SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -CORETH_ROOT="${CORETH_ROOT:-$(cd "$SCRIPT_DIR/.." && pwd)}" +CORETH_PATH="${CORETH_PATH:-$(cd "$SCRIPT_DIR/.." && pwd)}" # Load the constants -source "$CORETH_ROOT/scripts/constants.sh" +source "$CORETH_PATH/scripts/constants.sh" # Configure race detection NO_RACE="${NO_RACE:-}" From aac7eafdf3f21f389fa6dc0f04212576442a81fd Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 10:54:51 -0400 Subject: [PATCH 13/32] more efficient get test list --- scripts/build_test.sh | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 0672eddd92..0710047276 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -18,6 +18,18 @@ TIMEOUT="${TIMEOUT:-600s}" MAX_RETRIES=4 ALL_PKGS=( $(go list ./... | grep -v github.com/ava-labs/coreth/tests) ) +# get_all_tests: quickly list Test* functions in pkg directories +get_all_tests() { + local pkg="$1" + # Resolve package directory + local dir + dir=$(go list -f '{{.Dir}}' "$pkg") + # Grep for top-level Test functions in *_test.go + grep -R --include '*_test.go' -E '^[[:space:]]*func[[:space:]]+(Test[[:alnum:]_]+)\(' "$dir" | + sed -E 's/^.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | + sort -u +} + # run_and_collect: execute tests per-package and gather failures + missing tests run_and_collect() { local pkgs=("${!1}") @@ -25,8 +37,8 @@ run_and_collect() { MISSING_TESTS=() for pkg in "${pkgs[@]}"; do - # 1) list all tests in this package - mapfile -t all_tests < <(go test -list . "$pkg" | grep '^Test') + # 1) list all tests via fast grep + mapfile -t all_tests < <(get_all_tests "$pkg") # 2) run tests with JSON output (capture but don't exit) go test -json -timeout="$TIMEOUT" $RACE_FLAG "$pkg" >"${pkg//\//_}.json" 2>&1 || true @@ -46,8 +58,7 @@ run_and_collect() { # detect missing (panic or skip) tests for t in "${all_tests[@]}"; do - if ! printf '%s -' "${ran_tests[@]}" | grep -qxF "$t"; then + if ! printf '%s\n' "${ran_tests[@]}" | grep -qxF "$t"; then MISSING_TESTS+=("$pkg::$t") fi done @@ -79,7 +90,7 @@ for ((i=1; i<=MAX_RETRIES; i++)); do "${ALL_PKGS[@]}" >retry.json 2>&1 || true # collect results from retry file - run_and_collect retry.json # if refactor to accept JSON path + run_and_collect retry.json # adapt if accepting JSON path instead of pkg list fi # exit conditions From 6b3e7974f1eecf83267fef8e422145ec3831781a Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 11:10:49 -0400 Subject: [PATCH 14/32] add echo statements --- scripts/build_test.sh | 42 +++++++++++++++++++++++++++--------------- 1 file changed, 27 insertions(+), 15 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 0710047276..16739de52b 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -21,13 +21,11 @@ ALL_PKGS=( $(go list ./... | grep -v github.com/ava-labs/coreth/tests) ) # get_all_tests: quickly list Test* functions in pkg directories get_all_tests() { local pkg="$1" - # Resolve package directory local dir dir=$(go list -f '{{.Dir}}' "$pkg") - # Grep for top-level Test functions in *_test.go grep -R --include '*_test.go' -E '^[[:space:]]*func[[:space:]]+(Test[[:alnum:]_]+)\(' "$dir" | - sed -E 's/^.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | - sort -u + sed -E 's/^.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | + sort -u } # run_and_collect: execute tests per-package and gather failures + missing tests @@ -36,20 +34,33 @@ run_and_collect() { FAILED_TESTS=() MISSING_TESTS=() + echo "Processing ${#pkgs[@]} packages..." for pkg in "${pkgs[@]}"; do + echo "--- Package: $pkg ---" + start_pkg=$SECONDS + # 1) list all tests via fast grep - mapfile -t all_tests < <(get_all_tests "$pkg") + echo "Listing tests..." + all_tests=() + while IFS= read -r t; do all_tests+=("$t"); done < <(get_all_tests "$pkg") + echo "Found ${#all_tests[@]} tests" # 2) run tests with JSON output (capture but don't exit) - go test -json -timeout="$TIMEOUT" $RACE_FLAG "$pkg" >"${pkg//\//_}.json" 2>&1 || true + echo "Running tests (JSON)..." + out_file="${pkg//\//_}.json" + go test -json -timeout="$TIMEOUT" $RACE_FLAG "$pkg" >"$out_file" 2>&1 || true # 3) collect ran and failed tests - mapfile -t ran_tests < <( - jq -r 'select(.Package=="'$pkg'" and .Test!=null and .Action=="run") | .Test' "${pkg//\//_}.json" | sort -u + echo "Parsing results..." + ran_tests=() + while IFS= read -r t; do ran_tests+=("$t"); done < <( + jq -r 'select(.Package=="'$pkg'" and .Test!=null and .Action=="run") | .Test' "$out_file" | sort -u ) - mapfile -t failed_tests < <( - jq -r 'select(.Package=="'$pkg'" and .Test!=null and .Action=="fail") | .Test' "${pkg//\//_}.json" | sort -u + failed_tests=() + while IFS= read -r t; do failed_tests+=("$t"); done < <( + jq -r 'select(.Package=="'$pkg'" and .Test!=null and .Action=="fail") | .Test' "$out_file" | sort -u ) + echo "Ran ${#ran_tests[@]}, Failed ${#failed_tests[@]}" # record failures for t in "${failed_tests[@]}"; do @@ -57,11 +68,15 @@ run_and_collect() { done # detect missing (panic or skip) tests + echo "Detecting missing tests..." for t in "${all_tests[@]}"; do if ! printf '%s\n' "${ran_tests[@]}" | grep -qxF "$t"; then MISSING_TESTS+=("$pkg::$t") fi done + echo "Missing ${#MISSING_TESTS[@]} so far" + + echo "Package time: $((SECONDS - start_pkg))s" done } @@ -71,10 +86,8 @@ for ((i=1; i<=MAX_RETRIES; i++)); do echo "=== Test attempt #$i ===" if [[ $i -eq 1 ]]; then - # first run on all packages run_and_collect ALL_PKGS[@] else - # on retries: combine failed + missing tests if (( ${#FAILED_TESTS[@]} )); then target_tests=("${FAILED_TESTS[@]}" "${MISSING_TESTS[@]}") else @@ -89,11 +102,10 @@ for ((i=1; i<=MAX_RETRIES; i++)); do go test -json -timeout="$TIMEOUT" $RACE_FLAG -run "$tests_regex" \ "${ALL_PKGS[@]}" >retry.json 2>&1 || true - # collect results from retry file - run_and_collect retry.json # adapt if accepting JSON path instead of pkg list + echo "Parsing retry results..." + run_and_collect retry.json # deprecated: placeholder for JSON-path parser fi - # exit conditions if [[ ${#FAILED_TESTS[@]} -eq 0 && ${#MISSING_TESTS[@]} -eq 0 ]]; then echo "✅ All tests passed on attempt #$i" rm -f *.json coverage.out From 998bbdf885457de259f2740b7fbf001815ba6d3a Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 11:20:51 -0400 Subject: [PATCH 15/32] ADSFADSF --- scripts/build_test.sh | 83 +++++++++++++++++++++++-------------------- 1 file changed, 45 insertions(+), 38 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 16739de52b..fe04a11810 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -17,9 +17,10 @@ RACE_FLAG="" TIMEOUT="${TIMEOUT:-600s}" MAX_RETRIES=4 ALL_PKGS=( $(go list ./... | grep -v github.com/ava-labs/coreth/tests) ) +KNOWN_FLAKES_FILE="$CORETH_PATH/scripts/known_flakes.txt" # get_all_tests: quickly list Test* functions in pkg directories -get_all_tests() { +ing get_all_tests() { local pkg="$1" local dir dir=$(go list -f '{{.Dir}}' "$pkg") @@ -28,10 +29,10 @@ get_all_tests() { sort -u } -# run_and_collect: execute tests per-package and gather failures + missing tests +# run_and_collect: execute tests per-package and gather flaky failures + missing tests run_and_collect() { local pkgs=("${!1}") - FAILED_TESTS=() + FLAKY_TESTS=() MISSING_TESTS=() echo "Processing ${#pkgs[@]} packages..." @@ -39,83 +40,89 @@ run_and_collect() { echo "--- Package: $pkg ---" start_pkg=$SECONDS - # 1) list all tests via fast grep + # list all tests echo "Listing tests..." all_tests=() while IFS= read -r t; do all_tests+=("$t"); done < <(get_all_tests "$pkg") echo "Found ${#all_tests[@]} tests" - # 2) run tests with JSON output (capture but don't exit) + # run tests JSON echo "Running tests (JSON)..." out_file="${pkg//\//_}.json" go test -json -timeout="$TIMEOUT" $RACE_FLAG "$pkg" >"$out_file" 2>&1 || true - # 3) collect ran and failed tests + # parse results echo "Parsing results..." ran_tests=() while IFS= read -r t; do ran_tests+=("$t"); done < <( - jq -r 'select(.Package=="'$pkg'" and .Test!=null and .Action=="run") | .Test' "$out_file" | sort -u + jq -r 'select(.Package=="'$pkg'" and .Test!=null and (.Action=="run" or .Action=="skip")) | .Test' "$out_file" | sort -u ) - failed_tests=() - while IFS= read -r t; do failed_tests+=("$t"); done < <( + + all_failed=() + while IFS= read -r t; do all_failed+=("$t"); done < <( jq -r 'select(.Package=="'$pkg'" and .Test!=null and .Action=="fail") | .Test' "$out_file" | sort -u ) - echo "Ran ${#ran_tests[@]}, Failed ${#failed_tests[@]}" - # record failures - for t in "${failed_tests[@]}"; do - FAILED_TESTS+=("$pkg::$t") + # separate known flakes and non-flakes + non_flakes=() + flakes=() + for t in "${all_failed[@]}"; do + if grep -Fxq "$t" "$KNOWN_FLAKES_FILE"; then + flakes+=("$pkg::$t") + else + non_flakes+=("$pkg::$t") + fi done - # detect missing (panic or skip) tests + # if any non-flaky failures, exit immediately + if (( ${#non_flakes[@]} )); then + echo "Unexpected failures detected (non-flaky): ${non_flakes[*]}" + exit 1 + fi + + echo "Flaky failures: ${#flakes[@]}" + FLAKY_TESTS+=("${flakes[@]}") + + # detect missing tests due to panic echo "Detecting missing tests..." for t in "${all_tests[@]}"; do if ! printf '%s\n' "${ran_tests[@]}" | grep -qxF "$t"; then MISSING_TESTS+=("$pkg::$t") fi done - echo "Missing ${#MISSING_TESTS[@]} so far" - + echo "Missing tests so far: ${#MISSING_TESTS[@]}" echo "Package time: $((SECONDS - start_pkg))s" done } # Main retry loop -target_tests=() +targets=() for ((i=1; i<=MAX_RETRIES; i++)); do echo "=== Test attempt #$i ===" - - if [[ $i -eq 1 ]]; then + if (( i == 1 )); then run_and_collect ALL_PKGS[@] else - if (( ${#FAILED_TESTS[@]} )); then - target_tests=("${FAILED_TESTS[@]}" "${MISSING_TESTS[@]}") - else - target_tests=("${MISSING_TESTS[@]}") - fi - - # build regex for -run - tests_regex=$(printf "%s|" "${target_tests[@]##*::}") - tests_regex="^(${tests_regex%|})$" - - echo "Retrying only: ${target_tests[*]}" - go test -json -timeout="$TIMEOUT" $RACE_FLAG -run "$tests_regex" \ - "${ALL_PKGS[@]}" >retry.json 2>&1 || true - + targets=("${FLAKY_TESTS[@]}" "${MISSING_TESTS[@]}") + # build run regex + regex=$(printf "%s|" "${targets[@]##*::}") + regex="^(${regex%|})$" + echo "Retrying flaky/missing: ${targets[*]}" + go test -json -timeout="$TIMEOUT" $RACE_FLAG -run "$regex" "${ALL_PKGS[@]}" >retry.json 2>&1 || true echo "Parsing retry results..." - run_and_collect retry.json # deprecated: placeholder for JSON-path parser + run_and_collect retry.json # adapt if needed fi - if [[ ${#FAILED_TESTS[@]} -eq 0 && ${#MISSING_TESTS[@]} -eq 0 ]]; then + # if no more flakes or missing -> success + if (( ${#FLAKY_TESTS[@]} == 0 && ${#MISSING_TESTS[@]} == 0 )); then echo "✅ All tests passed on attempt #$i" rm -f *.json coverage.out exit 0 fi - echo "Failures: ${FAILED_TESTS[*]}" - echo "Missing: ${MISSING_TESTS[*]}" + echo "Remaining flaky: ${FLAKY_TESTS[*]}" + echo "Remaining missing: ${MISSING_TESTS[*]}" echo "Retrying..." done -echo "❌ Tests still failing after $MAX_RETRIES attempts" +echo "❌ Tests still flaky or missing after $MAX_RETRIES attempts" exit 1 From 388c630c6b171613bc909a333311e6b9a6f3c04c Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 11:22:47 -0400 Subject: [PATCH 16/32] typo --- scripts/build_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index fe04a11810..3eee50684e 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -20,7 +20,7 @@ ALL_PKGS=( $(go list ./... | grep -v github.com/ava-labs/coreth/tests) ) KNOWN_FLAKES_FILE="$CORETH_PATH/scripts/known_flakes.txt" # get_all_tests: quickly list Test* functions in pkg directories -ing get_all_tests() { +get_all_tests() { local pkg="$1" local dir dir=$(go list -f '{{.Dir}}' "$pkg") From 5d18f5f35aa97fc0dfb6c5f84b07e93648e27dc1 Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 11:31:01 -0400 Subject: [PATCH 17/32] restore test coverage --- scripts/build_test.sh | 45 ++++++++++++++++++++++++++++++------------- 1 file changed, 32 insertions(+), 13 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 3eee50684e..aadaff529e 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -1,5 +1,8 @@ #!/usr/bin/env bash -set -euo pipefail + +set -o errexit +set -o nounset +set -o pipefail # avalanche root directory SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" @@ -8,16 +11,21 @@ CORETH_PATH="${CORETH_PATH:-$(cd "$SCRIPT_DIR/.." && pwd)}" # Load the constants source "$CORETH_PATH/scripts/constants.sh" -# Configure race detection +# We pass in the arguments to this script directly to enable easily passing parameters such as enabling race detection, +# parallelism, and test coverage. +# DO NOT RUN tests from the top level "tests" directory since they are run by ginkgo NO_RACE="${NO_RACE:-}" RACE_FLAG="" (( NO_RACE )) || RACE_FLAG="-race" # Test settings TIMEOUT="${TIMEOUT:-600s}" +# MAX_RUNS bounds the attempts to retry the tests before giving up +# This is useful for flaky tests MAX_RETRIES=4 ALL_PKGS=( $(go list ./... | grep -v github.com/ava-labs/coreth/tests) ) KNOWN_FLAKES_FILE="$CORETH_PATH/scripts/known_flakes.txt" +COVERFLAGS="-coverprofile=coverage.out -covermode=atomic" # get_all_tests: quickly list Test* functions in pkg directories get_all_tests() { @@ -44,12 +52,16 @@ run_and_collect() { echo "Listing tests..." all_tests=() while IFS= read -r t; do all_tests+=("$t"); done < <(get_all_tests "$pkg") + if [[ ${#all_tests[@]} -eq 0 ]]; then + echo "Skipping $pkg: no tests found" + continue + fi echo "Found ${#all_tests[@]} tests" - # run tests JSON - echo "Running tests (JSON)..." + # run tests JSON with coverage + echo "Running tests (JSON + coverage)..." out_file="${pkg//\//_}.json" - go test -json -timeout="$TIMEOUT" $RACE_FLAG "$pkg" >"$out_file" 2>&1 || true + go test -shuffle=on -json $COVERFLAGS -timeout="$TIMEOUT" $RACE_FLAG "$@" "$pkg" >"$out_file" 2>&1 || true # parse results echo "Parsing results..." @@ -63,7 +75,7 @@ run_and_collect() { jq -r 'select(.Package=="'$pkg'" and .Test!=null and .Action=="fail") | .Test' "$out_file" | sort -u ) - # separate known flakes and non-flakes + # separate non-flakes vs flakes non_flakes=() flakes=() for t in "${all_failed[@]}"; do @@ -74,9 +86,9 @@ run_and_collect() { fi done - # if any non-flaky failures, exit immediately + # exit on non-flaky failures if (( ${#non_flakes[@]} )); then - echo "Unexpected failures detected (non-flaky): ${non_flakes[*]}" + echo "Unexpected (non-flaky) failures: ${non_flakes[*]}" exit 1 fi @@ -103,16 +115,18 @@ for ((i=1; i<=MAX_RETRIES; i++)); do run_and_collect ALL_PKGS[@] else targets=("${FLAKY_TESTS[@]}" "${MISSING_TESTS[@]}") + if [[ ${#targets[@]} -eq 0 ]]; then break; fi # build run regex regex=$(printf "%s|" "${targets[@]##*::}") regex="^(${regex%|})$" echo "Retrying flaky/missing: ${targets[*]}" - go test -json -timeout="$TIMEOUT" $RACE_FLAG -run "$regex" "${ALL_PKGS[@]}" >retry.json 2>&1 || true + go test $COVERFLAGS -json -timeout="$TIMEOUT" $RACE_FLAG -run "$regex" "${ALL_PKGS[@]}" >retry.json 2>&1 || true echo "Parsing retry results..." - run_and_collect retry.json # adapt if needed + # parse retry results by treating retry.json as if pkg list containing all pkgs + run_and_collect ALL_PKGS[@] fi - # if no more flakes or missing -> success + # exit success if none remain if (( ${#FLAKY_TESTS[@]} == 0 && ${#MISSING_TESTS[@]} == 0 )); then echo "✅ All tests passed on attempt #$i" rm -f *.json coverage.out @@ -124,5 +138,10 @@ for ((i=1; i<=MAX_RETRIES; i++)); do echo "Retrying..." done -echo "❌ Tests still flaky or missing after $MAX_RETRIES attempts" -exit 1 +# final exit +if (( ${#FLAKY_TESTS[@]} || ${#MISSING_TESTS[@]} )); then + echo "❌ Tests still flaky or missing after $MAX_RETRIES attempts" + exit 1 +else + exit 0 +fi From 3cd402a79db0c761b75da5e0901880ee6187f414 Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 11:34:52 -0400 Subject: [PATCH 18/32] simplify --- scripts/build_test.sh | 153 ++++++++++++------------------------------ 1 file changed, 43 insertions(+), 110 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index aadaff529e..61a991046d 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -1,8 +1,5 @@ #!/usr/bin/env bash - -set -o errexit -set -o nounset -set -o pipefail +set -euo pipefail # avalanche root directory SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" @@ -11,137 +8,73 @@ CORETH_PATH="${CORETH_PATH:-$(cd "$SCRIPT_DIR/.." && pwd)}" # Load the constants source "$CORETH_PATH/scripts/constants.sh" -# We pass in the arguments to this script directly to enable easily passing parameters such as enabling race detection, -# parallelism, and test coverage. -# DO NOT RUN tests from the top level "tests" directory since they are run by ginkgo +# CLI flags NO_RACE="${NO_RACE:-}" RACE_FLAG="" (( NO_RACE )) || RACE_FLAG="-race" - -# Test settings TIMEOUT="${TIMEOUT:-600s}" -# MAX_RUNS bounds the attempts to retry the tests before giving up -# This is useful for flaky tests MAX_RETRIES=4 ALL_PKGS=( $(go list ./... | grep -v github.com/ava-labs/coreth/tests) ) KNOWN_FLAKES_FILE="$CORETH_PATH/scripts/known_flakes.txt" -COVERFLAGS="-coverprofile=coverage.out -covermode=atomic" +COVER_FLAGS="-coverprofile=coverage.out -covermode=atomic -shuffle=on" -# get_all_tests: quickly list Test* functions in pkg directories -get_all_tests() { - local pkg="$1" - local dir - dir=$(go list -f '{{.Dir}}' "$pkg") - grep -R --include '*_test.go' -E '^[[:space:]]*func[[:space:]]+(Test[[:alnum:]_]+)\(' "$dir" | - sed -E 's/^.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | - sort -u -} +# get_all_tests: list Test functions without invoking go test +get_all_tests() { local pkg="$1"; go list -f '{{.Dir}}' "$pkg" | xargs grep -R --include '*_test.go' -E '^[[:space:]]*func[[:space:]]+Test' | sed -E 's/.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | sort -u; } -# run_and_collect: execute tests per-package and gather flaky failures + missing tests run_and_collect() { local pkgs=("${!1}") FLAKY_TESTS=() MISSING_TESTS=() - echo "Processing ${#pkgs[@]} packages..." for pkg in "${pkgs[@]}"; do - echo "--- Package: $pkg ---" - start_pkg=$SECONDS - - # list all tests - echo "Listing tests..." - all_tests=() - while IFS= read -r t; do all_tests+=("$t"); done < <(get_all_tests "$pkg") - if [[ ${#all_tests[@]} -eq 0 ]]; then - echo "Skipping $pkg: no tests found" + echo "=== Package: $pkg ===" + # skip empty + dir=$(go list -f '{{.Dir}}' "$pkg") + if [[ ! -d "$dir" || -z $(ls "$dir"/*_test.go 2>/dev/null) ]]; then + echo "? $pkg [no test files]" continue fi - echo "Found ${#all_tests[@]} tests" - - # run tests JSON with coverage - echo "Running tests (JSON + coverage)..." - out_file="${pkg//\//_}.json" - go test -shuffle=on -json $COVERFLAGS -timeout="$TIMEOUT" $RACE_FLAG "$@" "$pkg" >"$out_file" 2>&1 || true - # parse results - echo "Parsing results..." - ran_tests=() - while IFS= read -r t; do ran_tests+=("$t"); done < <( - jq -r 'select(.Package=="'$pkg'" and .Test!=null and (.Action=="run" or .Action=="skip")) | .Test' "$out_file" | sort -u - ) - - all_failed=() - while IFS= read -r t; do all_failed+=("$t"); done < <( - jq -r 'select(.Package=="'$pkg'" and .Test!=null and .Action=="fail") | .Test' "$out_file" | sort -u - ) - - # separate non-flakes vs flakes - non_flakes=() - flakes=() - for t in "${all_failed[@]}"; do - if grep -Fxq "$t" "$KNOWN_FLAKES_FILE"; then - flakes+=("$pkg::$t") - else - non_flakes+=("$pkg::$t") - fi - done - - # exit on non-flaky failures - if (( ${#non_flakes[@]} )); then - echo "Unexpected (non-flaky) failures: ${non_flakes[*]}" - exit 1 + # initial test run with tee + echo "ok? $pkg" + test_out="$(mktemp)" + go test $COVER_FLAGS -timeout="$TIMEOUT" $RACE_FLAG "$@" "$pkg" | tee "$test_out" || command_status=$? + if [[ ${command_status:-0} -ne 0 ]]; then + # parse failures + failures=$(grep '^--- FAIL' "$test_out" | awk '{print $3}' | sort -u) + for t in $failures; do + [[ $(grep -Fxq "$t" "$KNOWN_FLAKES_FILE"; echo $?) -eq 1 ]] && { echo "Unexpected failure: $t"; exit 1; } + FLAKY_TESTS+=("$pkg::$t") + done fi - echo "Flaky failures: ${#flakes[@]}" - FLAKY_TESTS+=("${flakes[@]}") + # detect missing due to panic + all_tests=( $(get_all_tests "$pkg") ) + ran_tests=( $(grep -E '^=== RUN' "$test_out" | awk '{print $3}' | sort -u) ) + missing=() + for t in "${all_tests[@]}"; do [[ ! " ${ran_tests[*]} " =~ " $t " ]] && missing+=("$pkg::$t"); done + echo "Tests ran: ${#ran_tests[@]}, missing: ${#missing[@]}" + MISSING_TESTS+=("${missing[@]}") - # detect missing tests due to panic - echo "Detecting missing tests..." - for t in "${all_tests[@]}"; do - if ! printf '%s\n' "${ran_tests[@]}" | grep -qxF "$t"; then - MISSING_TESTS+=("$pkg::$t") - fi - done - echo "Missing tests so far: ${#MISSING_TESTS[@]}" - echo "Package time: $((SECONDS - start_pkg))s" + rm "$test_out" done } -# Main retry loop -targets=() -for ((i=1; i<=MAX_RETRIES; i++)); do - echo "=== Test attempt #$i ===" - if (( i == 1 )); then - run_and_collect ALL_PKGS[@] - else - targets=("${FLAKY_TESTS[@]}" "${MISSING_TESTS[@]}") - if [[ ${#targets[@]} -eq 0 ]]; then break; fi - # build run regex - regex=$(printf "%s|" "${targets[@]##*::}") - regex="^(${regex%|})$" - echo "Retrying flaky/missing: ${targets[*]}" - go test $COVERFLAGS -json -timeout="$TIMEOUT" $RACE_FLAG -run "$regex" "${ALL_PKGS[@]}" >retry.json 2>&1 || true - echo "Parsing retry results..." - # parse retry results by treating retry.json as if pkg list containing all pkgs - run_and_collect ALL_PKGS[@] - fi - - # exit success if none remain - if (( ${#FLAKY_TESTS[@]} == 0 && ${#MISSING_TESTS[@]} == 0 )); then - echo "✅ All tests passed on attempt #$i" - rm -f *.json coverage.out - exit 0 - fi - - echo "Remaining flaky: ${FLAKY_TESTS[*]}" - echo "Remaining missing: ${MISSING_TESTS[*]}" - echo "Retrying..." +# main loop +for ((i=1;i<=MAX_RETRIES;i++)); do + echo "--- Attempt #$i ---" + run_and_collect ALL_PKGS[@] + if [[ ${#MISSING_TESTS[@]} -eq 0 && ${#FLAKY_TESTS[@]} -eq 0 ]]; then echo "✅ All tests passed"; exit 0; fi + # retry only flaky and missing + tests=(${FLAKY_TESTS[@]} ${MISSING_TESTS[@]}) + regex="^($(printf '%s|' "${tests[@]##*::}") )$" + echo "Retrying: ${tests[*]}" + go test $COVER_FLAGS -timeout="$TIMEOUT" $RACE_FLAG -run "$regex" "${ALL_PKGS[@]}" | tee retry.out || true + mv retry.out "${test_out:-retry.out}" done -# final exit -if (( ${#FLAKY_TESTS[@]} || ${#MISSING_TESTS[@]} )); then - echo "❌ Tests still flaky or missing after $MAX_RETRIES attempts" +if [[ ${#FLAKY_TESTS[@]} -gt 0 || ${#MISSING_TESTS[@]} -gt 0 ]]; then + echo "❌ Failures after retries: ${FLAKY_TESTS[*]} ${MISSING_TESTS[*]}" exit 1 -else - exit 0 fi +exit 0 From 3f28633188faffdc714e3cbeb0d733e205633751 Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 11:37:04 -0400 Subject: [PATCH 19/32] got --- scripts/build_test.sh | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 61a991046d..d1bc84f0e0 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -22,7 +22,8 @@ COVER_FLAGS="-coverprofile=coverage.out -covermode=atomic -shuffle=on" get_all_tests() { local pkg="$1"; go list -f '{{.Dir}}' "$pkg" | xargs grep -R --include '*_test.go' -E '^[[:space:]]*func[[:space:]]+Test' | sed -E 's/.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | sort -u; } run_and_collect() { - local pkgs=("${!1}") + # Accept package list as positional args + local pkgs=("$@") FLAKY_TESTS=() MISSING_TESTS=() @@ -43,7 +44,10 @@ run_and_collect() { # parse failures failures=$(grep '^--- FAIL' "$test_out" | awk '{print $3}' | sort -u) for t in $failures; do - [[ $(grep -Fxq "$t" "$KNOWN_FLAKES_FILE"; echo $?) -eq 1 ]] && { echo "Unexpected failure: $t"; exit 1; } + if ! grep -Fxq "$t" "$KNOWN_FLAKES_FILE"; then + echo "Unexpected failure: $t" + exit 1 + fi FLAKY_TESTS+=("$pkg::$t") done fi @@ -52,7 +56,11 @@ run_and_collect() { all_tests=( $(get_all_tests "$pkg") ) ran_tests=( $(grep -E '^=== RUN' "$test_out" | awk '{print $3}' | sort -u) ) missing=() - for t in "${all_tests[@]}"; do [[ ! " ${ran_tests[*]} " =~ " $t " ]] && missing+=("$pkg::$t"); done + for t in "${all_tests[@]}"; do + if ! printf '%s' "${ran_tests[@]}" | grep -qxF "$t"; then + missing+=("$pkg::$t") + fi + done echo "Tests ran: ${#ran_tests[@]}, missing: ${#missing[@]}" MISSING_TESTS+=("${missing[@]}") @@ -63,14 +71,21 @@ run_and_collect() { # main loop for ((i=1;i<=MAX_RETRIES;i++)); do echo "--- Attempt #$i ---" - run_and_collect ALL_PKGS[@] - if [[ ${#MISSING_TESTS[@]} -eq 0 && ${#FLAKY_TESTS[@]} -eq 0 ]]; then echo "✅ All tests passed"; exit 0; fi - # retry only flaky and missing - tests=(${FLAKY_TESTS[@]} ${MISSING_TESTS[@]}) + # run initial collection over all packages + run_and_collect "${ALL_PKGS[@]}" + if [[ ${#MISSING_TESTS[@]} -eq 0 && ${#FLAKY_TESTS[@]} -eq 0 ]]; then + echo "✅ All tests passed" + exit 0 + fi + + # prepare retry + tests=("${FLAKY_TESTS[@]}" "${MISSING_TESTS[@]}") regex="^($(printf '%s|' "${tests[@]##*::}") )$" echo "Retrying: ${tests[*]}" go test $COVER_FLAGS -timeout="$TIMEOUT" $RACE_FLAG -run "$regex" "${ALL_PKGS[@]}" | tee retry.out || true - mv retry.out "${test_out:-retry.out}" + + # parse retry results same way + run_and_collect "${ALL_PKGS[@]}" done if [[ ${#FLAKY_TESTS[@]} -gt 0 || ${#MISSING_TESTS[@]} -gt 0 ]]; then From 5226e5adeae2c599ce45d6bd14fd47d9ef4b2a9a Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 11:50:01 -0400 Subject: [PATCH 20/32] no eit --- scripts/build_test.sh | 110 ++++++++++++++++++++++++++++++------------ 1 file changed, 80 insertions(+), 30 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index d1bc84f0e0..1a9fadb65b 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -1,95 +1,145 @@ #!/usr/bin/env bash -set -euo pipefail + +set -o errexit +set -o nounset +set -o pipefail + +# --------------------------------------------- +# Build & Test Script with Flake Handling +# Implements behavior matrix: +# 1) All run, only known flakes: retry flaky tests only +# 2) Partial panics: retry failed + missing tests +# 3) Unexpected failures: exit immediately +# 4) All pass: exit immediately +# --------------------------------------------- # avalanche root directory SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" CORETH_PATH="${CORETH_PATH:-$(cd "$SCRIPT_DIR/.." && pwd)}" -# Load the constants +# Load project constants source "$CORETH_PATH/scripts/constants.sh" -# CLI flags +# CLI flags (race detection, timeout) NO_RACE="${NO_RACE:-}" RACE_FLAG="" (( NO_RACE )) || RACE_FLAG="-race" TIMEOUT="${TIMEOUT:-600s}" MAX_RETRIES=4 -ALL_PKGS=( $(go list ./... | grep -v github.com/ava-labs/coreth/tests) ) + +# 1) Gather all packages under test (exclude internal test dir) +mapfile -t ALL_PKGS < <( + go list ./... | + grep -v github.com/ava-labs/coreth/tests +) + +# Known flaky tests file KNOWN_FLAKES_FILE="$CORETH_PATH/scripts/known_flakes.txt" -COVER_FLAGS="-coverprofile=coverage.out -covermode=atomic -shuffle=on" -# get_all_tests: list Test functions without invoking go test -get_all_tests() { local pkg="$1"; go list -f '{{.Dir}}' "$pkg" | xargs grep -R --include '*_test.go' -E '^[[:space:]]*func[[:space:]]+Test' | sed -E 's/.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | sort -u; } +# Coverage/shuffle flags matching original behavior +declare -a COVER_FLAGS=( + "-coverprofile=coverage.out" + "-covermode=atomic" + "-shuffle=on" +) + +# get_all_tests: list all Test* functions by grepping *_test.go files +get_all_tests() { + local pkg="$1" + go list -f '{{.Dir}}' "$pkg" | + xargs grep -R --include '*_test.go' -E '^[[:space:]]*func[[:space:]]+Test' | + sed -E 's/.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | + sort -u +} +# run_and_collect: +# - Runs each pkg, captures flaky failures and missing tests (panics) +# - Exits on non-flaky failures run_and_collect() { - # Accept package list as positional args local pkgs=("$@") FLAKY_TESTS=() MISSING_TESTS=() for pkg in "${pkgs[@]}"; do echo "=== Package: $pkg ===" - # skip empty + + # Skip packages with no test files (mimics 'no test files' in Go output) dir=$(go list -f '{{.Dir}}' "$pkg") if [[ ! -d "$dir" || -z $(ls "$dir"/*_test.go 2>/dev/null) ]]; then echo "? $pkg [no test files]" continue fi - # initial test run with tee + # Run tests with coverage + shuffle, tee output to inspect failures echo "ok? $pkg" - test_out="$(mktemp)" - go test $COVER_FLAGS -timeout="$TIMEOUT" $RACE_FLAG "$@" "$pkg" | tee "$test_out" || command_status=$? + test_out=$(mktemp) + command go test "${COVER_FLAGS[@]}" -timeout="$TIMEOUT" $RACE_FLAG "$pkg" \ + | tee "$test_out" || command_status=$? + + # Handle failures: separate flakes vs unexpected if [[ ${command_status:-0} -ne 0 ]]; then - # parse failures - failures=$(grep '^--- FAIL' "$test_out" | awk '{print $3}' | sort -u) - for t in $failures; do + mapfile -t failures < <( + grep '^--- FAIL' "$test_out" | awk '{print \$3}' | sort -u + ) + for t in "${failures[@]}"; do if ! grep -Fxq "$t" "$KNOWN_FLAKES_FILE"; then - echo "Unexpected failure: $t" + echo "Unexpected failure (exit immediately): $t" exit 1 fi + # Collect known flaky tests for retry FLAKY_TESTS+=("$pkg::$t") done fi - # detect missing due to panic - all_tests=( $(get_all_tests "$pkg") ) - ran_tests=( $(grep -E '^=== RUN' "$test_out" | awk '{print $3}' | sort -u) ) + # Detect missing tests due to panic/skips + mapfile -t all_tests < <(get_all_tests "$pkg") + mapfile -t ran_tests < <( + grep -E '^=== RUN' "$test_out" | awk '{print \$3}' | sort -u + ) missing=() for t in "${all_tests[@]}"; do - if ! printf '%s' "${ran_tests[@]}" | grep -qxF "$t"; then + if ! printf '%s\n' "${ran_tests[@]}" | grep -qxF "$t"; then missing+=("$pkg::$t") fi done - echo "Tests ran: ${#ran_tests[@]}, missing: ${#missing[@]}" + echo "Tests ran: ${#ran_tests[@]}, missing (for retry): ${#missing[@]}" MISSING_TESTS+=("${missing[@]}") rm "$test_out" done } -# main loop -for ((i=1;i<=MAX_RETRIES;i++)); do +# Main retry loop: up to MAX_RETRIES attempts +for ((i=1; i<=MAX_RETRIES; i++)); do echo "--- Attempt #$i ---" - # run initial collection over all packages + # 1st run over all pkgs, subsequent runs will still use all pkgs but skip passed ones run_and_collect "${ALL_PKGS[@]}" - if [[ ${#MISSING_TESTS[@]} -eq 0 && ${#FLAKY_TESTS[@]} -eq 0 ]]; then + + # If no flakes or missing, success as per matrix row 'All tests pass' + if [[ ${#FLAKY_TESTS[@]} -eq 0 && ${#MISSING_TESTS[@]} -eq 0 ]]; then echo "✅ All tests passed" exit 0 fi - # prepare retry + # Else, build regex to retry only flaky + missing tests tests=("${FLAKY_TESTS[@]}" "${MISSING_TESTS[@]}") regex="^($(printf '%s|' "${tests[@]##*::}") )$" - echo "Retrying: ${tests[*]}" - go test $COVER_FLAGS -timeout="$TIMEOUT" $RACE_FLAG -run "$regex" "${ALL_PKGS[@]}" | tee retry.out || true + echo "Retrying only flaky + missing tests: ${tests[*]}" - # parse retry results same way + # Retry invocation preserves coverage + shuffle flags + command go test "${COVER_FLAGS[@]}" -timeout="$TIMEOUT" $RACE_FLAG \ + -run "$regex" "${ALL_PKGS[@]}" | tee retry.out || true + + # Re-collect flaky/missing for further attempts run_and_collect "${ALL_PKGS[@]}" done +# After retries exhausted: fail if still flakes/missing reflect matrix 'After Behavior' if [[ ${#FLAKY_TESTS[@]} -gt 0 || ${#MISSING_TESTS[@]} -gt 0 ]]; then - echo "❌ Failures after retries: ${FLAKY_TESTS[*]} ${MISSING_TESTS[*]}" + echo "❌ Tests still flaky or missing after $MAX_RETRIES attempts:" + echo " Flaky: ${FLAKY_TESTS[*]}" + echo " Missing: ${MISSING_TESTS[*]}" exit 1 fi + exit 0 From 3496271f6ebf8636a5541765266c192109a3647d Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 11:53:14 -0400 Subject: [PATCH 21/32] add -v --- scripts/build_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 1a9fadb65b..e81b435e61 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -73,7 +73,7 @@ run_and_collect() { # Run tests with coverage + shuffle, tee output to inspect failures echo "ok? $pkg" test_out=$(mktemp) - command go test "${COVER_FLAGS[@]}" -timeout="$TIMEOUT" $RACE_FLAG "$pkg" \ + command go test -v "${COVER_FLAGS[@]}" -timeout="$TIMEOUT" $RACE_FLAG "$pkg" \ | tee "$test_out" || command_status=$? # Handle failures: separate flakes vs unexpected From e476499da4d43286a9800bd5b97a7fd1c8671501 Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 11:58:15 -0400 Subject: [PATCH 22/32] use json --- scripts/build_test.sh | 134 ++++++++++++++++++++++++------------------ 1 file changed, 78 insertions(+), 56 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index e81b435e61..8db0d931b5 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -5,8 +5,8 @@ set -o nounset set -o pipefail # --------------------------------------------- -# Build & Test Script with Flake Handling -# Implements behavior matrix: +# Build & Test Script with Flake Handling +# Behavior matrix: # 1) All run, only known flakes: retry flaky tests only # 2) Partial panics: retry failed + missing tests # 3) Unexpected failures: exit immediately @@ -20,40 +20,38 @@ CORETH_PATH="${CORETH_PATH:-$(cd "$SCRIPT_DIR/.." && pwd)}" # Load project constants source "$CORETH_PATH/scripts/constants.sh" -# CLI flags (race detection, timeout) +# CLI flags NO_RACE="${NO_RACE:-}" RACE_FLAG="" (( NO_RACE )) || RACE_FLAG="-race" TIMEOUT="${TIMEOUT:-600s}" MAX_RETRIES=4 -# 1) Gather all packages under test (exclude internal test dir) -mapfile -t ALL_PKGS < <( - go list ./... | - grep -v github.com/ava-labs/coreth/tests +# Gather all packages under test (exclude internal tests) +ALL_PKGS=() +while IFS= read -r pkg; do ALL_PKGS+=("$pkg"); done < <( + go list ./... | grep -v github.com/ava-labs/coreth/tests ) # Known flaky tests file KNOWN_FLAKES_FILE="$CORETH_PATH/scripts/known_flakes.txt" # Coverage/shuffle flags matching original behavior -declare -a COVER_FLAGS=( - "-coverprofile=coverage.out" - "-covermode=atomic" - "-shuffle=on" -) +COVER_PROFILE="coverage.out" +COVER_MODE="atomic" +SHUFFLE="on" -# get_all_tests: list all Test* functions by grepping *_test.go files +# get_all_tests: list Test* functions by grepping *_test.go files get_all_tests() { local pkg="$1" - go list -f '{{.Dir}}' "$pkg" | - xargs grep -R --include '*_test.go' -E '^[[:space:]]*func[[:space:]]+Test' | - sed -E 's/.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | - sort -u + go list -f '{{.Dir}}' "$pkg" | \ + xargs grep -R --include '*_test.go' -E '^[[:space:]]*func[[:space:]]+Test' | \ + sed -E 's/.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | sort -u } # run_and_collect: -# - Runs each pkg, captures flaky failures and missing tests (panics) +# - Uses go test -json to gather run/fail/skip events +# - Captures flaky failures and missing tests (due to panics/skips) # - Exits on non-flaky failures run_and_collect() { local pkgs=("$@") @@ -63,82 +61,106 @@ run_and_collect() { for pkg in "${pkgs[@]}"; do echo "=== Package: $pkg ===" - # Skip packages with no test files (mimics 'no test files' in Go output) + # Skip packages without *_test.go dir=$(go list -f '{{.Dir}}' "$pkg") if [[ ! -d "$dir" || -z $(ls "$dir"/*_test.go 2>/dev/null) ]]; then echo "? $pkg [no test files]" continue fi - # Run tests with coverage + shuffle, tee output to inspect failures - echo "ok? $pkg" - test_out=$(mktemp) - command go test -v "${COVER_FLAGS[@]}" -timeout="$TIMEOUT" $RACE_FLAG "$pkg" \ - | tee "$test_out" || command_status=$? - - # Handle failures: separate flakes vs unexpected - if [[ ${command_status:-0} -ne 0 ]]; then - mapfile -t failures < <( - grep '^--- FAIL' "$test_out" | awk '{print \$3}' | sort -u - ) - for t in "${failures[@]}"; do - if ! grep -Fxq "$t" "$KNOWN_FLAKES_FILE"; then - echo "Unexpected failure (exit immediately): $t" - exit 1 - fi - # Collect known flaky tests for retry - FLAKY_TESTS+=("$pkg::$t") - done + # Run tests with JSON output + echo "Running: go test -json (coverage & shuffle)" + out_file="${pkg//\//_}.json" + command go test -json \ + -timeout="$TIMEOUT" \ + -coverprofile="$COVER_PROFILE" \ + -covermode="$COVER_MODE" \ + -shuffle="$SHUFFLE" \ + $RACE_FLAG "$pkg" > "$out_file" 2>&1 || true + + # Parse results + # ran_tests: tests with Action=run or skip + ran_tests=() + while IFS= read -r t; do ran_tests+=("$t"); done < <( + jq -r 'select(.Package=="'$pkg'" and .Test!=null and (.Action=="run" or .Action=="skip")) | .Test' "$out_file" | sort -u + ) + + # all_failed: tests with Action=fail + all_failed=() + while IFS= read -r t; do all_failed+=("$t"); done < <( + jq -r 'select(.Package=="'$pkg'" and .Test!=null and .Action=="fail") | .Test' "$out_file" | sort -u + ) + + # Separate non-flaky vs flaky + non_flakes=() + flakes=() + for t in "${all_failed[@]}"; do + if grep -Fxq "$t" "$KNOWN_FLAKES_FILE"; then + flakes+=("$pkg::$t") + else + non_flakes+=("$pkg::$t") + fi + done + + # Exit on any non-flaky failure + if (( ${#non_flakes[@]} )); then + echo "Unexpected (non-flake) failure: ${non_flakes[*]}" + exit 1 fi + # Collect flaky tests for retry + FLAKY_TESTS+=("${flakes[@]}") + echo "Flaky failures: ${#flakes[@]}" + # Detect missing tests due to panic/skips - mapfile -t all_tests < <(get_all_tests "$pkg") - mapfile -t ran_tests < <( - grep -E '^=== RUN' "$test_out" | awk '{print \$3}' | sort -u - ) + all_tests=() + while IFS= read -r t; do all_tests+=("$t"); done < <(get_all_tests "$pkg") missing=() for t in "${all_tests[@]}"; do if ! printf '%s\n' "${ran_tests[@]}" | grep -qxF "$t"; then missing+=("$pkg::$t") fi done - echo "Tests ran: ${#ran_tests[@]}, missing (for retry): ${#missing[@]}" MISSING_TESTS+=("${missing[@]}") + echo "Tests ran: ${#ran_tests[@]}, missing: ${#missing[@]}" - rm "$test_out" + rm "$out_file" done } -# Main retry loop: up to MAX_RETRIES attempts +# Main retry loop for ((i=1; i<=MAX_RETRIES; i++)); do echo "--- Attempt #$i ---" - # 1st run over all pkgs, subsequent runs will still use all pkgs but skip passed ones run_and_collect "${ALL_PKGS[@]}" - # If no flakes or missing, success as per matrix row 'All tests pass' + # All tests passed? if [[ ${#FLAKY_TESTS[@]} -eq 0 && ${#MISSING_TESTS[@]} -eq 0 ]]; then echo "✅ All tests passed" exit 0 fi - # Else, build regex to retry only flaky + missing tests + # Prepare to retry only flakes + missing tests=("${FLAKY_TESTS[@]}" "${MISSING_TESTS[@]}") regex="^($(printf '%s|' "${tests[@]##*::}") )$" echo "Retrying only flaky + missing tests: ${tests[*]}" - # Retry invocation preserves coverage + shuffle flags - command go test "${COVER_FLAGS[@]}" -timeout="$TIMEOUT" $RACE_FLAG \ - -run "$regex" "${ALL_PKGS[@]}" | tee retry.out || true + # Retry + command go test -json \ + -timeout="$TIMEOUT" \ + -coverprofile="$COVER_PROFILE" \ + -covermode="$COVER_MODE" \ + -shuffle="$SHUFFLE" \ + $RACE_FLAG -run "$regex" "${ALL_PKGS[@]}" > retry.json 2>&1 || true - # Re-collect flaky/missing for further attempts + # Re-collect for further attempts run_and_collect "${ALL_PKGS[@]}" done -# After retries exhausted: fail if still flakes/missing reflect matrix 'After Behavior' +# Final exit if [[ ${#FLAKY_TESTS[@]} -gt 0 || ${#MISSING_TESTS[@]} -gt 0 ]]; then - echo "❌ Tests still flaky or missing after $MAX_RETRIES attempts:" - echo " Flaky: ${FLAKY_TESTS[*]}" - echo " Missing: ${MISSING_TESTS[*]}" + echo "❌ Tests still flaky or missing after $MAX_RETRIES attempts" + echo " Flaky: ${FLAKY_TESTS[*]}" + echo " Missing: ${MISSING_TESTS[*]}" exit 1 fi From 7d385567ed2f4038fc164a4f702101a295772860 Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 12:02:19 -0400 Subject: [PATCH 23/32] gotestsum --- scripts/build_test.sh | 71 ++++++++++++++++++++++++------------------- 1 file changed, 39 insertions(+), 32 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 8db0d931b5..10cd53fa93 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -5,7 +5,7 @@ set -o nounset set -o pipefail # --------------------------------------------- -# Build & Test Script with Flake Handling +# Build & Test Script with Flake Handling via gotestsum # Behavior matrix: # 1) All run, only known flakes: retry flaky tests only # 2) Partial panics: retry failed + missing tests @@ -13,6 +13,12 @@ set -o pipefail # 4) All pass: exit immediately # --------------------------------------------- +# Ensure gotestsum is installed +if ! command -v gotestsum &> /dev/null; then + echo "Error: gotestsum is required but not installed." + exit 1 +fi + # avalanche root directory SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" CORETH_PATH="${CORETH_PATH:-$(cd "$SCRIPT_DIR/.." && pwd)}" @@ -28,30 +34,28 @@ TIMEOUT="${TIMEOUT:-600s}" MAX_RETRIES=4 # Gather all packages under test (exclude internal tests) -ALL_PKGS=() -while IFS= read -r pkg; do ALL_PKGS+=("$pkg"); done < <( +mapfile -t ALL_PKGS < <( go list ./... | grep -v github.com/ava-labs/coreth/tests ) # Known flaky tests file KNOWN_FLAKES_FILE="$CORETH_PATH/scripts/known_flakes.txt" -# Coverage/shuffle flags matching original behavior +# Coverage/shuffle flags COVER_PROFILE="coverage.out" COVER_MODE="atomic" SHUFFLE="on" # get_all_tests: list Test* functions by grepping *_test.go files get_all_tests() { - local pkg="$1" - go list -f '{{.Dir}}' "$pkg" | \ + go list -f '{{.Dir}}' "$1" | \ xargs grep -R --include '*_test.go' -E '^[[:space:]]*func[[:space:]]+Test' | \ sed -E 's/.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | sort -u } # run_and_collect: -# - Uses go test -json to gather run/fail/skip events -# - Captures flaky failures and missing tests (due to panics/skips) +# - Single gotestsum invocation: human-friendly + JSON output +# - Captures flaky failures and missing tests # - Exits on non-flaky failures run_and_collect() { local pkgs=("$@") @@ -68,29 +72,34 @@ run_and_collect() { continue fi - # Run tests with JSON output - echo "Running: go test -json (coverage & shuffle)" - out_file="${pkg//\//_}.json" - command go test -json \ + # Run tests via gotestsum + json_out=$(mktemp) + test_out=$(mktemp) + echo "Running tests for $pkg via gotestsum" + gotestsum \ + --format=standard-verbose \ + --jsonfile="$json_out" \ + -- \ -timeout="$TIMEOUT" \ + -shuffle="$SHUFFLE" \ -coverprofile="$COVER_PROFILE" \ -covermode="$COVER_MODE" \ - -shuffle="$SHUFFLE" \ - $RACE_FLAG "$pkg" > "$out_file" 2>&1 || true + $RACE_FLAG \ + "$pkg" | tee "$test_out" || command_status=$? - # Parse results - # ran_tests: tests with Action=run or skip + # Parse machine JSON output ran_tests=() while IFS= read -r t; do ran_tests+=("$t"); done < <( - jq -r 'select(.Package=="'$pkg'" and .Test!=null and (.Action=="run" or .Action=="skip")) | .Test' "$out_file" | sort -u + jq -r 'select(.Package=="'$pkg'" and .Test!=null and (.Action=="run" or .Action=="skip")) | .Test' "$json_out" | sort -u ) - # all_failed: tests with Action=fail all_failed=() while IFS= read -r t; do all_failed+=("$t"); done < <( - jq -r 'select(.Package=="'$pkg'" and .Test!=null and .Action=="fail") | .Test' "$out_file" | sort -u + jq -r 'select(.Package=="'$pkg'" and .Test!=null and .Action=="fail") | .Test' "$json_out" | sort -u ) + rm "$json_out" + # Separate non-flaky vs flaky non_flakes=() flakes=() @@ -104,15 +113,14 @@ run_and_collect() { # Exit on any non-flaky failure if (( ${#non_flakes[@]} )); then - echo "Unexpected (non-flake) failure: ${non_flakes[*]}" + echo "Unexpected failure (exit immediately): ${non_flakes[*]}" exit 1 fi - # Collect flaky tests for retry FLAKY_TESTS+=("${flakes[@]}") echo "Flaky failures: ${#flakes[@]}" - # Detect missing tests due to panic/skips + # Missing tests detection all_tests=() while IFS= read -r t; do all_tests+=("$t"); done < <(get_all_tests "$pkg") missing=() @@ -124,7 +132,7 @@ run_and_collect() { MISSING_TESTS+=("${missing[@]}") echo "Tests ran: ${#ran_tests[@]}, missing: ${#missing[@]}" - rm "$out_file" + rm "$test_out" done } @@ -132,31 +140,30 @@ run_and_collect() { for ((i=1; i<=MAX_RETRIES; i++)); do echo "--- Attempt #$i ---" run_and_collect "${ALL_PKGS[@]}" - - # All tests passed? if [[ ${#FLAKY_TESTS[@]} -eq 0 && ${#MISSING_TESTS[@]} -eq 0 ]]; then echo "✅ All tests passed" exit 0 fi - # Prepare to retry only flakes + missing tests=("${FLAKY_TESTS[@]}" "${MISSING_TESTS[@]}") regex="^($(printf '%s|' "${tests[@]##*::}") )$" echo "Retrying only flaky + missing tests: ${tests[*]}" - # Retry - command go test -json \ + gotestsum \ + --format=standard-verbose \ + --jsonfile=retry.json \ + -- \ -timeout="$TIMEOUT" \ + -shuffle="$SHUFFLE" \ -coverprofile="$COVER_PROFILE" \ -covermode="$COVER_MODE" \ - -shuffle="$SHUFFLE" \ - $RACE_FLAG -run "$regex" "${ALL_PKGS[@]}" > retry.json 2>&1 || true + $RACE_FLAG \ + -test.run="$regex" \ + "${ALL_PKGS[@]}" | tee retry.out || true - # Re-collect for further attempts run_and_collect "${ALL_PKGS[@]}" done -# Final exit if [[ ${#FLAKY_TESTS[@]} -gt 0 || ${#MISSING_TESTS[@]} -gt 0 ]]; then echo "❌ Tests still flaky or missing after $MAX_RETRIES attempts" echo " Flaky: ${FLAKY_TESTS[*]}" From 528c57cc3f1e9daed5ea1e709ca343a646d7241a Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 12:50:13 -0400 Subject: [PATCH 24/32] RESET --- scripts/build_test.sh | 198 +++++++++--------------------------------- 1 file changed, 41 insertions(+), 157 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 10cd53fa93..7d277d80b6 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -4,171 +4,55 @@ set -o errexit set -o nounset set -o pipefail -# --------------------------------------------- -# Build & Test Script with Flake Handling via gotestsum -# Behavior matrix: -# 1) All run, only known flakes: retry flaky tests only -# 2) Partial panics: retry failed + missing tests -# 3) Unexpected failures: exit immediately -# 4) All pass: exit immediately -# --------------------------------------------- - -# Ensure gotestsum is installed -if ! command -v gotestsum &> /dev/null; then - echo "Error: gotestsum is required but not installed." - exit 1 -fi - -# avalanche root directory -SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -CORETH_PATH="${CORETH_PATH:-$(cd "$SCRIPT_DIR/.." && pwd)}" - -# Load project constants -source "$CORETH_PATH/scripts/constants.sh" - -# CLI flags -NO_RACE="${NO_RACE:-}" -RACE_FLAG="" -(( NO_RACE )) || RACE_FLAG="-race" -TIMEOUT="${TIMEOUT:-600s}" -MAX_RETRIES=4 - -# Gather all packages under test (exclude internal tests) -mapfile -t ALL_PKGS < <( - go list ./... | grep -v github.com/ava-labs/coreth/tests +# Avalanche root directory +CORETH_PATH=$( + cd "$(dirname "${BASH_SOURCE[0]}")" + cd .. && pwd ) -# Known flaky tests file -KNOWN_FLAKES_FILE="$CORETH_PATH/scripts/known_flakes.txt" +# Load the constants +source "$CORETH_PATH"/scripts/constants.sh -# Coverage/shuffle flags -COVER_PROFILE="coverage.out" -COVER_MODE="atomic" -SHUFFLE="on" - -# get_all_tests: list Test* functions by grepping *_test.go files -get_all_tests() { - go list -f '{{.Dir}}' "$1" | \ - xargs grep -R --include '*_test.go' -E '^[[:space:]]*func[[:space:]]+Test' | \ - sed -E 's/.*func[[:space:]]+(Test[[:alnum:]_]+).*/\1/' | sort -u -} - -# run_and_collect: -# - Single gotestsum invocation: human-friendly + JSON output -# - Captures flaky failures and missing tests -# - Exits on non-flaky failures -run_and_collect() { - local pkgs=("$@") - FLAKY_TESTS=() - MISSING_TESTS=() - - for pkg in "${pkgs[@]}"; do - echo "=== Package: $pkg ===" +# We pass in the arguments to this script directly to enable easily passing parameters such as enabling race detection, +# parallelism, and test coverage. +# DO NOT RUN tests from the top level "tests" directory since they are run by ginkgo +race="-race" +if [[ -n "${NO_RACE:-}" ]]; then + race="" +fi - # Skip packages without *_test.go - dir=$(go list -f '{{.Dir}}' "$pkg") - if [[ ! -d "$dir" || -z $(ls "$dir"/*_test.go 2>/dev/null) ]]; then - echo "? $pkg [no test files]" - continue +# MAX_RUNS bounds the attempts to retry the tests before giving up +# This is useful for flaky tests +MAX_RUNS=4 +for ((i = 1; i <= MAX_RUNS; i++)); +do + # shellcheck disable=SC2046 + go test -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" $(go list ./... | grep -v github.com/ava-labs/coreth/tests) | tee test.out || command_status=$? + + # If the test passed, exit + if [[ ${command_status:-0} == 0 ]]; then + rm test.out + exit 0 + else + unset command_status # Clear the error code for the next run fi - # Run tests via gotestsum - json_out=$(mktemp) - test_out=$(mktemp) - echo "Running tests for $pkg via gotestsum" - gotestsum \ - --format=standard-verbose \ - --jsonfile="$json_out" \ - -- \ - -timeout="$TIMEOUT" \ - -shuffle="$SHUFFLE" \ - -coverprofile="$COVER_PROFILE" \ - -covermode="$COVER_MODE" \ - $RACE_FLAG \ - "$pkg" | tee "$test_out" || command_status=$? - - # Parse machine JSON output - ran_tests=() - while IFS= read -r t; do ran_tests+=("$t"); done < <( - jq -r 'select(.Package=="'$pkg'" and .Test!=null and (.Action=="run" or .Action=="skip")) | .Test' "$json_out" | sort -u - ) - - all_failed=() - while IFS= read -r t; do all_failed+=("$t"); done < <( - jq -r 'select(.Package=="'$pkg'" and .Test!=null and .Action=="fail") | .Test' "$json_out" | sort -u + # If the test failed, print the output + unexpected_failures=$( + # First grep pattern corresponds to test failures, second pattern corresponds to test panics due to timeouts + (grep "^--- FAIL" test.out | awk '{print $3}' || grep -E '^\s+Test.+ \(' test.out | awk '{print $1}') | + sort -u | comm -23 - <(sed 's/\r$//' ./scripts/known_flakes.txt) ) - - rm "$json_out" - - # Separate non-flaky vs flaky - non_flakes=() - flakes=() - for t in "${all_failed[@]}"; do - if grep -Fxq "$t" "$KNOWN_FLAKES_FILE"; then - flakes+=("$pkg::$t") - else - non_flakes+=("$pkg::$t") - fi - done - - # Exit on any non-flaky failure - if (( ${#non_flakes[@]} )); then - echo "Unexpected failure (exit immediately): ${non_flakes[*]}" - exit 1 + if [ -n "${unexpected_failures}" ]; then + echo "Unexpected test failures: ${unexpected_failures}" + exit 1 fi - FLAKY_TESTS+=("${flakes[@]}") - echo "Flaky failures: ${#flakes[@]}" - - # Missing tests detection - all_tests=() - while IFS= read -r t; do all_tests+=("$t"); done < <(get_all_tests "$pkg") - missing=() - for t in "${all_tests[@]}"; do - if ! printf '%s\n' "${ran_tests[@]}" | grep -qxF "$t"; then - missing+=("$pkg::$t") - fi - done - MISSING_TESTS+=("${missing[@]}") - echo "Tests ran: ${#ran_tests[@]}, missing: ${#missing[@]}" - - rm "$test_out" - done -} - -# Main retry loop -for ((i=1; i<=MAX_RETRIES; i++)); do - echo "--- Attempt #$i ---" - run_and_collect "${ALL_PKGS[@]}" - if [[ ${#FLAKY_TESTS[@]} -eq 0 && ${#MISSING_TESTS[@]} -eq 0 ]]; then - echo "✅ All tests passed" - exit 0 - fi - - tests=("${FLAKY_TESTS[@]}" "${MISSING_TESTS[@]}") - regex="^($(printf '%s|' "${tests[@]##*::}") )$" - echo "Retrying only flaky + missing tests: ${tests[*]}" - - gotestsum \ - --format=standard-verbose \ - --jsonfile=retry.json \ - -- \ - -timeout="$TIMEOUT" \ - -shuffle="$SHUFFLE" \ - -coverprofile="$COVER_PROFILE" \ - -covermode="$COVER_MODE" \ - $RACE_FLAG \ - -test.run="$regex" \ - "${ALL_PKGS[@]}" | tee retry.out || true - - run_and_collect "${ALL_PKGS[@]}" + # Note the absence of unexpected failures cannot be indicative that we only need to run the tests that failed, + # for example a test may panic and cause subsequent tests in that package to not run. + # So we loop here. + echo "Test run $i failed with known flakes, retrying..." done -if [[ ${#FLAKY_TESTS[@]} -gt 0 || ${#MISSING_TESTS[@]} -gt 0 ]]; then - echo "❌ Tests still flaky or missing after $MAX_RETRIES attempts" - echo " Flaky: ${FLAKY_TESTS[*]}" - echo " Missing: ${MISSING_TESTS[*]}" - exit 1 -fi - -exit 0 +# If we reach here, we have failed all retries +exit 1 \ No newline at end of file From fa233b245fa39ddb6895e3db08618e80f6e75687 Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 14:59:27 -0400 Subject: [PATCH 25/32] try rerun at the package level --- scripts/build_test.sh | 202 ++++++++++++++++++++++++++++++++++++------ 1 file changed, 174 insertions(+), 28 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 7d277d80b6..44693ba65b 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -21,38 +21,184 @@ if [[ -n "${NO_RACE:-}" ]]; then race="" fi -# MAX_RUNS bounds the attempts to retry the tests before giving up -# This is useful for flaky tests +# MAX_RUNS bounds the attempts to retry individual tests before giving up MAX_RUNS=4 -for ((i = 1; i <= MAX_RUNS; i++)); -do - # shellcheck disable=SC2046 - go test -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" $(go list ./... | grep -v github.com/ava-labs/coreth/tests) | tee test.out || command_status=$? - - # If the test passed, exit - if [[ ${command_status:-0} == 0 ]]; then - rm test.out - exit 0 - else - unset command_status # Clear the error code for the next run + +# Function to extract failed test names from output +extract_failed_tests() { + local output_file="$1" + # Extract test failures and panics + (grep "^--- FAIL" "$output_file" | awk '{print $3}' || grep -E '^\s+Test.+ \(' "$output_file" | awk '{print $1}') | + sort -u +} + +# Function to check if a test is a known flake +is_known_flake() { + local test_name="$1" + grep -q "^${test_name}$" ./scripts/known_flakes.txt +} + +# Function to check for panics in output +detect_panics() { + local output_file="$1" + grep -q "panic:" "$output_file" || grep -q "fatal error:" "$output_file" +} + +# Function to get all tests in a package +get_package_tests() { + local package="$1" + go test -list=".*" "$package" 2>/dev/null | grep "^Test" || true +} + +# Function to get tests that didn't run due to panic +get_missing_tests_after_panic() { + local output_file="$1" + local package="$2" + local failed_tests="$3" + + # Get all tests in the package + local all_tests=$(get_package_tests "$package") + + # Find tests that didn't run (not in failed_tests and not in successful output) + local missing_tests="" + for test in $all_tests; do + # Check if test is in failed_tests + if echo "$failed_tests" | grep -q "$test"; then + continue + fi + + # Check if test passed (appears in output with PASS) + if grep -q "PASS.*$test" "$output_file"; then + continue + fi + + # Test didn't run + missing_tests="$missing_tests $test" + done + + echo "$missing_tests" +} + +# Function to run specific tests and return status +run_specific_test() { + local test_name="$1" + local output_file="$2" + + # Extract package name from test name (assuming format: PackageName.TestName) + local package=$(echo "$test_name" | sed 's/\.[^.]*$//') + + # Run the specific test + go test -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -run "^${test_name}$" "$package" 2>&1 | tee "$output_file" + return ${PIPESTATUS[0]} +} + +# Initial test run +echo "Running initial test suite..." +go test -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" $(go list ./... | grep -v github.com/ava-labs/coreth/tests) | tee test.out || command_status=$? + +# If initial run passes, exit successfully +if [[ ${command_status:-0} == 0 ]]; then + rm test.out + echo "All tests passed on first run!" + exit 0 +fi + +# Extract failed tests +failed_tests=$(extract_failed_tests test.out) +echo "Failed tests: $failed_tests" + +# Check for unexpected failures +unexpected_failures="" +for test in $failed_tests; do + if ! is_known_flake "$test"; then + unexpected_failures="$unexpected_failures $test" fi +done + +if [ -n "$unexpected_failures" ]; then + echo "Unexpected test failures: $unexpected_failures" + exit 1 +fi + +# All failures are known flakes, retry them individually +echo "All failures are known flakes. Retrying failed tests individually..." - # If the test failed, print the output - unexpected_failures=$( - # First grep pattern corresponds to test failures, second pattern corresponds to test panics due to timeouts - (grep "^--- FAIL" test.out | awk '{print $3}' || grep -E '^\s+Test.+ \(' test.out | awk '{print $1}') | - sort -u | comm -23 - <(sed 's/\r$//' ./scripts/known_flakes.txt) - ) - if [ -n "${unexpected_failures}" ]; then - echo "Unexpected test failures: ${unexpected_failures}" +# Create a temporary file for retry output +retry_output="retry_test.out" +rm -f "$retry_output" + +# Track tests that need retry +tests_to_retry="$failed_tests" + +# Retry loop for failed tests +for ((attempt = 1; attempt <= MAX_RUNS; attempt++)); do + echo "Retry attempt $attempt for tests: $tests_to_retry" + + local still_failing="" + local panic_affected_packages="" + + # Retry each failed test + for test in $tests_to_retry; do + echo "Retrying test: $test" + + # Run the specific test + run_specific_test "$test" "$retry_output" + test_status=$? + + # Check if test passed + if [[ $test_status == 0 ]]; then + echo "Test $test passed on attempt $attempt" + continue + fi + + # Check if this is still a known flake + if ! is_known_flake "$test"; then + echo "Test $test is no longer a known flake and failed" + exit 1 + fi + + # Check for panics + if detect_panics "$retry_output"; then + echo "Test $test panicked on attempt $attempt" + package=$(echo "$test" | sed 's/\.[^.]*$//') + panic_affected_packages="$panic_affected_packages $package" + + # Get tests that didn't run due to panic + missing_tests=$(get_missing_tests_after_panic "$retry_output" "$package" "$test") + if [ -n "$missing_tests" ]; then + echo "Tests that didn't run due to panic: $missing_tests" + # Add missing tests to retry list + for missing_test in $missing_tests; do + if ! echo "$tests_to_retry" | grep -q "$missing_test"; then + tests_to_retry="$tests_to_retry $missing_test" + fi + done + fi + fi + + # Test still failing + still_failing="$still_failing $test" + done + + # Update tests to retry for next iteration + tests_to_retry="$still_failing" + + # If no tests are still failing, we're done + if [ -z "$tests_to_retry" ]; then + echo "All tests passed after retries!" + rm -f test.out "$retry_output" + exit 0 + fi + + echo "Tests still failing after attempt $attempt: $tests_to_retry" + + # If this was the last attempt, fail + if [[ $attempt == $MAX_RUNS ]]; then + echo "Tests failed all $MAX_RUNS attempts: $tests_to_retry" exit 1 fi - - # Note the absence of unexpected failures cannot be indicative that we only need to run the tests that failed, - # for example a test may panic and cause subsequent tests in that package to not run. - # So we loop here. - echo "Test run $i failed with known flakes, retrying..." done -# If we reach here, we have failed all retries -exit 1 \ No newline at end of file +echo "All known flaky tests passed after retries!" +rm -f test.out "$retry_output" +exit 0 \ No newline at end of file From 9a6f4fa1f41db61db7d18ad5c29bec57cf67894c Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 16:20:11 -0400 Subject: [PATCH 26/32] lint errors --- scripts/build_test.sh | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 44693ba65b..3276f76668 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -57,7 +57,8 @@ get_missing_tests_after_panic() { local failed_tests="$3" # Get all tests in the package - local all_tests=$(get_package_tests "$package") + local all_tests + all_tests=$(get_package_tests "$package") # Find tests that didn't run (not in failed_tests and not in successful output) local missing_tests="" @@ -85,16 +86,17 @@ run_specific_test() { local output_file="$2" # Extract package name from test name (assuming format: PackageName.TestName) - local package=$(echo "$test_name" | sed 's/\.[^.]*$//') + local package + package="${test_name%.*}" # Run the specific test go test -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -run "^${test_name}$" "$package" 2>&1 | tee "$output_file" - return ${PIPESTATUS[0]} + return "${PIPESTATUS[0]}" } # Initial test run echo "Running initial test suite..." -go test -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" $(go list ./... | grep -v github.com/ava-labs/coreth/tests) | tee test.out || command_status=$? +go test -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" "$(go list ./... | grep -v github.com/ava-labs/coreth/tests)" | tee test.out || command_status=$? # If initial run passes, exit successfully if [[ ${command_status:-0} == 0 ]]; then @@ -134,8 +136,8 @@ tests_to_retry="$failed_tests" for ((attempt = 1; attempt <= MAX_RUNS; attempt++)); do echo "Retry attempt $attempt for tests: $tests_to_retry" - local still_failing="" - local panic_affected_packages="" + still_failing="" + panic_affected_packages="" # Retry each failed test for test in $tests_to_retry; do @@ -151,16 +153,16 @@ for ((attempt = 1; attempt <= MAX_RUNS; attempt++)); do continue fi - # Check if this is still a known flake + # Check if this is an unexpected failure if ! is_known_flake "$test"; then - echo "Test $test is no longer a known flake and failed" + echo "Test $test failed and is not a known flake" exit 1 fi # Check for panics if detect_panics "$retry_output"; then echo "Test $test panicked on attempt $attempt" - package=$(echo "$test" | sed 's/\.[^.]*$//') + package="${test%.*}" panic_affected_packages="$panic_affected_packages $package" # Get tests that didn't run due to panic @@ -193,7 +195,7 @@ for ((attempt = 1; attempt <= MAX_RUNS; attempt++)); do echo "Tests still failing after attempt $attempt: $tests_to_retry" # If this was the last attempt, fail - if [[ $attempt == $MAX_RUNS ]]; then + if [[ $attempt == "$MAX_RUNS" ]]; then echo "Tests failed all $MAX_RUNS attempts: $tests_to_retry" exit 1 fi From a6893d0a54f5fda33189e72736c5553560f88d98 Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Thu, 24 Jul 2025 16:27:40 -0400 Subject: [PATCH 27/32] seperate paths --- scripts/build_test.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 3276f76668..096f8b7ef1 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -96,7 +96,8 @@ run_specific_test() { # Initial test run echo "Running initial test suite..." -go test -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" "$(go list ./... | grep -v github.com/ava-labs/coreth/tests)" | tee test.out || command_status=$? +# shellcheck disable=SC2046 +go test -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -coverprofile=coverage.out -covermode=atomic "$@" $(go list ./... | grep -v github.com/ava-labs/coreth/tests) | tee test.out || command_status=$? # If initial run passes, exit successfully if [[ ${command_status:-0} == 0 ]]; then From 3c46681f1c4c47c68a2dc7e1a69684cd83f12fef Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Fri, 25 Jul 2025 11:33:10 -0400 Subject: [PATCH 28/32] save package for test through mapping: --- scripts/build_test.sh | 34 +++++++++++++++++++++++----------- scripts/known_flakes.txt | 1 + 2 files changed, 24 insertions(+), 11 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 096f8b7ef1..3e3797e86d 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -84,13 +84,9 @@ get_missing_tests_after_panic() { run_specific_test() { local test_name="$1" local output_file="$2" - - # Extract package name from test name (assuming format: PackageName.TestName) - local package - package="${test_name%.*}" - - # Run the specific test - go test -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" -run "^${test_name}$" "$package" 2>&1 | tee "$output_file" + local package="$3" + go test -shuffle=on ${race:-} -timeout="${TIMEOUT:-600s}" \ + -run "^${test_name}$" "$package" 2>&1 | tee "$output_file" return "${PIPESTATUS[0]}" } @@ -110,6 +106,19 @@ fi failed_tests=$(extract_failed_tests test.out) echo "Failed tests: $failed_tests" +# Build a map of “test → package” by scanning each failing package just once +failing_packages=$(grep "^FAIL" test.out | awk '{print $2}' | sort -u) +echo "Failing packages: $failing_packages" + +declare -A test_pkg_map +for pkg in $failing_packages; do + for t in $(get_package_tests "$pkg"); do + if echo "$failed_tests" | grep -x "$t" >/dev/null; then + test_pkg_map["$t"]="$pkg" + fi + done +done + # Check for unexpected failures unexpected_failures="" for test in $failed_tests; do @@ -142,10 +151,13 @@ for ((attempt = 1; attempt <= MAX_RUNS; attempt++)); do # Retry each failed test for test in $tests_to_retry; do - echo "Retrying test: $test" - - # Run the specific test - run_specific_test "$test" "$retry_output" + pkg="${test_pkg_map[$test]:-}" + if [[ -z "$pkg" ]]; then + echo "ERROR: no package mapping for test $test" >&2 + exit 1 + fi + echo "Retrying test: $test in package: $pkg" + run_specific_test "$test" "$retry_output" "$pkg" test_status=$? # Check if test passed diff --git a/scripts/known_flakes.txt b/scripts/known_flakes.txt index 260e38e647..0da5cc32f2 100644 --- a/scripts/known_flakes.txt +++ b/scripts/known_flakes.txt @@ -3,6 +3,7 @@ TestExpDecaySampleNanosecondRegression TestGolangBindings TestMempoolAtmTxsAppGossipHandlingDiscardedTx TestMempoolEthTxsAppGossipHandling +TestPruningBlockChainSnapsDisabled TestResumeSyncAccountsTrieInterrupted TestResyncNewRootAfterDeletes TestTimedUnlock From 70a34c836910d19683d084901046f9b073c3d01b Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Fri, 25 Jul 2025 12:22:20 -0400 Subject: [PATCH 29/32] remove non-flaky test --- scripts/build_test.sh | 2 +- scripts/known_flakes.txt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 3e3797e86d..cd6acba413 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -216,4 +216,4 @@ done echo "All known flaky tests passed after retries!" rm -f test.out "$retry_output" -exit 0 \ No newline at end of file +exit 0 diff --git a/scripts/known_flakes.txt b/scripts/known_flakes.txt index 0da5cc32f2..260e38e647 100644 --- a/scripts/known_flakes.txt +++ b/scripts/known_flakes.txt @@ -3,7 +3,6 @@ TestExpDecaySampleNanosecondRegression TestGolangBindings TestMempoolAtmTxsAppGossipHandlingDiscardedTx TestMempoolEthTxsAppGossipHandling -TestPruningBlockChainSnapsDisabled TestResumeSyncAccountsTrieInterrupted TestResyncNewRootAfterDeletes TestTimedUnlock From 54ab582d8981b100588cab1c9f5c9a879a00fdab Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Mon, 28 Jul 2025 15:15:59 -0400 Subject: [PATCH 30/32] See bash version --- scripts/build_test.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index cd6acba413..606c071871 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -4,6 +4,11 @@ set -o errexit set -o nounset set -o pipefail +# Debug: Show bash version and shell info +echo "Bash version: $(bash --version | head -n1)" +echo "Shell: $SHELL" +echo "Current shell: $(ps -p $$ -o comm=)" + # Avalanche root directory CORETH_PATH=$( cd "$(dirname "${BASH_SOURCE[0]}")" From d78e10b668b9c4fc8025abcd7549ab589f4195ef Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Mon, 28 Jul 2025 15:30:51 -0400 Subject: [PATCH 31/32] try other bash --- scripts/build_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 606c071871..0df24e479f 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/local/bin/bash set -o errexit set -o nounset From ccd8f704ac91f16e2bb0f4e43412b97ab1aa5bd8 Mon Sep 17 00:00:00 2001 From: Jonathan Oppenheimer Date: Mon, 28 Jul 2025 15:38:49 -0400 Subject: [PATCH 32/32] comply with old bash version --- scripts/build_test.sh | 37 ++++++++++++++++++++++++------------- 1 file changed, 24 insertions(+), 13 deletions(-) diff --git a/scripts/build_test.sh b/scripts/build_test.sh index 0df24e479f..04608fb29e 100755 --- a/scripts/build_test.sh +++ b/scripts/build_test.sh @@ -1,14 +1,9 @@ -#!/usr/local/bin/bash +#!/usr/bin/env bash set -o errexit set -o nounset set -o pipefail -# Debug: Show bash version and shell info -echo "Bash version: $(bash --version | head -n1)" -echo "Shell: $SHELL" -echo "Current shell: $(ps -p $$ -o comm=)" - # Avalanche root directory CORETH_PATH=$( cd "$(dirname "${BASH_SOURCE[0]}")" @@ -55,6 +50,18 @@ get_package_tests() { go test -list=".*" "$package" 2>/dev/null | grep "^Test" || true } +# Lookup helper: given a test name, echo its package +get_pkg_for_test() { + local test_name="$1" + for i in "${!test_pkg_keys[@]}"; do + if [[ "${test_pkg_keys[i]}" == "$test_name" ]]; then + printf '%s' "${test_pkg_vals[i]}" + return 0 + fi + done + return 1 +} + # Function to get tests that didn't run due to panic get_missing_tests_after_panic() { local output_file="$1" @@ -115,15 +122,20 @@ echo "Failed tests: $failed_tests" failing_packages=$(grep "^FAIL" test.out | awk '{print $2}' | sort -u) echo "Failing packages: $failing_packages" -declare -A test_pkg_map +test_pkg_keys=() +test_pkg_vals=() + +# Build the map for pkg in $failing_packages; do for t in $(get_package_tests "$pkg"); do - if echo "$failed_tests" | grep -x "$t" >/dev/null; then - test_pkg_map["$t"]="$pkg" + if grep -x "$t" <<<"$failed_tests" >/dev/null; then + test_pkg_keys+=( "$t" ) + test_pkg_vals+=( "$pkg" ) fi done done + # Check for unexpected failures unexpected_failures="" for test in $failed_tests; do @@ -156,11 +168,10 @@ for ((attempt = 1; attempt <= MAX_RUNS; attempt++)); do # Retry each failed test for test in $tests_to_retry; do - pkg="${test_pkg_map[$test]:-}" - if [[ -z "$pkg" ]]; then - echo "ERROR: no package mapping for test $test" >&2 + pkg=$(get_pkg_for_test "$test") || { + echo "ERROR: no package mapping for $test" >&2 exit 1 - fi + } echo "Retrying test: $test in package: $pkg" run_specific_test "$test" "$retry_output" "$pkg" test_status=$?