Skip to content

Commit

Permalink
fix(bug): malformed artifact pollution
Browse files Browse the repository at this point in the history
autoformatting CI process created a defect in which a comment wa broken into a multi-line sentance,
rendering it no longer a comment

#8
  • Loading branch information
sam committed Apr 10, 2021
1 parent cd9d628 commit fcb4f66
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 44,192 deletions.
133 changes: 0 additions & 133 deletions CHANGELOG.md

This file was deleted.

4 changes: 1 addition & 3 deletions dune/homestead/block_rewards_daily_by_miner.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#standardSQL
--MIT License-- Copyright (c) 2019 Yaz Khoury,
yaz.khoury @gmail.com SELECT miner, DATE (timestamp) AS date,
SELECT miner, DATE (timestamp) AS date,
COUNT (miner) AS total_block_reward FROM
`bigquery - public - data.crypto_ethereum_classic.blocks` GROUP BY miner,
date HAVING COUNT (miner) > 1;
4 changes: 1 addition & 3 deletions dune/homestead/block_rewards_gini.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#standardSQL
--MIT License-- Copyright (c) 2019 Yaz Khoury,
yaz.khoury @gmail.com WITH total_reward_book
WITH total_reward_book
AS (SELECT miner, DATE (timestamp) AS date,
COUNT (miner) AS total_block_reward FROM
`bigquery - public
Expand Down
4 changes: 1 addition & 3 deletions dune/homestead/daily_top_miners.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#standardSQL
--MIT License-- Copyright (c) 2019 Yaz Khoury,
yaz.khoury @gmail.com SELECT miner, DATE (timestamp) AS date,
SELECT miner, DATE (timestamp) AS date,
COUNT (miner) AS total_block_reward FROM
`bigquery - public - data.crypto_ethereum_classic.blocks` GROUP BY miner,
date HAVING COUNT (miner) > 100 ORDER BY date, COUNT (miner);
4 changes: 1 addition & 3 deletions dune/homestead/top_miners.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#standardSQL
--MIT License-- Copyright (c) 2019 Yaz Khoury,
yaz.khoury @gmail.com WITH mined_block
WITH mined_block
AS (SELECT miner,
DATE (timestamp) FROM
`bigquery - public
Expand Down

0 comments on commit fcb4f66

Please sign in to comment.