update v5.1.0

This commit is contained in:
mdr0id 2022-07-14 15:15:39 -07:00
parent c8981185f3
commit 2935ddd026
2 changed files with 5 additions and 5 deletions

View File

@ -3,10 +3,10 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1200px, shrink-to-fit=yes">
<meta name="description" content="Zcash 5.0.0 RPC Docs{{if .Command}} - {{.Command.Name}}{{end}}">
<meta name="description" content="Zcash 5.1.0 RPC Docs{{if .Command}} - {{.Command.Name}}{{end}}">
<meta name="author" content="">
<title>{{if .Command}}{{.Command.Name}} - {{end}}Zcash 5.0.0 RPC Docs</title>
<title>{{if .Command}}{{.Command.Name}} - {{end}}Zcash 5.1.0 RPC Docs</title>
<link href="./bootstrap.min.css" rel="stylesheet">
</head>
@ -25,14 +25,14 @@
<nav class="navbar navbar-dark bg-dark ">
<a class="navbar-brand" href="/">Zcash 5.0.0 RPC Docs</a>
<a class="navbar-brand" href="/">Zcash 5.1.0 RPC Docs</a>
</nav>
<main role="main" class="container-fluid" style="margin-top: 1pc;">
<div class="row">
<div class="col-8 col-lg-9 col-xl-10">
<h1>{{if .Command}}{{.Command.Name}} - {{end}}Zcash 5.0.0 RPC</h1>
<h1>{{if .Command}}{{.Command.Name}} - {{end}}Zcash 5.1.0 RPC</h1>
{{if .Command}}
<pre>{{.Command.Description}}</pre>
<hr>

View File

@ -91,7 +91,7 @@ func open(path string) io.Writer {
}
func run(args ...string) string {
out, err := exec.Command("zcash-cli", args...).CombinedOutput()
out, err := exec.Command("/home/mdr0id/Code/v5.1.0/zcash/src/zcash-cli", args...).CombinedOutput()
if err != nil {
panic(err)
}