Skip to content

Commit

Permalink
fix lint err
Browse files Browse the repository at this point in the history
  • Loading branch information
trestinlsd committed Dec 11, 2024
1 parent 7e89c4a commit 00eeed8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions precompiles/avs/avs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ func (suite *AVSManagerPrecompileSuite) TestRegisterAVS() {
common.HexToAddress(slashAddress),
common.HexToAddress(rewardAddress),
avsOwnerAddress,
avsOwnerAddress,
assetID,
avsUnbondingPeriod,
minSelfDelegation,
Expand Down Expand Up @@ -364,6 +365,7 @@ func (suite *AVSManagerPrecompileSuite) TestUpdateAVS() {
common.HexToAddress(slashAddress),
common.HexToAddress(rewardAddress),
avsOwnerAddress,
avsOwnerAddress,
assetID,
avsUnbondingPeriod,
minSelfDelegation,
Expand Down
5 changes: 3 additions & 2 deletions x/avs/keeper/avs.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
package keeper

import (
errorsmod "cosmossdk.io/errors"
sdkmath "cosmossdk.io/math"
"fmt"
"math/big"
"slices"
"strconv"
"strings"

errorsmod "cosmossdk.io/errors"
sdkmath "cosmossdk.io/math"

"github.com/ExocoreNetwork/exocore/x/avs/types"
"github.com/ethereum/go-ethereum/common"
"github.com/evmos/evmos/v16/x/evm/statedb"
Expand Down

0 comments on commit 00eeed8

Please sign in to comment.