Skip to content

Commit

Permalink
Merge pull request #234 from rsksmart/feature/GBI-1906
Browse files Browse the repository at this point in the history
fix: update bridge interface
  • Loading branch information
Luisfc68 authored Jul 23, 2024
2 parents 65d47b7 + 8310fc3 commit 9391832
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/Bridge.sol
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ interface Bridge {

function getFederatorPublicKey(int256 index) external view returns (bytes memory);

function getFederatorPublicKeyOfType(int256 index, string calldata atype) external returns (bytes memory);
function getFederatorPublicKeyOfType(int256 index, string calldata atype) external view returns (bytes memory);

function getFederationCreationTime() external view returns (int256);

Expand Down Expand Up @@ -111,7 +111,7 @@ interface Bridge {
function registerBtcCoinbaseTransaction(bytes calldata btcTxSerialized, bytes32 blockHash,
bytes calldata pmtSerialized, bytes32 witnessMerkleRoot, bytes32 witnessReservedValue) external;

function hasBtcBlockCoinbaseTransactionInformation(bytes32 blockHash) external returns (bool);
function hasBtcBlockCoinbaseTransactionInformation(bytes32 blockHash) external view returns (bool);

function registerFastBridgeBtcTransaction(bytes calldata btcTxSerialized, uint256 height,
bytes calldata pmtSerialized, bytes32 derivationArgumentsHash,
Expand Down

0 comments on commit 9391832

Please sign in to comment.