Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The code in public_tx.js under the Deploy a smart contract operation in the Tutorials module of Private networks has significant errors, resulting in various errors when running node public_tx.js. #1546

Open
haerker opened this issue Mar 27, 2024 · 10 comments

Comments

@haerker
Copy link

haerker commented Mar 27, 2024

The code in public_tx.js under the Deploy a smart contract operation in the Tutorials module of Private networks has significant errors, resulting in various errors when running node public_tx.js.

            throw new web3_errors_1.InvalidResponseError(response, payload);
                  ^

InvalidResponseError: Returned error: Transaction processing could not be completed due to an exception
at Web3RequestManager._processJsonRpcResponse (/home/haerker/besu/Permissioned-Network/node_modules/web3-core/lib/commonjs/web3_request_manager.js:258:23)
at Web3RequestManager. (/home/haerker/besu/Permissioned-Network/node_modules/web3-core/lib/commonjs/web3_request_manager.js:156:29)
at Generator.next ()
at fulfilled (/home/haerker/besu/Permissioned-Network/node_modules/web3-core/lib/commonjs/web3_request_manager.js:21:58)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5) {
innerError: {
code: -32000,
message: 'Transaction processing could not be completed due to an exception'
},

@macfarla macfarla transferred this issue from hyperledger/besu Mar 27, 2024
@dviejokfs
Copy link

Same happens to me, still no luck

@zariqimn
Copy link

zariqimn commented Apr 2, 2024

it was successful the first time i ran it. when I tried running it again got this error

@barcellosrod
Copy link

It´s happening the same when I try to deploy a new contract:

public.js
`
const { Web3 } = require('web3');
const { tx } = require("@ethereumjs/tx");
const path = require('node:path');
const fs = require('fs-extra');

const web3Instance = new Web3('http://myserver:8541');
// use an existing account, or make an account

const privateKey =
"0x014fc0262f554c0b98e7723331ca808fb35883b0478c55d36a1bac566850ed79";
const account = web3Instance.eth.accounts.privateKeyToAccount(privateKey);
console.log('Account Data ==>', account);
console.log('Account Address ==>',account.address);

// read in the contracts
const contractJsonPath = path.resolve('PathToContract','MyFile.json');
const contractJson = JSON.parse(fs.readFileSync(contractJsonPath));
const contractAbi = contractJson.abi;
const contractBinPath = path.resolve('PathToContract','MyFile.bin');
const contractBin = fs.readFileSync(contractBinPath);
createAndSign();

// get txnCount for the nonce value
async function createAndSign() {
const txnCount = await web3Instance.eth.getTransactionCount(account.address);
console.log('TX Account ==>',txnCount);

const rawTxOptions = {
nonce: web3Instance.utils.numberToHex(txnCount),
from: account.address,
to: null, //public tx
value: "0x00",
data: "0x" + contractBin, // contract binary appended with initialization value
gasPrice: "0x0", //ETH per unit of gas
gasLimit: "0x24A22", //max number of gas units the tx is allowed to use
};

console.log("Signing the txn")
const signedTx = await web3Instance.eth.accounts.signTransaction(rawTxOptions, privateKey);
console.log('Txn Signed ==> ',signedTx.rawTransaction);

console.log("Sending transaction...");
const pTx = await web3Instance.eth.sendSignedTransaction(signedTx.rawTransaction);
console.log('Transaction sent ==>', pTx.contractAddress);
`
Log ==>

`
PS C:\smart_contracts> node .\public.js
Account Data ==> {
address: '0xf81469f0044b8A6A670217eFef758A4B1dff8fAC',
privateKey: '0x014fc0262f554c0b98e7723331ca808fb35883b0478c55d36a1bac566850ed79',
signTransaction: [Function: signTransaction],
sign: [Function: sign],
encrypt: [Function: encrypt]
}
Account Address ==> 0xf81469f0044b8A6A670217eFef758A4B1dff8fAC
TX Account ==> 0n
Signing the txn
Txn Signed ==> 0xf90bdf808083024a228080b90b8f608060405234801561001057600080fd5b50600180546001600160a01b03191633179055610b5d806100326000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c8063298daf5b14610067578063303904141461010d57806330b39a62146101ca5780633a51d246146102705780638e27d719146103265780639b80b050146103cc575b600080fd5b61010b6004803603602081101561007d57600080fd5b810190602081018135600160201b81111561009757600080fd5b8201836020820111156100a957600080fd5b803590602001918460018302840111600160201b831117156100ca57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506104f7945050505050565b005b6101b16004803603602081101561012357600080fd5b810190602081018135600160201b81111561013d57600080fd5b82018360208201111561014f57600080fd5b803590602001918460018302840111600160201b8311171561017057600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061065c945050505050565b6040805192835290151560208301528051918290030190f35b61010b600480360360408110156101e057600080fd5b810190602081018135600160201b8111156101fa57600080fd5b82018360208201111561020c57600080fd5b803590602001918460018302840111600160201b8311171561022d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250610683915050565b6103146004803603602081101561028657600080fd5b810190602081018135600160201b8111156102a057600080fd5b8201836020820111156102b257600080fd5b803590602001918460018302840111600160201b831117156102d357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610850945050505050565b60408051918252519081900360200190f35b61010b6004803603604081101561033c57600080fd5b810190602081018135600160201b81111561035657600080fd5b82018360208201111561036857600080fd5b803590602001918460018302840111600160201b8311171561038957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250610941915050565b61010b600480360360608110156103e257600080fd5b810190602081018135600160201b8111156103fc57600080fd5b82018360208201111561040e57600080fd5b803590602001918460018302840111600160201b8311171561042f57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561048157600080fd5b82018360208201111561049357600080fd5b803590602001918460018302840111600160201b831117156104b457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250610b0e915050565b6001546001600160a01b0316331461050e57600080fd5b6000816040518082805190602001908083835b602083106105405780518252601f199092019160209182019101610521565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092206001015460ff16159150610580905057600080fd5b600080826040518082805190602001908083835b602083106105b35780518252601f199092019160209182019101610594565b51815160209384036101000a600019018019909216911617905292019485525060405193849003810184209490945550508251600192600092859290918291908401908083835b602083106106195780518252601f1990920191602091820191016105fa565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220600101805460ff191693151593909317909255505050565b80516020818301810180516000825292820191909301209152805460019091015460ff1682565b6001546001600160a01b0316331461069a57600080fd5b6000826040518082805190602001908083835b602083106106cc5780518252601f1990920191602091820191016106ad565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092206001015460ff16915061070b905057600080fd5b6000826040518082805190602001908083835b6020831061073d5780518252601f19909201916020918201910161071e565b51815160209384036101000a600019018019909216911617905292019485525060405193849003810184205486519094869450600093508792909182918401908083835b602083106107a05780518252601f199092019160209182019101610781565b6001836020036101000a0380198251168184511680821785525050505050509050019150509081526020016040518091039020600001540311156107e357600080fd5b806000836040518082805190602001908083835b602083106108165780518252601f1990920191602091820191016107f7565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922080549390930390925550505050565b6001546000906001600160a01b0316331461086a57600080fd5b6000826040518082805190602001908083835b6020831061089c5780518252601f19909201916020918201910161087d565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092206001015460ff1691506108db905057600080fd5b6000826040518082805190602001908083835b6020831061090d5780518252601f1990920191602091820191016108ee565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922054949350505050565b6001546001600160a01b0316331461095857600080fd5b6000826040518082805190602001908083835b6020831061098a5780518252601f19909201916020918201910161096b565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092206001015460ff1691506109c9905057600080fd5b6000826040518082805190602001908083835b602083106109fb5780518252601f1990920191602091820191016109dc565b51815160209384036101000a600019018019909216911617905292019485525060405193849003810184205486519094869450600093508792909182918401908083835b60208310610a5e5780518252601f199092019160209182019101610a3f565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060000154011015610aa157600080fd5b806000836040518082805190602001908083835b60208310610ad45780518252601f199092019160209182019101610ab5565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922080549390930190925550505050565b610b188382610683565b610b228282610941565b50505056fea2646970667358221220e8bd4077a590bace5a50cc5a42672036cb7e37942ee6b698543f4a3f2f8086b964736f6c63430007030033820ff1a0e5760aa332e607b66596c99a9ce395f109228fbc255292b1a11bad26607a9787a00c89d355f8e6f1860735b61ebd7df41eff216cbcdbb11124863fd95e2c5e3054
Sending transaction...
C:\smart_contracts\node_modules\web3-core\lib\commonjs\web3_request_manager.js:258
throw new web3_errors_1.InvalidResponseError(response, payload);
^

InvalidResponseError: Returned error: Internal error
at Web3RequestManager._processJsonRpcResponse (C:\smart_contracts\node_modules\web3-core\lib\commonjs\web3_request_manager.js:258:23)
at Web3RequestManager. (C:\smart_contracts\node_modules\web3-core\lib\commonjs\web3_request_manager.js:156:29)
at Generator.next ()
at fulfilled (C:\smart_contracts\node_modules\web3-core\lib\commonjs\web3_request_manager.js:21:58)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5) {
innerError: { code: -32603, message: 'Internal error' },
code: 101,
data: undefined,
request: {
jsonrpc: '2.0',
id: '1f225eef-9716-4a15-89a5-165f1a620b33',
method: 'eth_call',
params: [
{
nonce: '0x0',
gasPrice: '0x0',
value: '0x0',
data: '0x608060405234801561001057600080fd5b50600180546001600160a01b03191633179055610b5d806100326000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c8063298daf5b14610067578063303904141461010d57806330b39a62146101ca5780633a51d246146102705780638e27d719146103265780639b80b050146103cc575b600080fd5b61010b6004803603602081101561007d57600080fd5b810190602081018135600160201b81111561009757600080fd5b8201836020820111156100a957600080fd5b803590602001918460018302840111600160201b831117156100ca57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506104f7945050505050565b005b6101b16004803603602081101561012357600080fd5b810190602081018135600160201b81111561013d57600080fd5b82018360208201111561014f57600080fd5b803590602001918460018302840111600160201b8311171561017057600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955061065c945050505050565b6040805192835290151560208301528051918290030190f35b61010b600480360360408110156101e057600080fd5b810190602081018135600160201b8111156101fa57600080fd5b82018360208201111561020c57600080fd5b803590602001918460018302840111600160201b8311171561022d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250610683915050565b6103146004803603602081101561028657600080fd5b810190602081018135600160201b8111156102a057600080fd5b8201836020820111156102b257600080fd5b803590602001918460018302840111600160201b831117156102d357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610850945050505050565b60408051918252519081900360200190f35b61010b6004803603604081101561033c57600080fd5b810190602081018135600160201b81111561035657600080fd5b82018360208201111561036857600080fd5b803590602001918460018302840111600160201b8311171561038957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250610941915050565b61010b600480360360608110156103e257600080fd5b810190602081018135600160201b8111156103fc57600080fd5b82018360208201111561040e57600080fd5b803590602001918460018302840111600160201b8311171561042f57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561048157600080fd5b82018360208201111561049357600080fd5b803590602001918460018302840111600160201b831117156104b457600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505091359250610b0e915050565b6001546001600160a01b0316331461050e57600080fd5b6000816040518082805190602001908083835b602083106105405780518252601f199092019160209182019101610521565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092206001015460ff16159150610580905057600080fd5b600080826040518082805190602001908083835b602083106105b35780518252601f199092019160209182019101610594565b51815160209384036101000a600019018019909216911617905292019485525060405193849003810184209490945550508251600192600092859290918291908401908083835b602083106106195780518252601f1990920191602091820191016105fa565b51815160209384036101000a60001901801990921691161790529201948552506040519384900301909220600101805460ff191693151593909317909255505050565b80516020818301810180516000825292820191909301209152805460019091015460ff1682565b6001546001600160a01b0316331461069a57600080fd5b6000826040518082805190602001908083835b602083106106cc5780518252601f1990920191602091820191016106ad565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092206001015460ff16915061070b905057600080fd5b6000826040518082805190602001908083835b6020831061073d5780518252601f19909201916020918201910161071e565b51815160209384036101000a600019018019909216911617905292019485525060405193849003810184205486519094869450600093508792909182918401908083835b602083106107a05780518252601f199092019160209182019101610781565b6001836020036101000a0380198251168184511680821785525050505050509050019150509081526020016040518091039020600001540311156107e357600080fd5b806000836040518082805190602001908083835b602083106108165780518252601f1990920191602091820191016107f7565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922080549390930390925550505050565b6001546000906001600160a01b0316331461086a57600080fd5b6000826040518082805190602001908083835b6020831061089c5780518252601f19909201916020918201910161087d565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092206001015460ff1691506108db905057600080fd5b6000826040518082805190602001908083835b6020831061090d5780518252601f1990920191602091820191016108ee565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922054949350505050565b6001546001600160a01b0316331461095857600080fd5b6000826040518082805190602001908083835b6020831061098a5780518252601f19909201916020918201910161096b565b51815160209384036101000a600019018019909216911617905292019485525060405193849003019092206001015460ff1691506109c9905057600080fd5b6000826040518082805190602001908083835b602083106109fb5780518252601f1990920191602091820191016109dc565b51815160209384036101000a600019018019909216911617905292019485525060405193849003810184205486519094869450600093508792909182918401908083835b60208310610a5e5780518252601f199092019160209182019101610a3f565b6001836020036101000a038019825116818451168082178552505050505050905001915050908152602001604051809103902060000154011015610aa157600080fd5b806000836040518082805190602001908083835b60208310610ad45780518252601f199092019160209182019101610ab5565b51815160209384036101000a6000190180199092169116179052920194855250604051938490030190922080549390930190925550505050565b610b188382610683565b610b228282610941565b50505056fea2646970667358221220e8bd4077a590bace5a50cc5a42672036cb7e37942ee6b698543f4a3f2f8086b964736f6c63430007030033',
from: '0xf81469f0044b8a6a670217efef758a4b1dff8fac',
gas: '0x24a22'
},
'latest'
]
}
}

Node.js v18.16.0
`

Does anyone have any ideas about this problem?

@Iamknownasfesal
Copy link

Was anyone able to use it?

@Giridharan-Govindaraj
Copy link

Hi, I am also getting the same issue while trying to deploy a contract on QBFT private network using Web3j with the generated smart contract wrapper. When I check the log with TRACE flag , it showed as "MessageFrame evaluation halted because of INVALID_OPERATION".

I am quite not sure why is this happening..

@joaniefromtheblock joaniefromtheblock removed their assignment Oct 29, 2024
@joaniefromtheblock
Copy link
Contributor

Several potential issues identified (from error message):

  • Gas price set to zero (gasPrice: "0x0")
  • Transaction might be failing due to insufficient funds
  • Network connection or configuration issues
  • Node might not be properly synced or running

Environment

Suggested fix

Update the transaction configuration to include proper gas handling:

const rawTxOptions = {
    nonce: web3Instance.utils.numberToHex(txnCount),
    from: account.address,
    to: null,
    value: "0x00",
    data: "0x" + contractBin,
    // Dynamic gas pricing
    gasPrice: await web3Instance.eth.getGasPrice(),
    // Estimate required gas
    gas: await web3Instance.eth.estimateGas({
        from: account.address,
        data: "0x" + contractBin
    })
};

Verification steps

Confirm network connection:

await web3Instance.eth.net.isListening();

Check account balance:

const balance = await web3Instance.eth.getBalance(account.address);
console.log("Balance:", web3Instance.utils.fromWei(balance, 'ether'), "ETH");

Verify current gas price:

const gasPrice = await web3Instance.eth.getGasPrice();
console.log("Gas Price:", gasPrice);

Advice for additional troubleshooting

  • Verify node is running and accessible at specified URL
  • Ensure account has sufficient funds for deployment
  • Check if using correct network/chain ID
  • Verify contract compilation was successful
  • If using private network, confirm mining is enabled

@TU0N0DAN
Copy link

TU0N0DAN commented Jan 8, 2025

Me too, i've successfully ran a containerized permissioned network using besu, with 4 nodes syncronized and the 3 classic test account from the documentation.

I can make transactions but,
I just can't deploy contracts. Any kind of it. Even the simplest one, empty. When i try to deploy the compiled .json contract using the publix_tx.js script logic (corrected a bit with AI) it's an INVALID_OPERATION. Before it was Intrinsic gas cost exceeds gas limit, but i solved that by setting an higher gas limit in my genesis.json .

@Giridharan-Govindaraj
Copy link

Giridharan-Govindaraj commented Jan 10, 2025

Several potential issues identified (from error message):

  • Gas price set to zero (gasPrice: "0x0")
  • Transaction might be failing due to insufficient funds
  • Network connection or configuration issues
  • Node might not be properly synced or running

Environment

Suggested fix

Update the transaction configuration to include proper gas handling:

const rawTxOptions = {
nonce: web3Instance.utils.numberToHex(txnCount),
from: account.address,
to: null,
value: "0x00",
data: "0x" + contractBin,
// Dynamic gas pricing
gasPrice: await web3Instance.eth.getGasPrice(),
// Estimate required gas
gas: await web3Instance.eth.estimateGas({
from: account.address,
data: "0x" + contractBin
})
};

Verification steps

Confirm network connection:

await web3Instance.eth.net.isListening();

Check account balance:

const balance = await web3Instance.eth.getBalance(account.address);
console.log("Balance:", web3Instance.utils.fromWei(balance, 'ether'), "ETH");

Verify current gas price:

const gasPrice = await web3Instance.eth.getGasPrice();
console.log("Gas Price:", gasPrice);

Advice for additional troubleshooting

  • Verify node is running and accessible at specified URL
  • Ensure account has sufficient funds for deployment
  • Check if using correct network/chain ID
  • Verify contract compilation was successful
  • If using private network, confirm mining is enabled

Hi @joaniefromtheblock. I have configured my besu private network as a free gas network. So I need to give gas price as zero. But I found the issue. This might be helpful for you as well @TU0N0DAN and @haerker.

I was using web3j to deploy contract and interact with it. When I try to deploy it I was getting the same issue as mention in the comment trail. So recently I found that my besu network is configured with londonBlock milestone. So I was trying to deploy a contract which is compiled with cancun evm version. Then I changed the evm version to london and compiled the contract. Used that for deployment. Now this worked. Please try this approach once.

@TU0N0DAN
Copy link

TU0N0DAN commented Jan 14, 2025

@Giridharan-Govindaraj

Thanks a lot for your response. I've been working on this issue for months.

So i just need to change the EVM to London and it's fixed? Cool. How can i do that?

How can I check the EVM version my contract was compiled for by the solidity compiler? (solc)

Is it written in the compiled contract .json? Thanks a lot again

How do i change the EVM version? Or how do i compile the contract for a given EVM version?

My genesis.json only contains BerlinBlock Milestone, so i suppose my EVM is using Berlin.

But i don't know for which EVM type my contract was compiled, or from where solc gets the version to compile to (if settable).

Enabling the miner and the mining options doesn't seem to change anything, indeed it seems completely useless since the nodes are validating and not mining.

(i'm using a IBFT 2.0 Permissioned Network PoA (PoS), not a PoW private chain for which mining is necessary, at least should be like this)

Here is my docker-compose.yaml

 services:
 
   Node-1:
 
     image: hyperledger/besu:latest
 
     volumes:
 
       - ./genesis.json:/genesis.json
 
       - ./Node-1/data/:/data
 
     ports:
 
       - 8545:8545
 
      - 8540:8540
 
       - 30303:30303
 
     command: >
     
       --logging=TRACE
      
       --data-path=/data
 
       --genesis-file=/genesis.json
 
       --permissions-nodes-config-file-enabled
 
       --permissions-accounts-config-file-enabled
 
       --rpc-http-api=ADMIN,ETH,NET,PERM,IBFT,DEBUG,WEB3,EEA,MINER
 
       --rpc-ws-api=ADMIN,ETH,NET,PERM,IBFT,DEBUG,WEB3,EEA

       --host-allowlist="*"
 
       --p2p-port=30303
 
       --rpc-ws-enabled
 
       --rpc-http-enabled
 
       --rpc-http-port=8545
 
       --rpc-http-cors-origins="*"
 
       --rpc-ws-port=8540
 
       --min-gas-price=0
        
       --miner-enabled
       
       --miner-coinbase="fe3b557e8fb62b89f4916b721be55ceb828dbd73"
 
     networks:
 
       besu-net:
 
         ipv4_address: 192.168.222.11
 
 
 
   Node-2:
 
     image: hyperledger/besu:latest
 
     volumes:
 
       - ./Node-2/data/:/data
 
       - ./genesis.json:/genesis.json
       
     ports:
 
       - 8546:8546
 
       - 30304:30304
 
     command: >
 
       --data-path=/data
 
       --genesis-file=/genesis.json
 
       --permissions-nodes-config-file-enabled
 
       --permissions-accounts-config-file-enabled
 
       --rpc-http-api=ADMIN,ETH,NET,PERM,IBFT
 
       --host-allowlist="*"
 
       --bootnodes=enode://54fb30e9321c3d9f6462ef792bbbaf0cae4120edf10f4deaea78687a801e6c5cb40953174fbb066f2e545c0b769177729c4b1c49236928d0719080550cb5948c@192.168.222.11:30303
 
       --p2p-port=30304
 
       --rpc-http-enabled
 
       --rpc-http-port=8546
 
       --rpc-http-cors-origins="*"
 
       --min-gas-price=0
 
     networks:
 
       besu-net:
 
         ipv4_address: 192.168.222.22
 
   Node-3:
 
     image: hyperledger/besu:latest
 
     volumes:
 
       - ./Node-3/data:/data
 
       - ./genesis.json:/genesis.json
 
     ports:
 
       - 8547:8547
 
       - 30305:30305
 
     command: >
 
       --data-path=/data
 
       --genesis-file=/genesis.json
 
       --permissions-nodes-config-file-enabled
 
       --permissions-accounts-config-file-enabled
 
       --rpc-http-api=ADMIN,ETH,NET,PERM,IBFT
 
       --host-allowlist="*"
 
       --p2p-port=30305
 
       --bootnodes=enode://54fb30e9321c3d9f6462ef792bbbaf0cae4120edf10f4deaea78687a801e6c5cb40953174fbb066f2e545c0b769177729c4b1c49236928d0719080550cb5948c@192.168.222.11:30303,enode://e81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8@192.168.222.22:30304
 
       --rpc-http-enabled
 
       --rpc-http-port=8547
 
       --rpc-http-cors-origins="*"
 
       --min-gas-price=0
 
     networks:
 
       besu-net:
 
         ipv4_address: 192.168.222.33
 
   Node-4:
 
     image: hyperledger/besu:latest
 
     volumes:
 
       - ./Node-4/data:/data
 
       - ./genesis.json:/genesis.json
 
     ports:
 
       - 8548:8548
 
       - 30306:30306
 
     command: >
 
       --data-path=/data
 
       --genesis-file=/genesis.json
 
       --permissions-nodes-config-file-enabled
 
       --permissions-accounts-config-file-enabled
 
       --rpc-http-api=ADMIN,ETH,NET,PERM,IBFT
 
       --host-allowlist="*"
 
       --p2p-port=30306
 
       --bootnodes=enode://54fb30e9321c3d9f6462ef792bbbaf0cae4120edf10f4deaea78687a801e6c5cb40953174fbb066f2e545c0b769177729c4b1c49236928d0719080550cb5948c@192.168.222.11:30303,enode://e81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8@192.168.222.22:30304,enode://16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc@192.168.222.33:30305
 
       --rpc-http-enabled
 
       --rpc-http-port=8548
 
       --rpc-http-cors-origins="*"
 
       --min-gas-price=0
 
     networks:
 
       besu-net:
 
         ipv4_address: 192.168.222.44
 
 networks:
 
   besu-net:
 
     driver: bridge
 
     ipam:
 
       config:
 
         - subnet: 192.168.222.0/24

This is my deploy.js script (i use node deploy.js for deploying)

const Web3 = require('web3').default;

const Tx = require('ethereumjs-tx').Transaction;

const fs = require('fs');

const path = require('path');

// Replace with your Ethereum private chain node URL

// Create a Web3 instance directly with the provider URL

const web3 = new Web3("http://127.0.0.1:8545"); // Pass the URL directly to the Web3 constructor

// Your private key (DO NOT expose in production code)

const privateKey = "0xc87509a1c067bbde78beb793e6fa76530b6382a4c0241e5e4a9ec0a0f44dc0d3"; // Account Private Key

//const privateKey = "0x1c686cc7a761aa38f6654a6fee8aadbad8248bc31f72facd5101469771cf597e";   // Validator Private Key

const account = web3.eth.accounts.privateKeyToAccount(privateKey);

// Read the contract's compiled JSON (which includes both ABI and bytecode)

const contractJsonPath = path.resolve(__dirname, "MadeNFT.json");

const contractJson = JSON.parse(fs.readFileSync(contractJsonPath));

// Extract the ABI and bytecode from the compiled JSON

const contractAbi = contractJson.abi;

const contractBin = contractJson.bytecode; // `bytecode.object` holds the compiled bytecode

// Initialize constructor value (e.g., 47 = 0x2F)

const contractConstructorInit = "000000000000000000000000000000000000000000000000000000000000002F";

// Wrap the logic in an async function

async function deployContract() {

  // Get the transaction count (nonce) for the account

  const txnCount = await web3.eth.getTransactionCount(account.address);

  // Prepare the raw transaction options

const rawTxOptions = {
    nonce: web3.utils.numberToHex(txnCount),
    from: account.address,
    to: null,
    value: "0x00",
    data: '0x' + contractBin.toString('hex')+contractConstructorInit, 
    // Dynamic gas pricing
    gasPrice: await web3.eth.getGasPrice(),
    // Estimate required gas
    gas: await web3.eth.estimateGas({
        from: account.address,
        data: '0x' + contractBin.toString('hex')+contractConstructorInit
    })
};


  // Create a new transaction object

  console.log("Creating transaction...");

  const tx = new Tx(rawTxOptions); // Specify the private chain (if needed)

  // Sign the transaction

  console.log("Signing transaction...");

  tx.sign(Buffer.from(privateKey.slice(2), 'hex')); // Remove 0x from private key

  // Serialize the transaction

  const serializedTx = tx.serialize();

  // Send the signed transaction

  console.log("Sending transaction...");


try {

 //console.log("Gas Price:", tx.gasPrice);
 
 //console.log("Gas Limit:", tx.gas);

  const pTx = await web3.eth.sendSignedTransaction('0x' + serializedTx.toString('hex'));

  console.log("Transaction Hash:", pTx.transactionHash);

  console.log("Contract Address:", pTx.contractAddress);

} catch (error) {

  console.error("Error sending transaction:", error);

  if (error.data) {

    console.log("Error Data:", error.data);

  }

  throw error;

 }
}

// Call the async function to deploy the contract

deployContract().catch(console.error);

This is the error i get

node deploysimplegpt.js
[2025-01-09T14:05:19.017Z] Starting contract deployment...
[2025-01-09T14:05:19.026Z] Retrieving nonce...
[2025-01-09T14:05:21.564Z] Nonce: 0
[2025-01-09T14:05:21.564Z] Calculating gas price...
[2025-01-09T14:05:21.887Z] Gas Price: 0
[2025-01-09T14:05:21.898Z] Estimating gas...
[2025-01-09T14:05:23.393Z] Error while deploying: InvalidResponseError: Returned error: Transaction processing could not be completed due to an exception: INVALID_OPERATION
    at Web3RequestManager._processJsonRpcResponse (/home/matematicibc/Scrivania/Permissioned-Network/node_modules/web3-core/lib/commonjs/web3_request_manager.js:281:23)
    at Web3RequestManager.<anonymous> (/home/matematicibc/Scrivania/Permissioned-Network/node_modules/web3-core/lib/commonjs/web3_request_manager.js:167:29)
    at Generator.next (<anonymous>)
    at fulfilled (/home/matematicibc/Scrivania/Permissioned-Network/node_modules/web3-core/lib/commonjs/web3_request_manager.js:21:58)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5) {
  cause: {
    code: -32000,
    message: 'Transaction processing could not be completed due to an exception: INVALID_OPERATION'
  },
  code: 101,
  data: undefined,
  statusCode: undefined,
  request: {
    jsonrpc: '2.0',
    id: '460c90b7-e95c-473f-99e8-a0122f9fb2e2',
    method: 'eth_estimateGas',
    params: [ [Object], 'latest' ]
  }
}
[2025-01-09T14:05:23.438Z] Stack Trace: InvalidResponseError: Returned error: Transaction processing could not be completed due to an exception: INVALID_OPERATION
    at Web3RequestManager._processJsonRpcResponse (/home/matematicibc/Scrivania/Permissioned-Network/node_modules/web3-core/lib/commonjs/web3_request_manager.js:281:23)
    at Web3RequestManager.<anonymous> (/home/matematicibc/Scrivania/Permissioned-Network/node_modules/web3-core/lib/commonjs/web3_request_manager.js:167:29)
    at Generator.next (<anonymous>)
    at fulfilled (/home/matematicibc/Scrivania/Permissioned-Network/node_modules/web3-core/lib/commonjs/web3_request_manager.js:21:58)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)

