Artyom Aminov

Results 28 comments of Artyom Aminov

Sepolia, v2.1.4-rc-1 and 2.1.3. Stack with initial sync. `` ./beacon-chain --sepolia --datadir='./prysm_data' --http-web3provider='http://0.0.0.0:8553' --jwt-secret=/mnt/md2/erigon-sepolia/erigon/chaindata/jwt.hex --rpc-host=0.0.0.0 --rpc-port=4000 --monitoring-host=0.0.0.0 --genesis-state=genesis.ssz --terminal-total-difficulty-override 17000000000000000 --accept-terms-of-use `` ``` time="2022-08-09 09:09:40" level=warning msg="Batch is not processed"...

@nisdas Right now I updated Erigon to 2022.08.01(last stable version). Problem not solved. Logs from Erigon ``` [INFO] [08-09|09:24:05.314] Starting Erigon on Sepolia testnet... [INFO] [08-09|09:24:05.315] Maximum peer count ETH=100...

@nisdas thank you! Created Erigon new issue: https://github.com/ledgerwatch/erigon/issues/4977

Solved. Look at: https://github.com/ledgerwatch/erigon/issues/4977

Erigon Polygon Mumbai Linux 2.28.0. Node synced from 0 with 2.27.0 version. Some receipts broken ``` curl -X POST --data '{ "method": "eth_getTransactionReceipt", "params": [ "0x28d74df9c1553a213e384fd7e6fcf81b6abcca0926436bc01c0311f3408d49f0" ], "id": 1, "jsonrpc":...

@smartcontracts from L1. DTL config: ``` DATA_TRANSPORT_LAYER__ADDRESS_MANAGER=0xdE1FCfB0851916CA5101820A69b13a4E276bd81F DATA_TRANSPORT_LAYER__SYNC_FROM_L1=true DATA_TRANSPORT_LAYER__SYNC_FROM_L2=false DATA_TRANSPORT_LAYER__L1_START_HEIGHT=13596466 DATA_TRANSPORT_LAYER__CONFIRMATIONS=12 DATA_TRANSPORT_LAYER__DANGEROUSLY_CATCH_ALL_ERRORS=true DATA_TRANSPORT_LAYER__DB_PATH=/db DATA_TRANSPORT_LAYER__DEFAULT_BACKEND=l1 DATA_TRANSPORT_LAYER__L1_GAS_PRICE_BACKEND=l1 DATA_TRANSPORT_LAYER__ENABLE_METRICS=true DATA_TRANSPORT_LAYER__ETH_NETWORK_NAME=mainnet DATA_TRANSPORT_LAYER__L2_CHAIN_ID=10 DATA_TRANSPORT_LAYER__LOGS_PER_POLLING_INTERVAL=2000 DATA_TRANSPORT_LAYER__NODE_ENV=production DATA_TRANSPORT_LAYER__POLLING_INTERVAL=500 DATA_TRANSPORT_LAYER__SENTRY_TRACE_RATE=0.05 DATA_TRANSPORT_LAYER__SERVER_HOSTNAME=0.0.0.0 DATA_TRANSPORT_LAYER__SERVER_PORT=7878 DATA_TRANSPORT_LAYER__TRANSACTIONS_PER_POLLING_INTERVAL=1000 DATA_TRANSPORT_LAYER__L1_RPC_ENDPOINT=http://0.0.0.0:11101 ```

@smartcontracts I tried with multiply values: export TARGET_GAS_LIMIT=20000000, 15000000, 16000000 and 500000000. Anyway I got error: ` ERROR[10-19|09:13:44.892] Could not verify error="Verifier cannot sync transaction batches to tip: Cannot sync...

I initialized chain again using USING_OVM=true: ``` INFO [10-23|17:39:25.493] Set L1 Gas Price gasprice=149453128946 INFO [10-23|17:39:25.493] Set batch overhead overhead=2750 INFO [10-23|17:39:25.493] Set scalar scalar=1.5 INFO [10-23|17:39:25.494] New block index=203...

@smartcontracts `export TARGET_GAS_LIMIT=16000000`

@smartcontracts I solved this issue using `TARGET_GAS_LIMIT=15000000` and `USING_OVM=true` @unek init.sh : ``` export USING_OVM=true export DATADIR=/mnt/md1/optimism-mainnet/l2geth/chaindata export BLOCK_SIGNER_PRIVATE_KEY=6587ae678cf4fc9a33000cdbf9f35226b71dcc6a4684a31203241f9bcfd55d27 ./geth init --datadir=$DATADIR genesis-berlin.json --nousb touch $DATADIR/password echo $BLOCK_SIGNER_PRIVATE_KEY > $DATADIR/block-signer-key...