From 17e241ae414de08b570d2dec58af46e0d94d4ce1 Mon Sep 17 00:00:00 2001 From: collin Date: Mon, 15 Jun 2020 18:27:53 -0700 Subject: [PATCH] remove tmp folder --- tmp/.gitignore | 2 -- tmp/Leo.toml | 3 --- tmp/inputs/inputs.leo | 1 - tmp/src/main.leo | 9 --------- 4 files changed, 15 deletions(-) delete mode 100644 tmp/.gitignore delete mode 100644 tmp/Leo.toml delete mode 100644 tmp/inputs/inputs.leo delete mode 100644 tmp/src/main.leo diff --git a/tmp/.gitignore b/tmp/.gitignore deleted file mode 100644 index ee3b8ff567..0000000000 --- a/tmp/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/output -/.leo diff --git a/tmp/Leo.toml b/tmp/Leo.toml deleted file mode 100644 index 36afb9b7ec..0000000000 --- a/tmp/Leo.toml +++ /dev/null @@ -1,3 +0,0 @@ -[package] -name = "tmp" -version = "0.1.0" diff --git a/tmp/inputs/inputs.leo b/tmp/inputs/inputs.leo deleted file mode 100644 index 15685c3c69..0000000000 --- a/tmp/inputs/inputs.leo +++ /dev/null @@ -1 +0,0 @@ -[main] diff --git a/tmp/src/main.leo b/tmp/src/main.leo deleted file mode 100644 index f694486c52..0000000000 --- a/tmp/src/main.leo +++ /dev/null @@ -1,9 +0,0 @@ -function test(p: public bool) { - -} - -// The 'pedersen_hash' main function. -function main() { - let a = true; - test(a); -}