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
2 changes: 1 addition & 1 deletion src/osp/OneStepProverHostIo.sol
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ contract OneStepProverHostIo is IOneStepProver {
bytes memory extracted;
uint8 proofType = uint8(proof[proofOffset]);
proofOffset++;
// These values must be kept in sync with `arbitrator/arbutil/src/types.rs`
// These values must be kept in sync with `crates/arbutil/src/types.rs`
// and `arbutil/preimage_type.go` (both in the nitro repo).
if (inst.argumentData == 0) {
// The machine is asking for a keccak256 preimage
Expand Down
2 changes: 1 addition & 1 deletion test/prover/one-step-proof.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ async function sendTestMessages() {
const { deployer } = await getNamedAccounts()
const inbox = await ethers.getContract('InboxStub', deployer)
const seqInbox = await ethers.getContract('SequencerInboxStub', deployer)
const msgRoot = '../arbitrator/prover/test-cases/rust/data/'
const msgRoot = '../crates/prover/test-cases/rust/data/'
const gasOpts = {
gasLimit: ethers.utils.hexlify(250000),
gasPrice: ethers.utils.parseUnits('5', 'gwei'),
Expand Down
Loading