From e2770d3691ee85c10ec40cb4eecbb3ecf97127cc Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 14 Nov 2013 14:39:57 -0600 Subject: [PATCH] Go fmt. --- script_test.go | 31 +++++++++++++------------------ 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/script_test.go b/script_test.go index 7371761c..fffa00cf 100644 --- a/script_test.go +++ b/script_test.go @@ -2665,40 +2665,35 @@ nexttest: } } -var classStringifyTests = []struct{ - name string +var classStringifyTests = []struct { + name string scriptclass btcscript.ScriptClass - stringed string + stringed string }{ { - name: "pubkey", + name: "pubkey", scriptclass: btcscript.PubKeyTy, - stringed: "pubkey", + stringed: "pubkey", }, { - name: "pubkeyhash", + name: "pubkeyhash", scriptclass: btcscript.PubKeyHashTy, - stringed: "pubkeyhash", + stringed: "pubkeyhash", }, { - name: "scripthash", + name: "scripthash", scriptclass: btcscript.ScriptHashTy, - stringed: "scripthash", + stringed: "scripthash", }, { - name: "multisigty", + name: "multisigty", scriptclass: btcscript.MultiSigTy, - stringed: "multisig", + stringed: "multisig", }, { - name: "nonstandard", - scriptclass: btcscript.NonStandardTy, - stringed: "nonstandard", - }, - { - name: "broken", + name: "broken", scriptclass: btcscript.ScriptClass(255), - stringed: "Invalid", + stringed: "Invalid", }, }