Those are the besu docker image logs (at maximum level TRACE) of the error.

Node-1-1  | 2025-01-09 14:05:19.439+00:00 | vert.x-eventloop-thread-1 | DEBUG | JsonRpcHttpService | Opened connection from 192.168.222.1:45724. Total of active connections: 1/80
Node-1-1  | 2025-01-09 14:05:19.538+00:00 | vert.x-eventloop-thread-1 | TRACE | RouterImpl | Router: 1174593798 accepting request POST http://127.0.0.1:8545/
Node-1-1  | 2025-01-09 14:05:19.567+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Route matches: RouteState{metadata=null, path='null', name=null, order=1, enabled=true, methods=null, consumes=null, emptyBodyPermittedWithConsumes=false, produces=null, contextHandlers=[org.hyperledger.besu.ethereum.api.jsonrpc.JsonRpcHttpService$$Lambda/0x00007f6818578a50@367c916b], failureHandlers=null, added=true, pattern=null, groups=null, useNormalizedPath=true, namedGroupsInRegex=null, virtualHostPattern=null, pathEndsWithSlash=false, exclusive=false, exactPath=true}
Node-1-1  | 2025-01-09 14:05:19.574+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Calling the  handler
Node-1-1  | 2025-01-09 14:05:19.698+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Route matches: RouteState{metadata=null, path='null', name=null, order=2, enabled=true, methods=null, consumes=null, emptyBodyPermittedWithConsumes=false, produces=null, contextHandlers=[org.hyperledger.besu.ethereum.api.jsonrpc.JsonRpcHttpService$$Lambda/0x00007f681857a258@e1c180e], failureHandlers=null, added=true, pattern=null, groups=null, useNormalizedPath=true, namedGroupsInRegex=null, virtualHostPattern=null, pathEndsWithSlash=false, exclusive=false, exactPath=true}
Node-1-1  | 2025-01-09 14:05:19.702+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Calling the  handler
Node-1-1  | 2025-01-09 14:05:19.703+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Route matches: RouteState{metadata=null, path='null', name=null, order=3, enabled=true, methods=null, consumes=null, emptyBodyPermittedWithConsumes=false, produces=null, contextHandlers=[io.vertx.ext.web.handler.impl.CorsHandlerImpl@1fb62deb], failureHandlers=null, added=true, pattern=null, groups=null, useNormalizedPath=true, namedGroupsInRegex=null, virtualHostPattern=null, pathEndsWithSlash=false, exclusive=false, exactPath=true}
Node-1-1  | 2025-01-09 14:05:19.704+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Calling the  handler
Node-1-1  | 2025-01-09 14:05:19.705+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Route matches: RouteState{metadata=null, path='null', name=null, order=4, enabled=true, methods=null, consumes=null, emptyBodyPermittedWithConsumes=false, produces=null, contextHandlers=[io.vertx.ext.web.handler.impl.BodyHandlerImpl@54c11b0a], failureHandlers=null, added=true, pattern=null, groups=null, useNormalizedPath=true, namedGroupsInRegex=null, virtualHostPattern=null, pathEndsWithSlash=false, exclusive=false, exactPath=true}
Node-1-1  | 2025-01-09 14:05:19.709+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Calling the  handler
Node-1-1  | 2025-01-09 14:05:19.948+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Route matches: RouteState{metadata=null, path='/', name=null, order=8, enabled=true, methods=[POST], consumes=null, emptyBodyPermittedWithConsumes=false, produces=[io.vertx.ext.web.impl.ParsableMIMEValue@fd630a66], contextHandlers=[org.hyperledger.besu.ethereum.api.handlers.JsonRpcParserHandler$$Lambda/0x00007f681857da38@6a37596b, org.hyperledger.besu.ethereum.api.handlers.TimeoutHandler$$Lambda/0x00007f681857e090@51408723, io.vertx.ext.web.impl.BlockingHandlerDecorator@73e3c774], failureHandlers=null, added=true, pattern=null, groups=null, useNormalizedPath=true, namedGroupsInRegex=null, virtualHostPattern=null, pathEndsWithSlash=true, exclusive=false, exactPath=true}
Node-1-1  | 2025-01-09 14:05:19.958+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Calling the  handler
Node-1-1  | 2025-01-09 14:05:20.018+00:00 | nioEventLoopGroup-3-3 | TRACE | ApiHandler | Received Message{ code=0, size=758} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.025+00:00 | nioEventLoopGroup-3-3 | TRACE | BftProtocolManager | Process message IBF/1, 0, from = 0x76a07e17c2b280adf54d10dc372699823008a82b
Node-1-1  | 2025-01-09 14:05:20.026+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Received BFT Proposal message
Node-1-1  | 2025-01-09 14:05:20.025+00:00 | nioEventLoopGroup-3-6 | TRACE | ApiHandler | Received Message{ code=0, size=758} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.037+00:00 | nioEventLoopGroup-3-6 | TRACE | BftProtocolManager | Process message IBF/1, 0, from = 0x775cae574832939aec3ea27b84480368640745e5
Node-1-1  | 2025-01-09 14:05:20.028+00:00 | nioEventLoopGroup-3-2 | TRACE | ApiHandler | Received Message{ code=0, size=758} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.037+00:00 | nioEventLoopGroup-3-2 | TRACE | BftProtocolManager | Process message IBF/1, 0, from = 0x40daf7cde6551631c1465e4fe459e8b41cfdb361
Node-1-1  | 2025-01-09 14:05:20.044+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | ValidatorPeers | Sending message to peers messageCode=0 recipients=[0x7b27969fedad1607e2110f340860a872294caac4, 0x40daf7cde6551631c1465e4fe459e8b41cfdb361, 0x775cae574832939aec3ea27b84480368640745e5]
Node-1-1  | 2025-01-09 14:05:20.050+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | AbstractPeerConnection | Writing Message{ code=0, size=758} to PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.057+00:00 | nioEventLoopGroup-3-6 | TRACE | ApiHandler | Received Message{ code=1, size=117} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.059+00:00 | nioEventLoopGroup-3-6 | TRACE | BftProtocolManager | Process message IBF/1, 1, from = 0x775cae574832939aec3ea27b84480368640745e5
Node-1-1  | 2025-01-09 14:05:20.060+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | AbstractPeerConnection | Writing Message{ code=0, size=758} to PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.064+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | IbftBlockHeightManager | Received a Proposal Payload.
Node-1-1  | 2025-01-09 14:05:20.070+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=94, Round=0}
Node-1-1  | 2025-01-09 14:05:20.072+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | DiffBasedWorldState | Persist world state for block Optional[BlockHeader{number=94, hash=0x64fbca25f52f233f378670aa19287b5bacda8c7c59c4edc1fccf5e3c718d3910, parentHash=0xb4e29f3ada03c3a979850c40b9378dbc4c57af1e1d93ee9602527043c330e0d7, ommersHash=0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347, coinbase=0x76a07e17c2b280adf54d10dc372699823008a82b, stateRoot=0xe77f4ceb8fa9809cca22f8a71c0b4489a2bd346cd40d69558add34ea3b647e06, transactionsRoot=0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421, receiptsRoot=0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421, logsBloom=0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000, difficulty=0x0000000000000000000000000000000000000000000000000000000000000001, gasLimit=5000000, gasUsed=0, timestamp=1736431520, extraData=0xf87ea00000000000000000000000000000000000000000000000000000000000000000f8549440daf7cde6551631c1465e4fe459e8b41cfdb3619476a07e17c2b280adf54d10dc372699823008a82b94775cae574832939aec3ea27b84480368640745e5947b27969fedad1607e2110f340860a872294caac4808400000000c0, baseFee=null, mixHashOrPrevRandao=0x63746963616c2062797a616e74696e65206661756c7420746f6c6572616e6365, nonce=0, }]
Node-1-1  | 2025-01-09 14:05:20.086+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | TrieLogManager | Adding layered world state for 94 (0x64fbca25f52f233f378670aa19287b5bacda8c7c59c4edc1fccf5e3c718d3910)
Node-1-1  | 2025-01-09 14:05:20.096+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | TrieLogManager | Persisting trie log for block hash 94 (0x64fbca25f52f233f378670aa19287b5bacda8c7c59c4edc1fccf5e3c718d3910) and world state root 0xe77f4ceb8fa9809cca22f8a71c0b4489a2bd346cd40d69558add34ea3b647e06
Node-1-1  | 2025-01-09 14:05:20.104+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | DiffBasedCachedWorldStorageManager | adding layered world state for block 94 (0x64fbca25f52f233f378670aa19287b5bacda8c7c59c4edc1fccf5e3c718d3910), state root hash 0xe77f4ceb8fa9809cca22f8a71c0b4489a2bd346cd40d69558add34ea3b647e06
Node-1-1  | 2025-01-09 14:05:20.105+00:00 | nioEventLoopGroup-3-2 | TRACE | ApiHandler | Received Message{ code=1, size=117} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.108+00:00 | nioEventLoopGroup-3-2 | TRACE | BftProtocolManager | Process message IBF/1, 1, from = 0x40daf7cde6551631c1465e4fe459e8b41cfdb361
Node-1-1  | 2025-01-09 14:05:20.135+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | RoundState | Round state updated prepared=false committed=false preparedQuorum=0/2 committedQuorum=0/3
Node-1-1  | 2025-01-09 14:05:20.147+00:00 | nioEventLoopGroup-3-2 | TRACE | ApiHandler | Received Message{ code=1, size=117} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.154+00:00 | nioEventLoopGroup-3-2 | TRACE | BftProtocolManager | Process message IBF/1, 1, from = 0x40daf7cde6551631c1465e4fe459e8b41cfdb361
Node-1-1  | 2025-01-09 14:05:20.166+00:00 | nioEventLoopGroup-3-6 | TRACE | ApiHandler | Received Message{ code=1, size=117} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.166+00:00 | nioEventLoopGroup-3-6 | TRACE | BftProtocolManager | Process message IBF/1, 1, from = 0x775cae574832939aec3ea27b84480368640745e5
Node-1-1  | 2025-01-09 14:05:20.166+00:00 | nioEventLoopGroup-3-3 | TRACE | ApiHandler | Received Message{ code=1, size=117} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.169+00:00 | nioEventLoopGroup-3-3 | TRACE | BftProtocolManager | Process message IBF/1, 1, from = 0x76a07e17c2b280adf54d10dc372699823008a82b
Node-1-1  | 2025-01-09 14:05:20.172+00:00 | nioEventLoopGroup-3-6 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.184+00:00 | nioEventLoopGroup-3-6 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x775cae574832939aec3ea27b84480368640745e5
Node-1-1  | 2025-01-09 14:05:20.167+00:00 | nioEventLoopGroup-3-2 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.187+00:00 | nioEventLoopGroup-3-2 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x40daf7cde6551631c1465e4fe459e8b41cfdb361
Node-1-1  | 2025-01-09 14:05:20.192+00:00 | nioEventLoopGroup-3-2 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.193+00:00 | nioEventLoopGroup-3-2 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x40daf7cde6551631c1465e4fe459e8b41cfdb361
Node-1-1  | 2025-01-09 14:05:20.211+00:00 | nioEventLoopGroup-3-3 | TRACE | ApiHandler | Received Message{ code=1, size=117} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.214+00:00 | nioEventLoopGroup-3-3 | TRACE | BftProtocolManager | Process message IBF/1, 1, from = 0x76a07e17c2b280adf54d10dc372699823008a82b
Node-1-1  | 2025-01-09 14:05:20.223+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | RoundState | Round state added commit message commit=BftMessage[payload=SignedData[sender=0x7b27969fedad1607e2110f340860a872294caac4, signature=Signature{r=91624851288681980722652607371104079056785367447436911473483473706819961711354, s=10334961152916261960311344639793656617999644867146791909978056453753202242860, recId=0}, unsignedPayload=CommitPayload[roundIdentifier=ConsensusRoundIdentifier{Sequence=94, Round=0}, digest=0x64fbca25f52f233f378670aa19287b5bacda8c7c59c4edc1fccf5e3c718d3910, commitSeal=Signature{r=72340986771588544217308485091592402646332357370381534936174077551692850988660, s=33922928940317440968547067109695995971403893657911002642400459178112131236702, recId=1}]]]
Node-1-1  | 2025-01-09 14:05:20.226+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | RoundState | Round state updated prepared=false committed=false preparedQuorum=0/2 committedQuorum=1/3
Node-1-1  | 2025-01-09 14:05:20.269+00:00 | nioEventLoopGroup-3-2 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.269+00:00 | nioEventLoopGroup-3-2 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x40daf7cde6551631c1465e4fe459e8b41cfdb361
Node-1-1  | 2025-01-09 14:05:20.228+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=94, Round=0}
Node-1-1  | 2025-01-09 14:05:20.314+00:00 | nioEventLoopGroup-3-3 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.315+00:00 | nioEventLoopGroup-3-3 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x76a07e17c2b280adf54d10dc372699823008a82b
Node-1-1  | 2025-01-09 14:05:20.321+00:00 | nioEventLoopGroup-3-3 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.328+00:00 | nioEventLoopGroup-3-3 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x76a07e17c2b280adf54d10dc372699823008a82b
Node-1-1  | 2025-01-09 14:05:20.314+00:00 | nioEventLoopGroup-3-6 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.343+00:00 | nioEventLoopGroup-3-6 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x775cae574832939aec3ea27b84480368640745e5
Node-1-1  | 2025-01-09 14:05:20.344+00:00 | nioEventLoopGroup-3-6 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.345+00:00 | nioEventLoopGroup-3-6 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x775cae574832939aec3ea27b84480368640745e5
Node-1-1  | 2025-01-09 14:05:20.341+00:00 | nioEventLoopGroup-3-2 | TRACE | ApiHandler | Received Message{ code=7, size=845} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol eth/68
Node-1-1  | 2025-01-09 14:05:20.347+00:00 | nioEventLoopGroup-3-2 | TRACE | EthProtocolLogger | Process message eth/68, 7
Node-1-1  | 2025-01-09 14:05:20.348+00:00 | nioEventLoopGroup-3-2 | TRACE | EthPeer | Request message 7 has just been received for protocol eth, peer PeerId: 0xe81ffb7019b05891... PeerReputation score: 101, timeouts: {}, useless: 0, validated? true, disconnected? false, client: besu/v24.9.1/linux-x86_64/openjdk-java-21, [Connection with hashCode 533439046 inboundInitiated? false initAt 1736431455936], enode://e81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8@192.168.222.22:30304, isServingSnap false, has height 92, connected for 64412 ms 
Node-1-1  | 2025-01-09 14:05:20.357+00:00 | nioEventLoopGroup-3-2 | TRACE | BlockPropagationManager | New block from network 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995) from peer PeerId: 0xe81ffb7019b05891... PeerReputation score: 101, timeouts: {}, useless: 0, validated? true, disconnected? false, client: besu/v24.9.1/linux-x86_64/openjdk-java-21, [Connection with hashCode 533439046 inboundInitiated? false initAt 1736431455936], enode://e81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8@192.168.222.22:30304, isServingSnap false, has height 92, connected for 64421 ms. Current status BlockPropagationManager{ProcessingBlocksManager{importingBlocks=[], requestedBlocks=[], requestedNonAnnouncedBlocks=[]}, pendingBlocksManager=PendingBlocksManager{pendingBlocks [], pendingBlocksByParentHash={}}}
Node-2-1  | 2025-01-09 14:05:20.364+00:00 | BftProcessorExecutor-IBFT-0 | INFO  | IbftBesuControllerBuilder | Imported #94 / 0 tx / 0 pending / 0 (0.0%) gas / (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995)
Node-1-1  | 2025-01-09 14:05:20.371+00:00 | nioEventLoopGroup-3-2 | TRACE | BlockPropagationManager | Import or save pending block 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995)
Node-1-1  | 2025-01-09 14:05:20.377+00:00 | EthScheduler-Workers-0 | DEBUG | PersistBlockTask | Running import task for block 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995)
Node-1-1  | 2025-01-09 14:05:20.395+00:00 | EthScheduler-Workers-0 | DEBUG | DiffBasedWorldStateProvider | Attempting Rollback of 0x64fbca25f52f233f378670aa19287b5bacda8c7c59c4edc1fccf5e3c718d3910
Node-1-1  | 2025-01-09 14:05:20.398+00:00 | EthScheduler-Workers-0 | DEBUG | DiffBasedWorldState | Persist world state for block Optional[BlockHeader{number=93, hash=0xb4e29f3ada03c3a979850c40b9378dbc4c57af1e1d93ee9602527043c330e0d7, parentHash=0x5fe6d820fa1075bbc76c334e6457fd0caa507a44ef86af247aec46b4257bca33, ommersHash=0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347, coinbase=0x40daf7cde6551631c1465e4fe459e8b41cfdb361, stateRoot=0xe77f4ceb8fa9809cca22f8a71c0b4489a2bd346cd40d69558add34ea3b647e06, transactionsRoot=0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421, receiptsRoot=0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421, logsBloom=0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000, difficulty=0x0000000000000000000000000000000000000000000000000000000000000001, gasLimit=5000000, gasUsed=0, timestamp=1736431518, extraData=0xf90148a00000000000000000000000000000000000000000000000000000000000000000f8549440daf7cde6551631c1465e4fe459e8b41cfdb3619476a07e17c2b280adf54d10dc372699823008a82b94775cae574832939aec3ea27b84480368640745e5947b27969fedad1607e2110f340860a872294caac4808400000000f8c9b84114c250345fcb538f7a22fb4426045f373bdebb6a4c67b0f993be89738307442e45cfba5c534a31d79cbe547fbaa0c949e7f346c34411a443d545c6014c6d2d9700b841a0d541b4d4fba74c022e4921abce18af8faa2882f2d8c21bb5b15a6a9a0b860935cf932974fba597f0dda415b70c5c2a287a5706675e9b80009d5663c420e52601b841833b1de406648a7cf54cca3c38a54862c82f1caf6f580e385b94864f31997bff381d213b094bc04ed3f2a1396cdb887e1577660f99358acfc5da996fc844948c00, baseFee=null, mixHashOrPrevRandao=0x63746963616c2062797a616e74696e65206661756c7420746f6c6572616e6365, nonce=0, }]
Node-1-1  | 2025-01-09 14:05:20.402+00:00 | EthScheduler-Workers-0 | DEBUG | DiffBasedWorldStateProvider | Archive rolling finished, BonsaiWorldStateKeyValueStorage now at 0xb4e29f3ada03c3a979850c40b9378dbc4c57af1e1d93ee9602527043c330e0d7
Node-1-1  | 2025-01-09 14:05:20.418+00:00 | EthScheduler-Workers-0 | DEBUG | DiffBasedWorldState | Persist world state for block Optional[BlockHeader{number=94, hash=0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995, parentHash=0xb4e29f3ada03c3a979850c40b9378dbc4c57af1e1d93ee9602527043c330e0d7, ommersHash=0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347, coinbase=0x76a07e17c2b280adf54d10dc372699823008a82b, stateRoot=0xe77f4ceb8fa9809cca22f8a71c0b4489a2bd346cd40d69558add34ea3b647e06, transactionsRoot=0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421, receiptsRoot=0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421, logsBloom=0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000, difficulty=0x0000000000000000000000000000000000000000000000000000000000000001, gasLimit=5000000, gasUsed=0, timestamp=1736431520, extraData=0xf90148a00000000000000000000000000000000000000000000000000000000000000000f8549440daf7cde6551631c1465e4fe459e8b41cfdb3619476a07e17c2b280adf54d10dc372699823008a82b94775cae574832939aec3ea27b84480368640745e5947b27969fedad1607e2110f340860a872294caac4808400000000f8c9b84193a4e37779524394fbaefb492217944c09885d8e2b5eb5a68dbdc09635c4d9250d84be43013c8b787f1605adef02c7432987146cb8702554d498ff0bf59e4c9301b8415532d047602e90be4db535e16cb2583fb496562d33566b32d99284fa3b6d2d8a03dd76e859056a5466e3e7d75273b527c39a58b07267ddc14abaee72f6841da501b841855f3960ad7326ee43af10af388ca85cbd4464c4c72eae94b2755fe1a84bc66b08e194020833eb227243c61dfb91f73f829cfad776dff4a0f2af8c6d6233050d01, baseFee=null, mixHashOrPrevRandao=0x63746963616c2062797a616e74696e65206661756c7420746f6c6572616e6365, nonce=0, }]
Node-1-1  | 2025-01-09 14:05:20.431+00:00 | EthScheduler-Workers-0 | DEBUG | TrieLogManager | Adding layered world state for 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995)
Node-3-1  | 2025-01-09 14:05:20.419+00:00 | EthScheduler-Workers-0 | INFO  | PersistBlockTask | Imported #94 / 0 tx / 0 om / 0 (0.0%) gas / (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995) in 0.067s. Peers: 3
Node-4-1  | 2025-01-09 14:05:20.462+00:00 | EthScheduler-Workers-0 | INFO  | PersistBlockTask | Block 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995) is already imported
Node-1-1  | 2025-01-09 14:05:20.497+00:00 | EthScheduler-Workers-0 | DEBUG | TrieLogManager | Persisting trie log for block hash 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995) and world state root 0xe77f4ceb8fa9809cca22f8a71c0b4489a2bd346cd40d69558add34ea3b647e06
Node-4-1  | 2025-01-09 14:05:20.521+00:00 | BftProcessorExecutor-IBFT-0 | INFO  | IbftBesuControllerBuilder | Imported #94 / 0 tx / 0 pending / 0 (0.0%) gas / (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995)
Node-1-1  | 2025-01-09 14:05:20.523+00:00 | EthScheduler-Workers-0 | DEBUG | DiffBasedCachedWorldStorageManager | adding layered world state for block 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995), state root hash 0xe77f4ceb8fa9809cca22f8a71c0b4489a2bd346cd40d69558add34ea3b647e06
Node-1-1  | 2025-01-09 14:05:20.430+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | RoundState | Round state added prepare message prepare=BftMessage[payload=SignedData[sender=0x7b27969fedad1607e2110f340860a872294caac4, signature=Signature{r=6340024814869133115343876718572837471909572076024561530852417348161076088606, s=31209338710929112589070273379916591198515546345563558464758505765859592905152, recId=1}, unsignedPayload=PreparePayload[roundIdentifier=ConsensusRoundIdentifier{Sequence=94, Round=0}, digest=0x64fbca25f52f233f378670aa19287b5bacda8c7c59c4edc1fccf5e3c718d3910]]]
Node-1-1  | 2025-01-09 14:05:20.522+00:00 | nioEventLoopGroup-3-6 | TRACE | ApiHandler | Received Message{ code=7, size=845} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol eth/68
Node-1-1  | 2025-01-09 14:05:20.541+00:00 | nioEventLoopGroup-3-6 | TRACE | EthProtocolLogger | Process message eth/68, 7
Node-1-1  | 2025-01-09 14:05:20.497+00:00 | nioEventLoopGroup-3-3 | TRACE | ApiHandler | Received Message{ code=7, size=845} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol eth/68
Node-1-1  | 2025-01-09 14:05:20.542+00:00 | nioEventLoopGroup-3-3 | TRACE | EthProtocolLogger | Process message eth/68, 7
Node-1-1  | 2025-01-09 14:05:20.546+00:00 | nioEventLoopGroup-3-3 | TRACE | EthPeer | Request message 7 has just been received for protocol eth, peer PeerId: 0x16be3889f2eaea98... PeerReputation score: 101, timeouts: {}, useless: 0, validated? true, disconnected? false, client: besu/v24.9.1/linux-x86_64/openjdk-java-21, [Connection with hashCode 936176054 inboundInitiated? true initAt 1736431455933], enode://16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc@192.168.222.33:30305, isServingSnap false, has height 92, connected for 64612 ms 
Node-1-1  | 2025-01-09 14:05:20.556+00:00 | nioEventLoopGroup-3-3 | TRACE | BlockPropagationManager | New block from network 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995) from peer PeerId: 0x16be3889f2eaea98... PeerReputation score: 101, timeouts: {}, useless: 0, validated? true, disconnected? false, client: besu/v24.9.1/linux-x86_64/openjdk-java-21, [Connection with hashCode 936176054 inboundInitiated? true initAt 1736431455933], enode://16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc@192.168.222.33:30305, isServingSnap false, has height 92, connected for 64622 ms. Current status BlockPropagationManager{ProcessingBlocksManager{importingBlocks=[0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995], requestedBlocks=[], requestedNonAnnouncedBlocks=[]}, pendingBlocksManager=PendingBlocksManager{pendingBlocks [], pendingBlocksByParentHash={}}}
Node-1-1  | 2025-01-09 14:05:20.559+00:00 | nioEventLoopGroup-3-3 | TRACE | BlockPropagationManager | Import or save pending block 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995)
Node-1-1  | 2025-01-09 14:05:20.572+00:00 | nioEventLoopGroup-3-3 | TRACE | BlockPropagationManager | We're already importing this block 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995)
Node-1-1  | 2025-01-09 14:05:20.555+00:00 | nioEventLoopGroup-3-6 | TRACE | EthPeer | Request message 7 has just been received for protocol eth, peer PeerId: 0x17a0de76c5373290... PeerReputation score: 101, timeouts: {}, useless: 0, validated? true, disconnected? false, client: besu/v24.9.1/linux-x86_64/openjdk-java-21, [Connection with hashCode -952645718 inboundInitiated? true initAt 1736431455924], enode://17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df@192.168.222.44:30306, isServingSnap false, has height 92, connected for 64631 ms 
Node-1-1  | 2025-01-09 14:05:20.581+00:00 | nioEventLoopGroup-3-6 | TRACE | BlockPropagationManager | New block from network 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995) from peer PeerId: 0x17a0de76c5373290... PeerReputation score: 101, timeouts: {}, useless: 0, validated? true, disconnected? false, client: besu/v24.9.1/linux-x86_64/openjdk-java-21, [Connection with hashCode -952645718 inboundInitiated? true initAt 1736431455924], enode://17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df@192.168.222.44:30306, isServingSnap false, has height 92, connected for 64657 ms. Current status BlockPropagationManager{ProcessingBlocksManager{importingBlocks=[0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995], requestedBlocks=[], requestedNonAnnouncedBlocks=[]}, pendingBlocksManager=PendingBlocksManager{pendingBlocks [], pendingBlocksByParentHash={}}}
Node-1-1  | 2025-01-09 14:05:20.583+00:00 | nioEventLoopGroup-3-6 | TRACE | BlockPropagationManager | Import or save pending block 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995)
Node-1-1  | 2025-01-09 14:05:20.585+00:00 | nioEventLoopGroup-3-6 | TRACE | BlockPropagationManager | We're already importing this block 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995)
Node-1-1  | 2025-01-09 14:05:20.587+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | RoundState | Round state updated prepared=false committed=false preparedQuorum=1/2 committedQuorum=1/3
Node-1-1  | 2025-01-09 14:05:20.600+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | ValidatorPeers | Sending message to peers messageCode=1 recipients=[0x7b27969fedad1607e2110f340860a872294caac4, 0x40daf7cde6551631c1465e4fe459e8b41cfdb361, 0x76a07e17c2b280adf54d10dc372699823008a82b, 0x775cae574832939aec3ea27b84480368640745e5]
Node-1-1  | 2025-01-09 14:05:20.613+00:00 | EthScheduler-Services-0 | TRACE | LayeredPendingTransactions | Managing new added block 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995)
Node-1-1  | 2025-01-09 14:05:20.666+00:00 | EthScheduler-Services-0 | DEBUG | AbstractTransactionsLayer | Managing new added block 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995)
Node-1-1  | 2025-01-09 14:05:20.667+00:00 | EthScheduler-Services-0 | DEBUG | AbstractTransactionsLayer | Managing new added block 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995)
Node-1-1  | 2025-01-09 14:05:20.677+00:00 | EthScheduler-Services-0 | DEBUG | AbstractTransactionsLayer | Managing new added block 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995)
Node-1-1  | 2025-01-09 14:05:20.682+00:00 | EthScheduler-Services-0 | TRACE | LOG_FOR_REPLAY | B,94,0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995,,R,,0xf90341a0b4e29f3ada03c3a979850c40b9378dbc4c57af1e1d93ee9602527043c330e0d7a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d493479476a07e17c2b280adf54d10dc372699823008a82ba0e77f4ceb8fa9809cca22f8a71c0b4489a2bd346cd40d69558add34ea3b647e06a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b9010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015e834c4b408084677fd7a0b9014bf90148a00000000000000000000000000000000000000000000000000000000000000000f8549440daf7cde6551631c1465e4fe459e8b41cfdb3619476a07e17c2b280adf54d10dc372699823008a82b94775cae574832939aec3ea27b84480368640745e5947b27969fedad1607e2110f340860a872294caac4808400000000f8c9b84193a4e37779524394fbaefb492217944c09885d8e2b5eb5a68dbdc09635c4d9250d84be43013c8b787f1605adef02c7432987146cb8702554d498ff0bf59e4c9301b8415532d047602e90be4db535e16cb2583fb496562d33566b32d99284fa3b6d2d8a03dd76e859056a5466e3e7d75273b527c39a58b07267ddc14abaee72f6841da501b841855f3960ad7326ee43af10af388ca85cbd4464c4c72eae94b2755fe1a84bc66b08e194020833eb227243c61dfb91f73f829cfad776dff4a0f2af8c6d6233050d01a063746963616c2062797a616e74696e65206661756c7420746f6c6572616e6365880000000000000000
Node-1-1  | 2025-01-09 14:05:20.685+00:00 | EthScheduler-Services-0 | TRACE | TransactionPool | Block added event BlockAddedEvent{eventType=HEAD_ADVANCED, block=94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995), commonAncestorHash=0xb4e29f3ada03c3a979850c40b9378dbc4c57af1e1d93ee9602527043c330e0d7, addedTransactions count=0, removedTransactions count=0, transactionReceipts count =0, logsWithMetadata count=0} processed in 72ms
Node-1-1  | 2025-01-09 14:05:20.691+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | AbstractPeerConnection | Writing PrepareMessageData{code=1, size=117} to PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.725+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | AbstractPeerConnection | Writing PrepareMessageData{code=1, size=117} to PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.705+00:00 | EthScheduler-Workers-0 | TRACE | NodePermissioningController | Node permissioning: Checking enode://16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc@192.168.222.33:30305 -> enode://54fb30e9321c3d9f6462ef792bbbaf0cae4120edf10f4deaea78687a801e6c5cb40953174fbb066f2e545c0b769177729c4b1c49236928d0719080550cb5948c@127.0.0.1:30303
Node-1-1  | 2025-01-09 14:05:20.744+00:00 | EthScheduler-Workers-0 | TRACE | NodePermissioningController | Node permissioning: Permitted enode://16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc@192.168.222.33:30305 -> enode://54fb30e9321c3d9f6462ef792bbbaf0cae4120edf10f4deaea78687a801e6c5cb40953174fbb066f2e545c0b769177729c4b1c49236928d0719080550cb5948c@127.0.0.1:30303
Node-1-1  | 2025-01-09 14:05:20.745+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | AbstractPeerConnection | Writing PrepareMessageData{code=1, size=117} to PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:20.748+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:20.759+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:20.746+00:00 | EthScheduler-Workers-0 | TRACE | NodePermissioningController | Node permissioning: Checking enode://54fb30e9321c3d9f6462ef792bbbaf0cae4120edf10f4deaea78687a801e6c5cb40953174fbb066f2e545c0b769177729c4b1c49236928d0719080550cb5948c@127.0.0.1:30303 -> enode://e81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8@192.168.222.22:30304
Node-1-1  | 2025-01-09 14:05:20.760+00:00 | EthScheduler-Workers-0 | TRACE | NodePermissioningController | Node permissioning: Permitted enode://54fb30e9321c3d9f6462ef792bbbaf0cae4120edf10f4deaea78687a801e6c5cb40953174fbb066f2e545c0b769177729c4b1c49236928d0719080550cb5948c@127.0.0.1:30303 -> enode://e81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8@192.168.222.22:30304
Node-1-1  | 2025-01-09 14:05:20.762+00:00 | EthScheduler-Workers-0 | TRACE | NodePermissioningController | Node permissioning: Checking enode://17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df@192.168.222.44:30306 -> enode://54fb30e9321c3d9f6462ef792bbbaf0cae4120edf10f4deaea78687a801e6c5cb40953174fbb066f2e545c0b769177729c4b1c49236928d0719080550cb5948c@127.0.0.1:30303
Node-1-1  | 2025-01-09 14:05:20.795+00:00 | EthScheduler-Workers-0 | TRACE | NodePermissioningController | Node permissioning: Permitted enode://17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df@192.168.222.44:30306 -> enode://54fb30e9321c3d9f6462ef792bbbaf0cae4120edf10f4deaea78687a801e6c5cb40953174fbb066f2e545c0b769177729c4b1c49236928d0719080550cb5948c@127.0.0.1:30303
Node-1-1  | 2025-01-09 14:05:20.797+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Received BFT Prepare message
Node-1-1  | 2025-01-09 14:05:20.818+00:00 | EthScheduler-Workers-0 | TRACE | TransactionLogBloomCacher | Caching logs bloom for block 0x5e
Node-1-1  | 2025-01-09 14:05:20.844+00:00 | EthScheduler-Workers-0 | TRACE | BlockPropagationManager | Block added event type HEAD_ADVANCED for block 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995). Current status BlockPropagationManager{ProcessingBlocksManager{importingBlocks=[0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995], requestedBlocks=[], requestedNonAnnouncedBlocks=[]}, pendingBlocksManager=PendingBlocksManager{pendingBlocks [], pendingBlocksByParentHash={}}}
Node-1-1  | 2025-01-09 14:05:20.817+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | BaseBftController | Discarding a message which targets a height 94 not above current chain height 94.
Node-1-1  | 2025-01-09 14:05:20.847+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Received BFT Prepare message
Node-1-1  | 2025-01-09 14:05:20.849+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | BaseBftController | Discarding a message which targets a height 94 not above current chain height 94.
Node-1-1  | 2025-01-09 14:05:20.849+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:20.849+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:20.851+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:20.851+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Received BFT Commit message
Node-1-1  | 2025-01-09 14:05:20.852+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | BaseBftController | Discarding a message which targets a height 94 not above current chain height 94.
Node-1-1  | 2025-01-09 14:05:20.853+00:00 | EthScheduler-Workers-0 | TRACE | BlockPropagationManager | There are no pending blocks ready to import for block 94 (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995)
Node-1-1  | 2025-01-09 14:05:20.854+00:00 | EthScheduler-Workers-0 | TRACE | BftMiningCoordinator | New canonical head detected
Node-1-1  | 2025-01-09 14:05:20.861+00:00 | EthScheduler-Workers-0 | INFO  | PersistBlockTask | Imported #94 / 0 tx / 0 om / 0 (0.0%) gas / (0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995) in 0.483s. Peers: 3
Node-1-1  | 2025-01-09 14:05:20.854+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Received BFT Commit message
Node-1-1  | 2025-01-09 14:05:20.869+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | BaseBftController | Discarding a message which targets a height 94 not above current chain height 94.
Node-1-1  | 2025-01-09 14:05:20.869+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:20.872+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:20.873+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Received BFT Commit message
Node-1-1  | 2025-01-09 14:05:20.887+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | BaseBftController | Discarding a message which targets a height 94 not above current chain height 94.
Node-1-1  | 2025-01-09 14:05:20.887+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:20.888+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:20.888+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:20.889+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:20.892+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | BaseBftController | New chain head detected (block number=94), currently mining on top of 93.
Node-1-1  | 2025-01-09 14:05:20.893+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | IbftBlockHeightManagerFactory | Local node is a validator
Node-1-1  | 2025-01-09 14:05:20.919+00:00 | EthScheduler-Workers-0 | TRACE | AbstractPeerConnection | Writing NewBlockMessage{code=7, size=845} to PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol eth/68
Node-1-1  | 2025-01-09 14:05:20.949+00:00 | EthScheduler-Workers-0 | TRACE | AbstractPeerConnection | Writing NewBlockMessage{code=7, size=845} to PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol eth/68
Node-1-1  | 2025-01-09 14:05:20.961+00:00 | EthScheduler-Workers-0 | TRACE | AbstractPeerConnection | Writing NewBlockMessage{code=7, size=845} to PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol eth/68
Node-1-1  | 2025-01-09 14:05:21.151+00:00 | vert.x-worker-thread-17 | TRACE | AbstractJsonRpcExecutor | {"jsonrpc":"2.0","id":"3ed8f64e-ab77-4409-948c-26e5332db61f","method":"eth_getTransactionCount","params":["0x627306090abaB3A6e1400e9345bC60c78a8BEf57","latest"]}
Node-1-1  | 2025-01-09 14:05:21.303+00:00 | vert.x-worker-thread-17 | DEBUG | JsonRpcExecutor | JSON-RPC request -> eth_getTransactionCount ["0x627306090abaB3A6e1400e9345bC60c78a8BEf57","latest"]
Node-1-1  | 2025-01-09 14:05:21.439+00:00 | vert.x-worker-thread-17 | TRACE | AbstractJsonRpcExecutor | {"jsonrpc":"2.0","id":"3ed8f64e-ab77-4409-948c-26e5332db61f","result":"0x0"}
Node-1-1  | 2025-01-09 14:05:21.454+00:00 | vert.x-eventloop-thread-1 | DEBUG | JdkZlibEncoder | -Dio.netty.jdkzlib.encoder.maxInitialOutputBufferSize=65536
Node-1-1  | 2025-01-09 14:05:21.458+00:00 | vert.x-eventloop-thread-1 | DEBUG | JdkZlibEncoder | -Dio.netty.jdkzlib.encoder.maxInputBufferSize=65536
Node-1-1  | 2025-01-09 14:05:21.591+00:00 | vert.x-eventloop-thread-1 | DEBUG | JsonRpcHttpService | Connection closed from 192.168.222.1:45724. Total of active connections: 0/80
Node-1-1  | 2025-01-09 14:05:21.611+00:00 | vert.x-eventloop-thread-1 | DEBUG | JsonRpcHttpService | Opened connection from 192.168.222.1:45728. Total of active connections: 1/80
Node-1-1  | 2025-01-09 14:05:21.618+00:00 | vert.x-eventloop-thread-1 | TRACE | RouterImpl | Router: 1174593798 accepting request POST http://127.0.0.1:8545/
Node-1-1  | 2025-01-09 14:05:21.621+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Route matches: RouteState{metadata=null, path='null', name=null, order=1, enabled=true, methods=null, consumes=null, emptyBodyPermittedWithConsumes=false, produces=null, contextHandlers=[org.hyperledger.besu.ethereum.api.jsonrpc.JsonRpcHttpService$$Lambda/0x00007f6818578a50@367c916b], failureHandlers=null, added=true, pattern=null, groups=null, useNormalizedPath=true, namedGroupsInRegex=null, virtualHostPattern=null, pathEndsWithSlash=false, exclusive=false, exactPath=true}
Node-1-1  | 2025-01-09 14:05:21.649+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Calling the  handler
Node-1-1  | 2025-01-09 14:05:21.650+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Route matches: RouteState{metadata=null, path='null', name=null, order=2, enabled=true, methods=null, consumes=null, emptyBodyPermittedWithConsumes=false, produces=null, contextHandlers=[org.hyperledger.besu.ethereum.api.jsonrpc.JsonRpcHttpService$$Lambda/0x00007f681857a258@e1c180e], failureHandlers=null, added=true, pattern=null, groups=null, useNormalizedPath=true, namedGroupsInRegex=null, virtualHostPattern=null, pathEndsWithSlash=false, exclusive=false, exactPath=true}
Node-1-1  | 2025-01-09 14:05:21.651+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Calling the  handler
Node-1-1  | 2025-01-09 14:05:21.651+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Route matches: RouteState{metadata=null, path='null', name=null, order=3, enabled=true, methods=null, consumes=null, emptyBodyPermittedWithConsumes=false, produces=null, contextHandlers=[io.vertx.ext.web.handler.impl.CorsHandlerImpl@1fb62deb], failureHandlers=null, added=true, pattern=null, groups=null, useNormalizedPath=true, namedGroupsInRegex=null, virtualHostPattern=null, pathEndsWithSlash=false, exclusive=false, exactPath=true}
Node-1-1  | 2025-01-09 14:05:21.652+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Calling the  handler
Node-1-1  | 2025-01-09 14:05:21.652+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Route matches: RouteState{metadata=null, path='null', name=null, order=4, enabled=true, methods=null, consumes=null, emptyBodyPermittedWithConsumes=false, produces=null, contextHandlers=[io.vertx.ext.web.handler.impl.BodyHandlerImpl@54c11b0a], failureHandlers=null, added=true, pattern=null, groups=null, useNormalizedPath=true, namedGroupsInRegex=null, virtualHostPattern=null, pathEndsWithSlash=false, exclusive=false, exactPath=true}
Node-1-1  | 2025-01-09 14:05:21.681+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Calling the  handler
Node-1-1  | 2025-01-09 14:05:21.682+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Route matches: RouteState{metadata=null, path='/', name=null, order=8, enabled=true, methods=[POST], consumes=null, emptyBodyPermittedWithConsumes=false, produces=[io.vertx.ext.web.impl.ParsableMIMEValue@fd630a66], contextHandlers=[org.hyperledger.besu.ethereum.api.handlers.JsonRpcParserHandler$$Lambda/0x00007f681857da38@6a37596b, org.hyperledger.besu.ethereum.api.handlers.TimeoutHandler$$Lambda/0x00007f681857e090@51408723, io.vertx.ext.web.impl.BlockingHandlerDecorator@73e3c774], failureHandlers=null, added=true, pattern=null, groups=null, useNormalizedPath=true, namedGroupsInRegex=null, virtualHostPattern=null, pathEndsWithSlash=true, exclusive=false, exactPath=true}
Node-1-1  | 2025-01-09 14:05:21.694+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Calling the  handler
Node-1-1  | 2025-01-09 14:05:21.695+00:00 | vert.x-worker-thread-18 | TRACE | AbstractJsonRpcExecutor | {"jsonrpc":"2.0","id":"4e903435-1292-49fe-b622-31e245d41cc9","method":"eth_gasPrice","params":[]}
Node-1-1  | 2025-01-09 14:05:21.695+00:00 | vert.x-worker-thread-18 | DEBUG | JsonRpcExecutor | JSON-RPC request -> eth_gasPrice []
Node-1-1  | 2025-01-09 14:05:21.874+00:00 | vert.x-worker-thread-18 | TRACE | AbstractJsonRpcExecutor | {"jsonrpc":"2.0","id":"4e903435-1292-49fe-b622-31e245d41cc9","result":"0x0"}
Node-1-1  | 2025-01-09 14:05:21.895+00:00 | vert.x-eventloop-thread-1 | DEBUG | JsonRpcHttpService | Connection closed from 192.168.222.1:45728. Total of active connections: 0/80
Node-1-1  | 2025-01-09 14:05:21.926+00:00 | vert.x-eventloop-thread-1 | DEBUG | JsonRpcHttpService | Opened connection from 192.168.222.1:45730. Total of active connections: 1/80
Node-1-1  | 2025-01-09 14:05:21.927+00:00 | vert.x-eventloop-thread-1 | TRACE | RouterImpl | Router: 1174593798 accepting request POST http://127.0.0.1:8545/
Node-1-1  | 2025-01-09 14:05:21.927+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Route matches: RouteState{metadata=null, path='null', name=null, order=1, enabled=true, methods=null, consumes=null, emptyBodyPermittedWithConsumes=false, produces=null, contextHandlers=[org.hyperledger.besu.ethereum.api.jsonrpc.JsonRpcHttpService$$Lambda/0x00007f6818578a50@367c916b], failureHandlers=null, added=true, pattern=null, groups=null, useNormalizedPath=true, namedGroupsInRegex=null, virtualHostPattern=null, pathEndsWithSlash=false, exclusive=false, exactPath=true}
Node-1-1  | 2025-01-09 14:05:21.931+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Calling the  handler
Node-1-1  | 2025-01-09 14:05:21.935+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Route matches: RouteState{metadata=null, path='null', name=null, order=2, enabled=true, methods=null, consumes=null, emptyBodyPermittedWithConsumes=false, produces=null, contextHandlers=[org.hyperledger.besu.ethereum.api.jsonrpc.JsonRpcHttpService$$Lambda/0x00007f681857a258@e1c180e], failureHandlers=null, added=true, pattern=null, groups=null, useNormalizedPath=true, namedGroupsInRegex=null, virtualHostPattern=null, pathEndsWithSlash=false, exclusive=false, exactPath=true}
Node-1-1  | 2025-01-09 14:05:21.936+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Calling the  handler
Node-1-1  | 2025-01-09 14:05:21.936+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Route matches: RouteState{metadata=null, path='null', name=null, order=3, enabled=true, methods=null, consumes=null, emptyBodyPermittedWithConsumes=false, produces=null, contextHandlers=[io.vertx.ext.web.handler.impl.CorsHandlerImpl@1fb62deb], failureHandlers=null, added=true, pattern=null, groups=null, useNormalizedPath=true, namedGroupsInRegex=null, virtualHostPattern=null, pathEndsWithSlash=false, exclusive=false, exactPath=true}
Node-1-1  | 2025-01-09 14:05:21.937+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Calling the  handler
Node-1-1  | 2025-01-09 14:05:21.937+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Route matches: RouteState{metadata=null, path='null', name=null, order=4, enabled=true, methods=null, consumes=null, emptyBodyPermittedWithConsumes=false, produces=null, contextHandlers=[io.vertx.ext.web.handler.impl.BodyHandlerImpl@54c11b0a], failureHandlers=null, added=true, pattern=null, groups=null, useNormalizedPath=true, namedGroupsInRegex=null, virtualHostPattern=null, pathEndsWithSlash=false, exclusive=false, exactPath=true}
Node-1-1  | 2025-01-09 14:05:21.943+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Calling the  handler
Node-1-1  | 2025-01-09 14:05:21.946+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Route matches: RouteState{metadata=null, path='/', name=null, order=8, enabled=true, methods=[POST], consumes=null, emptyBodyPermittedWithConsumes=false, produces=[io.vertx.ext.web.impl.ParsableMIMEValue@fd630a66], contextHandlers=[org.hyperledger.besu.ethereum.api.handlers.JsonRpcParserHandler$$Lambda/0x00007f681857da38@6a37596b, org.hyperledger.besu.ethereum.api.handlers.TimeoutHandler$$Lambda/0x00007f681857e090@51408723, io.vertx.ext.web.impl.BlockingHandlerDecorator@73e3c774], failureHandlers=null, added=true, pattern=null, groups=null, useNormalizedPath=true, namedGroupsInRegex=null, virtualHostPattern=null, pathEndsWithSlash=true, exclusive=false, exactPath=true}
Node-1-1  | 2025-01-09 14:05:21.946+00:00 | vert.x-eventloop-thread-1 | TRACE | RoutingContext | Calling the  handler
Node-1-1  | 2025-01-09 14:05:21.947+00:00 | vert.x-worker-thread-19 | TRACE | AbstractJsonRpcExecutor | {"jsonrpc":"2.0","id":"460c90b7-e95c-473f-99e8-a0122f9fb2e2","method":"eth_estimateGas","params":[{"from":"0x627306090abaB3A6e1400e9345bC60c78a8BEf57","data":"0x6080604052348015600e575f5ffd5b50603e80601a5f395ff3fe60806040525f5ffdfea2646970667358221220d74d84ee0b7bd9a9048b09fb83f95a21f622e7cfdaae20962ce9fc176181de2364736f6c634300081c0033000000000000000000000000000000000000000000000000000000000000002f"},"latest"]}
Node-1-1  | 2025-01-09 14:05:21.951+00:00 | vert.x-worker-thread-19 | DEBUG | JsonRpcExecutor | JSON-RPC request -> eth_estimateGas [{"from":"0x627306090abaB3A6e1400e9345bC60c78a8BEf57","data":"0x6080604052348015600e575f5ffd5b50603e80601a5f395ff3fe60806040525f5ffdfea2646970667358221220d74d84ee0b7bd9a9048b09fb83f95a21f622e7cfdaae20962ce9fc176181de2364736f6c634300081c0033000000000000000000000000000000000000000000000000000000000000002f"},"latest"]
Node-1-1  | 2025-01-09 14:05:22.021+00:00 | nioEventLoopGroup-3-6 | TRACE | ApiHandler | Received Message{ code=0, size=758} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.028+00:00 | nioEventLoopGroup-3-6 | TRACE | BftProtocolManager | Process message IBF/1, 0, from = 0x775cae574832939aec3ea27b84480368640745e5
Node-1-1  | 2025-01-09 14:05:22.035+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Received BFT Proposal message
Node-1-1  | 2025-01-09 14:05:22.045+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | ValidatorPeers | Sending message to peers messageCode=0 recipients=[0x7b27969fedad1607e2110f340860a872294caac4, 0x40daf7cde6551631c1465e4fe459e8b41cfdb361, 0x76a07e17c2b280adf54d10dc372699823008a82b]
Node-1-1  | 2025-01-09 14:05:22.028+00:00 | nioEventLoopGroup-3-2 | TRACE | ApiHandler | Received Message{ code=0, size=758} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.028+00:00 | nioEventLoopGroup-3-3 | TRACE | ApiHandler | Received Message{ code=0, size=758} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.049+00:00 | nioEventLoopGroup-3-3 | TRACE | BftProtocolManager | Process message IBF/1, 0, from = 0x76a07e17c2b280adf54d10dc372699823008a82b
Node-1-1  | 2025-01-09 14:05:22.050+00:00 | nioEventLoopGroup-3-2 | TRACE | BftProtocolManager | Process message IBF/1, 0, from = 0x40daf7cde6551631c1465e4fe459e8b41cfdb361
Node-1-1  | 2025-01-09 14:05:22.052+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | AbstractPeerConnection | Writing Message{ code=0, size=758} to PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.062+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | AbstractPeerConnection | Writing Message{ code=0, size=758} to PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.082+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | IbftBlockHeightManager | Received a Proposal Payload.
Node-1-1  | 2025-01-09 14:05:22.083+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | IbftRound | Received a proposal message. round=ConsensusRoundIdentifier{Sequence=95, Round=0}
Node-1-1  | 2025-01-09 14:05:22.085+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | DiffBasedWorldState | Persist world state for block Optional[BlockHeader{number=95, hash=0x86b0084f37b2f07876cecf539d7807e809c904dbefc32381061643c22039abad, parentHash=0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995, ommersHash=0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347, coinbase=0x775cae574832939aec3ea27b84480368640745e5, stateRoot=0xe77f4ceb8fa9809cca22f8a71c0b4489a2bd346cd40d69558add34ea3b647e06, transactionsRoot=0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421, receiptsRoot=0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421, logsBloom=0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000, difficulty=0x0000000000000000000000000000000000000000000000000000000000000001, gasLimit=5000000, gasUsed=0, timestamp=1736431522, extraData=0xf87ea00000000000000000000000000000000000000000000000000000000000000000f8549440daf7cde6551631c1465e4fe459e8b41cfdb3619476a07e17c2b280adf54d10dc372699823008a82b94775cae574832939aec3ea27b84480368640745e5947b27969fedad1607e2110f340860a872294caac4808400000000c0, baseFee=null, mixHashOrPrevRandao=0x63746963616c2062797a616e74696e65206661756c7420746f6c6572616e6365, nonce=0, }]
Node-1-1  | 2025-01-09 14:05:22.133+00:00 | nioEventLoopGroup-3-6 | TRACE | ApiHandler | Received Message{ code=1, size=117} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.137+00:00 | nioEventLoopGroup-3-6 | TRACE | BftProtocolManager | Process message IBF/1, 1, from = 0x775cae574832939aec3ea27b84480368640745e5
Node-1-1  | 2025-01-09 14:05:22.093+00:00 | nioEventLoopGroup-3-3 | TRACE | ApiHandler | Received Message{ code=1, size=117} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.098+00:00 | nioEventLoopGroup-3-2 | TRACE | ApiHandler | Received Message{ code=1, size=117} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.148+00:00 | nioEventLoopGroup-3-2 | TRACE | BftProtocolManager | Process message IBF/1, 1, from = 0x40daf7cde6551631c1465e4fe459e8b41cfdb361
Node-1-1  | 2025-01-09 14:05:22.149+00:00 | nioEventLoopGroup-3-2 | TRACE | ApiHandler | Received Message{ code=1, size=117} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.156+00:00 | nioEventLoopGroup-3-2 | TRACE | BftProtocolManager | Process message IBF/1, 1, from = 0x40daf7cde6551631c1465e4fe459e8b41cfdb361
Node-1-1  | 2025-01-09 14:05:22.149+00:00 | nioEventLoopGroup-3-3 | TRACE | BftProtocolManager | Process message IBF/1, 1, from = 0x76a07e17c2b280adf54d10dc372699823008a82b
Node-1-1  | 2025-01-09 14:05:22.165+00:00 | nioEventLoopGroup-3-3 | TRACE | ApiHandler | Received Message{ code=1, size=117} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.165+00:00 | nioEventLoopGroup-3-3 | TRACE | BftProtocolManager | Process message IBF/1, 1, from = 0x76a07e17c2b280adf54d10dc372699823008a82b
Node-1-1  | 2025-01-09 14:05:22.165+00:00 | nioEventLoopGroup-3-3 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.166+00:00 | nioEventLoopGroup-3-3 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x76a07e17c2b280adf54d10dc372699823008a82b
Node-1-1  | 2025-01-09 14:05:22.156+00:00 | nioEventLoopGroup-3-6 | TRACE | ApiHandler | Received Message{ code=1, size=117} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.166+00:00 | nioEventLoopGroup-3-6 | TRACE | BftProtocolManager | Process message IBF/1, 1, from = 0x775cae574832939aec3ea27b84480368640745e5
Node-1-1  | 2025-01-09 14:05:22.167+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | TrieLogManager | Adding layered world state for 95 (0x86b0084f37b2f07876cecf539d7807e809c904dbefc32381061643c22039abad)
Node-1-1  | 2025-01-09 14:05:22.183+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | TrieLogManager | Persisting trie log for block hash 95 (0x86b0084f37b2f07876cecf539d7807e809c904dbefc32381061643c22039abad) and world state root 0xe77f4ceb8fa9809cca22f8a71c0b4489a2bd346cd40d69558add34ea3b647e06
Node-1-1  | 2025-01-09 14:05:22.196+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | DiffBasedCachedWorldStorageManager | adding layered world state for block 95 (0x86b0084f37b2f07876cecf539d7807e809c904dbefc32381061643c22039abad), state root hash 0xe77f4ceb8fa9809cca22f8a71c0b4489a2bd346cd40d69558add34ea3b647e06
Node-1-1  | 2025-01-09 14:05:22.235+00:00 | nioEventLoopGroup-3-2 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.238+00:00 | nioEventLoopGroup-3-2 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x40daf7cde6551631c1465e4fe459e8b41cfdb361
Node-1-1  | 2025-01-09 14:05:22.212+00:00 | nioEventLoopGroup-3-3 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.252+00:00 | nioEventLoopGroup-3-3 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x76a07e17c2b280adf54d10dc372699823008a82b
Node-1-1  | 2025-01-09 14:05:22.256+00:00 | nioEventLoopGroup-3-3 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.263+00:00 | nioEventLoopGroup-3-3 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x76a07e17c2b280adf54d10dc372699823008a82b
Node-1-1  | 2025-01-09 14:05:22.198+00:00 | nioEventLoopGroup-3-6 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.264+00:00 | nioEventLoopGroup-3-6 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x775cae574832939aec3ea27b84480368640745e5
Node-1-1  | 2025-01-09 14:05:22.276+00:00 | nioEventLoopGroup-3-2 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.278+00:00 | nioEventLoopGroup-3-2 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x40daf7cde6551631c1465e4fe459e8b41cfdb361
Node-1-1  | 2025-01-09 14:05:22.300+00:00 | nioEventLoopGroup-3-6 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.321+00:00 | nioEventLoopGroup-3-6 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x775cae574832939aec3ea27b84480368640745e5
Node-1-1  | 2025-01-09 14:05:22.321+00:00 | nioEventLoopGroup-3-2 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.330+00:00 | nioEventLoopGroup-3-2 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x40daf7cde6551631c1465e4fe459e8b41cfdb361
Node-1-1  | 2025-01-09 14:05:22.332+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | RoundState | Round state updated prepared=false committed=false preparedQuorum=0/2 committedQuorum=0/3
Node-1-1  | 2025-01-09 14:05:22.355+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | RoundState | Round state added commit message commit=BftMessage[payload=SignedData[sender=0x7b27969fedad1607e2110f340860a872294caac4, signature=Signature{r=47136196485707673416249586923689094799541069418346638950338386276285780736243, s=42748468082799321761518004848770332641994681821694786311088760342726177748301, recId=0}, unsignedPayload=CommitPayload[roundIdentifier=ConsensusRoundIdentifier{Sequence=95, Round=0}, digest=0x86b0084f37b2f07876cecf539d7807e809c904dbefc32381061643c22039abad, commitSeal=Signature{r=99136626597405212889276110020205276338204096205095564024079227446147655881439, s=29694772962320745631262177616078742073679969804618059137854718683146951510468, recId=0}]]]
Node-2-1  | 2025-01-09 14:05:22.401+00:00 | BftProcessorExecutor-IBFT-0 | INFO  | IbftBesuControllerBuilder | Imported #95 / 0 tx / 0 pending / 0 (0.0%) gas / (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17)
Node-3-1  | 2025-01-09 14:05:22.404+00:00 | BftProcessorExecutor-IBFT-0 | INFO  | IbftBesuControllerBuilder | Imported #95 / 0 tx / 0 pending / 0 (0.0%) gas / (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17)
Node-1-1  | 2025-01-09 14:05:22.416+00:00 | nioEventLoopGroup-3-2 | TRACE | ApiHandler | Received Message{ code=7, size=845} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol eth/68
Node-1-1  | 2025-01-09 14:05:22.453+00:00 | nioEventLoopGroup-3-2 | TRACE | EthProtocolLogger | Process message eth/68, 7
Node-1-1  | 2025-01-09 14:05:22.415+00:00 | nioEventLoopGroup-3-3 | TRACE | ApiHandler | Received Message{ code=7, size=845} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol eth/68
Node-1-1  | 2025-01-09 14:05:22.380+00:00 | nioEventLoopGroup-3-6 | TRACE | ApiHandler | Received Message{ code=2, size=185} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.455+00:00 | nioEventLoopGroup-3-6 | TRACE | BftProtocolManager | Process message IBF/1, 2, from = 0x775cae574832939aec3ea27b84480368640745e5
Node-1-1  | 2025-01-09 14:05:22.456+00:00 | nioEventLoopGroup-3-2 | TRACE | EthPeer | Request message 7 has just been received for protocol eth, peer PeerId: 0xe81ffb7019b05891... PeerReputation score: 101, timeouts: {}, useless: 0, validated? true, disconnected? false, client: besu/v24.9.1/linux-x86_64/openjdk-java-21, [Connection with hashCode 533439046 inboundInitiated? false initAt 1736431455936], enode://e81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8@192.168.222.22:30304, isServingSnap false, has height 93, connected for 66520 ms 
Node-1-1  | 2025-01-09 14:05:22.465+00:00 | nioEventLoopGroup-3-3 | TRACE | EthProtocolLogger | Process message eth/68, 7
Node-1-1  | 2025-01-09 14:05:22.470+00:00 | nioEventLoopGroup-3-3 | TRACE | EthPeer | Request message 7 has just been received for protocol eth, peer PeerId: 0x16be3889f2eaea98... PeerReputation score: 101, timeouts: {}, useless: 0, validated? true, disconnected? false, client: besu/v24.9.1/linux-x86_64/openjdk-java-21, [Connection with hashCode 936176054 inboundInitiated? true initAt 1736431455933], enode://16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc@192.168.222.33:30305, isServingSnap false, has height 93, connected for 66537 ms 
Node-1-1  | 2025-01-09 14:05:22.471+00:00 | nioEventLoopGroup-3-3 | TRACE | BlockPropagationManager | New block from network 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17) from peer PeerId: 0x16be3889f2eaea98... PeerReputation score: 101, timeouts: {}, useless: 0, validated? true, disconnected? false, client: besu/v24.9.1/linux-x86_64/openjdk-java-21, [Connection with hashCode 936176054 inboundInitiated? true initAt 1736431455933], enode://16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc@192.168.222.33:30305, isServingSnap false, has height 93, connected for 66538 ms. Current status BlockPropagationManager{ProcessingBlocksManager{importingBlocks=[], requestedBlocks=[], requestedNonAnnouncedBlocks=[]}, pendingBlocksManager=PendingBlocksManager{pendingBlocks [], pendingBlocksByParentHash={}}}
Node-1-1  | 2025-01-09 14:05:22.473+00:00 | nioEventLoopGroup-3-2 | TRACE | BlockPropagationManager | New block from network 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17) from peer PeerId: 0xe81ffb7019b05891... PeerReputation score: 101, timeouts: {}, useless: 0, validated? true, disconnected? false, client: besu/v24.9.1/linux-x86_64/openjdk-java-21, [Connection with hashCode 533439046 inboundInitiated? false initAt 1736431455936], enode://e81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8@192.168.222.22:30304, isServingSnap false, has height 93, connected for 66537 ms. Current status BlockPropagationManager{ProcessingBlocksManager{importingBlocks=[], requestedBlocks=[], requestedNonAnnouncedBlocks=[]}, pendingBlocksManager=PendingBlocksManager{pendingBlocks [], pendingBlocksByParentHash={}}}
Node-1-1  | 2025-01-09 14:05:22.475+00:00 | nioEventLoopGroup-3-2 | TRACE | BlockPropagationManager | Import or save pending block 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17)
Node-1-1  | 2025-01-09 14:05:22.479+00:00 | EthScheduler-Workers-0 | DEBUG | PersistBlockTask | Running import task for block 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17)
Node-4-1  | 2025-01-09 14:05:22.479+00:00 | EthScheduler-Workers-0 | INFO  | PersistBlockTask | Block 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17) is already imported
Node-1-1  | 2025-01-09 14:05:22.481+00:00 | EthScheduler-Workers-0 | DEBUG | DiffBasedWorldStateProvider | Attempting Rollback of 0x86b0084f37b2f07876cecf539d7807e809c904dbefc32381061643c22039abad
Node-1-1  | 2025-01-09 14:05:22.486+00:00 | EthScheduler-Workers-0 | DEBUG | DiffBasedWorldState | Persist world state for block Optional[BlockHeader{number=94, hash=0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995, parentHash=0xb4e29f3ada03c3a979850c40b9378dbc4c57af1e1d93ee9602527043c330e0d7, ommersHash=0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347, coinbase=0x76a07e17c2b280adf54d10dc372699823008a82b, stateRoot=0xe77f4ceb8fa9809cca22f8a71c0b4489a2bd346cd40d69558add34ea3b647e06, transactionsRoot=0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421, receiptsRoot=0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421, logsBloom=0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000, difficulty=0x0000000000000000000000000000000000000000000000000000000000000001, gasLimit=5000000, gasUsed=0, timestamp=1736431520, extraData=0xf90148a00000000000000000000000000000000000000000000000000000000000000000f8549440daf7cde6551631c1465e4fe459e8b41cfdb3619476a07e17c2b280adf54d10dc372699823008a82b94775cae574832939aec3ea27b84480368640745e5947b27969fedad1607e2110f340860a872294caac4808400000000f8c9b84193a4e37779524394fbaefb492217944c09885d8e2b5eb5a68dbdc09635c4d9250d84be43013c8b787f1605adef02c7432987146cb8702554d498ff0bf59e4c9301b8415532d047602e90be4db535e16cb2583fb496562d33566b32d99284fa3b6d2d8a03dd76e859056a5466e3e7d75273b527c39a58b07267ddc14abaee72f6841da501b841855f3960ad7326ee43af10af388ca85cbd4464c4c72eae94b2755fe1a84bc66b08e194020833eb227243c61dfb91f73f829cfad776dff4a0f2af8c6d6233050d01, baseFee=null, mixHashOrPrevRandao=0x63746963616c2062797a616e74696e65206661756c7420746f6c6572616e6365, nonce=0, }]
Node-1-1  | 2025-01-09 14:05:22.488+00:00 | EthScheduler-Workers-0 | DEBUG | DiffBasedWorldStateProvider | Archive rolling finished, BonsaiWorldStateKeyValueStorage now at 0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995
Node-4-1  | 2025-01-09 14:05:22.506+00:00 | BftProcessorExecutor-IBFT-0 | INFO  | IbftBesuControllerBuilder | Produced #95 / 0 tx / 0 pending / 0 (0.0%) gas / (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17)
Node-1-1  | 2025-01-09 14:05:22.529+00:00 | EthScheduler-Workers-0 | DEBUG | DiffBasedWorldState | Persist world state for block Optional[BlockHeader{number=95, hash=0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17, parentHash=0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995, ommersHash=0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347, coinbase=0x775cae574832939aec3ea27b84480368640745e5, stateRoot=0xe77f4ceb8fa9809cca22f8a71c0b4489a2bd346cd40d69558add34ea3b647e06, transactionsRoot=0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421, receiptsRoot=0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421, logsBloom=0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000, difficulty=0x0000000000000000000000000000000000000000000000000000000000000001, gasLimit=5000000, gasUsed=0, timestamp=1736431522, extraData=0xf90148a00000000000000000000000000000000000000000000000000000000000000000f8549440daf7cde6551631c1465e4fe459e8b41cfdb3619476a07e17c2b280adf54d10dc372699823008a82b94775cae574832939aec3ea27b84480368640745e5947b27969fedad1607e2110f340860a872294caac4808400000000f8c9b8411249803af14186b91301d449f13b7d2b5482e15fa7a5c8f7c1903de5d43c54a52a77da0867c155c202d71b259ab77fc113ff4f0c6b8ed6da707726dd6f02c1b800b841ec83b1a4a71e6779df769eba83de9ff427bfc6fda02e90ae4408c1c3816f6662728c100f699c715ceddef9a09846b579ff56f9d9bcd2a57cbbb0fa31eb5c721401b8412dc01dfc9b0bea7b727926144d64170eb7861722a10de31fc4857c264d69f61b5a10f64b76d095eedc57e35bdc7fcde9beef0bbd1a73f9140783362d18ddde4d00, baseFee=null, mixHashOrPrevRandao=0x63746963616c2062797a616e74696e65206661756c7420746f6c6572616e6365, nonce=0, }]
Node-1-1  | 2025-01-09 14:05:22.528+00:00 | nioEventLoopGroup-3-3 | TRACE | BlockPropagationManager | Import or save pending block 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17)
Node-1-1  | 2025-01-09 14:05:22.538+00:00 | nioEventLoopGroup-3-3 | TRACE | BlockPropagationManager | We're already importing this block 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17)
Node-1-1  | 2025-01-09 14:05:22.539+00:00 | nioEventLoopGroup-3-6 | TRACE | ApiHandler | Received Message{ code=7, size=845} from PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol eth/68
Node-1-1  | 2025-01-09 14:05:22.543+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | RoundState | Round state updated prepared=false committed=false preparedQuorum=0/2 committedQuorum=1/3
Node-1-1  | 2025-01-09 14:05:22.570+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | IbftRound | Sending prepare message. round=ConsensusRoundIdentifier{Sequence=95, Round=0}
Node-1-1  | 2025-01-09 14:05:22.574+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | RoundState | Round state added prepare message prepare=BftMessage[payload=SignedData[sender=0x7b27969fedad1607e2110f340860a872294caac4, signature=Signature{r=62591378325895439780158642576415991669201326641758538254391380581041553142235, s=37555962444691143115383220674112700147681236386141008550055445713489285217933, recId=1}, unsignedPayload=PreparePayload[roundIdentifier=ConsensusRoundIdentifier{Sequence=95, Round=0}, digest=0x86b0084f37b2f07876cecf539d7807e809c904dbefc32381061643c22039abad]]]
Node-1-1  | 2025-01-09 14:05:22.543+00:00 | EthScheduler-Workers-0 | DEBUG | TrieLogManager | Adding layered world state for 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17)
Node-1-1  | 2025-01-09 14:05:22.544+00:00 | nioEventLoopGroup-3-6 | TRACE | EthProtocolLogger | Process message eth/68, 7
Node-1-1  | 2025-01-09 14:05:22.612+00:00 | nioEventLoopGroup-3-6 | TRACE | EthPeer | Request message 7 has just been received for protocol eth, peer PeerId: 0x17a0de76c5373290... PeerReputation score: 101, timeouts: {}, useless: 0, validated? true, disconnected? false, client: besu/v24.9.1/linux-x86_64/openjdk-java-21, [Connection with hashCode -952645718 inboundInitiated? true initAt 1736431455924], enode://17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df@192.168.222.44:30306, isServingSnap false, has height 93, connected for 66688 ms 
Node-1-1  | 2025-01-09 14:05:22.615+00:00 | nioEventLoopGroup-3-6 | TRACE | BlockPropagationManager | New block from network 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17) from peer PeerId: 0x17a0de76c5373290... PeerReputation score: 101, timeouts: {}, useless: 0, validated? true, disconnected? false, client: besu/v24.9.1/linux-x86_64/openjdk-java-21, [Connection with hashCode -952645718 inboundInitiated? true initAt 1736431455924], enode://17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df@192.168.222.44:30306, isServingSnap false, has height 93, connected for 66690 ms. Current status BlockPropagationManager{ProcessingBlocksManager{importingBlocks=[0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17], requestedBlocks=[], requestedNonAnnouncedBlocks=[]}, pendingBlocksManager=PendingBlocksManager{pendingBlocks [], pendingBlocksByParentHash={}}}
Node-1-1  | 2025-01-09 14:05:22.614+00:00 | EthScheduler-Workers-0 | DEBUG | TrieLogManager | Persisting trie log for block hash 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17) and world state root 0xe77f4ceb8fa9809cca22f8a71c0b4489a2bd346cd40d69558add34ea3b647e06
Node-1-1  | 2025-01-09 14:05:22.621+00:00 | EthScheduler-Workers-0 | DEBUG | DiffBasedCachedWorldStorageManager | adding layered world state for block 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17), state root hash 0xe77f4ceb8fa9809cca22f8a71c0b4489a2bd346cd40d69558add34ea3b647e06
Node-1-1  | 2025-01-09 14:05:22.622+00:00 | EthScheduler-Services-0 | TRACE | LayeredPendingTransactions | Managing new added block 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17)
Node-1-1  | 2025-01-09 14:05:22.640+00:00 | EthScheduler-Services-0 | DEBUG | AbstractTransactionsLayer | Managing new added block 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17)
Node-1-1  | 2025-01-09 14:05:22.640+00:00 | EthScheduler-Services-0 | DEBUG | AbstractTransactionsLayer | Managing new added block 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17)
Node-1-1  | 2025-01-09 14:05:22.640+00:00 | EthScheduler-Services-0 | DEBUG | AbstractTransactionsLayer | Managing new added block 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17)
Node-1-1  | 2025-01-09 14:05:22.641+00:00 | EthScheduler-Services-0 | TRACE | LOG_FOR_REPLAY | B,95,0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17,,R,,0xf90341a088718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d4934794775cae574832939aec3ea27b84480368640745e5a0e77f4ceb8fa9809cca22f8a71c0b4489a2bd346cd40d69558add34ea3b647e06a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b9010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000015f834c4b408084677fd7a2b9014bf90148a00000000000000000000000000000000000000000000000000000000000000000f8549440daf7cde6551631c1465e4fe459e8b41cfdb3619476a07e17c2b280adf54d10dc372699823008a82b94775cae574832939aec3ea27b84480368640745e5947b27969fedad1607e2110f340860a872294caac4808400000000f8c9b8411249803af14186b91301d449f13b7d2b5482e15fa7a5c8f7c1903de5d43c54a52a77da0867c155c202d71b259ab77fc113ff4f0c6b8ed6da707726dd6f02c1b800b841ec83b1a4a71e6779df769eba83de9ff427bfc6fda02e90ae4408c1c3816f6662728c100f699c715ceddef9a09846b579ff56f9d9bcd2a57cbbb0fa31eb5c721401b8412dc01dfc9b0bea7b727926144d64170eb7861722a10de31fc4857c264d69f61b5a10f64b76d095eedc57e35bdc7fcde9beef0bbd1a73f9140783362d18ddde4d00a063746963616c2062797a616e74696e65206661756c7420746f6c6572616e6365880000000000000000
Node-1-1  | 2025-01-09 14:05:22.641+00:00 | EthScheduler-Services-0 | TRACE | TransactionPool | Block added event BlockAddedEvent{eventType=HEAD_ADVANCED, block=95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17), commonAncestorHash=0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995, addedTransactions count=0, removedTransactions count=0, transactionReceipts count =0, logsWithMetadata count=0} processed in 19ms
Node-1-1  | 2025-01-09 14:05:22.642+00:00 | EthScheduler-Workers-0 | TRACE | NodePermissioningController | Node permissioning: Checking enode://16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc@192.168.222.33:30305 -> enode://54fb30e9321c3d9f6462ef792bbbaf0cae4120edf10f4deaea78687a801e6c5cb40953174fbb066f2e545c0b769177729c4b1c49236928d0719080550cb5948c@127.0.0.1:30303
Node-1-1  | 2025-01-09 14:05:22.655+00:00 | EthScheduler-Workers-0 | TRACE | NodePermissioningController | Node permissioning: Permitted enode://16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc@192.168.222.33:30305 -> enode://54fb30e9321c3d9f6462ef792bbbaf0cae4120edf10f4deaea78687a801e6c5cb40953174fbb066f2e545c0b769177729c4b1c49236928d0719080550cb5948c@127.0.0.1:30303
Node-1-1  | 2025-01-09 14:05:22.642+00:00 | nioEventLoopGroup-3-6 | TRACE | BlockPropagationManager | New block from network 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17) is already present
Node-1-1  | 2025-01-09 14:05:22.642+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | RoundState | Round state updated prepared=false committed=false preparedQuorum=1/2 committedQuorum=1/3
Node-1-1  | 2025-01-09 14:05:22.662+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | ValidatorPeers | Sending message to peers messageCode=1 recipients=[0x7b27969fedad1607e2110f340860a872294caac4, 0x40daf7cde6551631c1465e4fe459e8b41cfdb361, 0x76a07e17c2b280adf54d10dc372699823008a82b, 0x775cae574832939aec3ea27b84480368640745e5]
Node-1-1  | 2025-01-09 14:05:22.667+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | AbstractPeerConnection | Writing PrepareMessageData{code=1, size=117} to PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.666+00:00 | EthScheduler-Workers-0 | TRACE | NodePermissioningController | Node permissioning: Checking enode://54fb30e9321c3d9f6462ef792bbbaf0cae4120edf10f4deaea78687a801e6c5cb40953174fbb066f2e545c0b769177729c4b1c49236928d0719080550cb5948c@127.0.0.1:30303 -> enode://e81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8@192.168.222.22:30304
Node-1-1  | 2025-01-09 14:05:22.671+00:00 | EthScheduler-Workers-0 | TRACE | NodePermissioningController | Node permissioning: Permitted enode://54fb30e9321c3d9f6462ef792bbbaf0cae4120edf10f4deaea78687a801e6c5cb40953174fbb066f2e545c0b769177729c4b1c49236928d0719080550cb5948c@127.0.0.1:30303 -> enode://e81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8@192.168.222.22:30304
Node-1-1  | 2025-01-09 14:05:22.671+00:00 | EthScheduler-Workers-0 | TRACE | NodePermissioningController | Node permissioning: Checking enode://17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df@192.168.222.44:30306 -> enode://54fb30e9321c3d9f6462ef792bbbaf0cae4120edf10f4deaea78687a801e6c5cb40953174fbb066f2e545c0b769177729c4b1c49236928d0719080550cb5948c@127.0.0.1:30303
Node-1-1  | 2025-01-09 14:05:22.671+00:00 | EthScheduler-Workers-0 | TRACE | NodePermissioningController | Node permissioning: Permitted enode://17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df@192.168.222.44:30306 -> enode://54fb30e9321c3d9f6462ef792bbbaf0cae4120edf10f4deaea78687a801e6c5cb40953174fbb066f2e545c0b769177729c4b1c49236928d0719080550cb5948c@127.0.0.1:30303
Node-1-1  | 2025-01-09 14:05:22.691+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | AbstractPeerConnection | Writing PrepareMessageData{code=1, size=117} to PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.694+00:00 | EthScheduler-Workers-0 | TRACE | TransactionLogBloomCacher | Caching logs bloom for block 0x5f
Node-1-1  | 2025-01-09 14:05:22.696+00:00 | EthScheduler-Workers-0 | TRACE | BlockPropagationManager | Block added event type HEAD_ADVANCED for block 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17). Current status BlockPropagationManager{ProcessingBlocksManager{importingBlocks=[0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17], requestedBlocks=[], requestedNonAnnouncedBlocks=[]}, pendingBlocksManager=PendingBlocksManager{pendingBlocks [], pendingBlocksByParentHash={}}}
Node-1-1  | 2025-01-09 14:05:22.695+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | AbstractPeerConnection | Writing PrepareMessageData{code=1, size=117} to PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol IBF/1
Node-1-1  | 2025-01-09 14:05:22.702+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:22.702+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:22.703+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Received BFT Prepare message
Node-1-1  | 2025-01-09 14:05:22.719+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | BaseBftController | Discarding a message which targets a height 95 not above current chain height 95.
Node-1-1  | 2025-01-09 14:05:22.709+00:00 | EthScheduler-Workers-0 | TRACE | BlockPropagationManager | There are no pending blocks ready to import for block 95 (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17)
Node-1-1  | 2025-01-09 14:05:22.722+00:00 | EthScheduler-Workers-0 | TRACE | BftMiningCoordinator | New canonical head detected
Node-1-1  | 2025-01-09 14:05:22.724+00:00 | EthScheduler-Workers-0 | INFO  | PersistBlockTask | Imported #95 / 0 tx / 0 om / 0 (0.0%) gas / (0x3c6403b5d614a044dc19140136b9852c10e7b61feca707861ea5c8da12dc8a17) in 0.244s. Peers: 3
Node-1-1  | 2025-01-09 14:05:22.724+00:00 | EthScheduler-Workers-0 | TRACE | AbstractPeerConnection | Writing NewBlockMessage{code=7, size=845} to PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30305, nodeId=0x16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc} via protocol eth/68
Node-1-1  | 2025-01-09 14:05:22.729+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Received BFT Prepare message
Node-1-1  | 2025-01-09 14:05:22.752+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | BaseBftController | Discarding a message which targets a height 95 not above current chain height 95.
Node-1-1  | 2025-01-09 14:05:22.753+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:22.753+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:22.758+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:22.764+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Received BFT Commit message
Node-1-1  | 2025-01-09 14:05:22.794+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | BaseBftController | Discarding a message which targets a height 95 not above current chain height 95.
Node-1-1  | 2025-01-09 14:05:22.758+00:00 | EthScheduler-Workers-0 | TRACE | AbstractPeerConnection | Writing NewBlockMessage{code=7, size=845} to PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30304, nodeId=0xe81ffb7019b05891ebd36995ef03eb14accd6bf90a758420baa631e5cd4a2b7d04bf2916a390be703a99a7afa99c17886a3f089634683215a2e4fbb52a6d20f8} via protocol eth/68
Node-1-1  | 2025-01-09 14:05:22.799+00:00 | EthScheduler-Workers-0 | TRACE | AbstractPeerConnection | Writing NewBlockMessage{code=7, size=845} to PeerInfo{version=5, clientId='besu/v24.9.1/linux-x86_64/openjdk-java-21', capabilities=[eth/62, eth/63, eth/64, eth/65, eth/66, eth/67, eth/68, IBF/1, snap/1], port=30306, nodeId=0x17a0de76c537329040466ca8fb59608b765e044a39928aae55d19118bfe504bcf36dd3acbf792d9d85f5069cf92641d5b3aaf576fe8d6d7d2c27a0505f7a00df} via protocol eth/68
Node-1-1  | 2025-01-09 14:05:22.811+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:22.814+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Received BFT Commit message
Node-1-1  | 2025-01-09 14:05:22.814+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | BaseBftController | Discarding a message which targets a height 95 not above current chain height 95.
Node-1-1  | 2025-01-09 14:05:22.816+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Received BFT Commit message
Node-1-1  | 2025-01-09 14:05:22.820+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | BaseBftController | Discarding a message which targets a height 95 not above current chain height 95.
Node-1-1  | 2025-01-09 14:05:22.822+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:22.822+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:22.823+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:22.824+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:22.824+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:22.824+00:00 | BftProcessorExecutor-IBFT-0 | TRACE | BaseBftController | Discarded duplicate message
Node-1-1  | 2025-01-09 14:05:22.825+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | BaseBftController | New chain head detected (block number=95), currently mining on top of 94.
Node-1-1  | 2025-01-09 14:05:22.842+00:00 | BftProcessorExecutor-IBFT-0 | DEBUG | IbftBlockHeightManagerFactory | Local node is a validator
Node-1-1  | 2025-01-09 14:05:23.004+00:00 | vert.x-worker-thread-19 | DEBUG | EthEstimateGas | Processing transaction with params: CallParameter{from=0x627306090abab3a6e1400e9345bc60c78a8bef57, to=null, gasLimit=5000000, maxPriorityFeePerGas=N/A, maxFeePerGas=N/A, maxFeePerBlobGas=N/A, gasPrice=0 wei, value=N/A, payloadSize=120, accessListSize=Optional.empty, blobVersionedHashesSize=Optional.empty}
Node-1-1  | 2025-01-09 14:05:23.035+00:00 | vert.x-worker-thread-19 | TRACE | MainnetTransactionProcessor | Starting execution of ContractCreation{type=FRONTIER, nonce=0, gasPrice=0 wei, gasLimit=5000000, value=0x0000000000000000000000000000000000000000000000000000000000000000, sig=Signature{r=57896044618658097711785492504343953926418782139537452191302581570759080747168, s=57896044618658097711785492504343953926418782139537452191302581570759080747168, recId=0}, payload=0x6080604052348015600e575f5ffd5b50603e80601a5f395ff3fe60806040525f5ffdfea2646970667358221220d74d84ee0b7bd9a9048b09fb83f95a21f622e7cfdaae20962ce9fc176181de2364736f6c634300081c0033000000000000000000000000000000000000000000000000000000000000002f}
Node-1-1  | 2025-01-09 14:05:23.049+00:00 | vert.x-worker-thread-19 | TRACE | MainnetTransactionProcessor | Incremented sender 0x627306090abab3a6e1400e9345bc60c78a8bef57 nonce (0 -> 1)
Node-1-1  | 2025-01-09 14:05:23.066+00:00 | vert.x-worker-thread-19 | TRACE | MainnetTransactionProcessor | Deducted sender 0x627306090abab3a6e1400e9345bc60c78a8bef57 upfront gas cost 0x0000000000000000000000000000000000000000000000000000000000000000 (0x000000000000000000000000000000000000000000ffffffffffffffffffffff -> 0x000000000000000000000000000000000000000000ffffffffffffffffffffff)
Node-1-1  | 2025-01-09 14:05:23.089+00:00 | vert.x-worker-thread-19 | TRACE | MainnetTransactionProcessor | Gas available for execution 4945476 = 5000000 - 54524 - 0 - 0 (limit - intrinsic - accessList - codeDelegation)
Node-1-1  | 2025-01-09 14:05:23.111+00:00 | EthScheduler-Timer-0 | DEBUG | FullSyncTargetManager | Caught up to best peer: PeerId: 0x16be3889f2eaea98... PeerReputation score: 101, timeouts: {}, useless: 0, validated? true, disconnected? false, client: besu/v24.9.1/linux-x86_64/openjdk-java-21, [Connection with hashCode 936176054 inboundInitiated? true initAt 1736431455933], enode://16be3889f2eaea9808b1732458b1a03f3a76f7829ca8f2d0a365521cc73264e4513173e3d7dd2177578c833e9d7401f6b0603ee04b541c44040c0ee55bde7ecc@192.168.222.33:30305, isServingSnap false, has height 94, connected for 67178 ms, chain state: ChainState{estimatedHeight=94, bestBlock=BestBlock{totalDifficulty=0x000000000000000000000000000000000000000000000000000000000000005f, blockHash=0x88718f7ff646bf328a525633f3369f9dc5a59851ed0eb5f03dc6186245993995, number=94}}. Current peers: 3
Node-1-1  | 2025-01-09 14:05:23.114+00:00 | EthScheduler-Timer-0 | DEBUG | WaitForPeerTask | Waiting for new peer connection. 3 peers currently connected.
Node-1-1  | 2025-01-09 14:05:23.193+00:00 | vert.x-worker-thread-19 | TRACE | ContractCreationProcessor | Executing contract-creation
Node-1-1  | 2025-01-09 14:05:23.237+00:00 | vert.x-worker-thread-19 | TRACE | EVM | MessageFrame evaluation halted because of INVALID_OPERATION
Node-1-1  | 2025-01-09 14:05:23.291+00:00 | vert.x-worker-thread-19 | TRACE | MainnetTransactionProcessor | Gas used by transaction: 5000000, by message call/contract creation: 4945476
Node-1-1  | 2025-01-09 14:05:23.292+00:00 | vert.x-worker-thread-19 | TRACE | MainnetTransactionProcessor | refunded sender 0x627306090abab3a6e1400e9345bc60c78a8bef57  0x0000000000000000000000000000000000000000000000000000000000000000 wei (0x000000000000000000000000000000000000000000ffffffffffffffffffffff -> 0x000000000000000000000000000000000000000000ffffffffffffffffffffff)
Node-1-1  | 2025-01-09 14:05:23.295+00:00 | vert.x-worker-thread-19 | DEBUG | MainnetTransactionProcessor | Transaction 0x18ebeb74893812d621461d07b07d0456cb1896348ac3ac37568877ef0bd19060 processing halted: INVALID_OPERATION
Node-1-1  | 2025-01-09 14:05:23.385+00:00 | vert.x-worker-thread-19 | TRACE | AbstractJsonRpcExecutor | {"jsonrpc":"2.0","id":"460c90b7-e95c-473f-99e8-a0122f9fb2e2","error":{"code":-32000,"message":"Transaction processing could not be completed due to an exception: INVALID_OPERATION"}}
Node-1-1  | 2025-01-09 14:05:23.402+00:00 | vert.x-eventloop-thread-1 | DEBUG | JsonRpcHttpService | Connection closed from 192.168.222.1:45730. Total of active connections: 0/80

