Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushmishra2005 committed Jan 23, 2025
1 parent dd58c4a commit 489d7c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions consensus.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ type = "grandpa"

[cere.substrate]
# Solochains's websocket RPC
rpc_ws = "wss://rpc.testnet.cere.network:443"
rpc_ws = "wss://archive.testnet.cere.network:443"
# Hashing can be "Keccak" or "Blake2"
hashing = "Blake2"
# Solochains's consensus state id on Hyperbridge
Expand All @@ -45,7 +45,7 @@ state_machine = "SUBSTRATE-cere"

[cere.grandpa]
# Solochains's websocket RPC
rpc = "wss://rpc.testnet.cere.network:443"
rpc = "wss://archive.testnet.cere.network:443"
# Solochains's slot duration
slot_duration = 6
# How frequently to exchange consensus proofs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async function run(nodeName, networkInfo) {
const bob = '5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty';

// Create a extrinsic, transferring 10^10 units to Bob
const transfer = api.tx.balances.transfer(bob, 10n ** 10n);
const transfer = api.tx.balances.transferAllowDeath(bob, 10n ** 10n);

let transaction_success_event = false;
try {
Expand Down

0 comments on commit 489d7c4

Please sign in to comment.