@@ -137,7 +137,7 @@ func (suite *AnteTestSuite) TestAnteHandlerSigErrors() {
137137 func () {
138138 acc1 := suite .app .AccountKeeper .NewAccountWithAddress (suite .ctx , addr0 )
139139 suite .app .AccountKeeper .SetAccount (suite .ctx , acc1 )
140- err := suite .app .BankKeeper .SetBalances (suite .ctx , addr0 , feeAmount )
140+ err := suite .app .BankKeeper .SetBalances (suite .ctx , addr0 , feeAmount ) // TODO(fdymylja): IDK
141141 suite .Require ().NoError (err )
142142 },
143143 false ,
@@ -466,7 +466,7 @@ func (suite *AnteTestSuite) TestAnteHandlerFees() {
466466 {
467467 "signer does not have enough funds to pay the fee" ,
468468 func () {
469- suite .app .BankKeeper .SetBalances (suite .ctx , addr0 , sdk .NewCoins (sdk .NewInt64Coin ("atom" , 149 )))
469+ suite .app .BankKeeper .SetBalances (suite .ctx , addr0 , sdk .NewCoins (sdk .NewInt64Coin ("atom" , 149 ))) // TODO(fdymylja): IDK
470470 },
471471 false ,
472472 false ,
@@ -480,7 +480,7 @@ func (suite *AnteTestSuite) TestAnteHandlerFees() {
480480 suite .Require ().True (suite .app .BankKeeper .GetAllBalances (suite .ctx , modAcc .GetAddress ()).Empty ())
481481 require .True (sdk .IntEq (suite .T (), suite .app .BankKeeper .GetAllBalances (suite .ctx , addr0 ).AmountOf ("atom" ), sdk .NewInt (149 )))
482482
483- suite .app .BankKeeper .SetBalances (suite .ctx , addr0 , sdk .NewCoins (sdk .NewInt64Coin ("atom" , 150 )))
483+ suite .app .BankKeeper .SetBalances (suite .ctx , addr0 , sdk .NewCoins (sdk .NewInt64Coin ("atom" , 150 ))) // TODO(fdymylja): IDK
484484 },
485485 false ,
486486 true ,
@@ -1120,7 +1120,7 @@ func (suite *AnteTestSuite) TestAnteHandlerReCheck() {
11201120
11211121 // remove funds for account so antehandler fails on recheck
11221122 suite .app .AccountKeeper .SetAccount (suite .ctx , accounts [0 ].acc )
1123- suite .app .BankKeeper .SetBalances (suite .ctx , accounts [0 ].acc .GetAddress (), sdk .NewCoins ())
1123+ suite .app .BankKeeper .SetBalances (suite .ctx , accounts [0 ].acc .GetAddress (), sdk .NewCoins ()) // TODO(fdymylja): IDK
11241124
11251125 _ , err = suite .anteHandler (suite .ctx , tx , false )
11261126 suite .Require ().NotNil (err , "antehandler on recheck did not fail once feePayer no longer has sufficient funds" )
0 commit comments