@TU0N0DAN
Copy link

TU0N0DAN commented Jan 14, 2025

Another thing i wanted to ask is:

Is it correct to deploy the contract to a NULL address? (the Besu Documentation says to do so)

Should i deploy the contract from an account or from a validator?

Maybe Besu Developers know that better than us and already solved this issue.

If someone could mention @ one of them would be great.

In a PoS network logic the validators should theorically always deploy the contract, but in my script isn't like that.

I've sent the deploy transaction from an account with funds in order to cover eventual gas fees.

Validators got no funds, even if in theory they should cover gas fees and mint funds when needed automatically.

Validators should be able to send funds to an account even if they got no funds ( instantly minting it )

Correct me if i am wrong.

Thanks to everyone!

UPDATE :

I've made this curl call to my RPC in order to check the EVM Version (this was suggested by GPT)

curl -X POST http://localhost:8545 -H "Content-Type: application/json"
 -d '{"jsonrpc":"2.0","method":"eth_protocolVersion","params":[],"id":1}' 

and got this as response

{"jsonrpc":"2.0","id":1,"result":"0x44"}

44 should be Bysantium version but i'm not completely sure since GPT gave me this info. If anyone has more info sources or has the right answer please help me, us!
Thanks a lot!

UPDATE (2)

My EVM Version hardfork appears to be petersburg for some reason, i'm not completely sure but hardforks berlin, cancun and london are not working, since when i create the Tx object passing 'berlin,london,cancun' as parameters and launch the transaction it doesn't work. If i instead create the Tx object passing 'petersburg' it works.

