0

I want to show the time when blockchain contract called.

I am currently saving the time in the blockchain using a method like this

function userCheckIn(uint placeid) public {
    userCount++;
    checkins[userCount] = Checkin(placeid, msg.sender, new Date(now * 1000));
} 

However, Date says Identifier not found or not unique.

Could you give me any advise, please?

gnxvw
  • 267
  • 1
  • 3
  • 13

1 Answers1

2

You are trying to create a JS object Date. Obviously, it won't work since it's not JS but Solidity.

If you want the current time when the function is called (so mined), you can use now.

Read more here.

Elisha Drion
  • 2,641
  • 9
  • 16
  • Thank you! When I used now, that only showed numbers like this 1555650125 1555651118 1555651169 – gnxvw Apr 20 '19 at 05:46