Commit d6460f3d authored by obscuren's avatar obscuren

Changed 0x0 to \x00

parent 8391d3d4
......@@ -42,7 +42,7 @@ func (bm *BlockManager) ProcessBlock(block *Block) error {
}
func (bm *BlockManager) ProcessTransaction(tx *Transaction, lockChan chan bool) {
if tx.recipient == 0x0 {
if tx.recipient == "\x00" {
bm.vm.RunTransaction(tx, func(opType OpType) bool {
// TODO calculate fees
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment