Skip to content
Snippets Groups Projects
Commit 863383c8 authored by Moul's avatar Moul
Browse files

[enh] #88: membership: Rework fields names

parent 9c14c64f
No related branches found
No related tags found
2 merge requests!146Merge dev into master branch to complete v0.8.0 development cycle,!141#336: tx_history: Handle multi-sig signature pubkeys display
Pipeline #9750 passed
......@@ -135,10 +135,10 @@ async def display_confirmation_table(identity_uid, pubkey, identity_timestamp):
expiration = pendulum.now().add(seconds=pending_expires).diff_for_humans()
table.append(["Pending membership documents will expire", expiration])
table.append(["Identity uid", identity_uid])
table.append(["Pubkey", pubkey])
table.append(["User Identifier (UID)", identity_uid])
table.append(["Public Key", pubkey])
table.append(["Identity block UID", identity_timestamp])
table.append(["Block Identity", identity_timestamp])
block = await client(bma.blockchain.block, identity_timestamp.number)
table.append(
......
......@@ -212,10 +212,10 @@ async def test_display_confirmation_table(
expiration = pendulum.now().add(seconds=pending_expires).diff_for_humans()
table.append(["Pending membership documents will expire", expiration])
table.append(["Identity uid", identity_uid])
table.append(["Pubkey", pubkey])
table.append(["User Identifier (UID)", identity_uid])
table.append(["Public Key", pubkey])
table.append(["Identity block UID", identity_timestamp])
table.append(["Block Identity", identity_timestamp])
block = await client(bma.blockchain.block, identity_timestamp.number)
table.append(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment