The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
woop/client/client.go

14 lines
383 B

package client
import (
"harmony-benchmark/blockchain"
)
// A client represent a entity/user which send transactions and receive responses from the harmony network
type Client struct {
pendingCrossTxs map[[32]byte]*blockchain.Transaction // map of TxId to pending cross shard txs
}
func (client *Client) TransactionMessageHandler(msgPayload []byte) {
// TODO: Implement this
}