diff --git a/.github/workflows/cadence_lint.yml b/.github/workflows/cadence_lint.yml index f0980c3..42c0f32 100644 --- a/.github/workflows/cadence_lint.yml +++ b/.github/workflows/cadence_lint.yml @@ -1,4 +1,4 @@ -name: Run Cadence Lint +name: Run Cadence Contract Compilation, Deployment, Transaction Excution, and Lint on: push jobs: diff --git a/cadence/contracts/Recipe.cdc b/cadence/contracts/Recipe.cdc index faeb19d..fd1b1d4 100644 --- a/cadence/contracts/Recipe.cdc +++ b/cadence/contracts/Recipe.cdc @@ -1,6 +1,7 @@ import "TopShot" access(all) contract Recipe { + // This is a snippet extracting the relevant logic from the TopShot contract for demonstration purposes // More TopShot Code Above access(all) event PlayAddedToSet(setID: UInt32, playID: UInt32)