diff options
author | Julien Dessaux | 2025-02-19 00:19:58 +0100 |
---|---|---|
committer | Julien Dessaux | 2025-02-19 00:19:58 +0100 |
commit | 312ef2eb5792cd145d6829e2abc017dd304c5819 (patch) | |
tree | cf782f8356bea73eacb5495631794cf5584e00cb /golang/pkg/model/contract.go | |
parent | [golang] update error handling and bootstrap trade procurement (diff) | |
download | spacetraders-312ef2eb5792cd145d6829e2abc017dd304c5819.tar.gz spacetraders-312ef2eb5792cd145d6829e2abc017dd304c5819.tar.bz2 spacetraders-312ef2eb5792cd145d6829e2abc017dd304c5819.zip |
[golang] implement trading and contracting
Diffstat (limited to '')
-rw-r--r-- | golang/pkg/model/contract.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/golang/pkg/model/contract.go b/golang/pkg/model/contract.go index 24ed403..9d9c7bd 100644 --- a/golang/pkg/model/contract.go +++ b/golang/pkg/model/contract.go @@ -7,7 +7,7 @@ type Contract struct { DeadlineToAccept time.Time `json:"deadlineToAccept"` Expiration time.Time `json:"expiration"` FactionSymbol string `json:"factionSymbol"` - Fullfilled bool `json:"fulfilled"` + Fulfilled bool `json:"fulfilled"` Id string `json:"id"` Terms *Terms `json:"terms"` Type string `json:"type"` |