1355271011
- Only syncs block headers (excludes block bodies, transactions, receipts, and logs) - Modifies validation window to include the most recent block - Isolates validation window to the variable defined in the cmd directory (blocks have a separate variable defined in the block_repository for determining when to set a block as final)
27 lines
769 B
Go
27 lines
769 B
Go
package integration
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
"github.com/vulcanize/vulcanizedb/pkg/geth"
|
|
"github.com/vulcanize/vulcanizedb/test_config"
|
|
)
|
|
|
|
var _ = Describe("Rewards calculations", func() {
|
|
|
|
It("calculates a block reward for a real block", func() {
|
|
blockchain := geth.NewBlockChain(test_config.InfuraClient.IPCPath)
|
|
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() {
|
|
blockchain := geth.NewBlockChain(test_config.InfuraClient.IPCPath)
|
|
block, err := blockchain.GetBlockByNumber(1071819)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(block.UnclesReward).To(Equal(6.875))
|
|
})
|
|
|
|
})
|