Skip to content

Commit

Permalink
fix(lint): missed conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Todmy committed Aug 25, 2023
1 parent 89d5292 commit 113a500
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/check.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,8 @@ async function processSig(address, safeHash, network) {

async function checkSignedMessages(messages, network) {
if (messages.length > 0) {
<<<<<<< Updated upstream
const end = timeMessageProcess.startTimer({ network });
const provider = snapshot.utils.getProvider(network);
=======
const provider = snapshot.utils.getProvider(
network,
{ broviderUrl: process.env.BROVIDER_URL }
);
>>>>>>> Stashed changes
const provider = snapshot.utils.getProvider(network, { broviderUrl: process.env.BROVIDER_URL });
const abi = ['function signedMessages(bytes32) view returns (uint256)'];
try {
const response = await snapshot.utils.multicall(
Expand Down

0 comments on commit 113a500

Please sign in to comment.