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

docs: Fix/typos in RomLex.java #1639

Open
wants to merge 8 commits into
base: arith-dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
* fix(invalidCodePrefix): make it work ([#1330](https://github.com/Consensys/linea-tracer/pull/1330))

## 0.7.0-rc1
* chore: don't postTxDefers TrasactionMetaData ([#1325](https://github.com/Consensys/linea-tracer/pull/1325))
* chore: don't postTxDefers TransactionMetaData ([#1325](https://github.com/Consensys/linea-tracer/pull/1325))
* chore: upgrade Linea Besu to 24.9-delivery33 ([#1328](https://github.com/Consensys/linea-tracer/pull/1328))
* fix(ReturnSection): max code size ([#1313](https://github.com/Consensys/linea-tracer/pull/1313))
* fix(mmu): invalidCodePrefix with empty memory ([#1310](https://github.com/Consensys/linea-tracer/pull/1310))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class RomLex implements OperationSetModule<RomOperation>, ContextEntryDef
new ModuleOperationStackedSet<>();

@Getter private List<RomOperation> sortedOperations;
Map<ContractMetadata, Integer> cfiMetadataCorrespondance = new HashMap<>();
Map<ContractMetadata, Integer> cfiMetadataCorrespondence = new HashMap<>();
@Getter private Bytes byteCode = Bytes.EMPTY;
private Address address = Address.ZERO;

Expand Down