Commit cbd7f610 authored by 轻松's avatar 轻松

update evmxgo test

parent 25116b98
......@@ -538,6 +538,10 @@ func evmxgo_Exec_Burn(exec dapp.Driver, env *execEnv) (*types.Receipt, error) {
Amount: burnAmount,
}
tx, err := types.CallCreateTransaction(pty.EvmxgoX, "Burn", p4)
if err != nil {
fmt.Println("RPC_Default_Process CallCreateTransaction", "err", err)
return nil, err
}
Tx1, err := signTx(tx, PrivKeyA)
if err != nil {
......@@ -554,6 +558,10 @@ func evmxgo_Exec_Burn_Local(exec dapp.Driver, receipt *types.Receipt) (*types.Lo
Amount: burnAmount,
}
tx, err := types.CallCreateTransaction(pty.EvmxgoX, "Burn", p4)
if err != nil {
fmt.Println("RPC_Default_Process CallCreateTransaction", "err", err)
return nil, err
}
Tx1, err := signTx(tx, PrivKeyA)
if err != nil {
......
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