mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 01:37:54 +00:00
toString fix
This commit is contained in:
parent
49e5641c3e
commit
69aa1fb885
1 changed files with 7 additions and 7 deletions
|
@ -127,16 +127,16 @@ class EthTxDTO {
|
|||
map['timestamp'] = timestamp;
|
||||
map['from'] = from;
|
||||
map['to'] = to;
|
||||
map['value'] = value;
|
||||
map['gas'] = gas;
|
||||
map['gasPrice'] = gasPrice;
|
||||
map['maxFeePerGas'] = maxFeePerGas;
|
||||
map['maxPriorityFeePerGas'] = maxPriorityFeePerGas;
|
||||
map['value'] = value.toString();
|
||||
map['gas'] = gas.toString();
|
||||
map['gasPrice'] = gasPrice.toString();
|
||||
map['maxFeePerGas'] = maxFeePerGas.toString();
|
||||
map['maxPriorityFeePerGas'] = maxPriorityFeePerGas.toString();
|
||||
map['isError'] = isError;
|
||||
map['hasToken'] = hasToken;
|
||||
map['compressedTx'] = compressedTx;
|
||||
map['gasCost'] = gasCost;
|
||||
map['gasUsed'] = gasUsed;
|
||||
map['gasCost'] = gasCost.toString();
|
||||
map['gasUsed'] = gasUsed.toString();
|
||||
return map;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue