Commit 453fd14c authored by suyanlong's avatar suyanlong

fix bug

parent 17ced309
...@@ -9,6 +9,7 @@ import ( ...@@ -9,6 +9,7 @@ import (
"math/rand" "math/rand"
"os" "os"
"path/filepath" "path/filepath"
"strings"
"time" "time"
"github.com/33cn/chain33/common" "github.com/33cn/chain33/common"
...@@ -483,7 +484,7 @@ func (p *Paracross) lockCrossEvent(lock *paracorssTypes.CrossAssetTransfer, tx * ...@@ -483,7 +484,7 @@ func (p *Paracross) lockCrossEvent(lock *paracorssTypes.CrossAssetTransfer, tx *
EventType: types.EventType_Lock, EventType: types.EventType_Lock,
LockAddress: addr, // 用户地址 LockAddress: addr, // 用户地址
LockAmount: lock.Amount, LockAmount: lock.Amount,
Symbol: types.Symbol(lock.AssetSymbol), Symbol: types.Symbol(strings.ToUpper(lock.AssetSymbol)),
Extra: []byte(lock.Note), Extra: []byte(lock.Note),
Height: height, Height: height,
Nonce: tx.Nonce, Nonce: tx.Nonce,
......
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