The chain ID of the transaction also caused problems, the chain id on the besu documentation is "1337", but when i launch the transaction as public_tx.js does i do not specify any chain Id anywhere, so it automatically sets to 1 as default value.

This is my code, and it worked, i deployed the smart contract! (not ERC-721 but a simple one). As you can see i've used petersburg hardfork in the end and it worked! I just don't know how to add Chain ID to the transaction, so i modified it in the genesis in order to match to the default transaction chain id (1). But this is an error i want to solve.

const Web3 = require('web3').default;
const Tx = require('ethereumjs-tx').Transaction; 
const fs = require('fs');
const path = require('path');

// URL Ethereum node RPC

const web3 = new Web3("http://127.0.0.1:8545");

// Private key of account launching transaction

const privateKey = "0xc87509a1c067bbde78beb793e6fa76530b6382a4c0241e5e4a9ec0a0f44dc0d3";
const account = web3.eth.accounts.privateKeyToAccount(privateKey);

// Percorso e lettura del file JSON del contratto compilato
const contractJsonPath = path.resolve(__dirname, "simplesol.json");
const contractJson = JSON.parse(fs.readFileSync(contractJsonPath));

// ABI and Bytecode of the contract

const contractAbi = contractJson.abi;
const contractBin = contractJson.bytecode;

