Skip to content

Commit

Permalink
updating license copyright date range
Browse files Browse the repository at this point in the history
  • Loading branch information
jaketarnow committed Sep 4, 2024
1 parent 4c178da commit f75faf9
Show file tree
Hide file tree
Showing 19 changed files with 21 additions and 27 deletions.
2 changes: 1 addition & 1 deletion authorize-service/src/authorize.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion authorize-service/src/keygen.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion authorize-service/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion authorize-service/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion authorize-service/src/process_variant.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion authorize-service/src/request.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion authorize-service/src/response.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion authorize-service/src/routes.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion authorize-service/src/signature.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
5 changes: 1 addition & 4 deletions block-parser/src/block_json/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,7 @@ impl InputJSON {
None => bail!("Invalid input ID"),
};
// Get the value of the input.
let value = match json
.get("value")
.and_then(|v| v.as_str())
{
let value = match json.get("value").and_then(|v| v.as_str()) {
Some(value) => Some(value.to_string()),
None => None,
};
Expand Down
9 changes: 3 additions & 6 deletions block-parser/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,12 @@ pub use decoders::*;
pub mod credits_operations;
pub use credits_operations::*;

use snarkvm::prelude::{
Block, Identifier, Input, Literal, Network, Plaintext,
Value,
};
use snarkvm::prelude::{U64};
use snarkvm::prelude::U64;
use snarkvm::prelude::{Block, Identifier, Input, Literal, Network, Plaintext, Value};

use anyhow::{bail, ensure, Error, Result};
use std::collections::HashMap;
use std::fmt::{Debug};
use std::fmt::Debug;
use std::hash::Hash;
use std::str::FromStr;

Expand Down
2 changes: 1 addition & 1 deletion client/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion execute-service/src/execute.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion execute-service/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion execute-service/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion execute-service/src/process_variant.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion execute-service/src/query.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion execute-service/src/request.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion execute-service/src/routes.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019-2023 Aleo Systems Inc.
// Copyright (C) 2019-2024 Aleo Systems Inc.
// This file is part of the Aleo SDK library.

// The Aleo SDK library is free software: you can redistribute it and/or modify
Expand Down

0 comments on commit f75faf9

Please sign in to comment.