Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
braces
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugene Yurtaev committed Apr 12, 2016
1 parent 158fb1c commit 739ed11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contract.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ contract WavesPresale {
function newSale(bytes16 txidHash, uint amount, uint timestamp) {
if (msg.sender != owner) return;

if sales[txidHash].date == 0 {
if (sales[txidHash].date == 0) {
sales[txidHash] = Sale({
amount: amount,
date: timestamp
Expand Down

0 comments on commit 739ed11

Please sign in to comment.