From f4b588d482550874f069c56a76c0ba3b4a4123a7 Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Thu, 29 Apr 2021 21:14:14 +0200 Subject: [PATCH] Fix parsing in query type --- x/wasm/ibc_reflect_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/wasm/ibc_reflect_test.go b/x/wasm/ibc_reflect_test.go index f1e095620c..fb5e04ec84 100644 --- a/x/wasm/ibc_reflect_test.go +++ b/x/wasm/ibc_reflect_test.go @@ -103,7 +103,7 @@ type AccountQuery struct { } type AccountResponse struct { - LastUpdateTime uint64 `json:"last_update_time"` + LastUpdateTime uint64 `json:"last_update_time,string"` RemoteAddr string `json:"remote_addr"` RemoteBalance wasmvmtypes.Coins `json:"remote_balance"` }