Skip to content

Commit

Permalink
Merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel-Trintinalia committed Jun 14, 2024
2 parents 3ed820f + a71a239 commit 81f102a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Besu Plugins relating to tracer and sequencer functionality
# Besu Plugins related to tracer and sequencer functionality

A Linea tracing implementation for [Hyperledger Besu](https://github.com/hyperledger/besu) based on
an [existing implementation in Go](https://github.com/Consensys/zk-evm/).
Expand Down Expand Up @@ -38,7 +38,7 @@ Linux/MacOs
Windows
* Requirement [Docker Desktop WSL 2 backend on Windows](https://docs.docker.com/desktop/wsl/)

On release native libs are build for all the supported platforms,
On release native libs are built for all the supported platforms,
if you want to test this process locally run `./gradlew -PreleaseNativeLibs jar`,
jar is generated in `arithmetization/build/libs`.

Expand Down Expand Up @@ -115,7 +115,7 @@ ______________________________________________________________________
NOTE

> Please be aware if the reference test code generation tasks `blockchainReferenceTests` and
> `generalStateReferenceTests` do not generate any java code, than probably you are missing the Ethereum tests
> `generalStateReferenceTests` do not generate any java code, then probably you are missing the Ethereum tests"
> submodule which you can clone via `git submodule update --init --recursive`.
______________________________________________________________________
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
releaseVersion=0.1.4-SNAPSHOT
besuVersion=24.5-develop-0cfa46b
besuVersion=24.6-develop-711dff7
besuArtifactGroup=io.consensys.linea-besu
distributionIdentifier=besu-sequencer-plugins
distributionBaseUrl=https://artifacts.consensys.net/public/linea-besu/raw/names/linea-besu.tar.gz/versions/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import java.util.Set;

import org.apache.tuweni.bytes.Bytes;
import org.hyperledger.besu.datatypes.Address;
import org.hyperledger.besu.datatypes.Transaction;
import org.hyperledger.besu.evm.frame.ExceptionalHaltReason;
import org.hyperledger.besu.evm.frame.MessageFrame;
Expand Down Expand Up @@ -118,9 +120,11 @@ public void traceEndTransaction(
Bytes output,
List<Log> logs,
long gasUsed,
Set<Address> selfDestructs,
long timeNs) {
for (OperationTracer tracer : tracers) {
tracer.traceEndTransaction(worldView, tx, status, output, logs, gasUsed, timeNs);
tracer.traceEndTransaction(
worldView, tx, status, output, logs, gasUsed, selfDestructs, timeNs);
}
}

Expand Down

0 comments on commit 81f102a

Please sign in to comment.