Skip to content

Commit

Permalink
update main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
whonion authored Jun 20, 2023
1 parent f753f6e commit 7c412cb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import (
"context"
"encoding/hex"
"fmt"
"io/ioutil"
"log"
"math/big"
"os"
Expand Down Expand Up @@ -51,7 +50,7 @@ func main() {
log.Fatal(err)
}
// Load and deploy each contract in succession
contractFiles, err := ioutil.ReadDir("./contracts")
contractFiles, err := os.ReadDir("./contracts")
if err != nil {
log.Fatal(err)
}
Expand Down

0 comments on commit 7c412cb

Please sign in to comment.