mirror of
https://github.com/vacp2p/status-linea-besu.git
synced 2026-01-08 23:08:15 -05:00
[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:
@@ -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) {
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user