From 7e50b843d8e890f4d8c8260d39768f7904ac2f03 Mon Sep 17 00:00:00 2001 From: David Hill Date: Thu, 7 May 2015 13:30:21 -0400 Subject: [PATCH] Rename hex to scriptSig in SignRawTransactionError. Fixes a 'read and type the wrong thing'. --- btcjson/walletsvrresults.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/btcjson/walletsvrresults.go b/btcjson/walletsvrresults.go index 33e68d72..91c80682 100644 --- a/btcjson/walletsvrresults.go +++ b/btcjson/walletsvrresults.go @@ -120,7 +120,7 @@ type ListUnspentResult struct { type SignRawTransactionError struct { TxID string `json:"txid"` Vout uint32 `json:"vout"` - ScriptSig string `json:"hex"` + ScriptSig string `json:"scriptSig"` Sequence uint32 `json:"sequence"` Error string `json:"error"` }