Skip to content

Commit

Permalink
修改bug
Browse files Browse the repository at this point in the history
  • Loading branch information
0xsongsu committed Feb 29, 2024
1 parent 794b039 commit bf58af8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lavaNet/lavaRun.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ async function main() {
const rpcUrls = JSON.parse(fs.readFileSync('./rpc.json', 'utf8'));
const addresses = fs.readFileSync('./wallet.csv', 'utf8').split('\n').filter(line => line);

for (let i = 0; i < addresses.length; i++) {
for (let i = 1; i < addresses.length; i++) {
const address = addresses[i].split(',')[0].trim();
if (!address) continue;

Expand Down

0 comments on commit bf58af8

Please sign in to comment.