forked from TrueCloudLab/neoneo-go
095653af23
* Added new config attributes: 'SecondsPerBlock','LowPriorityThreshold' * Added new files: * Added new method: CompareTo * Fixed empty Slice case * Added new methods: LessThan, GreaterThan, Equal, CompareTo * Added new method: InputIntersection * Added MaxTransactionSize, GroupOutputByAssetID * Added ned method: ScriptHash * Added new method: IsDoubleSpend * Refactor blockchainer, Added Feer interface, Verify and GetMemPool method * 1) Added MemPool 2) Added new methods to satisfy the blockchainer interface: IsLowPriority, Verify, GetMemPool * Added new methods: RelayTxn, RelayDirectly * Fixed tests * Implemented RPC server method sendrawtransaction * Refactor getrawtransaction, sendrawtransaction in separate methods * Moved 'secondsPerBlock' to config file * Implemented Kim suggestions: 1) Fixed data race issues 2) refactor Verify method 3) Get rid of unused InputIntersection method due to refactoring Verify method 4) Fixed bug in https://github.com/CityOfZion/neo-go/pull/174#discussion_r264108135 5) minor simplications of the code * Fixed minor issues related to 1) space 2) getter methods do not need pointer on the receiver 3) error message 4) refactoring CompareTo method in uint256.go * Fixed small issues * Use sync.RWMutex instead of sync.Mutex * Refined (R)Lock/(R)Unlock * return error instead of bool in Verify methods
83 lines
2.1 KiB
Go
83 lines
2.1 KiB
Go
package util
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/hex"
|
|
"encoding/json"
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
const uint256Size = 32
|
|
|
|
// Uint256 is a 32 byte long unsigned integer.
|
|
type Uint256 [uint256Size]uint8
|
|
|
|
// Uint256DecodeString attempts to decode the given string into an Uint256.
|
|
func Uint256DecodeString(s string) (u Uint256, err error) {
|
|
if len(s) != uint256Size*2 {
|
|
return u, fmt.Errorf("expected string size of %d got %d", uint256Size*2, len(s))
|
|
}
|
|
b, err := hex.DecodeString(s)
|
|
if err != nil {
|
|
return u, err
|
|
}
|
|
return Uint256DecodeBytes(b)
|
|
}
|
|
|
|
// Uint256DecodeBytes attempts to decode the given string into an Uint256.
|
|
func Uint256DecodeBytes(b []byte) (u Uint256, err error) {
|
|
b = ArrayReverse(b)
|
|
if len(b) != uint256Size {
|
|
return u, fmt.Errorf("expected []byte of size %d got %d", uint256Size, len(b))
|
|
}
|
|
copy(u[:], b)
|
|
return u, nil
|
|
}
|
|
|
|
// Bytes returns a byte slice representation of u.
|
|
func (u Uint256) Bytes() []byte {
|
|
return u[:]
|
|
}
|
|
|
|
// BytesReverse return a reversed byte representation of u.
|
|
func (u Uint256) BytesReverse() []byte {
|
|
return ArrayReverse(u.Bytes())
|
|
}
|
|
|
|
// Equals returns true if both Uint256 values are the same.
|
|
func (u Uint256) Equals(other Uint256) bool {
|
|
return u == other
|
|
}
|
|
|
|
// String implements the stringer interface.
|
|
func (u Uint256) String() string {
|
|
return hex.EncodeToString(ArrayReverse(u.Bytes()))
|
|
}
|
|
|
|
// UnmarshalJSON implements the json unmarshaller interface.
|
|
func (u *Uint256) UnmarshalJSON(data []byte) (err error) {
|
|
var js string
|
|
if err = json.Unmarshal(data, &js); err != nil {
|
|
return err
|
|
}
|
|
js = strings.TrimPrefix(js, "0x")
|
|
*u, err = Uint256DecodeString(js)
|
|
return err
|
|
}
|
|
|
|
// Size returns the lenght of the bytes representation of Uint256
|
|
func (u Uint256) Size() int {
|
|
return uint256Size
|
|
}
|
|
|
|
// MarshalJSON implements the json marshaller interface.
|
|
func (u Uint256) MarshalJSON() ([]byte, error) {
|
|
return []byte(`"0x` + u.String() + `"`), nil
|
|
}
|
|
|
|
// CompareTo compares two Uint256 with each other. Possible output: 1, -1, 0
|
|
// 1 implies u > other.
|
|
// -1 implies u < other.
|
|
// 0 implies u = other.
|
|
func (u Uint256) CompareTo(other Uint256) int { return bytes.Compare(u[:], other[:]) }
|