neoneo-go/pkg
Anna Shaleva 8e29a200c0 rpc: adjust NEP5 transfers amount JSON marshalling
This committ fixes the difference between Go and C# nodes:

Go:
```
{
   "jsonrpc" : "2.0",
   "result" : {
      "received" : [
         {
            "blockindex" : 65,
            "txhash" : "0x394f851cf167d664c0dbcf98e2e64f2da23022fd7943dcb914492529de20a945",
            "transfernotifyindex" : 0,
            "timestamp" : 1605535020126,
            "transferaddress" : "NUVPACMnKFhpuHjsRjhUvXz1XhqfGZYVtY",
            "amount" : "29999999",
            "assethash" : "0x668e0c1f9d7b70a99dd9e06eadd4c784d641afbc"
         }
      ],
      "address" : "NULwe3UAHckN2fzNdcVg31tDiaYtMDwANt",
      "sent" : []
   },
   "id" : 1
}
```

C#:
```
{
   "id" : 1,
   "result" : {
      "address" : "NULwe3UAHckN2fzNdcVg31tDiaYtMDwANt",
      "sent" : [],
      "received" : [
	 {
	    "transferaddress" : "NUVPACMnKFhpuHjsRjhUvXz1XhqfGZYVtY",
	    "timestamp" : 1605535020126,
	    "txhash" : "0x394f851cf167d664c0dbcf98e2e64f2da23022fd7943dcb914492529de20a945",
	    "blockindex" : 65,
	    "transfernotifyindex" : 0,
	    "amount" : "2999999900000000",
	    "assethash" : "0x668e0c1f9d7b70a99dd9e06eadd4c784d641afbc"
	 }
      ]
   },
   "jsonrpc" : "2.0"
}
```
2020-11-17 15:50:19 +03:00
..
compiler smartcontract: remove contract features 2020-11-13 21:26:23 +03:00
config core/config: move MaxTraceableBlocks to configuration file 2020-11-06 13:41:46 +03:00
consensus consensus: update NextConsensus only when committee is recalculated 2020-11-09 17:35:32 +03:00
core core: remove NodeList from Oracle storage 2020-11-16 19:09:34 +03:00
crypto keys: don't panic if signature has invalid size 2020-10-07 10:04:19 +03:00
encoding state: use more efficient encoding for amount 2020-09-21 21:51:33 +03:00
internal hash: introduce memory-optimized merkle root hash calculation routine 2020-09-15 18:38:15 +03:00
interop smartcontract: remove contract features 2020-11-13 21:26:23 +03:00
io always wrap errors when creating new ones with fmt.Errorf() 2020-08-07 12:21:52 +03:00
network Merge pull request #1531 from nspcc-dev/core/applicationlog_with_multiple_triggers 2020-11-12 19:05:22 +03:00
rpc rpc: adjust NEP5 transfers amount JSON marshalling 2020-11-17 15:50:19 +03:00
smartcontract manifest: simplify marshaling 2020-11-13 21:46:26 +03:00
util *: use proper YAML library import path, fix #1306 2020-08-12 16:31:06 +03:00
vm vm: improve REVERSEITEMS for 1M Buffer 2020-11-06 23:31:26 +03:00
wallet cli: add tests for wallet import-deployed 2020-09-18 12:07:02 +03:00