Skip to content

Commit

Permalink
fix request type
Browse files Browse the repository at this point in the history
  • Loading branch information
jubeless committed Dec 17, 2020
1 parent 3a46cef commit 50f5fc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/serum/queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func (r *RequestQueue) Decode(data []byte) error {
type RequestFlag uint8

const (
RequestFlagNewOrder = AccountFlag(1 << iota)
RequestFlagNewOrder = RequestFlag(1 << iota)
RequestFlagCancelOrder
RequestFlagBid
RequestFlagPostOnly
Expand Down

0 comments on commit 50f5fc5

Please sign in to comment.