Skip to content

Commit

Permalink
fix getting latest sequence (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-cha authored Feb 3, 2025
1 parent 3bf68b3 commit 3cc9494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/broadcaster/account.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ func (b BroadcasterAccount) GetLatestSequence(ctx context.Context) (uint64, erro
if err != nil {
return 0, err
}
return account.GetAccountNumber(), nil
return account.GetSequence(), nil
}

func (b BroadcasterAccount) getClientCtx(ctx context.Context) client.Context {
Expand Down

0 comments on commit 3cc9494

Please sign in to comment.