Process GRANDPA authority id (#179)

* Remove pubkey
* Remove superfluous whitespace
* Assign GRANDPA authority id as address
This commit is contained in:
Michael Müller
2019-09-19 10:32:04 +02:00
committed by Maciej Hirsz
parent 5b2c0ee37d
commit 98175772e4
3 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -280,7 +280,7 @@ export class Connection {
case Actions.AfgFinalized: {
const [nodeAddress, finalizedNumber, finalizedHash] = message.payload;
const no = parseInt(String(finalizedNumber), 10) as Types.BlockNumber;
afg.receivedFinalized( nodeAddress, no, finalizedHash);
afg.receivedFinalized(nodeAddress, no, finalizedHash);
break;
}