コード例 #1
0
ファイル: txs.go プロジェクト: piotrnar/gocoin
func txt_mempool_fees(w http.ResponseWriter, r *http.Request) {
	if !ipchecker(r) {
		return
	}
	w.Header()["Content-Type"] = []string{"text/plain"}
	w.Write([]byte(usif.MemoryPoolFees()))
}
コード例 #2
0
ファイル: txcmds.go プロジェクト: piotrnar/gocoin
func mempool_stats(par string) {
	fmt.Print(usif.MemoryPoolFees())
}