Some renames and small fixes.

This commit is contained in:
Jae Kwon
2015-04-08 12:30:49 -07:00
parent 6b5383918f
commit 7356556938
12 changed files with 28 additions and 28 deletions

View File

@ -209,9 +209,9 @@ func dumpStorage(t *testing.T, addr []byte) core.ResponseDumpStorage {
return *resp
}
func getStorage(t *testing.T, typ string, addr, slot []byte) []byte {
func getStorage(t *testing.T, typ string, addr, key []byte) []byte {
client := clients[typ]
resp, err := client.GetStorage(addr, slot)
resp, err := client.GetStorage(addr, key)
if err != nil {
t.Fatal(err)
}