2018-02-04 19:54:51 +00:00
|
|
|
package util
|
|
|
|
|
|
|
|
import (
|
Implement rpc server method: sendrawtransaction (#174)
* 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
2019-03-20 12:30:05 +00:00
|
|
|
"bytes"
|
2018-02-04 19:54:51 +00:00
|
|
|
"encoding/hex"
|
2018-03-23 20:36:59 +00:00
|
|
|
"encoding/json"
|
2018-02-04 19:54:51 +00:00
|
|
|
"fmt"
|
2018-05-09 05:20:16 +00:00
|
|
|
"strings"
|
2018-02-04 19:54:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const uint256Size = 32
|
|
|
|
|
|
|
|
// Uint256 is a 32 byte long unsigned integer.
|
|
|
|
type Uint256 [uint256Size]uint8
|
|
|
|
|
2019-08-22 17:33:58 +00:00
|
|
|
// Uint256DecodeReverseString attempts to decode the given string (in LE representation) into an Uint256.
|
|
|
|
func Uint256DecodeReverseString(s string) (u Uint256, err error) {
|
2018-02-04 19:54:51 +00:00
|
|
|
if len(s) != uint256Size*2 {
|
2018-03-02 15:24:09 +00:00
|
|
|
return u, fmt.Errorf("expected string size of %d got %d", uint256Size*2, len(s))
|
2018-02-04 19:54:51 +00:00
|
|
|
}
|
|
|
|
b, err := hex.DecodeString(s)
|
|
|
|
if err != nil {
|
2018-03-02 15:24:09 +00:00
|
|
|
return u, err
|
2018-02-04 19:54:51 +00:00
|
|
|
}
|
2019-08-22 17:33:58 +00:00
|
|
|
return Uint256DecodeReverseBytes(b)
|
2018-02-04 19:54:51 +00:00
|
|
|
}
|
|
|
|
|
2019-08-23 14:02:42 +00:00
|
|
|
// Uint256DecodeBytes attempts to decode the given string (in BE representation) into an Uint256.
|
|
|
|
func Uint256DecodeBytes(b []byte) (u Uint256, err error) {
|
2018-02-04 19:54:51 +00:00
|
|
|
if len(b) != uint256Size {
|
2018-03-02 15:24:09 +00:00
|
|
|
return u, fmt.Errorf("expected []byte of size %d got %d", uint256Size, len(b))
|
2018-02-04 19:54:51 +00:00
|
|
|
}
|
2019-01-25 11:20:35 +00:00
|
|
|
copy(u[:], b)
|
2018-03-02 15:24:09 +00:00
|
|
|
return u, nil
|
2018-02-04 19:54:51 +00:00
|
|
|
}
|
|
|
|
|
2019-08-23 14:02:42 +00:00
|
|
|
// Uint256DecodeReverseBytes attempts to decode the given string (in LE representation) into an Uint256.
|
|
|
|
func Uint256DecodeReverseBytes(b []byte) (u Uint256, err error) {
|
|
|
|
b = ArrayReverse(b)
|
|
|
|
return Uint256DecodeBytes(b)
|
|
|
|
}
|
|
|
|
|
2018-03-09 15:55:25 +00:00
|
|
|
// Bytes returns a byte slice representation of u.
|
2018-03-02 15:24:09 +00:00
|
|
|
func (u Uint256) Bytes() []byte {
|
2018-11-26 15:56:45 +00:00
|
|
|
return u[:]
|
2018-02-04 19:54:51 +00:00
|
|
|
}
|
|
|
|
|
2019-08-22 17:33:58 +00:00
|
|
|
// Reverse reverses the Uint256 object
|
|
|
|
func (u Uint256) Reverse() Uint256 {
|
|
|
|
res, _ := Uint256DecodeReverseBytes(u.Bytes())
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
2018-03-02 15:24:09 +00:00
|
|
|
// BytesReverse return a reversed byte representation of u.
|
|
|
|
func (u Uint256) BytesReverse() []byte {
|
|
|
|
return ArrayReverse(u.Bytes())
|
2018-02-04 19:54:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Equals returns true if both Uint256 values are the same.
|
|
|
|
func (u Uint256) Equals(other Uint256) bool {
|
2018-11-26 15:56:45 +00:00
|
|
|
return u == other
|
2018-02-04 19:54:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// String implements the stringer interface.
|
|
|
|
func (u Uint256) String() string {
|
2019-08-22 17:33:58 +00:00
|
|
|
return hex.EncodeToString(u.Bytes())
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReverseString produces string representation of Uint256 with LE byte order.
|
|
|
|
func (u Uint256) ReverseString() string {
|
|
|
|
return hex.EncodeToString(u.BytesReverse())
|
2018-02-04 19:54:51 +00:00
|
|
|
}
|
2018-03-23 20:36:59 +00:00
|
|
|
|
2018-05-09 05:20:16 +00:00
|
|
|
// 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
|
|
|
|
}
|
2019-02-19 13:22:33 +00:00
|
|
|
js = strings.TrimPrefix(js, "0x")
|
2019-08-22 17:33:58 +00:00
|
|
|
*u, err = Uint256DecodeReverseString(js)
|
2018-05-09 05:20:16 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-09-03 15:20:05 +00:00
|
|
|
// Size returns the length of the bytes representation of Uint256
|
2019-02-20 17:39:32 +00:00
|
|
|
func (u Uint256) Size() int {
|
|
|
|
return uint256Size
|
|
|
|
}
|
|
|
|
|
2018-03-23 20:36:59 +00:00
|
|
|
// MarshalJSON implements the json marshaller interface.
|
|
|
|
func (u Uint256) MarshalJSON() ([]byte, error) {
|
2019-08-22 17:33:58 +00:00
|
|
|
return []byte(`"0x` + u.ReverseString() + `"`), nil
|
2018-03-23 20:36:59 +00:00
|
|
|
}
|
Implement rpc server method: sendrawtransaction (#174)
* 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
2019-03-20 12:30:05 +00:00
|
|
|
|
|
|
|
// 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[:]) }
|