Remove shadowed variable.

This commit is contained in:
Josh Rickmar 2013-08-28 09:02:24 -04:00
parent c86571be0c
commit cfde81a062

View file

@ -280,11 +280,11 @@ func ProcessBtcdNotificationReply(b []byte) {
// TODO(jrick): update TxStore and UtxoStore with new hash // TODO(jrick): update TxStore and UtxoStore with new hash
var id interface{} = "btcwallet:newblockchainheight" var id interface{} = "btcwallet:newblockchainheight"
m := &btcjson.Reply{ msgRaw := &btcjson.Reply{
Result: height, Result: height,
Id: &id, Id: &id,
} }
msg, _ := json.Marshal(m) msg, _ := json.Marshal(msgRaw)
frontendNotificationMaster <- msg frontendNotificationMaster <- msg
case "btcd:blockdisconnected": case "btcd:blockdisconnected":