Created
April 10, 2018 08:47
-
-
Save gasolin/d2626c552e0cd02f04bd38aee978d0b4 to your computer and use it in GitHub Desktop.
Revisions
-
gasolin created this gist
Apr 10, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ // https://medium.com/metamask/calling-a-smart-contract-with-a-button-d278b1e76705 async function waitForTxToBeMined (txHash) { let txReceipt while (!txReceipt) { try { txReceipt = await eth.getTransactionReceipt(txHash) } catch (err) { return indicateFailure(err) } } indicateSuccess() }