Skip to content

Txs sent to base-sepolia fullnode cannot be minned #444

Open
@rekyyang

Description

@rekyyang

Hi team, I start a fullnode of base-sepolia, but the tx sent to my fullnode cannot be minned, and the tx will stay at pending. I guess it may because of the count of peers are too few to broadcast tx? And if actually because of peers, could you provide me some bootstrapNodes of staticNodes? And if not, are there any improvement could be done for flags or config? Thanks🙏

here is my stuck tx, and I gave a big gasPrice to it (more than 40GWei):

Image

here is my node's peers:

{
        "enr": "enr:-KO4QACZjvIrpZU1zbMfnBuwisjRpZSh3wk2moVO9p190PH5G82ljWfUg2Hk7UuxN7ewwN7nrT-1fToIpAoonqU05nGGAZZbJCNFg2V0aMfGhAYKTR2AgmlkgnY0gmlwhK3nK3KJc2VjcDI1NmsxoQMmx2cvdHSDcK7qcijgZpea3EJ7YlydrpL2A8uAj7tmSIRzbmFwwIN0Y3CCdn2DdWRwgnZ9",
        "enode": "enode://26c7672f74748370aeea7228e066979adc427b625c9dae92f603cb808fbb6648148aff9a318f03c616efe06348785aac1d5e81958f592e1947fa328504710249@173.231.43.114:30333",
        "id": "29ab7794f7b87e2fc016af3a98d4b56404fe7d462d77ba3f56fea17080b35589",
        "name": "Geth/v1.101503.4-rc.1-2b9abb39-20250411/linux-amd64/go1.22.12",
        "caps": [
          "eth/68",
          "snap/1"
        ],
        "network": {
          "localAddress": "10.179.207.33:54392",
          "remoteAddress": "173.231.43.114:30333",
          "inbound": false,
          "trusted": false,
          "static": false
        },
        "protocols": {
          "eth": {
            "version": 68
          },
          "snap": {
            "version": 1
          }
        }
      },
      {
        "enr": "enr:-KO4QAu7C0gKjnYukhYUvoPr0GYgdUOgywBPwKGx3oP_d3oFVZiwyh6lOLpIPi2l4TApryhgxnBn3lfQU7MCeO9QWtOGAZW0xr1ag2V0aMfGhAYKTR2AgmlkgnY0gmlwhK3nKYKJc2VjcDI1NmsxoQNLbDecRichA6UXl_H8o-E9S7W5Zs9VUpprUit3CpIOGYRzbmFwwIN0Y3CCdn2DdWRwgnZ9",
        "enode": "enode://4b6c379c46272103a51797f1fca3e13d4bb5b966cf55529a6b522b770a920e19d8f3cfee0ddd422087ca7a327732ebab621d425e4d78f97863838dc8d0ca2281@173.231.41.130:30333",
        "id": "2d421367fc146fc3ed1cd4222d94ee7c5cc4b6ee0368ea01d86ce402eccf88ef",
        "name": "Geth/v1.101503.4-rc.1-2b9abb39-20250411/linux-amd64/go1.22.12",
        "caps": [
          "eth/68",
          "snap/1"
        ],
        "network": {
          "localAddress": "10.179.207.33:43676",
          "remoteAddress": "173.231.41.130:30333",
          "inbound": false,
          "trusted": false,
          "static": false
        },
        "protocols": {
          "eth": {
            "version": 68
          },
          "snap": {
            "version": 1
          }
        }
      },
      {
        "enr": "enr:-J24QKP1C-7YTMC0W8xPkiHR5_qplJYtHKwEB05GxAY99hGuGDvRqbb-3i47sZDRRZ_q77Mx0aMuMPR9lSWZLV1IrVuGAZSoRfXwg2V0aMfGhAYKTR2AgmlkgnY0gmlwhI1i2W6Jc2VjcDI1NmsxoQJLnHufERA0gnjLm9daQ-bNOoT7CpNGw-XBV6WYJH588YN0Y3CCdl-DdWRwgnZf",
        "enode": "enode://4b9c7b9f1110348278cb9bd75a43e6cd3a84fb0a9346c3e5c157a598247e7cf1cb62220050a218f4a46112b59786ac154f1d3929a80e267436e7cd1cd79cabcc@141.98.217.110:30303",
        "id": "d67691e519a96cac4c32096d72bd81f076afbb3ccf8ce62f0a04836ce8ef0ec9",
        "name": "Geth/v1.101503.2-stable-37be9e05/linux-amd64/go1.24.2",
        "caps": [
          "eth/68"
        ],
        "network": {
          "localAddress": "10.179.207.33:60118",
          "remoteAddress": "141.98.217.110:30303",
          "inbound": false,
          "trusted": false,
          "static": false
        },
        "protocols": {
          "eth": {
            "version": 68
          }
        }
      }
    ]
  }

here is my fullnode configs & flags:

mkdir -p /mnt/efs/base-testnet/$MY_POD_NAMESPACE/$MY_POD_NAME
        mkdir -p /server
        rm /db/geth/nodekey
        ln -snf /mnt/efs/base-testnet/$MY_POD_NAMESPACE/$MY_POD_NAME /server/logs
        exec /usr/local/bin/geth \
        --datadir=/db \
        --config=/config/geth-config.toml \
        --verbosity=4 \
        --networkid=84532 \
        --http.corsdomain=* \
        --http \
        --http.api=eth,net,web3,debug,txpool,admin \
        --http.vhosts=* \
        --http.addr=0.0.0.0 \
        --http.port=8545 \
        --syncmode=full \
        --ws \
        --ws.addr=0.0.0.0 \
        --ws.port=8546 \
        --ws.origins=* \
        --gcmode=full \
        --state.scheme=path \
        --ws.api=eth,engine,debug,txpool \
        --maxpeers=10 \
        --metrics \
        --metrics.port=6060 \
        --metrics.addr=0.0.0.0 \
        --allow-insecure-unlock \
        --rpc.allow-unprotected-txs \
        --authrpc.addr=0.0.0.0 \
        --authrpc.port=8551 \
        --authrpc.vhosts=* \
        --authrpc.jwtsecret=/db/jwt-secret.txt \
        --txpool.globalslots=18000  \
        --txpool.globalqueue=5000 \
        --txpool.accountqueue=200 \
        --txpool.accountslots=200 \
        --txpool.pricelimit=1 \
        --txpool.nolocals=false \
        --cache=2000 \
        --cache.preimages \
        --history.transactions=0 \
        --rollup.disabletxpoolgossip=false \
        --rollup.halt=major \
        --rollup.disabletxpoolgossip=true
[Eth]
      NetworkId = 84532
      NoPrefetch = false
      NoPruning = false

      [Node]
      DataDir = "/server/base-gatherer/data"
      HTTPHost = "0.0.0.0"
      HTTPModules = ["eth", "net", "web3", "txpool", "debug", "admin"]
      HTTPPort = 8545
      HTTPVirtualHosts = ["*"]
      IPCPath = "geth.ipc"
      NoUSB = true

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions