Skip to content

Commit 7455c81

Browse files
committed
revert gaia x/liquid
1 parent 608147e commit 7455c81

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

interchaintest/liquidstake_stkxprt_globalcap_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,5 +384,7 @@ func TestLiquidStakeGlobalCapStkXPRT(t *testing.T) {
384384
t.Logf("[7] Total Tokens Liquid Staked (After LP): %s", totalLiquidStakedAfterLP)
385385

386386
delta := totalLiquidStakedAfterLP.Sub(totalLiquidStakedBeforeLP)
387-
require.True(t, delta.IsPositive() && delta.LTE(firstUserLiquidStakeAmount), "tokens liquid staked in stake-to-lp must be accounted in global LS counter, 0 < delta <= amount")
387+
//require.True(t, delta.IsPositive() && delta.LTE(firstUserLiquidStakeAmount), "tokens liquid staked in stake-to-lp must be accounted in global LS counter, 0 < delta <= amount")
388+
// gaia x/liquid does not enforce caps on 32length addresses.
389+
require.True(t, delta.IsZero() && delta.LTE(firstUserLiquidStakeAmount), "tokens liquid staked in stake-to-lp must be accounted in global LS counter, 0 < delta <= amount")
388390
}

0 commit comments

Comments
 (0)