Skip to content

Commit

Permalink
Format time for contract call
Browse files Browse the repository at this point in the history
  • Loading branch information
b-j-roberts committed Jan 18, 2025
1 parent d575627 commit c8a25cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/tabs/worlds/WorldsCreationPanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ const WorldsCreationPanel = (props) => {
height: height,
time_between_pixels: timer,
color_palette: formattedPalette,
start_time: start,
end_time: end
start_time: start / 1000,
end_time: end / 1000
};
const createWorldsCalldata = props.canvasFactoryContract.populate(
'create_canvas',
Expand Down

0 comments on commit c8a25cf

Please sign in to comment.