Skip to content

Commit

Permalink
resolve lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kingpinXD committed Nov 16, 2023
1 parent f3eb109 commit 8896e80
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions zetaclient/zeta_supply_checker.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ type ZetaSupplyCheckLogs struct {
ZetaTokenSupplyOnNode sdkmath.Int `json:"zeta_token_supply_on_node"`
EthLockedAmount sdkmath.Int `json:"eth_locked_amount"`
NodeAmounts sdkmath.Int `json:"node_amounts"`
Lhs sdkmath.Int `json:"lhs"`
Rhs sdkmath.Int `json:"rhs"`
LHS sdkmath.Int `json:"LHS"`
RHS sdkmath.Int `json:"RHS"`
SupplyCheckSuccess bool `json:"supply_check_success"`
}

Expand All @@ -181,8 +181,8 @@ func ValidateZetaSupply(logger zerolog.Logger, abortedTxAmounts, zetaInTransit,
NodeAmounts: nodeAmounts,
ZetaTokenSupplyOnNode: zetaTokenSupplyOnNode,
EthLockedAmount: ethLockedAmount,
Lhs: lhs,
Rhs: rhs,
LHS: lhs,
RHS: rhs,
}
defer logs.LogOutput()
if !lhs.Equal(rhs) {
Expand Down

0 comments on commit 8896e80

Please sign in to comment.