Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
affanv14 committed Sep 19, 2024
1 parent b8d0f0d commit 5c2fa13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions protocol/x/revshare/keeper/revshare_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ func TestKeeper_GetAllRevShares_Valid(t *testing.T) {
Recipient: constants.AliceAccAddress.String(),
RevShareFeeSource: types.REV_SHARE_FEE_SOURCE_NET_FEE,
RevShareType: types.REV_SHARE_TYPE_MARKET_MAPPER,
QuoteQuantums: big.NewInt(1_200_000),
QuoteQuantums: big.NewInt(950_000),
RevSharePpm: 100_000, // 10%
},
},
Expand All @@ -719,7 +719,7 @@ func TestKeeper_GetAllRevShares_Valid(t *testing.T) {
RevSharePpm: 250_000, // 25%
},
FeeSourceToQuoteQuantums: map[types.RevShareFeeSource]*big.Int{
types.REV_SHARE_FEE_SOURCE_NET_FEE: big.NewInt(1_200_000),
types.REV_SHARE_FEE_SOURCE_NET_FEE: big.NewInt(950_000),
types.REV_SHARE_FEE_SOURCE_TAKER_FEE: big.NewInt(2_500_000),
},
FeeSourceToRevSharePpm: map[types.RevShareFeeSource]uint32{
Expand Down

0 comments on commit 5c2fa13

Please sign in to comment.