diff options
Diffstat (limited to 'packages/dev-tools-pages/ts/pages/Cov.tsx')
-rw-r--r-- | packages/dev-tools-pages/ts/pages/Cov.tsx | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/packages/dev-tools-pages/ts/pages/Cov.tsx b/packages/dev-tools-pages/ts/pages/Cov.tsx index 8fd1ace43..01966537c 100644 --- a/packages/dev-tools-pages/ts/pages/Cov.tsx +++ b/packages/dev-tools-pages/ts/pages/Cov.tsx @@ -22,11 +22,21 @@ function Cov() { coverage. </IntroLead> <IntroAside> - <Code language="js"> - {`import { SolCompilerArtifactAdapter } from '@0x/sol-trace'; + <Code language="js.diff"> + {`+function executeTransaction(uint transactionId) + public ++notExecuted(transactionId) ++pastTimeLock(transactionId) +{ ++Transaction storage tx = transactions[transactionId] ++tx.executed = true ++if (tx.destination.call.value(tx.value)(tx.data)) ++Execution(transactionId) +else { +-ExecutionFailure(transactionId) -// Both artifactsDir and contractsDir are optional and will be fetched from compiler.json if not passed in -const artifactAdapter = new SolCompilerArtifactAdapter(artifactsDir, contractsDir);`} + } +}`} </Code> </IntroAside> </Intro> |