Skip to content

Commit

Permalink
Merge branch 'develop' into transfer_interval
Browse files Browse the repository at this point in the history
  • Loading branch information
ze97286 authored Apr 23, 2024
2 parents 721de8d + d679816 commit 3965b9c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
- [11143](https://github.com/vegaprotocol/vega/issues/11143) - Add support for new asset proposal in batch governance proposal.
- [11184](https://github.com/vegaprotocol/vega/issues/11184) - relax the transfer restriction of 'same transfer' to match the full dispatch strategy.
- [11185](https://github.com/vegaprotocol/vega/issues/11185) - distinguish between zero and none metric for rewards.
- [11158](https://github.com/vegaprotocol/vega/issues/11158) - resolve the quote asset for fee estimation in spot market.

### 🐛 Fixes

Expand Down
2 changes: 2 additions & 0 deletions protos/vega/market_ext.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ func (m *Market) GetAsset() (string, error) {
return pimpl.Future.SettlementAsset, nil
case *Instrument_Perpetual:
return pimpl.Perpetual.SettlementAsset, nil
case *Instrument_Spot:
return pimpl.Spot.QuoteAsset, nil
default:
return "", ErrUnknownAsset
}
Expand Down

0 comments on commit 3965b9c

Please sign in to comment.