validator

package
v0.0.0-...-8c7b936 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 15, 2024 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

View Source
const (
	Addr_Length uint8 = 4
	Data_Length uint8 = 4
)

A transaction is defined as a json including:

{
	tx_type uint32
	from	[20]byte
	to		[20]byte
	value	uint32
	data	[20]byte
}

e.g., sent by user as: "type=0,from=ABCD,to=DCBA,value=0,data=NONE"

View Source
const (
	Type_Num              uint8 = 5
	IntraShard_TX         uint8 = 0
	InterShard_TX_Verify  uint8 = 1
	InterShard_TX_Execute uint8 = 2
	InterShard_TX_Commit  uint8 = 3
	InterShard_TX_Update  uint8 = 4
)

Variables

This section is empty.

Functions

func AddOperation

func AddOperation(add []byte, value uint32) []byte

func Deserilization

func Deserilization(tx hctypes.TransactionType) (uint32, []byte)

func GetTxType

func GetTxType(_tx []byte) uint8

func ResolveTx

func ResolveTx(_tx []byte) (uint32, hctypes.TransactionType)

func Serilization

func Serilization(tx []byte) (uint32, hctypes.TransactionType)

func SubOperation

func SubOperation(minuend []byte, value uint32) []byte

Types

type BlockchainState

type BlockchainState struct {
	Database dbm.DB
	Size     int64
	Height   int64
	AppHash  []byte
}

func NewBlockchainState

func NewBlockchainState(name string, dir string) *BlockchainState

type ValidatorInterface

type ValidatorInterface struct {
	BCState *BlockchainState

	Shard_id uint8
	Leader   bool

	Byzantine    uint8 // 0: honest; 1: byzantine
	Attack_shard uint8 // the attacker's shard
	Node_id      uint8 // used to construct different front-running tx
	// contains filtered or unexported fields
}

func NewValidatorInterface

func NewValidatorInterface(bcstate *BlockchainState, shard_num uint8, shard_id uint8, leader bool, in_addr hctypes.HaechiAddress, out_addrs []hctypes.HaechiAddress, attacks ...uint8) *ValidatorInterface

func (*ValidatorInterface) DeliverAttackTx

func (nw *ValidatorInterface) DeliverAttackTx(tx []byte, shardid uint8)

func (*ValidatorInterface) DeliverCommitTx

func (nw *ValidatorInterface) DeliverCommitTx(tx []byte, shardid uint8)

func (*ValidatorInterface) DeliverExecutionTx

func (nw *ValidatorInterface) DeliverExecutionTx(tx []byte, shardid uint8)

func (*ValidatorInterface) DeliverUpdateTx

func (nw *ValidatorInterface) DeliverUpdateTx(tx []byte, shardid uint8)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL