Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
swift1337 committed Nov 21, 2024
1 parent 18b7acc commit b5c367a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/zetaclientd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"context"
"net/http"
_ "net/http/pprof" // #nosec G108 -- runPprof enablement is intentional
_ "net/http/pprof" // #nosec G108 -- pprof enablement is intentional
"os"
"os/signal"
"path/filepath"
Expand Down
2 changes: 1 addition & 1 deletion zetaclient/chains/evm/observer/outbound.go
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ func (ob *Observer) checkConfirmedTx(
return nil, nil, false
case from != ob.TSS().PubKey().AddressEVM():
// might be false positive during TSS upgrade for unconfirmed txs
// Make all deposits/withdrawals are paused during TSS upgrade
// Make sure all deposits/withdrawals are paused during TSS upgrade
logger.Error().Str("tx.sender", from.String()).Msgf("tx sender is not TSS addresses")
return nil, nil, false
case transaction.Nonce() != nonce:
Expand Down

0 comments on commit b5c367a

Please sign in to comment.