Skip to content

Commit

Permalink
Correcting error message
Browse files Browse the repository at this point in the history
  • Loading branch information
fireduck64 committed Jan 24, 2020
1 parent 3623868 commit 6adb2b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/SnowBlossomClient.java
Expand Up @@ -517,7 +517,7 @@ public void sendLocked(long value, String to, String fbo, int block, String name
else if (nametype.equals("channel")) out.setIds( ClaimedIdentifiers.newBuilder().setChannelname(ByteString.copyFrom(name.getBytes())).build() );
else
{
throw new ValidationException("Nametype must be 'name' or 'channel'");
throw new ValidationException("Nametype must be 'user' or 'channel'");
}
}
tx_config.addOutputs(out.build());
Expand Down

0 comments on commit 6adb2b5

Please sign in to comment.