// Contract costructor init value

const contractConstructorInit = "000000000000000000000000000000000000000000000000000000000000002F";

// Function to add timestamp during the contract deployment phases

function getTimestamp() {
  return new Date().toISOString();
}

async function deployContract() {
  try {
    console.log(`[${getTimestamp()}] Starting contract deployment...`);

    console.log(`[${getTimestamp()}] Retrieving nonce...`);
    const txnCount = await web3.eth.getTransactionCount(account.address);
    console.log(`[${getTimestamp()}] Nonce: ${txnCount}`);

    console.log(`[${getTimestamp()}] Calculating gas price...`);
    const gasPrice = await web3.eth.getGasPrice();
    console.log(`[${getTimestamp()}] Gas Price: ${gasPrice}`);

    console.log(`[${getTimestamp()}] Estimating gas...`);
    
    const gasEstimate = await web3.eth.estimateGas({
      from: account.address,
      data: '0x' + contractBin.toString('hex') + contractConstructorInit
    });
    
    console.log(`[${getTimestamp()}] Gas Estimate: ${gasEstimate}`);

    console.log(`[${getTimestamp()}] Preparing transaction options...`);
    const rawTxOptions = {
      nonce: web3.utils.numberToHex(txnCount),
      from: account.address,
      to: null,
      value: "0x00",
      data: '0x' + contractBin.toString('hex') + contractConstructorInit,
      gasPrice: web3.utils.toHex(gasPrice),
      gas: web3.utils.toHex(gasEstimate)
    };

    console.log(`[${getTimestamp()}] Creating transaction...`);
    const tx = new Tx(rawTxOptions, { /*/chain: 'mainnet', /*/hardfork: 'petersburg' }); //hardfork london and berlin not supported only petersburg maybe cancun? not even cancun

    console.log(`[${getTimestamp()}] Signing transaction...`);
    tx.sign(Buffer.from(privateKey.slice(2), 'hex'));

    const serializedTx = tx.serialize();
    console.log(`[${getTimestamp()}] Transaction serialized!`);

    console.log(`[${getTimestamp()}] Sending transaction...`);
    const pTx = await web3.eth.sendSignedTransaction('0x' + serializedTx.toString('hex'));

    console.log(`[${getTimestamp()}] Deploy successful!`);
    console.log(`[${getTimestamp()}] Transaction Hash: ${pTx.transactionHash}`);
    console.log(`[${getTimestamp()}] Contract Address: ${pTx.contractAddress}`);
  } catch (error) {
    console.error(`[${getTimestamp()}] Error during deployment:`, error);

    if (error.data) {
      console.error(`[${getTimestamp()}] Error data:`, error.data);
    }
    console.error(`[${getTimestamp()}] Stack Trace:`, error.stack);
  }
}

