(e)
| 9 | } |
| 10 | |
| 11 | toggleDone(e) { |
| 12 | const { target: { name } } = e |
| 13 | const { drizzle, drizzleState: { accounts } } = this.props |
| 14 | |
| 15 | drizzle.contracts.ToDo.methods.toggleDone.cacheSend(name, { from: accounts[0], gas: '5000000' }) |
| 16 | } |
| 17 | |
| 18 | componentDidMount() { |
| 19 | const { drizzle, tid } = this.props |
no outgoing calls
no test coverage detected