Skip to content

Commit

Permalink
Merge pull request #6114 from ethereum-optimism/refcell/fixsolver/emb…
Browse files Browse the repository at this point in the history
…eddings

fix(op-challenger): Solver Claim Embedding
  • Loading branch information
OptimismBot authored Jun 23, 2023
2 parents 5d38cf2 + 3c6aa1a commit 505751c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions op-challenger/fault/solver.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func (s *Solver) doNothing() (*Response, error) {

// attack returns a response that attacks the claim.
func (s *Solver) attack(claim Claim) (*Response, error) {
value, err := s.traceAtPosition(claim.Position.Attack())
value, err := s.traceAtPosition(claim.Attack())
if err != nil {
return nil, err
}
Expand All @@ -67,7 +67,7 @@ func (s *Solver) attack(claim Claim) (*Response, error) {

// defend returns a response that defends the claim.
func (s *Solver) defend(claim Claim) (*Response, error) {
value, err := s.traceAtPosition(claim.Position.Defend())
value, err := s.traceAtPosition(claim.Defend())
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 505751c

Please sign in to comment.