From b35b7d6af3134508fdc6bba74030bd6f0936f6c2 Mon Sep 17 00:00:00 2001 From: jingwei zhuang Date: Mon, 23 Jan 2023 11:18:59 -0800 Subject: [PATCH 1/2] remove getVfromK logs --- storage/database/badger_database.go | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/storage/database/badger_database.go b/storage/database/badger_database.go index 70adaff3..11bdae4c 100644 --- a/storage/database/badger_database.go +++ b/storage/database/badger_database.go @@ -524,7 +524,7 @@ func (b *BadgerTransaction) Get( }) if err != nil { err = fmt.Errorf( - "unable to get the value from the item for key %s: %w%s", + " %s: %w%s", string(key), err, b.db.metaData, @@ -567,34 +567,22 @@ func (b *BadgerTransaction) Scan( k := item.Key() err := item.Value(func(v []byte) error { if err := worker(k, v); err != nil { - err = fmt.Errorf("worker failed for key %s: %w%s", string(k), err, b.db.metaData) - color.Red(err.Error()) - return err + return fmt.Errorf("worker failed for key %s: %w", string(k), err) } return nil }) if err != nil { - err = fmt.Errorf( - "unable to get the value from the item for key %s: %w%s", + return -1, fmt.Errorf( + "unable to get the value from the item for key %s: %w", string(k), err, - b.db.metaData, ) - color.Red(err.Error()) - return -1, err } entries++ if logEntries && entries%logModulo == 0 { - msg := fmt.Sprintf( - "scanned %d entries for %s%s\n", - entries, - string(prefix), - b.db.metaData, - ) - color.Cyan(msg) - log.Print(msg) + log.Printf("scanned %d entries for %s\n", entries, string(prefix)) } } From b1474ab8a7730485fc4942e8e3900adedd3c23a0 Mon Sep 17 00:00:00 2001 From: jingwei zhuang Date: Mon, 23 Jan 2023 14:33:38 -0800 Subject: [PATCH 2/2] updates --- client/api_account.go | 2 +- client/api_block.go | 2 +- client/api_call.go | 2 +- client/api_construction.go | 2 +- client/api_events.go | 2 +- client/api_mempool.go | 2 +- client/api_network.go | 2 +- client/api_search.go | 2 +- client/client.go | 2 +- client/configuration.go | 2 +- client/response.go | 2 +- server/api.go | 2 +- server/api_account.go | 2 +- server/api_block.go | 2 +- server/api_call.go | 2 +- server/api_construction.go | 2 +- server/api_events.go | 2 +- server/api_mempool.go | 2 +- server/api_network.go | 2 +- server/api_search.go | 2 +- server/logger.go | 2 +- server/routers.go | 2 +- types/account_balance_request.go | 2 +- types/account_balance_response.go | 2 +- types/account_coins_request.go | 2 +- types/account_coins_response.go | 2 +- types/account_identifier.go | 2 +- types/allow.go | 2 +- types/amount.go | 2 +- types/balance_exemption.go | 2 +- types/block.go | 2 +- types/block_event.go | 2 +- types/block_event_type.go | 2 +- types/block_identifier.go | 2 +- types/block_request.go | 2 +- types/block_response.go | 2 +- types/block_transaction.go | 2 +- types/block_transaction_request.go | 2 +- types/block_transaction_response.go | 2 +- types/call_request.go | 2 +- types/call_response.go | 2 +- types/case.go | 2 +- types/coin.go | 2 +- types/coin_action.go | 2 +- types/coin_change.go | 2 +- types/coin_identifier.go | 2 +- types/construction_combine_request.go | 2 +- types/construction_combine_response.go | 2 +- types/construction_derive_request.go | 2 +- types/construction_hash_request.go | 2 +- types/construction_metadata_request.go | 2 +- types/construction_metadata_response.go | 2 +- types/construction_parse_request.go | 2 +- types/construction_payloads_request.go | 2 +- types/construction_payloads_response.go | 2 +- types/construction_preprocess_request.go | 2 +- types/construction_preprocess_response.go | 2 +- types/construction_submit_request.go | 2 +- types/currency.go | 2 +- types/curve_type.go | 2 +- types/direction.go | 2 +- types/error.go | 2 +- types/events_blocks_request.go | 2 +- types/events_blocks_response.go | 2 +- types/exemption_type.go | 2 +- types/mempool_response.go | 2 +- types/mempool_transaction_request.go | 2 +- types/mempool_transaction_response.go | 2 +- types/metadata_request.go | 2 +- types/network_identifier.go | 2 +- types/network_list_response.go | 2 +- types/network_options_response.go | 2 +- types/network_request.go | 2 +- types/network_status_response.go | 2 +- types/operation.go | 2 +- types/operation_identifier.go | 2 +- types/operation_status.go | 2 +- types/operator.go | 2 +- types/partial_block_identifier.go | 2 +- types/peer.go | 2 +- types/public_key.go | 2 +- types/related_transaction.go | 2 +- types/search_transactions_request.go | 2 +- types/search_transactions_response.go | 2 +- types/signature.go | 2 +- types/signature_type.go | 2 +- types/sub_account_identifier.go | 2 +- types/sub_network_identifier.go | 2 +- types/sync_status.go | 2 +- types/transaction.go | 2 +- types/transaction_identifier.go | 2 +- types/transaction_identifier_response.go | 2 +- types/types.go | 2 +- types/version.go | 2 +- 94 files changed, 94 insertions(+), 94 deletions(-) diff --git a/client/api_account.go b/client/api_account.go index 118febee..0f92cae7 100644 --- a/client/api_account.go +++ b/client/api_account.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/client/api_block.go b/client/api_block.go index 91dee03d..df227105 100644 --- a/client/api_block.go +++ b/client/api_block.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/client/api_call.go b/client/api_call.go index c6cb09af..55dd756c 100644 --- a/client/api_call.go +++ b/client/api_call.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/client/api_construction.go b/client/api_construction.go index 9472fec7..38de2b61 100644 --- a/client/api_construction.go +++ b/client/api_construction.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/client/api_events.go b/client/api_events.go index 2edaf366..92bc94a2 100644 --- a/client/api_events.go +++ b/client/api_events.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/client/api_mempool.go b/client/api_mempool.go index e5f10c5a..2d7f1236 100644 --- a/client/api_mempool.go +++ b/client/api_mempool.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/client/api_network.go b/client/api_network.go index c88114cd..2db0a84c 100644 --- a/client/api_network.go +++ b/client/api_network.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/client/api_search.go b/client/api_search.go index 391c28d5..7d873143 100644 --- a/client/api_search.go +++ b/client/api_search.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/client/client.go b/client/client.go index 4a5fd571..7cae2ef8 100644 --- a/client/client.go +++ b/client/client.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/client/configuration.go b/client/configuration.go index 57bfe875..de51438d 100644 --- a/client/configuration.go +++ b/client/configuration.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/client/response.go b/client/response.go index 7fbf1a00..b827e89d 100644 --- a/client/response.go +++ b/client/response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/server/api.go b/server/api.go index 2d20162d..f3d4c665 100644 --- a/server/api.go +++ b/server/api.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/server/api_account.go b/server/api_account.go index 3a98b425..1b52d46f 100644 --- a/server/api_account.go +++ b/server/api_account.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/server/api_block.go b/server/api_block.go index b6f047ad..d8734a42 100644 --- a/server/api_block.go +++ b/server/api_block.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/server/api_call.go b/server/api_call.go index 66ee825c..31b77260 100644 --- a/server/api_call.go +++ b/server/api_call.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/server/api_construction.go b/server/api_construction.go index c7421f61..71f1d6c9 100644 --- a/server/api_construction.go +++ b/server/api_construction.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/server/api_events.go b/server/api_events.go index 73592970..b32f990a 100644 --- a/server/api_events.go +++ b/server/api_events.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/server/api_mempool.go b/server/api_mempool.go index 54f1d8d0..bfcb1588 100644 --- a/server/api_mempool.go +++ b/server/api_mempool.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/server/api_network.go b/server/api_network.go index 82c2c911..c2482dec 100644 --- a/server/api_network.go +++ b/server/api_network.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/server/api_search.go b/server/api_search.go index d755c309..b2aaf330 100644 --- a/server/api_search.go +++ b/server/api_search.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/server/logger.go b/server/logger.go index 33bb86e5..aa89094c 100644 --- a/server/logger.go +++ b/server/logger.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/server/routers.go b/server/routers.go index 99d5456c..cf1cf903 100644 --- a/server/routers.go +++ b/server/routers.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/account_balance_request.go b/types/account_balance_request.go index 3a44d8ac..5cedb093 100644 --- a/types/account_balance_request.go +++ b/types/account_balance_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/account_balance_response.go b/types/account_balance_response.go index 539b59c9..dc06486c 100644 --- a/types/account_balance_response.go +++ b/types/account_balance_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/account_coins_request.go b/types/account_coins_request.go index 7087b76e..40fb7cdf 100644 --- a/types/account_coins_request.go +++ b/types/account_coins_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/account_coins_response.go b/types/account_coins_response.go index cab26325..57a99312 100644 --- a/types/account_coins_response.go +++ b/types/account_coins_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/account_identifier.go b/types/account_identifier.go index fe5a8361..8bcfb1f0 100644 --- a/types/account_identifier.go +++ b/types/account_identifier.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/allow.go b/types/allow.go index b8c49423..8c0a2ae3 100644 --- a/types/allow.go +++ b/types/allow.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/amount.go b/types/amount.go index b940f7de..02d90f5b 100644 --- a/types/amount.go +++ b/types/amount.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/balance_exemption.go b/types/balance_exemption.go index 68225a4b..12994193 100644 --- a/types/balance_exemption.go +++ b/types/balance_exemption.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/block.go b/types/block.go index 97d8755b..41ea3ceb 100644 --- a/types/block.go +++ b/types/block.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/block_event.go b/types/block_event.go index bfcf134f..f285096e 100644 --- a/types/block_event.go +++ b/types/block_event.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/block_event_type.go b/types/block_event_type.go index e67429be..d7eeb1ae 100644 --- a/types/block_event_type.go +++ b/types/block_event_type.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/block_identifier.go b/types/block_identifier.go index f3da3b8b..980a8794 100644 --- a/types/block_identifier.go +++ b/types/block_identifier.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/block_request.go b/types/block_request.go index b56f797f..33d3d73f 100644 --- a/types/block_request.go +++ b/types/block_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/block_response.go b/types/block_response.go index fd66e59a..b2e21f54 100644 --- a/types/block_response.go +++ b/types/block_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/block_transaction.go b/types/block_transaction.go index e577260d..1ceeee2e 100644 --- a/types/block_transaction.go +++ b/types/block_transaction.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/block_transaction_request.go b/types/block_transaction_request.go index ba50d706..c5e35234 100644 --- a/types/block_transaction_request.go +++ b/types/block_transaction_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/block_transaction_response.go b/types/block_transaction_response.go index 5b518150..f5e0ba62 100644 --- a/types/block_transaction_response.go +++ b/types/block_transaction_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/call_request.go b/types/call_request.go index ae35f2a3..aacb3eba 100644 --- a/types/call_request.go +++ b/types/call_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/call_response.go b/types/call_response.go index d4cc0e26..0acd7735 100644 --- a/types/call_response.go +++ b/types/call_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/case.go b/types/case.go index 551b88b4..d6cbb056 100644 --- a/types/case.go +++ b/types/case.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/coin.go b/types/coin.go index 3e22ab6a..9af11e5f 100644 --- a/types/coin.go +++ b/types/coin.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/coin_action.go b/types/coin_action.go index 17ea972c..d5797452 100644 --- a/types/coin_action.go +++ b/types/coin_action.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/coin_change.go b/types/coin_change.go index d9089dd1..f3ecf08e 100644 --- a/types/coin_change.go +++ b/types/coin_change.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/coin_identifier.go b/types/coin_identifier.go index 81f8c4ce..3cade3a4 100644 --- a/types/coin_identifier.go +++ b/types/coin_identifier.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/construction_combine_request.go b/types/construction_combine_request.go index f55277bd..bdf34d56 100644 --- a/types/construction_combine_request.go +++ b/types/construction_combine_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/construction_combine_response.go b/types/construction_combine_response.go index 3de1e9eb..5791e124 100644 --- a/types/construction_combine_response.go +++ b/types/construction_combine_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/construction_derive_request.go b/types/construction_derive_request.go index 0fa06eeb..01d1982f 100644 --- a/types/construction_derive_request.go +++ b/types/construction_derive_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/construction_hash_request.go b/types/construction_hash_request.go index 59887fb8..435f6fc4 100644 --- a/types/construction_hash_request.go +++ b/types/construction_hash_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/construction_metadata_request.go b/types/construction_metadata_request.go index f20f734c..5efd6282 100644 --- a/types/construction_metadata_request.go +++ b/types/construction_metadata_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/construction_metadata_response.go b/types/construction_metadata_response.go index a9515550..644d2f98 100644 --- a/types/construction_metadata_response.go +++ b/types/construction_metadata_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/construction_parse_request.go b/types/construction_parse_request.go index 65f978cb..fa226291 100644 --- a/types/construction_parse_request.go +++ b/types/construction_parse_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/construction_payloads_request.go b/types/construction_payloads_request.go index a6f018b9..f6e61f07 100644 --- a/types/construction_payloads_request.go +++ b/types/construction_payloads_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/construction_payloads_response.go b/types/construction_payloads_response.go index 3747ab79..991f2cdc 100644 --- a/types/construction_payloads_response.go +++ b/types/construction_payloads_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/construction_preprocess_request.go b/types/construction_preprocess_request.go index 764097cf..95a9a655 100644 --- a/types/construction_preprocess_request.go +++ b/types/construction_preprocess_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/construction_preprocess_response.go b/types/construction_preprocess_response.go index eeb907ea..ae6a9532 100644 --- a/types/construction_preprocess_response.go +++ b/types/construction_preprocess_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/construction_submit_request.go b/types/construction_submit_request.go index 8ab30658..1a250491 100644 --- a/types/construction_submit_request.go +++ b/types/construction_submit_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/currency.go b/types/currency.go index 93f91dc8..326c29e2 100644 --- a/types/currency.go +++ b/types/currency.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/curve_type.go b/types/curve_type.go index d03ea3eb..8a048979 100644 --- a/types/curve_type.go +++ b/types/curve_type.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/direction.go b/types/direction.go index 5dba38c5..7b5b25bf 100644 --- a/types/direction.go +++ b/types/direction.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/error.go b/types/error.go index 7932215f..7f591eb9 100644 --- a/types/error.go +++ b/types/error.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/events_blocks_request.go b/types/events_blocks_request.go index b987ae40..38120ace 100644 --- a/types/events_blocks_request.go +++ b/types/events_blocks_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/events_blocks_response.go b/types/events_blocks_response.go index 49a70f8a..36bbb8a4 100644 --- a/types/events_blocks_response.go +++ b/types/events_blocks_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/exemption_type.go b/types/exemption_type.go index 13f0a61a..ec187fd1 100644 --- a/types/exemption_type.go +++ b/types/exemption_type.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/mempool_response.go b/types/mempool_response.go index afe553ca..11d84c05 100644 --- a/types/mempool_response.go +++ b/types/mempool_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/mempool_transaction_request.go b/types/mempool_transaction_request.go index 89015c21..04341e97 100644 --- a/types/mempool_transaction_request.go +++ b/types/mempool_transaction_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/mempool_transaction_response.go b/types/mempool_transaction_response.go index b83c7cd0..dd928c54 100644 --- a/types/mempool_transaction_response.go +++ b/types/mempool_transaction_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/metadata_request.go b/types/metadata_request.go index abfc95ac..2f4c3442 100644 --- a/types/metadata_request.go +++ b/types/metadata_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/network_identifier.go b/types/network_identifier.go index 078df821..bdf7c34a 100644 --- a/types/network_identifier.go +++ b/types/network_identifier.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/network_list_response.go b/types/network_list_response.go index 6ec0cff4..1c073b68 100644 --- a/types/network_list_response.go +++ b/types/network_list_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/network_options_response.go b/types/network_options_response.go index 63fcafd3..b64e4d39 100644 --- a/types/network_options_response.go +++ b/types/network_options_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/network_request.go b/types/network_request.go index 71f002e0..00025f43 100644 --- a/types/network_request.go +++ b/types/network_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/network_status_response.go b/types/network_status_response.go index 5a02a4bb..2905fa87 100644 --- a/types/network_status_response.go +++ b/types/network_status_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/operation.go b/types/operation.go index e54c1b7a..3677c566 100644 --- a/types/operation.go +++ b/types/operation.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/operation_identifier.go b/types/operation_identifier.go index be875c24..8c9b0801 100644 --- a/types/operation_identifier.go +++ b/types/operation_identifier.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/operation_status.go b/types/operation_status.go index f4a29101..8ea2a1e1 100644 --- a/types/operation_status.go +++ b/types/operation_status.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/operator.go b/types/operator.go index 70925193..1c6fef63 100644 --- a/types/operator.go +++ b/types/operator.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/partial_block_identifier.go b/types/partial_block_identifier.go index 9be002aa..2ee9db93 100644 --- a/types/partial_block_identifier.go +++ b/types/partial_block_identifier.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/peer.go b/types/peer.go index 0829720c..cb73fbcd 100644 --- a/types/peer.go +++ b/types/peer.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/public_key.go b/types/public_key.go index 9cd4d4ab..207f998d 100644 --- a/types/public_key.go +++ b/types/public_key.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/related_transaction.go b/types/related_transaction.go index 5f4e7766..e5a5fdea 100644 --- a/types/related_transaction.go +++ b/types/related_transaction.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/search_transactions_request.go b/types/search_transactions_request.go index 0d3653de..4f969e5e 100644 --- a/types/search_transactions_request.go +++ b/types/search_transactions_request.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/search_transactions_response.go b/types/search_transactions_response.go index 8881033a..9791165e 100644 --- a/types/search_transactions_response.go +++ b/types/search_transactions_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/signature.go b/types/signature.go index e815dd1a..4ca9f034 100644 --- a/types/signature.go +++ b/types/signature.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/signature_type.go b/types/signature_type.go index cfa1c360..a5a5cd47 100644 --- a/types/signature_type.go +++ b/types/signature_type.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/sub_account_identifier.go b/types/sub_account_identifier.go index dcf32ca9..a8bbf99d 100644 --- a/types/sub_account_identifier.go +++ b/types/sub_account_identifier.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/sub_network_identifier.go b/types/sub_network_identifier.go index b6880ca5..c20d060d 100644 --- a/types/sub_network_identifier.go +++ b/types/sub_network_identifier.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/sync_status.go b/types/sync_status.go index 0124209d..364b3686 100644 --- a/types/sync_status.go +++ b/types/sync_status.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/transaction.go b/types/transaction.go index 5c5d7b15..6e5fad90 100644 --- a/types/transaction.go +++ b/types/transaction.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/transaction_identifier.go b/types/transaction_identifier.go index 939abd6f..090491c6 100644 --- a/types/transaction_identifier.go +++ b/types/transaction_identifier.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/transaction_identifier_response.go b/types/transaction_identifier_response.go index 93ea9f5f..d29f8283 100644 --- a/types/transaction_identifier_response.go +++ b/types/transaction_identifier_response.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/types.go b/types/types.go index 69d7a6bb..c9b2fdb9 100644 --- a/types/types.go +++ b/types/types.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/types/version.go b/types/version.go index bbe74e6e..0af02edb 100644 --- a/types/version.go +++ b/types/version.go @@ -4,7 +4,7 @@ // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS,