forked from TrueCloudLab/neoneo-go
19201dcf52
* Added utility function GetVarSize * 1) Added Size method: this implied that Fixed8 implements now the serializable interface. 2) Added few arithmetic operation (Add, Sub, div): this will be used to calculated networkfeeand feePerByte. Changed return value of the Value() method to int instead of int64. Modified fixed8_test accordingly. * Implemented Size or MarshalJSON method. - Structs accepting the Size method implement the serializable interface. - Structs accepting the MarshalJSON method implements the customized json marshaller interface. * Added fee calculation * Implemented rcp server method GetRawTransaction * Updated Tests * Fixed: 1) NewFixed8 will accept as input int64 2) race condition affecting configDeafault, blockchainDefault * Simplified Size calculation * 1) Removed global variable blockchainDefault, configDefault 2) Extended Blockchainer interface to include the methods: References, FeePerByte, SystemFee, NetworkFee 3) Deleted fee_test.go, fee.go. Moved corresponding methods to blockchain_test.go and blockchain.go respectively 4) Amended tx_raw_output.go * Simplified GetVarSize Method * Replaced ValueAtAndType with ValueWithType * Cosmetic changes + Added test case getrawtransaction_7 * Clean up Print statement * Filled up keys * Aligned verbose logic with the C#-neo implementation * Implemented @Kim requests Refactor server_test.go * Small fixes * Fixed verbose logic Added more tests Cosmetic changes * Replaced assert.NoError with require.NoError * Fixed tests by adding context.Background() as argument * Fixed tests
76 lines
1.8 KiB
Go
76 lines
1.8 KiB
Go
package util
|
|
|
|
import (
|
|
"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
|
|
}
|