mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

Solution: Allow nodes to add, update, or remove validators at runtime using a new command. Implements BEP3.
13 lines
235 B
Python
13 lines
235 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def b():
|
|
from bigchaindb.tendermint import BigchainDB
|
|
return BigchainDB()
|
|
|
|
|
|
@pytest.fixture
|
|
def validator_pub_key():
|
|
return 'B0E42D2589A455EAD339A035D6CE1C8C3E25863F268120AA0162AD7D003A4014'
|