Commit 199c53a2 authored by libangzhu's avatar libangzhu

fix param

parent 81a7ea7e
...@@ -14,7 +14,6 @@ import ( ...@@ -14,7 +14,6 @@ import (
"crypto/ecdsa" "crypto/ecdsa"
"errors" "errors"
"fmt" "fmt"
"github.com/Workiva/go-datastructures/threadsafe/err"
"math/big" "math/big"
"regexp" "regexp"
"strings" "strings"
...@@ -556,7 +555,7 @@ func (ethRelayer *Relayer4Ethereum) handleLogWithdraw(chain33Msg *events.Chain33 ...@@ -556,7 +555,7 @@ func (ethRelayer *Relayer4Ethereum) handleLogWithdraw(chain33Msg *events.Chain33
//检查用户提币权限是否得到满足:比如是否超过累计提币额度 //检查用户提币权限是否得到满足:比如是否超过累计提币额度
if ok, err := ethRelayer.checkReceiverPermission(toAddr, chain33Msg.Amount, chain33Msg.Symbol); !ok { if ok, err := ethRelayer.checkReceiverPermission(toAddr, chain33Msg.Amount, chain33Msg.Symbol); !ok {
relayerLog.Error("handleLogWithdraw", "checkReceiverPermission,resion:", err.Error()) relayerLog.Error("handleLogWithdraw", "checkReceiverPermission,reason", err)
return return
} }
......
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