Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import { EVM_RPC_URLS } from './src/config/evm';
import { useNetworkStore, useSettingsStore, useWalletStore } from './src/store';
import { sessionService } from './src/services/auth/session';


// Get projectId from environment variable
const projectId = process.env.WALLET_CONNECT_PROJECT_ID || 'YOUR_PROJECT_ID';

Expand Down Expand Up @@ -115,7 +114,6 @@ function NotificationBootstrap() {
})();
}, [initialize, initializeSettings]);


return null;
}

Expand Down
6 changes: 3 additions & 3 deletions contracts/access_control/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ impl RoleManager {
.unwrap_or(Vec::new(&env));
let mut new_members: Vec<Address> = Vec::new(&env);
for m in members.iter() {
if &m != &user {
if m != user {
new_members.push_back(m);
}
}
Expand All @@ -221,7 +221,7 @@ impl RoleManager {
.unwrap_or(Vec::new(&env));
let mut new_roles: Vec<Role> = Vec::new(&env);
for r in user_roles.iter() {
if &r != &role {
if r != role {
new_roles.push_back(r);
}
}
Expand Down Expand Up @@ -600,7 +600,7 @@ impl RoleManager {
.unwrap_or(DEFAULT_MULTISIG_THRESHOLD);

assert!(
proposal.approvals.len() >= threshold as u32,
proposal.approvals.len() >= threshold,
"Insufficient approvals"
);

Expand Down
Loading