From 52f6be850504bd7dfa46ebf0d85626140f7b94e1 Mon Sep 17 00:00:00 2001 From: Alexandre Bourget Date: Tue, 22 Jan 2019 08:04:53 -0500 Subject: [PATCH] Updated a few last int64 --- responses.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/responses.go b/responses.go index 771b47ac..20b40e56 100644 --- a/responses.go +++ b/responses.go @@ -113,7 +113,7 @@ type ActionTrace struct { type TransactionTraceAuthSequence struct { Account AccountName - Sequence int64 + Sequence Int64 } // [ ["account", 123123], ["account2", 345] ] @@ -137,7 +137,7 @@ func (auth *TransactionTraceAuthSequence) UnmarshalJSON(data []byte) error { return fmt.Errorf("expected 2nd item to be a sequence number (float64)") } - *auth = TransactionTraceAuthSequence{AccountName(account), int64(seq)} + *auth = TransactionTraceAuthSequence{AccountName(account), Int64(seq)} return nil }