From 1ed76565f2d1e1667011de6f6453836ea13383d0 Mon Sep 17 00:00:00 2001 From: Alessio Treglia Date: Fri, 31 Aug 2018 17:13:24 +0200 Subject: [PATCH] Remove obsolete comments --- x/auth/ante.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/x/auth/ante.go b/x/auth/ante.go index 94899a872..51440e2ec 100644 --- a/x/auth/ante.go +++ b/x/auth/ante.go @@ -175,14 +175,11 @@ func processSig( fmt.Sprintf("Invalid sequence. Got %d, expected %d", sig.Sequence, seq)).Result() } } - // Increment sequence number err := acc.SetSequence(seq + 1) if err != nil { // Handle w/ #870 panic(err) } - // If pubkey is not known for account, - // set it from the StdSignature. pubKey, res := processPubKey(acc, sig, simulate) if !res.IsOK() { return nil, res