mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
Changed 0x0 to \x00
This commit is contained in:
parent
8391d3d4f4
commit
d6460f3de1
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue