-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
feat(accounts): Allow funds to be sent to accounts on init and execute #19360
Changes from 10 commits
214f388
bba96a8
c126e7a
aa4e234
6ead670
ad6fc02
b4d8a42
e3faf2d
929f73a
46e11c8
37f5d06
3636942
a63550f
a01e49e
c269445
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,12 +35,12 @@ func TestAccountAbstraction(t *testing.T) { | |
|
||
_, aaAddr, err := ak.Init(ctx, "aa_minimal", accCreator, &rotationv1.MsgInit{ | ||
PubKeyBytes: privKey.PubKey().Bytes(), | ||
}) | ||
}, nil) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The addition of |
||
require.NoError(t, err) | ||
|
||
_, aaFullAddr, err := ak.Init(ctx, "aa_full", accCreator, &rotationv1.MsgInit{ | ||
PubKeyBytes: privKey.PubKey().Bytes(), | ||
}) | ||
}, nil) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar to the previous comment, the |
||
require.NoError(t, err) | ||
|
||
aaAddrStr, err := app.AuthKeeper.AddressCodec().BytesToString(aaAddr) | ||
|
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.
imho, this makes the wiring of this module quite weird.
can we add docs here on why its needed?
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.
Yes I do agree this makes things weird.