Skip to content

Instantly share code, notes, and snippets.

@devonwesley
Last active December 20, 2017 02:25
Show Gist options
  • Save devonwesley/4717e933d07e1c405281b522179514e3 to your computer and use it in GitHub Desktop.
Save devonwesley/4717e933d07e1c405281b522179514e3 to your computer and use it in GitHub Desktop.
Code snippet of a callback for a contract being deployed.
function newContractCallback(name) {
return (err, contract) => {
getAccounts()
if (!err) {
!contract.address
? status(`Deploying contract..`)
: renderContract(contract, name)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment