mirror of
https://github.com/arnaucube/go-ethereum.git
synced 2026-02-28 22:16:45 +01:00
Changed 0x0 to \x00
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user