mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 09:53:48 +00:00
dashboard: run last two go:generate steps for linter
This commit is contained in:
parent
bbcd206deb
commit
5af68e2940
1 changed files with 8 additions and 5 deletions
|
|
@ -14,6 +14,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type asset struct {
|
type asset struct {
|
||||||
bytes []byte
|
bytes []byte
|
||||||
info os.FileInfo
|
info os.FileInfo
|
||||||
|
|
@ -45,6 +46,7 @@ func (fi bindataFileInfo) Sys() interface{} {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//nolint:misspell
|
||||||
var _publicBundleJs = []byte((((((((((`!function(modules) {
|
var _publicBundleJs = []byte((((((((((`!function(modules) {
|
||||||
function __webpack_require__(moduleId) {
|
function __webpack_require__(moduleId) {
|
||||||
if (installedModules[moduleId]) return installedModules[moduleId].exports;
|
if (installedModules[moduleId]) return installedModules[moduleId].exports;
|
||||||
|
|
@ -42113,6 +42115,7 @@ func publicBundleJs() (*asset, error) {
|
||||||
return a, nil
|
return a, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//nolint:misspell
|
||||||
var _publicDashboardHtml = []byte(`<!DOCTYPE html>
|
var _publicDashboardHtml = []byte(`<!DOCTYPE html>
|
||||||
<html lang="en" style="height: 100%">
|
<html lang="en" style="height: 100%">
|
||||||
<head>
|
<head>
|
||||||
|
|
@ -42248,10 +42251,11 @@ type bintree struct {
|
||||||
Func func() (*asset, error)
|
Func func() (*asset, error)
|
||||||
Children map[string]*bintree
|
Children map[string]*bintree
|
||||||
}
|
}
|
||||||
|
|
||||||
var _bintree = &bintree{nil, map[string]*bintree{
|
var _bintree = &bintree{nil, map[string]*bintree{
|
||||||
"public": &bintree{nil, map[string]*bintree{
|
"public": {nil, map[string]*bintree{
|
||||||
"bundle.js": &bintree{publicBundleJs, map[string]*bintree{}},
|
"bundle.js": {publicBundleJs, map[string]*bintree{}},
|
||||||
"dashboard.html": &bintree{publicDashboardHtml, map[string]*bintree{}},
|
"dashboard.html": {publicDashboardHtml, map[string]*bintree{}},
|
||||||
}},
|
}},
|
||||||
}}
|
}}
|
||||||
|
|
||||||
|
|
@ -42301,4 +42305,3 @@ func _filePath(dir, name string) string {
|
||||||
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
cannonicalName := strings.Replace(name, "\\", "/", -1)
|
||||||
return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
|
return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue