diff options
author | obscuren <obscuren@obscura.com> | 2013-12-28 09:23:28 +0800 |
---|---|---|
committer | obscuren <obscuren@obscura.com> | 2013-12-28 09:23:28 +0800 |
commit | d6460f3de171f018860ea9c3f4a69536c8ef82ac (patch) | |
tree | b8863931ba88e6a4a65eb5e8f3a9b72669991551 | |
parent | 8391d3d4f49b55ea719e5524306a0dcf90d6e7ab (diff) | |
download | dexon-d6460f3de171f018860ea9c3f4a69536c8ef82ac.tar.gz dexon-d6460f3de171f018860ea9c3f4a69536c8ef82ac.tar.zst dexon-d6460f3de171f018860ea9c3f4a69536c8ef82ac.zip |
Changed 0x0 to \x00
-rw-r--r-- | block_manager.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block_manager.go b/block_manager.go index 4f0ec1cdb..80b30eff6 100644 --- a/block_manager.go +++ b/block_manager.go @@ -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 |