2018-07-29 01:18:56 +00:00
|
|
|
// Package legacyutil exists to convert Ethererum 2.0 types to go-ethereum or
|
2018-07-17 18:39:04 +00:00
|
|
|
// Ethereum 1.0 types.
|
|
|
|
package legacyutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/big"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
gethTypes "github.com/ethereum/go-ethereum/core/types"
|
2018-07-20 21:31:26 +00:00
|
|
|
pb "github.com/prysmaticlabs/prysm/proto/sharding/v1"
|
2018-07-17 18:39:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// TransformTransaction of proto transaction to geth's transction.
|
|
|
|
func TransformTransaction(t *pb.Transaction) *gethTypes.Transaction {
|
|
|
|
return gethTypes.NewTransaction(
|
|
|
|
t.Nonce,
|
|
|
|
common.BytesToAddress(t.Recipient),
|
|
|
|
big.NewInt(0).SetUint64(t.Value),
|
|
|
|
t.GasLimit,
|
|
|
|
big.NewInt(0).SetUint64(t.GasPrice),
|
|
|
|
t.Input,
|
|
|
|
)
|
|
|
|
}
|