Skip to content

Commit

Permalink
fix nav event volume
Browse files Browse the repository at this point in the history
  • Loading branch information
iramiller committed Sep 24, 2024
1 parent 2325429 commit a1f2b34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/metadata/keeper/scope.go
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ func (k Keeper) SetNetAssetValueWithBlockHeight(ctx sdk.Context, scopeID types.M
return err
}

setNetAssetValueEvent := types.NewEventSetNetAssetValue(scopeID, netAssetValue.Price, 1, source)
setNetAssetValueEvent := types.NewEventSetNetAssetValue(scopeID, netAssetValue.Price, netAssetValue.Volume, source)
if err := ctx.EventManager().EmitTypedEvent(setNetAssetValueEvent); err != nil {
return err
}
Expand Down

0 comments on commit a1f2b34

Please sign in to comment.