diff --git a/iguana/exchanges/bitcoin.c b/iguana/exchanges/bitcoin.c
index 0ba8a6365..a0e3a82a9 100755
--- a/iguana/exchanges/bitcoin.c
+++ b/iguana/exchanges/bitcoin.c
@@ -364,18 +364,6 @@ char *create_atomictx_cltvspend(char *scriptstr,uint8_t *rmd160A,uint8_t *rmd160
return(scriptstr);
}
-/*
- struct vin_signer { bits256 privkey; uint8_t siglen,sig[80],rmd160[20],pubkey[66]; };
-
- struct vin_info
- {
- struct iguana_msgvin vin;
- int32_t M,N,validmask,spendlen,p2shflag;
- struct vin_signer signers[16];
- uint8_t rmd160[20],spendscript[IGUANA_MAXSCRIPTSIZE];
- };
-*/
-
int32_t iguana_scriptgen(struct iguana_info *coin,char *coinaddr,uint8_t *script,char *asmstr,uint8_t rmd160[20],uint8_t type,int32_t txi,struct vin_info *vp)
{
uint8_t addrtype; char rmd160str[41]; int32_t i,m,n,flag = 0,scriptlen = 0;
diff --git a/iguana/pnacl/Release/iguana.pexe b/iguana/pnacl/Release/iguana.pexe
index d3412b6b1..8a9f21a43 100644
Binary files a/iguana/pnacl/Release/iguana.pexe and b/iguana/pnacl/Release/iguana.pexe differ
diff --git a/iguana/ugly.html b/iguana/ugly.html
deleted file mode 100644
index 407fb3bf2..000000000
--- a/iguana/ugly.html
+++ /dev/null
@@ -1,141 +0,0 @@
-
SuperUGLY GUI>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/pnacl_main.h b/pnacl_main.h
index b8096c9d5..01d524433 100644
--- a/pnacl_main.h
+++ b/pnacl_main.h
@@ -189,11 +189,15 @@ static int ParseMessage(struct PP_Var message,const char **out_function,struct P
{
char *jsonstr;
if ( message.type != PP_VARTYPE_DICTIONARY )
+ {
+ PNACL_message("illegal message.%d != %d\n",message.type,PP_VARTYPE_DICTIONARY);
return(1);
+ }
struct PP_Var cmd_value = GetDictVar(message, "cmd");
*out_function = VarToCStr(cmd_value);
g_ppb_var->Release(cmd_value);
*out_params = GetDictVar(message, "args");
+ PNACL_message("Parse.(%s) cmd.(%s) cmdtype.%d out.%d\n",*out_function,jsonstr,cmd_value.type,out_params->type);
if ( (jsonstr= (char *)VarToCStr(*out_params)) != 0 )
{
PNACL_message("Parse.(%s) cmd.(%s)\n",*out_function,jsonstr);