Skip to content
Merged
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
4 changes: 2 additions & 2 deletions crates/shared/access-lists/tests/builder/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,14 +142,14 @@ fn test_multi_sload_same_slot() {
.with_code(Bytecode::new_raw(AccessListContract::DEPLOYED_BYTECODE.clone())),
);

// getAB reads both `a` and `b` which are packed in slot 1
// getAb reads both `a` and `b` which are packed in slot 1
let tx = OpTransaction::builder()
.base(
TxEnv::builder()
.caller(sender)
.chain_id(Some(DEVNET_CHAIN_ID))
.kind(TxKind::Call(contract))
.data(AccessListContract::getABCall {}.abi_encode().into())
.data(AccessListContract::getAbCall {}.abi_encode().into())
.nonce(0)
.gas_price(0)
.gas_priority_fee(None)
Expand Down
2 changes: 1 addition & 1 deletion crates/shared/primitives/contracts/src/AccessList.sol
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ contract AccessList {
}
}

function getAB() public view returns (uint128, uint128) {
function getAb() public view returns (uint128, uint128) {
return (a, b);
}

Expand Down
Loading