Skip to content

Commit 4684e78

Browse files
ttblackttblack
ttblack
authored andcommitted
fixed IsRechargeTx nil point
1 parent 04cd2a9 commit 4684e78

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

crosschain/recharge.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ import (
66
"github.com/elastos/Elastos.ELA.SideChain.ESC/spv"
77
)
88

9-
func IsRechargeTx(tx *types.Transaction) (bool, ) {
9+
func IsRechargeTx(tx *types.Transaction) bool {
10+
if tx == nil || tx.To() == nil {
11+
return false
12+
}
1013
var empty common.Address
1114
if *tx.To() == empty {
1215
if len(tx.Data()) == 32 {

0 commit comments

Comments
 (0)