042f1142c0
- Fetching headers from Kovan requires custom type without mixHash/Nonce
47 lines
1.8 KiB
Go
47 lines
1.8 KiB
Go
package integration
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/ethclient"
|
|
"github.com/ethereum/go-ethereum/rpc"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/geth"
|
|
"github.com/vulcanize/vulcanizedb/pkg/geth/client"
|
|
vRpc "github.com/vulcanize/vulcanizedb/pkg/geth/converters/rpc"
|
|
"github.com/vulcanize/vulcanizedb/pkg/geth/node"
|
|
"github.com/vulcanize/vulcanizedb/test_config"
|
|
)
|
|
|
|
var _ = Describe("Rewards calculations", func() {
|
|
|
|
It("calculates a block reward for a real block", func() {
|
|
rawRpcClient, err := rpc.Dial(test_config.InfuraClient.IPCPath)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
rpcClient := client.NewRpcClient(rawRpcClient, test_config.InfuraClient.IPCPath)
|
|
ethClient := ethclient.NewClient(rawRpcClient)
|
|
blockChainClient := client.NewEthClient(ethClient)
|
|
node := node.MakeNode(rpcClient)
|
|
transactionConverter := vRpc.NewRpcTransactionConverter(ethClient)
|
|
blockChain := geth.NewBlockChain(blockChainClient, rpcClient, node, transactionConverter)
|
|
block, err := blockChain.GetBlockByNumber(1071819)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(block.Reward).To(Equal(5.31355))
|
|
})
|
|
|
|
It("calculates an uncle reward for a real block", func() {
|
|
rawRpcClient, err := rpc.Dial(test_config.InfuraClient.IPCPath)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
rpcClient := client.NewRpcClient(rawRpcClient, test_config.InfuraClient.IPCPath)
|
|
ethClient := ethclient.NewClient(rawRpcClient)
|
|
blockChainClient := client.NewEthClient(ethClient)
|
|
node := node.MakeNode(rpcClient)
|
|
transactionConverter := vRpc.NewRpcTransactionConverter(ethClient)
|
|
blockChain := geth.NewBlockChain(blockChainClient, rpcClient, node, transactionConverter)
|
|
block, err := blockChain.GetBlockByNumber(1071819)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(block.UnclesReward).To(Equal(6.875))
|
|
})
|
|
|
|
})
|