mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 13:07:17 +00:00
f76736e14a
- Added a new method and type for contract transactions. - Added functions to emit fallback events from contract transactions. - Added GetLogs request generator - Added tests for GetLogs request generator
43 lines
1.3 KiB
Go
43 lines
1.3 KiB
Go
package requests
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
|
|
"github.com/ledgerwatch/erigon/cmd/devnet/models"
|
|
"github.com/ledgerwatch/erigon/cmd/rpctest/rpctest"
|
|
"github.com/ledgerwatch/erigon/common"
|
|
"github.com/ledgerwatch/erigon/core/types"
|
|
)
|
|
|
|
func GetTransactionCount(reqId int, address common.Address, blockNum models.BlockNumber) (rpctest.EthGetTransactionCount, error) {
|
|
reqGen := initialiseRequestGenerator(reqId)
|
|
var b rpctest.EthGetTransactionCount
|
|
|
|
if res := reqGen.Erigon(models.ETHGetTransactionCount, reqGen.GetTransactionCount(address, blockNum), &b); res.Err != nil {
|
|
return b, fmt.Errorf("error getting transaction count: %v", res.Err)
|
|
}
|
|
|
|
if b.Error != nil {
|
|
return b, fmt.Errorf("error populating response object: %v", b.Error)
|
|
}
|
|
|
|
return b, nil
|
|
}
|
|
|
|
func SendTransaction(reqId int, signedTx *types.Transaction) (*common.Hash, error) {
|
|
reqGen := initialiseRequestGenerator(reqId)
|
|
var b rpctest.EthSendRawTransaction
|
|
|
|
var buf bytes.Buffer
|
|
if err := (*signedTx).MarshalBinary(&buf); err != nil {
|
|
return nil, fmt.Errorf("failed to marshal binary: %v", err)
|
|
}
|
|
|
|
if res := reqGen.Erigon(models.ETHSendRawTransaction, reqGen.SendRawTransaction(buf.Bytes()), &b); res.Err != nil {
|
|
return nil, fmt.Errorf("could not make to request to eth_sendRawTransaction: %v", res.Err)
|
|
}
|
|
|
|
return &b.TxnHash, nil
|
|
}
|