Skip to content

Commit

Permalink
chore: pr comments fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
maxrobot committed Aug 29, 2024
1 parent 64bb78c commit 0d43364
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/injective-testing/src/test_tube/authz.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ pub fn create_send_authorization(app: &InjectiveTestApp, granter: &SigningAccoun
.unwrap();
}

pub fn execute_grid_authorizations(app: &InjectiveTestApp, granter: &SigningAccount, grantee: String, msgs: Vec<String>) {
pub fn execute_generic_authorizations(app: &InjectiveTestApp, granter: &SigningAccount, grantee: String, msgs: Vec<String>) {
for msg in msgs {
create_generic_authorization(app, granter, grantee.clone(), msg, None);
}
Expand Down
1 change: 1 addition & 0 deletions packages/injective-testing/src/test_tube/exchange.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ pub fn add_exchange_admin(app: &InjectiveTestApp, validator: &SigningAccount, ad
exchange_params.exchange_admins.push(admin_address);
exchange_params.max_derivative_order_side_count = 300u32;

// NOTE: this could change int he future
let governance_module_address = "inj10d07y265gmmuvt4z0w9aw880jnsr700jstypyt";

let mut buf = vec![];
Expand Down

0 comments on commit 0d43364

Please sign in to comment.