Skip to content

Commit

Permalink
fix markdown render problem
Browse files Browse the repository at this point in the history
  • Loading branch information
tintinweb committed Dec 1, 2021
1 parent 128cc53 commit f84c87b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/metrics/metrics.js
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ This section lists functions that are explicitly declared public or payable. Ple
| Solidity Versions observed | 🧪 Experimental Features | 💰 Can Receive Funds | 🖥 Uses Assembly | 💣 Has Destroyable Contracts |
|============|===========|===========|===========|
| ${totals.totals.capabilities.solidityVersions.map( v => `\`${v}\``).join("<br/>")} | ${totals.totals.capabilities.experimental.map( v => `\`${v}\``).join("<br/>")} | ${totals.totals.capabilities.canReceiveFunds ? "`yes`" : "****"} | ${totals.totals.capabilities.assembly ? "`yes`" : "****"}<br/>(${totals.totals.num.assemblyBlocks} asm blocks) | ${totals.totals.capabilities.destroyable ? "`yes`" : "****"} |
| ${totals.totals.capabilities.solidityVersions.map( v => `\`${v}\``).join("<br/>")} | ${totals.totals.capabilities.experimental.map( v => `\`${v}\``).join("<br/>")} | ${totals.totals.capabilities.canReceiveFunds ? "`yes`" : "****"} | ${totals.totals.capabilities.assembly ? `\`yes\` <br/>(${totals.totals.num.assemblyBlocks} asm blocks)` : "****"} | ${totals.totals.capabilities.destroyable ? "`yes`" : "****"} |
| 📤 Transfers ETH | ⚡ Low-Level Calls | 👥 DelegateCall | 🧮 Uses Hash Functions | 🔖 ECRecover | 🌀 New/Create/Create2 |
|============|===========|===========|===========|===========|
Expand Down

0 comments on commit f84c87b

Please sign in to comment.