Files
openzeppelin-contracts/test/helpers/latestTime.js
2017-06-30 21:25:59 -03:00

7 lines
208 B
JavaScript

import moment from 'moment'
// Returns a moment.js instance representing the time of the last mined block
export default function latestTime() {
return moment.unix(web3.eth.getBlock('latest').timestamp)
}