bridge.sol: improve linebreak of comment

This commit is contained in:
Maximilian Krüger 2018-01-04 15:15:02 +01:00
parent ada27d9819
commit 6a859f004f
1 changed files with 1 additions and 2 deletions

View File

@ -130,8 +130,7 @@ contract HomeBridge {
/// withdrawal value (uint)
/// foreign transaction hash (bytes32) // to avoid transaction duplication
///
/// NOTE that anyone can call withdraw provided they have the
/// message and required signatures!
/// NOTE that anyone can call withdraw provided they have the message and required signatures!
function withdraw (uint8[] v, bytes32[] r, bytes32[] s, bytes message) public allAuthorities(v, r, s, message) {
require(message.length == 84);
address recipient;