fix: multisig app (#2173)
This commit is contained in:
parent
1abd1d0ebf
commit
4dc0e7fd56
@ -113,9 +113,7 @@ const Wrapper = () => {
|
|||||||
return (
|
return (
|
||||||
<EnvironmentProvider>
|
<EnvironmentProvider>
|
||||||
<NetworkLoader cache={cache}>
|
<NetworkLoader cache={cache}>
|
||||||
<ContractsProvider>
|
<App />
|
||||||
<App />
|
|
||||||
</ContractsProvider>
|
|
||||||
</NetworkLoader>
|
</NetworkLoader>
|
||||||
</EnvironmentProvider>
|
</EnvironmentProvider>
|
||||||
);
|
);
|
||||||
|
@ -17,7 +17,6 @@ export const ContractsProvider = ({ children }: { children: JSX.Element }) => {
|
|||||||
const [contracts, setContracts] = useState<ContractsContextShape | null>(
|
const [contracts, setContracts] = useState<ContractsContextShape | null>(
|
||||||
null
|
null
|
||||||
);
|
);
|
||||||
console.log(activeProvider);
|
|
||||||
|
|
||||||
// Create instances of contract classes. If we have an account use a signer for the
|
// Create instances of contract classes. If we have an account use a signer for the
|
||||||
// contracts so that we can sign transactions, otherwise use the provider for just
|
// contracts so that we can sign transactions, otherwise use the provider for just
|
||||||
|
Loading…
Reference in New Issue
Block a user