Skip to content

Commit

Permalink
Remove execution.ExecuteAt
Browse files Browse the repository at this point in the history
  • Loading branch information
krhubert committed May 29, 2019
1 parent 1093a51 commit 29b26cb
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions execution/execution.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package execution

import (
"time"

"github.com/mesg-foundation/core/x/xstructhash"
)

Expand Down Expand Up @@ -47,7 +45,6 @@ type Execution struct {
OutputKey string `hash:"-"`
OutputData map[string]interface{} `hash:"-"`
Error string `hash:"-"`
ExecutedAt time.Time `hash:"-"`
}

// New returns a new execution. It returns an error if inputs are invalid.
Expand All @@ -74,7 +71,6 @@ func (execution *Execution) Execute() error {
ActualStatus: execution.Status,
}
}
execution.ExecutedAt = time.Now()
execution.Status = InProgress
return nil
}
Expand Down

0 comments on commit 29b26cb

Please sign in to comment.