Files
openzeppelin-contracts/test/helpers/latestTime.js
2018-07-10 14:01:51 -07:00

8 lines
213 B
JavaScript

import { ethGetBlock } from './web3';
// Returns the time of the last mined block in seconds
export default async function latestTime () {
const block = await ethGetBlock('latest');
return block.timestamp;
}