multi: rename key_send, key-send and key send to keysend

This commit is contained in:
Conner Fromknecht
2020-01-16 04:13:59 -08:00
parent 3aba0f1eaf
commit 51dbdd3b38
13 changed files with 638 additions and 637 deletions

View File

@@ -228,7 +228,7 @@ func (cfg NodeConfig) genArgs() []string {
}
if cfg.AcceptKeySend {
args = append(args, "--accept-key-send")
args = append(args, "--accept-keysend")
}
return args
@@ -317,9 +317,9 @@ func newNode(cfg NodeConfig) (*HarnessNode, error) {
cfg.P2PPort, cfg.RPCPort, cfg.RESTPort, cfg.ProfilePort = generateListeningPorts()
// Run all tests with accept key send. The key send code is very
// isolated and it is highly unlikely that it would affect regular
// itests when enabled.
// Run all tests with accept keysend. The keysend code is very isolated
// and it is highly unlikely that it would affect regular itests when
// enabled.
cfg.AcceptKeySend = true
numActiveNodesMtx.Lock()