mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-15 16:12:16 +00:00
eth token data toString fix
This commit is contained in:
parent
78c523e80b
commit
5016818bae
1 changed files with 5 additions and 5 deletions
|
@ -116,13 +116,13 @@ class EthTokenTxExtraDTO {
|
|||
map['timestamp'] = timestamp;
|
||||
map['from'] = from;
|
||||
map['to'] = to;
|
||||
map['value'] = value;
|
||||
map['gas'] = gas;
|
||||
map['gasPrice'] = gasPrice;
|
||||
map['value'] = value.toJsonString();
|
||||
map['gas'] = gas.toJsonString();
|
||||
map['gasPrice'] = gasPrice.toJsonString();
|
||||
map['input'] = input;
|
||||
map['nonce'] = nonce;
|
||||
map['gasCost'] = gasCost;
|
||||
map['gasUsed'] = gasUsed;
|
||||
map['gasCost'] = gasCost.toJsonString();
|
||||
map['gasUsed'] = gasUsed.toJsonString();
|
||||
return map;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue