Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI #18

Merged
merged 1 commit into from
Oct 4, 2022
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 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