erigon-pulse/cmd/devnet/commands/tx.go
Leonard Chinonso 726ed8462d
Setup calls for rpc testing (#5661)
Setup calls for rpc testing
- Added call requests for testing rpc calls
- Added new methods getBalance and txPool content
2022-10-11 13:34:32 +01:00

14 lines
291 B
Go

package commands
import (
"fmt"
"github.com/ledgerwatch/erigon/cmd/devnet/models"
"github.com/ledgerwatch/erigon/cmd/devnet/requests"
)
func callTxPoolContent() {
if err := requests.TxpoolContent(models.ReqId); err != nil {
fmt.Printf("error getting txpool content: %v\n", err)
}
}