Skip to content

Commit

Permalink
Merge pull request #2653 from OffchainLabs/activate_program_fix
Browse files Browse the repository at this point in the history
fix activateProgramInternal
  • Loading branch information
tsahee committed Sep 17, 2024
2 parents 1ad2bbf + fe702b6 commit 4bfb539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arbos/programs/native.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ func activateProgramInternal(
}
results := make(chan result, len(targets))
for _, target := range targets {
target := target
if target == rawdb.TargetWavm {
results <- result{target, module, nil}
} else {
target := target
go func() {
output := &rustBytes{}
status_asm := C.stylus_compile(
Expand Down

0 comments on commit 4bfb539

Please sign in to comment.