-
Notifications
You must be signed in to change notification settings - Fork 193
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(oracle): wire to the App #832
Conversation
…cilex/oracle-wiring
# Conflicts: # CHANGELOG.md # app/app.go
@@ -96,3 +99,39 @@ func ExecTx(network *Network, cmd *cobra.Command, txSender sdk.AccAddress, args | |||
|
|||
return resp, nil | |||
} | |||
|
|||
func (n *Network) SendTx(addr sdk.AccAddress, msgs ...sdk.Msg) (*sdk.TxResponse, error) { |
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.
Could we use
Line 50 in 14c1a6d
func ExecTx(network *Network, cmd *cobra.Command, txSender sdk.AccAddress, args []string, opt ...ExecTxOption) (*sdk.TxResponse, error) { |
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.
This is to test multimsg flows, unfortunately I didn't test them here because it was out of the scope.
closes: #833