mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 13:38:35 +00:00
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
103 lines
2.3 KiB
Go
103 lines
2.3 KiB
Go
package transaction
|
|
|
|
var (
|
|
attrLookup = map[AttrUsage]string{
|
|
ContractHash: "ContractHash",
|
|
ECDH02: "ECDH02",
|
|
ECDH03: "ECDH03",
|
|
Script: "Script",
|
|
Vote: "Vote",
|
|
CertURL: "CertURL",
|
|
DescriptionURL: "DescriptionURL",
|
|
Description: "Description",
|
|
|
|
Hash1: "Hash1",
|
|
Hash2: "Hash2",
|
|
Hash3: "Hash3",
|
|
Hash4: "Hash4",
|
|
Hash5: "Hash5",
|
|
Hash6: "Hash6",
|
|
Hash7: "Hash7",
|
|
Hash8: "Hash8",
|
|
Hash9: "Hash9",
|
|
Hash10: "Hash10",
|
|
Hash11: "Hash11",
|
|
Hash12: "Hash12",
|
|
Hash13: "Hash13",
|
|
Hash14: "Hash14",
|
|
Hash15: "Hash15",
|
|
|
|
Remark: "Remark",
|
|
Remark1: "Remark1",
|
|
Remark2: "Remark2",
|
|
Remark3: "Remark3",
|
|
Remark4: "Remark4",
|
|
Remark5: "Remark5",
|
|
Remark6: "Remark6",
|
|
Remark7: "Remark7",
|
|
Remark8: "Remark8",
|
|
Remark9: "Remark9",
|
|
Remark10: "Remark10",
|
|
Remark11: "Remark11",
|
|
Remark12: "Remark12",
|
|
Remark13: "Remark13",
|
|
Remark14: "Remark14",
|
|
Remark15: "Remark15",
|
|
}
|
|
)
|
|
|
|
// AttrUsage represents the purpose of the attribute.
|
|
type AttrUsage uint8
|
|
|
|
// List of valid attribute usages.
|
|
const (
|
|
ContractHash AttrUsage = 0x00
|
|
ECDH02 AttrUsage = 0x02
|
|
ECDH03 AttrUsage = 0x03
|
|
Script AttrUsage = 0x20
|
|
Vote AttrUsage = 0x30
|
|
CertURL AttrUsage = 0x80
|
|
DescriptionURL AttrUsage = 0x81
|
|
Description AttrUsage = 0x90
|
|
|
|
Hash1 AttrUsage = 0xa1
|
|
Hash2 AttrUsage = 0xa2
|
|
Hash3 AttrUsage = 0xa3
|
|
Hash4 AttrUsage = 0xa4
|
|
Hash5 AttrUsage = 0xa5
|
|
Hash6 AttrUsage = 0xa6
|
|
Hash7 AttrUsage = 0xa7
|
|
Hash8 AttrUsage = 0xa8
|
|
Hash9 AttrUsage = 0xa9
|
|
Hash10 AttrUsage = 0xaa
|
|
Hash11 AttrUsage = 0xab
|
|
Hash12 AttrUsage = 0xac
|
|
Hash13 AttrUsage = 0xad
|
|
Hash14 AttrUsage = 0xae
|
|
Hash15 AttrUsage = 0xaf
|
|
|
|
Remark AttrUsage = 0xf0
|
|
Remark1 AttrUsage = 0xf1
|
|
Remark2 AttrUsage = 0xf2
|
|
Remark3 AttrUsage = 0xf3
|
|
Remark4 AttrUsage = 0xf4
|
|
Remark5 AttrUsage = 0xf5
|
|
Remark6 AttrUsage = 0xf6
|
|
Remark7 AttrUsage = 0xf7
|
|
Remark8 AttrUsage = 0xf8
|
|
Remark9 AttrUsage = 0xf9
|
|
Remark10 AttrUsage = 0xfa
|
|
Remark11 AttrUsage = 0xfb
|
|
Remark12 AttrUsage = 0xfc
|
|
Remark13 AttrUsage = 0xfd
|
|
Remark14 AttrUsage = 0xfe
|
|
Remark15 AttrUsage = 0xff
|
|
)
|
|
|
|
// String implements the stringer interface.
|
|
func (attr AttrUsage) String() string {
|
|
if v, ok := attrLookup[attr]; ok {
|
|
return v
|
|
}
|
|
return "Unkown Attribute"
|
|
}
|