A. 對於go版的以太坊,有哪位大神指導,裡面的一個方法:GetStorageAt是幹嘛用的么
這是以太坊提供的一個可以讀取區塊鏈賬本中數據的介面,參數依次表示所要讀取存儲的賬戶地址、存儲相對索引位置、以及區塊號。可以參見web3.eth.getStorageAt介面以及以太坊ethapi/api.go對應的GetStorageAt函數。
若解決了你的問題,請採納
B. 以太坊 cd go-ethereum 、make geth超時問題
解決https://proxy.golang.org/github.com 報443 超時問題
make geth
go: github.com/Azure/[email protected]: Get "https://proxy.golang.org/github.com/%21azure/azure-storage-blob-go/@v/v0.7.0.mod": dial tcp 172.217.24.17:443: i/o timeout
make: *** [geth] Error 1
替換一個國內的代理地址
終端命令執行:
go env -w GOPROXY=https://goproxy.cn
重新執行make geth