aboutsummaryrefslogblamecommitdiffstats
path: root/tests/gen_difficultytest.go
blob: 33f0e63061b50bbc1b702883d22856455525561d (plain) (tree)
1
2
3
4
5
6
7
8
9
10







                                                          

                                                       



                                        
                                

                                                       
                                                                                 

                                                                                  
                                                                                  



                                                                                    
                                                                    

                                                                          
                                                                      




                                                                            
                                      

                                                            
                                                                                 

                                                                                  
                                                                                  







                                                                                    
                                                                







                                                                     
                                                                  








                                                                       
// Code generated by github.com/fjl/gencodec. DO NOT EDIT.

package tests

import (
    "encoding/json"
    "math/big"

    "github.com/dexon-foundation/dexon/common"
    "github.com/dexon-foundation/dexon/common/math"
)

var _ = (*difficultyTestMarshaling)(nil)

// MarshalJSON marshals as JSON.
func (d DifficultyTest) MarshalJSON() ([]byte, error) {
    type DifficultyTest struct {
        ParentTimestamp    math.HexOrDecimal64   `json:"parentTimestamp"`
        ParentDifficulty   *math.HexOrDecimal256 `json:"parentDifficulty"`
        UncleHash          common.Hash           `json:"parentUncles"`
        CurrentTimestamp   math.HexOrDecimal64   `json:"currentTimestamp"`
        CurrentBlockNumber math.HexOrDecimal64   `json:"currentBlockNumber"`
        CurrentDifficulty  *math.HexOrDecimal256 `json:"currentDifficulty"`
    }
    var enc DifficultyTest
    enc.ParentTimestamp = math.HexOrDecimal64(d.ParentTimestamp)
    enc.ParentDifficulty = (*math.HexOrDecimal256)(d.ParentDifficulty)
    enc.UncleHash = d.UncleHash
    enc.CurrentTimestamp = math.HexOrDecimal64(d.CurrentTimestamp)
    enc.CurrentBlockNumber = math.HexOrDecimal64(d.CurrentBlockNumber)
    enc.CurrentDifficulty = (*math.HexOrDecimal256)(d.CurrentDifficulty)
    return json.Marshal(&enc)
}

// UnmarshalJSON unmarshals from JSON.
func (d *DifficultyTest) UnmarshalJSON(input []byte) error {
    type DifficultyTest struct {
        ParentTimestamp    *math.HexOrDecimal64  `json:"parentTimestamp"`
        ParentDifficulty   *math.HexOrDecimal256 `json:"parentDifficulty"`
        UncleHash          *common.Hash          `json:"parentUncles"`
        CurrentTimestamp   *math.HexOrDecimal64  `json:"currentTimestamp"`
        CurrentBlockNumber *math.HexOrDecimal64  `json:"currentBlockNumber"`
        CurrentDifficulty  *math.HexOrDecimal256 `json:"currentDifficulty"`
    }
    var dec DifficultyTest
    if err := json.Unmarshal(input, &dec); err != nil {
        return err
    }
    if dec.ParentTimestamp != nil {
        d.ParentTimestamp = uint64(*dec.ParentTimestamp)
    }
    if dec.ParentDifficulty != nil {
        d.ParentDifficulty = (*big.Int)(dec.ParentDifficulty)
    }
    if dec.UncleHash != nil {
        d.UncleHash = *dec.UncleHash
    }
    if dec.CurrentTimestamp != nil {
        d.CurrentTimestamp = uint64(*dec.CurrentTimestamp)
    }
    if dec.CurrentBlockNumber != nil {
        d.CurrentBlockNumber = uint64(*dec.CurrentBlockNumber)
    }
    if dec.CurrentDifficulty != nil {
        d.CurrentDifficulty = (*big.Int)(dec.CurrentDifficulty)
    }
    return nil
}