steemit / simple_steem_client

A minimalist Steem RPC client in Python
2 stars 5 forks source link

Fix basic serialization problems #10

Closed theoreticalbts closed 6 years ago

theoreticalbts commented 6 years ago

Due to numerous bugs, the serializer doesn't yet work with the following simple transaction:

{
   "ref_block_num":0x1234,
   "ref_block_prefix":0x56789abc,
   "expiration":"2018-01-03T12:00:00",
   "operations":[
      ["transfer",
         {"from":"alice",
          "to":"bob",
          "amount":"7.625 STEEM",
          "memo":"transfer some tokens"
         }]],
   "extensions":[],
   "signatures":[]
}

I will fix the specific bugs triggered by this test case: