Aggsig Serialization (#618)

* changing ser of aggsig signature
* serialise Signature as raw 64 bytes
* remove compact sig
* remove to_compact
* remove unused import
This commit is contained in:
Yeastplume
2018-01-15 20:45:26 +00:00
committed by Ignotus Peverell
parent 41d4978d46
commit 9704cc35bd
9 changed files with 58 additions and 35 deletions
+1 -1
View File
@@ -290,7 +290,7 @@ impl TxKernelPrintable {
fee: k.fee,
lock_height: k.lock_height,
excess: util::to_hex(k.excess.0.to_vec()),
excess_sig: util::to_hex(k.excess_sig.to_vec()),
excess_sig: util::to_hex(k.excess_sig.to_raw_data().to_vec()),
}
}
}