Making corrections to code formatting

This commit is contained in:
leonardchinonso 2021-11-22 19:15:12 +01:00
parent dc4c001f51
commit c154d65cec
5 changed files with 10 additions and 8 deletions

View File

@ -8,13 +8,13 @@ import (
func main() {
var (
to string
value uint64
blockNum string
getBalance bool
sendTx bool
to string
value uint64
blockNum string
getBalance bool
sendTx bool
txPoolContent bool
clearDev bool
clearDev bool
)
flag.StringVar(&to, "to", "", "String Address to send to")

View File

@ -26,4 +26,4 @@ func post(client *http.Client, url, request string, response interface{}) error
err = decoder.Decode(response)
log.Info("Got in", "time", time.Since(start).Seconds())
return err
}
}

View File

@ -65,4 +65,4 @@ func ParseRequests(getBalance *bool, sendTx *bool, txpoolContent *bool, clearDev
func clearDevDB() {
fmt.Printf("Clearing ~/dev\n")
}
}

View File

@ -1,3 +1,4 @@
//go:build gorules
// +build gorules
package gorules

View File

@ -1,3 +1,4 @@
//go:build tools
// +build tools
package tools