-
Notifications
You must be signed in to change notification settings - Fork 829
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add association logic in simulate #1609
Conversation
if !associated { | ||
seiAddr, associatedNow := b.keeper.GetSeiAddress(b.ctxProvider(LatestCtxHeight), msg.From) | ||
if !associatedNow { | ||
return nil, vm.BlockContext{}, nil, nil, fmt.Errorf("address %s is not associated in the latest height", msg.From.Hex()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the test failing suggests that if it's not associated and not associated now it should still be valid?
44293e1
to
67c79bd
Compare
67c79bd
to
c56b469
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1609 +/- ##
==========================================
+ Coverage 61.46% 61.65% +0.18%
==========================================
Files 365 365
Lines 26107 26135 +28
==========================================
+ Hits 16047 16113 +66
+ Misses 8994 8952 -42
- Partials 1066 1070 +4
|
Describe your changes and provide context
Testing performed to validate your change