This commit is contained in:
aozhiwei 2022-10-31 19:21:11 +08:00
parent b7c49c9372
commit 2a741eadfc
2 changed files with 11 additions and 0 deletions

View File

@ -15,6 +15,7 @@ class BlockChain(object):
],
'response': [
_common.RspHead(),
['!transactions', [_common.NftTransaction()], '交易列表']
]
},
{

View File

@ -926,3 +926,13 @@ class BattleHistory(object):
['pve_instance_id', 0, 'pve副本难度id'],
['pve_instance_mode', 0, 'pve副本mode'],
]
class NftTransaction(object):
def __init__(self):
self.fields = [
['old_rank', 0, '战斗前段位'],
['old_score', 0, '战斗前排位分'],
['new_rank', 0, '战斗后段位'],
['new_score', 0, '战斗后排位分'],
]