Skip to content

Commit

Permalink
Merge pull request #18 from AleoHQ/fix/ci
Browse files Browse the repository at this point in the history
  • Loading branch information
howardwu authored Oct 4, 2022
2 parents cc4909f + 4e67222 commit fa760f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions arc-0030/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
arc: 0030
arc: 30
title: Adding self.parent opcode
authors: [email protected] [email protected]
discussion: ARC-0030: Adding self.parent opcode
discussion: https://github.com/AleoHQ/ARCs/discussions/11
topic: Application
status: Draft
created: 9/2/2022
Expand Down
4 changes: 2 additions & 2 deletions parser/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const ci = () => {
console.log('Error', err);
process.exit(1);
} else {
for (let i = 0; i < list.length; i++) {
for (let i = 1; i < list.length; i++) {
const arcDirectory = list[i];

/**************************** ****************************/
Expand Down Expand Up @@ -56,7 +56,7 @@ const site = () => {

let arcs = {};

for (let i = 0; i < list.length; i++) {
for (let i = 1; i < list.length; i++) {
const arcDirectory = list[i];

/**************************** ****************************/
Expand Down

0 comments on commit fa760f4

Please sign in to comment.