// Deploy execution

deployContract().catch((err) => {
  console.error(`[${getTimestamp()}] Unhandled exception:`, err);
});

@Giridharan-Govindaraj let me know what you think bro thanks! I've been stuck on this job for months! Thanks a lot for enlightening me. Tag a besu developer if you can! That might be helpful.

My genesis file only contains berlin block option, so i don't know how it can be petersburg.

genesis.json

{
  "config" : {
    "chainId" : 1337,
    "berlinBlock" : 0,
    "ibft2" : {
      "blockperiodseconds" : 2,
      "epochlength" : 30000,
      "requesttimeoutseconds" : 4
    }
  },
  "nonce" : "0x0",
  "timestamp" : "0x58ee40ba",
  "gasLimit" : "0x4c4b40",
  "difficulty" : "0x1",
  "mixHash" : "0x63746963616c2062797a616e74696e65206661756c7420746f6c6572616e6365",
  "coinbase" : "0x0000000000000000000000000000000000000000",
  "extraData" : "0xf87ea00000000000000000000000000000000000000000000000000000000000000000f85494775cae574832939aec3ea27b84480368640745e5947b27969fedad1607e2110f340860a872294caac49440daf7cde6551631c1465e4fe459e8b41cfdb3619476a07e17c2b280adf54d10dc372699823008a82b808400000000c0",
  "alloc": {
    "0xfe3b557e8fb62b89f4916b721be55ceb828dbd73": {
      "balance": "0xad78ebc5ac6200000"
    },
    "0x627306090abaB3A6e1400e9345bC60c78a8BEf57": {
      "balance": "0xffffffffffffffffffffff"
    },
    "0xf17f52151EbEF6C7334FAD080c5704D77216b732": {
      "balance": "0x927c0e1e8000000000000"
    }
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants