[CHANGELOG] tidy up changelog et al (#8360)

* tidy up changelog

Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>

* typo defaut

Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>

---------

Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>
This commit is contained in:
Sally MacFarlane
2025-02-27 15:36:01 +10:00
committed by GitHub
parent 7fbf97ba71
commit d454d1287a
5 changed files with 39 additions and 28 deletions

View File

@@ -194,8 +194,8 @@ public class ExtDelegateCallOperationTest {
.build();
messageFrame.warmUpAddress(CONTRACT_ADDRESS);
when(account.getBalance()).thenReturn(Wei.ZERO);
when(worldUpdater.get(TestMessageFrameBuilder.DEFAUT_ADDRESS)).thenReturn(account);
when(worldUpdater.getAccount(TestMessageFrameBuilder.DEFAUT_ADDRESS)).thenReturn(account);
when(worldUpdater.get(TestMessageFrameBuilder.DEFAULT_ADDRESS)).thenReturn(account);
when(worldUpdater.getAccount(TestMessageFrameBuilder.DEFAULT_ADDRESS)).thenReturn(account);
Code code =
switch (name) {

View File

@@ -36,16 +36,16 @@ import org.apache.tuweni.bytes.Bytes;
public class TestMessageFrameBuilder {
public static final Address DEFAUT_ADDRESS = Address.fromHexString("0xe8f1b89");
public static final Address DEFAULT_ADDRESS = Address.fromHexString("0xe8f1b89");
private static final int maxStackSize = DEFAULT_MAX_STACK_SIZE;
private Optional<BlockValues> blockValues = Optional.empty();
private Optional<WorldUpdater> worldUpdater = Optional.empty();
private long initialGas = Long.MAX_VALUE;
private Address address = DEFAUT_ADDRESS;
private Address sender = DEFAUT_ADDRESS;
private Address originator = DEFAUT_ADDRESS;
private Address contract = DEFAUT_ADDRESS;
private Address address = DEFAULT_ADDRESS;
private Address sender = DEFAULT_ADDRESS;
private Address originator = DEFAULT_ADDRESS;
private Address contract = DEFAULT_ADDRESS;
private Wei gasPrice = Wei.ZERO;
private Wei blobGasPrice = Wei.ZERO;
private Wei value = Wei.ZERO;