@@ -213,6 +213,8 @@ func (st *StateTransition) TransitionDb() (ret []byte, usedGas uint64, failed bo
213
213
sender := vm .AccountRef (msg .From ())
214
214
contractCreation := msg .To () == nil
215
215
isRefundWithdrawTx := false
216
+ var recharges spv.RechargeDatas
217
+ var totalFee * big.Int
216
218
217
219
//recharge tx and widthdraw refund
218
220
if msg .To () != nil && * msg .To () == blackaddr {
@@ -272,46 +274,52 @@ func (st *StateTransition) TransitionDb() (ret []byte, usedGas uint64, failed bo
272
274
txhash = hexutil .Encode (msg .Data ())
273
275
}
274
276
if len (msg .Data ()) == 32 || isSmallRechargeTx {
275
- fee , toaddr , output := spv .FindOutputFeeAndaddressByTxHash (txhash )
276
- if toaddr != blackaddr {
277
- completetxhash := evm .StateDB .GetState (blackaddr , common .HexToHash (txhash ))
278
- if (completetxhash == emptyHash ) && output .Cmp (fee ) > 0 {
279
- st .state .AddBalance (st .msg .From (), new (big.Int ).SetUint64 (evm .ChainConfig ().PassBalance ))
280
- defer func () {
281
- ethfee := new (big.Int ).Mul (new (big.Int ).SetUint64 (st .gasUsed ()), st .gasPrice )
282
- if fee .Cmp (new (big.Int )) <= 0 || fee .Cmp (ethfee ) < 0 || st .state .GetBalance (toaddr ).Uint64 () < 0 || vmerr != nil {
283
- ret = nil
284
- usedGas = 0
285
- failed = false
286
- if err == nil {
287
- log .Error ("fee is not enough :" , "fee" , fee .String (), "need" , ethfee .String (), "vmerr" , vmerr )
288
- err = ErrGasLimitReached
289
- }
290
- evm .StateDB .RevertToSnapshot (snapshot )
291
- return
292
- } else {
293
- st .state .AddBalance (st .msg .From (), fee )
294
- }
277
+ recharges , totalFee , err = spv .GetRechargeDataByTxhash (txhash )
278
+ if err != nil || len (recharges ) <= 0 {
279
+ log .Error ("recharge data error" , "error" , err )
280
+ return nil , 0 , false , ErrElaToEthAddress
281
+ }
282
+ completetxhash := evm .StateDB .GetState (blackaddr , common .HexToHash (txhash ))
283
+ if completetxhash != emptyHash {
284
+ return nil , 0 , false , ErrMainTxHashPresence
285
+ }
286
+ for _ , recharge := range recharges {
287
+ if recharge .TargetAddress == blackaddr || recharge .TargetAmount .Cmp (recharge .Fee ) < 0 {
288
+ log .Error ("recharge data error " , "fee" , recharge .Fee .String (), "TargetAddress" , recharge .TargetAddress .String (), "TargetAmount" , recharge .TargetAmount .String (), "isSmallRechargeTx" , isSmallRechargeTx )
289
+ return nil , 0 , false , ErrElaToEthAddress
290
+ }
291
+ }
295
292
296
- if st .state .GetBalance (st .msg .From ()).Cmp (new (big.Int ).SetUint64 (evm .ChainConfig ().PassBalance )) < 0 {
297
- ret = nil
298
- usedGas = 0
299
- failed = false
300
- if err == nil {
301
- err = ErrGasLimitReached
302
- }
303
- evm .StateDB .RevertToSnapshot (snapshot )
304
- } else {
305
- st .state .SubBalance (st .msg .From (), new (big.Int ).SetUint64 (evm .ChainConfig ().PassBalance ))
293
+ st .state .AddBalance (st .msg .From (), new (big.Int ).SetUint64 (evm .ChainConfig ().PassBalance ))
294
+ defer func () {
295
+ ethfee := new (big.Int ).Mul (new (big.Int ).SetUint64 (st .gasUsed ()), st .gasPrice )
296
+ for _ , recharge := range recharges {
297
+ if recharge .Fee .Cmp (new (big.Int )) <= 0 || st .state .GetBalance (recharge .TargetAddress ).Uint64 () < 0 {
298
+ ret = nil
299
+ usedGas = 0
300
+ failed = false
301
+ if err == nil {
302
+ log .Error ("ErrGasLimitReached 1111" , "totalFee" , totalFee .String (), "ethFee" , ethfee .String (), " st.state.GetBalance(recharge.TargetAddress).Uint64()" , st .state .GetBalance (recharge .TargetAddress ).Uint64 (), "targetAddress" , recharge .TargetAddress )
303
+ err = ErrGasLimitReached
306
304
}
307
- }()
305
+ evm .StateDB .RevertToSnapshot (snapshot )
306
+ return
307
+ }
308
+ }
309
+ st .state .AddBalance (st .msg .From (), totalFee )
310
+ if st .state .GetBalance (st .msg .From ()).Cmp (new (big.Int ).SetUint64 (evm .ChainConfig ().PassBalance )) < 0 || totalFee .Cmp (ethfee ) < 0 {
311
+ ret = nil
312
+ usedGas = 0
313
+ failed = false
314
+ if err == nil {
315
+ log .Error ("ErrGasLimitReached 22222" , "totalFee" , totalFee .String (), "ethFee" , ethfee .String (), " st.state.GetBalance(st.msg.From())" , st .state .GetBalance (st .msg .From ()))
316
+ err = ErrGasLimitReached
317
+ }
318
+ evm .StateDB .RevertToSnapshot (snapshot )
308
319
} else {
309
- return nil , 0 , false , ErrMainTxHashPresence
320
+ st . state . SubBalance ( st . msg . From (), new (big. Int ). SetUint64 ( evm . ChainConfig (). PassBalance ))
310
321
}
311
- } else {
312
- log .Info ("recharge failed " , "fee" , fee .String (), "toaddr" , toaddr , "output" , output , "isSmallRechargeTx" , isSmallRechargeTx )
313
- return nil , 0 , false , ErrElaToEthAddress
314
- }
322
+ }()
315
323
}
316
324
}
317
325
} else if contractCreation { //deploy contract
@@ -356,7 +364,14 @@ func (st *StateTransition) TransitionDb() (ret []byte, usedGas uint64, failed bo
356
364
} else {
357
365
// Increment the nonce for the next transaction
358
366
st .state .SetNonce (msg .From (), st .state .GetNonce (sender .Address ())+ 1 )
359
- ret , st .gas , vmerr = evm .Call (sender , st .to (), st .data , st .gas , st .value )
367
+ if len (recharges ) > 0 {
368
+ for _ , recharge := range recharges {
369
+ ret , st .gas , vmerr = evm .Call (sender , st .to (), st .data , st .gas , st .value , recharge )
370
+ }
371
+ } else {
372
+ ret , st .gas , vmerr = evm .Call (sender , st .to (), st .data , st .gas , st .value , nil )
373
+ }
374
+
360
375
}
361
376
if vmerr != nil {
362
377
log .Info ("VM returned with error" , "err" , vmerr , "ret" , string (ret ))
0 commit comments